-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathConfig.h
148 lines (110 loc) · 4.9 KB
/
Config.h
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#pragma once
class CKeyValueConfig
{
public:
CKeyValueConfig(const char *filepath = "");
virtual ~CKeyValueConfig();
void Destroy();
bool Load();
bool Load(const char *filepath);
const char *GetValue(const char *valuename, const char *defaultvalue = "");
const char *GetConfigPath() { return m_strFile.c_str(); }
private:
virtual void PostLoad() { }
std::string m_strFile;
std::map<std::string, std::string> m_KeyValues;
};
class CPhatACServerConfig : public CKeyValueConfig
{
public:
CPhatACServerConfig(const char *filepath = "");
virtual ~CPhatACServerConfig() override;
unsigned long BindIP() { return m_BindIP; }
unsigned int BindPort() { return m_BindPort; }
const char *DatabaseIP() { return m_DatabaseIP.c_str(); }
unsigned int DatabasePort() { return m_DatabasePort; }
const char *DatabaseUsername() { return m_DatabaseUsername.c_str(); }
const char *DatabasePassword() { return m_DatabasePassword.c_str(); }
const char *DatabaseName() { return m_DatabaseName.c_str(); }
const char *WorldName() { return m_WorldName.c_str(); }
const char *WelcomePopup() { return m_WelcomePopup.c_str(); }
const char *WelcomeMessage() { return m_WelcomeMessage.c_str(); }
virtual bool FastTick() { return m_bFastTick; }
virtual bool HardcoreMode() { return m_bHardcoreMode; }
virtual bool HardcoreModePlayersOnly() { return m_bHardcoreModePlayersOnly; }
virtual bool PKOnly() { return m_bPKOnly; }
virtual bool ColoredSentinels() { return m_bColoredSentinels; }
virtual bool SpawnLandscape() { return m_bSpawnLandscape; }
virtual bool SpawnStaticCreatures() { return m_bSpawnStaticCreatures; }
virtual bool EverythingUnlocked() { return m_bEverythingUnlocked; }
virtual bool TownCrierBuffs() { return m_bTownCrierBuffs; }
virtual bool EnableTeleCommands() { return m_bEnableTeleCommands; }
virtual bool EnableXPCommands() { return m_bEnableXPCommands; }
virtual bool EnableAttackableCommand() { return m_bEnableAttackableCommand; }
virtual bool EnableGodlyCommand() { return m_bEnableGodlyCommand; }
virtual double GetMultiplierForQuestTime(int questTime);
virtual int UseMultiplierForQuestTime(int questTime);
virtual double KillXPMultiplier() { return m_fKillXPMultiplier; }
virtual double RewardXPMultiplier() { return m_fRewardXPMultiplier; }
virtual double DropRateMultiplier() { return m_fDropRateMultiplier; }
virtual bool AutoCreateAccounts() { return m_bAutoCreateAccounts; }
virtual unsigned int MaxDormantLandblocks() { return m_MaxDormantLandblocks; }
virtual unsigned int DormantLandblockCleanupTime() { return m_DormantLandblockCleanupTime; }
virtual bool ShowLogins() { return m_bShowLogins; }
virtual bool SpeedHackKicking() { return m_bSpeedHackKicking; }
virtual bool ShowDeathMessagesGlobally() { return m_bShowDeathMessagesGlobally; }
virtual bool ShowPlayerDeathMessagesGlobally() { return m_bShowPlayerDeathMessagesGlobally; }
virtual const char *HoltburgStartPosition() { return m_HoltburgStartPosition.c_str(); }
virtual const char *YaraqStartPosition() { return m_YaraqStartPosition.c_str(); }
virtual const char *ShoushiStartPosition() { return m_ShoushiStartPosition.c_str(); }
virtual const char *SanamarStartPosition() { return m_SanamarStartPosition.c_str(); }
virtual int PKRespiteTime() { return m_PKRespiteTime; }
protected:
virtual void PostLoad() override;
unsigned long m_BindIP = 0;
unsigned int m_BindPort = 0;
std::string m_DatabaseIP;
unsigned int m_DatabasePort = 0;
std::string m_DatabaseUsername;
std::string m_DatabasePassword;
std::string m_DatabaseName;
std::string m_WorldName;
std::string m_WelcomePopup;
std::string m_WelcomeMessage;
bool m_bFastTick = false;
bool m_bHardcoreMode = false;
bool m_bHardcoreModePlayersOnly = false;
bool m_bPKOnly = false;
bool m_bColoredSentinels = false;
bool m_bSpawnLandscape = true;
bool m_bSpawnStaticCreatures = true;
bool m_bEverythingUnlocked = true;
bool m_bTownCrierBuffs = true;
bool m_bEnableTeleCommands = false;
bool m_bEnableXPCommands = false;
bool m_bEnableAttackableCommand = false;
bool m_bEnableGodlyCommand = false;
double m_fQuestMultiplierLessThan1Day = 1.0;
double m_fQuestMultiplier1Day = 1.0;
double m_fQuestMultiplier3Day = 1.0;
double m_fQuestMultiplier7Day = 1.0;
double m_fQuestMultiplier14Day = 1.0;
double m_fQuestMultiplier30Day = 1.0;
double m_fQuestMultiplier60Day = 1.0;
double m_fKillXPMultiplier = 1.0;
double m_fRewardXPMultiplier = 1.0;
double m_fDropRateMultiplier = 4.0;
bool m_bAutoCreateAccounts = true;
unsigned int m_MaxDormantLandblocks = 1000;
unsigned int m_DormantLandblockCleanupTime = 1800;
bool m_bShowLogins = true;
bool m_bSpeedHackKicking = true;
bool m_bShowDeathMessagesGlobally = false;
bool m_bShowPlayerDeathMessagesGlobally = false;
std::string m_HoltburgStartPosition;
std::string m_YaraqStartPosition;
std::string m_ShoushiStartPosition;
std::string m_SanamarStartPosition;
int m_PKRespiteTime = 300;
};
extern CPhatACServerConfig *g_pConfig;