aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/modlocalisation.cpp
blob: a3c45e401d1d4b177eb781a102a79ce52e1f6fd6 (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
37
#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)
		if (mod.Enabled)
			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));
}