-
Notifications
You must be signed in to change notification settings - Fork 361
/
ElunaConfig.cpp
111 lines (94 loc) · 3.07 KB
/
ElunaConfig.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*
* Copyright (C) 2010 - 2024 Eluna Lua Engine <https://elunaluaengine.github.io/>
* This program is free software licensed under GPL version 3
* Please see the included DOCS/LICENSE.md for more information
*/
#if defined ELUNA_TRINITY
#include "Config.h"
#else
#include "Config/Config.h"
#endif
#include "ElunaConfig.h"
ElunaConfig::ElunaConfig()
{
}
ElunaConfig* ElunaConfig::instance()
{
static ElunaConfig instance;
return &instance;
}
ElunaConfig::~ElunaConfig()
{
}
void ElunaConfig::Initialize()
{
// Load bools
SetConfig(CONFIG_ELUNA_ENABLED, "Eluna.Enabled", true);
SetConfig(CONFIG_ELUNA_COMPATIBILITY_MODE, "Eluna.CompatibilityMode", false);
SetConfig(CONFIG_ELUNA_TRACEBACK, "Eluna.TraceBack", false);
SetConfig(CONFIG_ELUNA_SCRIPT_RELOADER, "Eluna.ScriptReloader", false);
// Load strings
SetConfig(CONFIG_ELUNA_SCRIPT_PATH, "Eluna.ScriptPath", "lua_scripts");
SetConfig(CONFIG_ELUNA_ONLY_ON_MAPS, "Eluna.OnlyOnMaps", "");
SetConfig(CONFIG_ELUNA_REQUIRE_PATH_EXTRA, "Eluna.RequirePaths", "");
SetConfig(CONFIG_ELUNA_REQUIRE_CPATH_EXTRA, "Eluna.RequireCPaths", "");
// Call extra functions
TokenizeAllowedMaps();
}
void ElunaConfig::SetConfig(ElunaConfigBoolValues index, char const* fieldname, bool defvalue)
{
#if defined ELUNA_TRINITY
SetConfig(index, sConfigMgr->GetBoolDefault(fieldname, defvalue));
#else
SetConfig(index, sConfig.GetBoolDefault(fieldname, defvalue));
#endif
}
void ElunaConfig::SetConfig(ElunaConfigStringValues index, char const* fieldname, std::string defvalue)
{
#if defined ELUNA_TRINITY
SetConfig(index, sConfigMgr->GetStringDefault(fieldname, defvalue));
#elif defined ELUNA_CMANGOS
SetConfig(index, sConfig.GetStringDefault(fieldname, defvalue));
#else
SetConfig(index, sConfig.GetStringDefault(fieldname, defvalue.c_str()));
#endif
}
bool ElunaConfig::IsElunaEnabled()
{
return GetConfig(CONFIG_ELUNA_ENABLED);
}
bool ElunaConfig::IsElunaCompatibilityMode()
{
return GetConfig(CONFIG_ELUNA_COMPATIBILITY_MODE);
}
bool ElunaConfig::ShouldMapLoadEluna(uint32 id)
{
// if the set is empty (all maps), return true
if (m_allowedMaps.empty())
return true;
// Check if the map ID is in the set
return (m_allowedMaps.find(id) != m_allowedMaps.end());
}
void ElunaConfig::TokenizeAllowedMaps()
{
// clear allowed maps
m_allowedMaps.clear();
// read the configuration value into stringstream
std::istringstream maps(GetConfig(CONFIG_ELUNA_ONLY_ON_MAPS));
// tokenize maps and add to allowed maps
std::string mapIdStr;
while (std::getline(maps, mapIdStr, ','))
{
// remove spaces
mapIdStr.erase(std::remove_if(mapIdStr.begin(), mapIdStr.end(), [](char c) {
return std::isspace(static_cast<unsigned char>(c));
}), mapIdStr.end());
try {
uint32 mapId = std::stoul(mapIdStr);
m_allowedMaps.emplace(mapId);
}
catch (std::exception&) {
ELUNA_LOG_ERROR("[Eluna]: Error tokenizing Eluna.OnlyOnMaps, invalid config value '%s'", mapIdStr.c_str());
}
}
}