aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/modlocalisation.cpp
blob: 25c9e19faa16a88fbd6a718a2be8a942be211a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "pch.h"
#include "modlocalisation.h"
#include "hookutils.h"
#include "modmanager.h"

typedef bool(*AddLocalisationFileType)(void* g_pVguiLocalize, const char* path, const char* pathId, char unknown);
AddLocalisationFileType AddLocalisationFile;

bool loadModLocalisationFiles = true;

bool AddLocalisationFileHook(void* g_pVguiLocalize, const char* path, const char* pathId, char unknown)
{
	bool ret = AddLocalisationFile(g_pVguiLocalize, path, pathId, unknown);

	if (ret)
		spdlog::info("Loaded localisation file {} successfully", path);

	if (!loadModLocalisationFiles)
		return ret;

	loadModLocalisationFiles = false;

	for (Mod* mod : g_ModManager->m_loadedMods)
		for (std::string& localisationFile : mod->LocalisationFiles)
			AddLocalisationFile(g_pVguiLocalize, localisationFile.c_str(), pathId, unknown);

	loadModLocalisationFiles = true;

	return ret;
}

void InitialiseModLocalisation(HMODULE baseAddress)
{
	HookEnabler hook;
	ENABLER_CREATEHOOK(hook, (char*)baseAddress + 0x6D80, AddLocalisationFileHook, reinterpret_cast<LPVOID*>(&AddLocalisationFile));
}