mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-07-12 13:09:57 +09:00
添加项目文件。
This commit is contained in:
52
initialize.hpp
Normal file
52
initialize.hpp
Normal file
@ -0,0 +1,52 @@
|
||||
#pragma once
|
||||
#include "SDK.hpp"
|
||||
#include "config.h"
|
||||
#include "include/helper.h"
|
||||
#include "include/Console.hpp"
|
||||
#include "include/Game.hpp"
|
||||
#include "include/D3D11Window.hpp"
|
||||
#include "include/Hooking.hpp"
|
||||
using namespace DX11_Base;
|
||||
void ClientBGThread()
|
||||
{
|
||||
while (g_Running) {
|
||||
g_Menu->Loops();
|
||||
std::this_thread::sleep_for(0ms);
|
||||
std::this_thread::yield();
|
||||
}
|
||||
}
|
||||
|
||||
DWORD WINAPI MainThread_Initialize()
|
||||
{
|
||||
g_Console = std::make_unique<Console>();
|
||||
#if DEBUG
|
||||
g_Console->InitializeConsole("Debug Console");
|
||||
g_Console->printdbg("ImGui Hook - Initializing . . .\n\n", g_Console->color.DEFAULT);
|
||||
#endif
|
||||
/// ESTABLISH GAME DATA
|
||||
g_GameData = std::make_unique<GameData>();
|
||||
g_GameVariables = std::make_unique<GameVariables>();
|
||||
|
||||
/// CREATE WINDOW AND ESTABLISH HOOKS
|
||||
g_D3D11Window = std::make_unique<D3D11Window>();
|
||||
g_Hooking = std::make_unique<Hooking>();
|
||||
g_Menu = std::make_unique<Menu>();
|
||||
g_Hooking->Hook();
|
||||
|
||||
#if DEBUG
|
||||
g_Console->printdbg("Main::Initialized\n", g_Console->color.green);
|
||||
#endif
|
||||
|
||||
std::thread WCMUpdate(ClientBGThread); // Initialize Loops Thread
|
||||
/// RENDER LOOP
|
||||
g_Running = TRUE;
|
||||
while (g_Running)
|
||||
{
|
||||
if (GetAsyncKeyState(VK_INSERT) & 1) g_GameVariables->m_ShowMenu = !g_GameVariables->m_ShowMenu;
|
||||
}
|
||||
|
||||
/// EXIT
|
||||
WCMUpdate.join(); // Exit Loops Thread
|
||||
FreeLibraryAndExitThread(g_hModule, EXIT_SUCCESS);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user