summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-25 15:55:06 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-25 15:55:06 +0300
commit8d4da1c2a0d22f941b0818a46710b7f347b5cd01 (patch)
tree779c7fd3ead59bf1d04aca37079a95891ecc8b51 /src
parent496aac0aa96676ed944bc123fc24eac33e8b3542 (diff)
downloadplus-8d4da1c2a0d22f941b0818a46710b7f347b5cd01.tar.gz
plus-8d4da1c2a0d22f941b0818a46710b7f347b5cd01.tar.bz2
plus-8d4da1c2a0d22f941b0818a46710b7f347b5cd01.tar.xz
plus-8d4da1c2a0d22f941b0818a46710b7f347b5cd01.zip
Add into paths.xml chars for gm command and char gm command.
Diffstat (limited to 'src')
-rw-r--r--src/client.cpp8
-rw-r--r--src/client.h2
-rw-r--r--src/defaults.cpp2
-rw-r--r--src/dyetool/client.cpp6
-rw-r--r--src/dyetool/client.h2
-rw-r--r--src/settings.h4
6 files changed, 24 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index b0e133ca1..e9869e804 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -277,6 +277,7 @@ void Client::gameInit()
Net::loadIgnorePackets();
paths.setDefaultValues(getPathsDefaults());
initFeatures();
+ initPaths();
logger->log("init 4");
logger->setDebugLog(config.getBoolValue("debugLog"));
logger->setReportUnimplimented(config.getBoolValue("unimplimentedLog"));
@@ -1249,6 +1250,7 @@ int Client::gameExec()
logger->log("Init paths");
paths.init("paths.xml", UseResman_true);
paths.setDefaultValues(getPathsDefaults());
+ initPaths();
if (!SpriteReference::Empty)
{
SpriteReference::Empty = new SpriteReference(
@@ -1792,6 +1794,12 @@ void Client::initFeatures()
settings.fixDeadAnimation = features.getBoolValue("fixDeadAnimation");
}
+void Client::initPaths()
+{
+ settings.gmCommandSymbol = paths.getStringValue("gmCommandSymbol");
+ settings.gmCharCommandSymbol = paths.getStringValue("gmCharCommandSymbol");
+}
+
void Client::initTradeFilter()
{
const std::string tradeListName =
diff --git a/src/client.h b/src/client.h
index 98488aace..ab168140c 100644
--- a/src/client.h
+++ b/src/client.h
@@ -111,6 +111,8 @@ class Client final : public ConfigListener,
static void initFeatures();
+ static void initPaths();
+
void gameClear();
void testsClear();
diff --git a/src/defaults.cpp b/src/defaults.cpp
index 6e985e2d2..823265ea0 100644
--- a/src/defaults.cpp
+++ b/src/defaults.cpp
@@ -630,6 +630,8 @@ DefaultsData* getPathsDefaults()
AddDEF("inactivebadge", "inactive.xml");
AddDEF("awaybadge", "away.xml");
AddDEF("cutInsDir", "graphics/cutins");
+ AddDEF("gmCommandSymbol", "@");
+ AddDEF("gmCharCommandSymbol", "#");
AddDEF("palettesDir", "");
AddDEF("defaultPaletteFile", "palette.gpl");
diff --git a/src/dyetool/client.cpp b/src/dyetool/client.cpp
index 727bfecc4..939239d72 100644
--- a/src/dyetool/client.cpp
+++ b/src/dyetool/client.cpp
@@ -157,6 +157,7 @@ void Client::gameInit()
ConfigManager::backupConfig("config.xml");
ConfigManager::initConfiguration();
paths.setDefaultValues(getPathsDefaults());
+ initPaths();
logger->log("init 4");
logger->setDebugLog(config.getBoolValue("debugLog"));
logger->setReportUnimplimented(config.getBoolValue("unimplimentedLog"));
@@ -622,6 +623,7 @@ int Client::gameExec()
logger->log("Init paths");
paths.init("paths.xml", UseResman_true);
paths.setDefaultValues(getPathsDefaults());
+ initPaths();
TranslationManager::loadCurrentLang();
if (desktop)
@@ -750,3 +752,7 @@ bool Client::isTmw()
}
return false;
}
+
+void Client::initPaths()
+{
+}
diff --git a/src/dyetool/client.h b/src/dyetool/client.h
index 9ca3c8d0c..4a79a303e 100644
--- a/src/dyetool/client.h
+++ b/src/dyetool/client.h
@@ -91,6 +91,8 @@ class Client final : public ActionListener
static void initGraphics();
+ static void initPaths();
+
void gameClear();
void testsClear();
diff --git a/src/settings.h b/src/settings.h
index 96e77e06f..21b5f2e1d 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -50,6 +50,8 @@ class Settings final
logFileName(),
rootDir(),
windowCaption(),
+ gmCommandSymbol("@"),
+ gmCharCommandSymbol("#"),
updateMirrors(),
options(),
guiAlpha(1.0F),
@@ -97,6 +99,8 @@ class Settings final
std::string logFileName;
std::string rootDir;
std::string windowCaption;
+ std::string gmCommandSymbol;
+ std::string gmCharCommandSymbol;
std::vector<std::string> updateMirrors;
Options options;
float guiAlpha;