mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-16 01:55:21 +03:00
443 lines
9.3 KiB
C++
443 lines
9.3 KiB
C++
#include "client/Client.hpp"
|
|
#include "async/AsyncFile.hpp"
|
|
#include "client/ClientServices.hpp"
|
|
#include "console/CVar.hpp"
|
|
#include "console/Client.hpp"
|
|
#include "console/Device.hpp"
|
|
#include "console/Screen.hpp"
|
|
#include "db/Db.hpp"
|
|
#include "glue/CGlueMgr.hpp"
|
|
#include "gx/Screen.hpp"
|
|
#include "gx/Texture.hpp"
|
|
#include "model/Model2.hpp"
|
|
#include "net/Poll.hpp"
|
|
#include "ui/FrameScript.hpp"
|
|
#include "ui/FrameXML.hpp"
|
|
#include "world/World.hpp"
|
|
#include <bc/Debug.hpp>
|
|
#include <common/Prop.hpp>
|
|
#include <storm/Error.hpp>
|
|
|
|
CVar* Client::g_accountListVar;
|
|
HEVENTCONTEXT Client::g_clientEventContext;
|
|
|
|
void AsyncFileInitialize() {
|
|
// TODO
|
|
AsyncFileReadInitialize(0, 100);
|
|
}
|
|
|
|
void BaseInitializeGlobal() {
|
|
PropInitialize();
|
|
}
|
|
|
|
void ClientMiscInitialize() {
|
|
// TODO
|
|
|
|
Client::g_accountListVar = CVar::Register(
|
|
"accountList",
|
|
"List of wow accounts for saved Blizzard account",
|
|
0,
|
|
"",
|
|
nullptr,
|
|
4,
|
|
false,
|
|
nullptr,
|
|
false
|
|
);
|
|
|
|
// TODO
|
|
}
|
|
|
|
void ClientPostClose(int32_t a1) {
|
|
// TODO s_finalDialog = a1;
|
|
EventPostCloseEx(nullptr);
|
|
}
|
|
|
|
int32_t DestroyEngineCallback(const void* a1, void* a2) {
|
|
// TODO
|
|
|
|
return 1;
|
|
}
|
|
|
|
int32_t InitializeEngineCallback(const void* a1, void* a2) {
|
|
// TODO
|
|
// sub_4D2A30();
|
|
|
|
AsyncFileInitialize();
|
|
TextureInitialize();
|
|
|
|
// ModelBlobLoad("world\\model.blob");
|
|
|
|
// if (SFile::IsStreamingMode()) {
|
|
// TextureLoadBlob("world\\liquid.tex");
|
|
// }
|
|
|
|
ScrnInitialize(0);
|
|
ConsoleScreenInitialize(nullptr); // TODO argument
|
|
|
|
// s_cvarTextureFilteringMode = CVar::Register(
|
|
// "textureFilteringMode",
|
|
// "Texture filtering mode",
|
|
// 1,
|
|
// "1",
|
|
// &TextureFilteringCallback,
|
|
// 1,
|
|
// 0,
|
|
// 0,
|
|
// 0
|
|
// );
|
|
|
|
// s_cvarUIFaster = CVar::Register(
|
|
// "UIFaster",
|
|
// "UI acceleration option",
|
|
// 0,
|
|
// "3",
|
|
// &UIFasterCalllback,
|
|
// 1,
|
|
// 0,
|
|
// 0,
|
|
// 0
|
|
// );
|
|
|
|
// s_cvarTextureCacheSize = CVar::Register(
|
|
// "textureCacheSize",
|
|
// "Texture cache size in bytes",
|
|
// 1,
|
|
// "32",
|
|
// &TextureCacheSizeCallback,
|
|
// 1,
|
|
// 0,
|
|
// 0,
|
|
// 0
|
|
// );
|
|
|
|
// sub_4B6580(*(_DWORD *)(dword_B2F9FC + 48) << 20);
|
|
|
|
// AddConsoleDeviceDefaultCallback(SetDefaults);
|
|
|
|
// if (ConsoleDeviceHardwareChanged()) {
|
|
// v3 = 0;
|
|
|
|
// do {
|
|
// SetDefaults(v3++);
|
|
// } while (v3 < 3);
|
|
// }
|
|
|
|
auto m2Flags = M2RegisterCVars();
|
|
M2Initialize(m2Flags, 0);
|
|
|
|
// v4 = *(_DWORD *)(dword_B2FA00 + 48);
|
|
// sub_4B61C0(dword_AB6128[v4]);
|
|
// sub_4B6230(dword_AB6140[v4]);
|
|
|
|
WowClientInit();
|
|
|
|
return 1;
|
|
}
|
|
|
|
int32_t InitializeGlobal() {
|
|
// TODO
|
|
|
|
// SCmdRegisterArgList(&ProcessCommandLine(void)::s_wowArgList, 17u);
|
|
|
|
// CmdLineProcess();
|
|
|
|
// sub_403600("WoW.mfil");
|
|
|
|
// if (dword_B2FA10 != 2) {
|
|
// sub_403560();
|
|
// }
|
|
|
|
// LOBYTE(v24) = 0;
|
|
|
|
// if (sub_422140()) {
|
|
// LOBYTE(v24) = OsDirectoryExists((int)"WTF/Account") == 0;
|
|
// }
|
|
|
|
// ClientServices::LoadCDKey();
|
|
|
|
ConsoleInitializeClientCommand();
|
|
|
|
ConsoleInitializeClientCVar("Config.wtf");
|
|
|
|
// sub_7663F0();
|
|
|
|
// v18 = 0;
|
|
// v19 = 0;
|
|
// ptr = 0;
|
|
// v21 = 0;
|
|
|
|
// sub_406740(&v18, &CVar::Load);
|
|
|
|
// if (ptr) {
|
|
// SMemFree(ptr, a_pad, -2, 0);
|
|
// }
|
|
|
|
// CVar::Register("dbCompress", "Database compression", 0, "-1", 0, 5, 0, 0, 0);
|
|
|
|
// v2 = CVar::Register("locale", "Set the game locale", 0, "****", &LocaleChangedCallback, 5, 0, 0, 0);
|
|
|
|
// if (!SStrCmp(v2->m_stringValue.m_str, "****", 0x7FFFFFFFu)) {
|
|
// CVar::Set(v2, "enUS", 1, 0, 0, 1);
|
|
// }
|
|
|
|
// CVar::Register("useEnglishAudio", "override the locale and use English audio", 0, "0", 0, 5, 0, 0, 0);
|
|
|
|
// if (sub_422140()) {
|
|
// sub_4036B0(v24, 0, a2, (int)v2, (char)v24);
|
|
// }
|
|
|
|
// SStrCopy(&a1a, v2->m_stringValue.m_str, 5);
|
|
|
|
// sub_402D50(&a1a);
|
|
|
|
// CVar::Set(v2, &a1a, 1, 0, 0, 1);
|
|
|
|
// SStrPrintf(dest, 260, "%s%s", *(_DWORD *)off_AB6158, v2->m_stringValue.m_str);
|
|
|
|
// sub_421B50(dest);
|
|
|
|
// sub_423D70();
|
|
|
|
// sub_405DD0();
|
|
|
|
// CVar* v3 = CVar::Register(
|
|
// "processAffinityMask",
|
|
// "Sets which core(s) WoW may execute on - changes require restart to take effect",
|
|
// 2,
|
|
// "0",
|
|
// &sub_4022E0,
|
|
// 0,
|
|
// 0,
|
|
// 0,
|
|
// 0
|
|
// );
|
|
|
|
// CVar* v4 = CVar::Lookup("videoOptionsVersion");
|
|
|
|
// if (!v4 || v4->m_intValue < 3) {
|
|
// SStrPrintf(v23, 8, "%u", 0);
|
|
// CVar::Set(v3, v23, 1, 0, 0, 1);
|
|
// CVar::Update((int)v3);
|
|
// }
|
|
|
|
// v5 = v3->m_intValue;
|
|
|
|
// if (v5) {
|
|
// SSetCurrentProcessAffinityMask(v5);
|
|
// }
|
|
|
|
BaseInitializeGlobal();
|
|
|
|
EventInitialize(1, 0);
|
|
|
|
// CVar* v6 = CVar::Register(
|
|
// "timingTestError",
|
|
// "Error reported by the timing validation system",
|
|
// 6,
|
|
// "0",
|
|
// 0,
|
|
// 5,
|
|
// 0,
|
|
// 0,
|
|
// 0
|
|
// );
|
|
// v7 = v6;
|
|
|
|
// CVar* v8 = CVar::Register(
|
|
// "timingMethod",
|
|
// "Desired method for game timing",
|
|
// 2,
|
|
// "0",
|
|
// &sub_403200,
|
|
// 5,
|
|
// 0,
|
|
// v6,
|
|
// 0
|
|
// );
|
|
|
|
// sub_86D430(v8->m_intValue);
|
|
|
|
// ConsoleCommandRegister("timingInfo", (int)sub_4032A0, 0, 0);
|
|
|
|
// v9 = sub_86AD50();
|
|
|
|
// v10 = v9 == v7->m_intValue;
|
|
|
|
// dword_B2F9D8 = v9;
|
|
|
|
// if (!v10) {
|
|
// sprintf(&v17, "%d", v9);
|
|
// CVar::SetReadOnly((int)v7, 0);
|
|
// CVar::Set(v7, &v17, 1, 0, 0, 1);
|
|
// CVar::Update((int)v7);
|
|
// CVar::SetReadOnly((int)v7, 1);
|
|
// ConsolePrintf("Timing test error: %d", (int)v7);
|
|
// }
|
|
|
|
// WowClientDB<Startup_StringsRec>::Load(&g_Startup_StringsDB, 0, ".\\Client.cpp", 0x12E3u);
|
|
// Startup_StringsRec* v11 = g_Startup_StringsDB.GetRecordByIndex(1);
|
|
// const char* v12;
|
|
|
|
// if (v11) {
|
|
// v12 = v11->m_text;
|
|
// } else {
|
|
// v12 = "World of Warcraft";
|
|
// }
|
|
|
|
// TODO
|
|
// - replace with above logic for loading from Startup_Strings.dbc
|
|
const char* v12 = "World of Warcraft";
|
|
|
|
char v15[260];
|
|
|
|
SStrCopy(v15, v12, 0x7FFFFFFF);
|
|
|
|
ConsoleDeviceInitialize(v15);
|
|
|
|
// OsIMEInitialize();
|
|
|
|
// uint32_t v13 = OsGetAsyncTimeMs();
|
|
// g_rndSeed.SetSeed(v13);
|
|
|
|
Client::g_clientEventContext = EventCreateContextEx(
|
|
1,
|
|
&InitializeEngineCallback,
|
|
&DestroyEngineCallback,
|
|
0,
|
|
0
|
|
);
|
|
|
|
return 1;
|
|
}
|
|
|
|
void CommonMain() {
|
|
StormInitialize();
|
|
|
|
// TODO
|
|
// - error log setup
|
|
// - misc other setup
|
|
|
|
if (InitializeGlobal()) {
|
|
EventDoMessageLoop();
|
|
|
|
// TODO
|
|
// sub_406B70();
|
|
}
|
|
|
|
// TODO
|
|
// - misc cleanup
|
|
}
|
|
|
|
void BlizzardAssertCallback(const char* a1, const char* a2, const char* a3, uint32_t a4) {
|
|
if (*a2) {
|
|
SErrDisplayError(0, a3, a4, a2, 0, 1, 0x11111111);
|
|
} else {
|
|
SErrDisplayError(0, a3, a4, a1, 0, 1, 0x11111111);
|
|
}
|
|
}
|
|
|
|
void StormInitialize() {
|
|
// TODO
|
|
// SStrInitialize();
|
|
// SErrInitialize();
|
|
// SLogInitialize();
|
|
// SFile::Initialize();
|
|
|
|
Blizzard::Debug::SetAssertHandler(BlizzardAssertCallback);
|
|
}
|
|
|
|
void WowClientInit() {
|
|
// TODO
|
|
// EventRegister(EVENT_ID_5, (int)sub_4020E0);
|
|
// _cfltcvt_init_0();
|
|
|
|
ClientMiscInitialize();
|
|
|
|
// sub_401B60();
|
|
|
|
ClientDBInitialize();
|
|
|
|
// LoadingScreenInitialize();
|
|
|
|
FrameScript_Initialize(0);
|
|
|
|
// TODO
|
|
// SI2::Init(0);
|
|
// sub_6F66B0();
|
|
|
|
FrameXML_RegisterDefault();
|
|
GlueScriptEventsInitialize();
|
|
ScriptEventsInitialize();
|
|
|
|
// TODO
|
|
// sub_6F75E0();
|
|
// sub_401FF0();
|
|
|
|
ClientServices::Initialize();
|
|
// TODO ClientServices::SetMessageHandler(SMSG_TUTORIAL_FLAGS, (int)sub_530920, 0);
|
|
|
|
// TODO
|
|
// v2 = CVar::Lookup("EnableVoiceChat");
|
|
// if (v2 && *(_DWORD *)(v2 + 48)) {
|
|
// ComSatClient_Init();
|
|
// }
|
|
|
|
// TODO
|
|
// DBCache_RegisterHandlers();
|
|
// DBCache_Initialize(a1);
|
|
|
|
// TODO
|
|
// sub_78E400();
|
|
|
|
CWorld::Initialize();
|
|
|
|
// TODO
|
|
// ShadowInit();
|
|
// GxuLightInitialize();
|
|
// GxuLightBucketSizeSet(16.665001);
|
|
// InputControlInitialize();
|
|
|
|
CGlueMgr::Initialize();
|
|
|
|
// TODO
|
|
// if (GetConsoleMessage()) {
|
|
// v3 = (const char *)GetConsoleMessage();
|
|
// CGlueMgr::AddChangedOptionWarning(v3);
|
|
// SetConsoleMessage(0);
|
|
// }
|
|
|
|
// TODO
|
|
// if (sub_422140()) {
|
|
// sub_421630();
|
|
// }
|
|
|
|
// TODO
|
|
// if (byte_B2F9E1 != 1) {
|
|
// if ((g_playIntroMovie + 48) == 1) {
|
|
// CVar::Set(g_playIntroMovie, "0", 1, 0, 0, 1);
|
|
// CGlueMgr::SetScreen("movie");
|
|
// } else {
|
|
// CGlueMgr::SetScreen("login");
|
|
// }
|
|
// } else {
|
|
// if ((dword_B2F980 + 48) == 1) {
|
|
// CVar::Set(dword_B2F980, "0", 1, 0, 0, 1);
|
|
// CVar::Set(g_playIntroMovie, "0", 1, 0, 0, 1);
|
|
// CGlueMgr::SetScreen("movie");
|
|
// } else {
|
|
// CGlueMgr::SetScreen("login");
|
|
// }
|
|
// }
|
|
|
|
// TODO
|
|
// - temporary until above logic is implemented
|
|
CGlueMgr::SetScreen("login");
|
|
|
|
// TODO
|
|
// CGlueMgr::m_pendingTimerAlert = dword_B2F9D8;
|
|
// sub_7FC5A0();
|
|
|
|
EventRegister(EVENT_ID_POLL, &PollNet);
|
|
}
|