aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/modlocalisation.cpp
blob: ccc06722eacd38b783e234ba524c1b98386c3959 (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
38
#include "pch.h"
#include "modlocalisation.h"
#include "hookutils.h"
#include "modmanager.h"

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

bool loadModLocalisationFiles = true;

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

	if (!loadModLocalisationFiles)
		return ret;

	loadModLocalisationFiles = false;

	for (Mod* mod : g_ModManager->m_loadedMods)
	{
		for (std::string& localisationFile : mod->LocalisationFiles)
		{
			spdlog::info("Adding mod localisation file {}", localisationFile);
			AddLocalisationFile(g_pVguiLocalize, localisationFile.c_str(), pathId);
		}
	}

	loadModLocalisationFiles = true;

	return ret;
}

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