summaryrefslogtreecommitdiff
path: root/src/defaults.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/defaults.cpp')
-rw-r--r--src/defaults.cpp742
1 files changed, 0 insertions, 742 deletions
diff --git a/src/defaults.cpp b/src/defaults.cpp
deleted file mode 100644
index 1dae4ed29..000000000
--- a/src/defaults.cpp
+++ /dev/null
@@ -1,742 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2010 The Mana Developers
- * Copyright (C) 2011-2017 The ManaPlus Developers
- *
- * This file is part of The ManaPlus Client.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "defaults.h"
-
-#include "configuration.h"
-#include "graphicsmanager.h"
-#include "variabledata.h"
-
-#include "being/beingspeech.h"
-
-#include "const/render/graphics.h"
-
-#include "enums/screendensity.h"
-
-#include "enums/being/badgedrawtype.h"
-#include "enums/being/visiblename.h"
-#include "enums/being/visiblenamepos.h"
-
-#include "enums/input/inputaction.h"
-
-#include "enums/particle/particlephysics.h"
-
-#include "render/graphics.h"
-
-#include "const/net/net.h"
-
-#ifndef USE_SDL2
-PRAGMA48(GCC diagnostic push)
-PRAGMA48(GCC diagnostic ignored "-Wshadow")
-#include <SDL_keyboard.h>
-PRAGMA48(GCC diagnostic pop)
-#endif // USE_SDL2
-
-#include "debug.h"
-
-VariableData* createData(const int defData)
-{
- return new IntData(defData);
-}
-
-VariableData* createData(const double defData)
-{
- return new FloatData(defData);
-}
-
-VariableData* createData(const float defData)
-{
- return new FloatData(defData);
-}
-
-VariableData* createData(const std::string &defData)
-{
- return new StringData(defData);
-}
-
-VariableData* createData(const char *const defData)
-{
- return new StringData(defData);
-}
-
-VariableData* createData(const bool defData)
-{
- return new BoolData(defData);
-}
-
-#define AddDEF(key, value) \
- configData.insert(std::pair<std::string, VariableData*> \
- (key, createData(value)));
-
-void setConfigDefaults(Configuration &cfg)
-{
- logger->log("Set config default values to configuration %s",
- cfg.getFileName().c_str());
- cfg.cleanDefaults();
- DefaultsData &configData = cfg.getDefaultValues();
- AddDEF("OverlayDetail", 2);
- AddDEF("speechBubbleAlpha", 1.0F);
- AddDEF("MostUsedServerName0", "server.themanaworld.org");
- AddDEF("visiblenames", VisibleName::Show);
- AddDEF("visiblenamespos", VisibleNamePos::Bottom);
- AddDEF("speech", CAST_S32(BeingSpeech::NO_NAME_IN_BUBBLE));
- AddDEF("showgender", true);
- AddDEF("showlevel", false);
- AddDEF("showMonstersTakedDamage", true);
- AddDEF("highlightAttackRange", false);
- AddDEF("highlightMapPortals", true);
- AddDEF("highlightMonsterAttackRange", false);
- AddDEF("chatMaxCharLimit", 512);
- AddDEF("lowTraffic", true);
- AddDEF("invertMoveDirection", 0);
- AddDEF("crazyMoveType", 1);
- AddDEF("attackWeaponType", 1);
- AddDEF("quickDropCounter", 1);
- AddDEF("pickUpType", 5);
- AddDEF("magicAttackType", 0);
- AddDEF("attackType", 2);
- AddDEF("targetingType", 0);
- AddDEF("followMode", 0);
- AddDEF("imitationMode", 0);
- AddDEF("syncPlayerMove", true);
- AddDEF("syncPlayerMoveDistance", 5);
- AddDEF("drawPath", false);
- AddDEF("moveToTargetType", 10);
- AddDEF("crazyMoveProgram", "mumrsonmdmlon");
- AddDEF("disableGameModifiers", true);
- AddDEF("targetDeadPlayers", false);
- AddDEF("afkMessage", "I am away from keyboard.");
- AddDEF("afkFormat", 0);
- AddDEF("particleMaxCount", 3000);
- AddDEF("particleFastPhysics", CAST_S32(ParticlePhysics::Normal));
- AddDEF("particleEmitterSkip", 1);
- AddDEF("particleeffects", true);
- AddDEF("mapparticleeffects", true);
- AddDEF("opengl", 0);
-#ifdef ANDROID
- AddDEF("screenwidth", 0);
- AddDEF("screenheight", 0);
- AddDEF("showScreenJoystick", true);
- AddDEF("showScreenButtons", true);
- AddDEF("showBeingPopup", false);
- AddDEF("mouseDirectionMove", true);
- AddDEF("showScreenKeyboard", true);
- AddDEF("fpslimit", 100);
- AddDEF("showChatColorsList", false);
- AddDEF("customcursor", false);
- AddDEF("showDidYouKnow", false);
- AddDEF("longmouseclick", true);
-#else // ANDROID
-
- AddDEF("screenwidth", defaultScreenWidth);
- AddDEF("screenheight", defaultScreenHeight);
- AddDEF("showScreenJoystick", false);
- AddDEF("showScreenButtons", false);
- AddDEF("showBeingPopup", true);
- AddDEF("mouseDirectionMove", false);
- AddDEF("showScreenKeyboard", false);
- AddDEF("fpslimit", 60);
- AddDEF("showChatColorsList", true);
- AddDEF("customcursor", true);
- AddDEF("showDidYouKnow", true);
- AddDEF("longmouseclick", false);
-#endif // ANDROID
-
- AddDEF("theme", "jewelry");
- AddDEF("showEmotesButton", true);
- AddDEF("screen", false);
- AddDEF("hwaccel", false);
- AddDEF("sound", false);
- AddDEF("sfxVolume", 100);
- AddDEF("musicVolume", 60);
- AddDEF("remember", false);
- AddDEF("username", "");
- AddDEF("lastCharacter", "");
- AddDEF("altfpslimit", 5);
- AddDEF("updatehost", "");
- AddDEF("screenshotDirectory3", "");
- AddDEF("useScreenshotDirectorySuffix", true);
- AddDEF("screenshotDirectorySuffix", "");
- AddDEF("EnableSync", false);
- AddDEF("joystickEnabled", false);
- AddDEF("upTolerance", 100);
- AddDEF("downTolerance", 100);
- AddDEF("leftTolerance", 100);
- AddDEF("rightTolerance", 100);
- AddDEF("logNpcInGui", true);
- AddDEF("download-music", true);
- AddDEF("guialpha", 0.8F);
- AddDEF("ChatLogLength", 0);
- AddDEF("enableChatLog", true);
- AddDEF("whispertab", true);
- AddDEF("showownname", true);
- AddDEF("showpickupparticle", true);
- AddDEF("showpickupchat", true);
- AddDEF("ReturnToggles", false);
- AddDEF("ScrollLaziness", 16);
- AddDEF("ScrollRadius", 0);
- AddDEF("ScrollCenterOffsetX", 0);
- AddDEF("ScrollCenterOffsetY", 0);
- AddDEF("enableMumble", false);
- AddDEF("playBattleSound", true);
- AddDEF("playGuiSound", true);
- AddDEF("playMusic", true);
- AddDEF("packetcounters", true);
- AddDEF("safemode", false);
- AddDEF("font", "fonts/dejavusans.ttf");
- AddDEF("boldFont", "fonts/dejavusans-bold.ttf");
- AddDEF("particleFont", "fonts/dejavusans.ttf");
- AddDEF("helpFont", "fonts/dejavusansmono.ttf");
- AddDEF("secureFont", "fonts/dejavusansmono.ttf");
- AddDEF("japanFont", "fonts/mplus-1p-regular.ttf");
- AddDEF("chinaFont", "fonts/wqy-microhei.ttf");
- AddDEF("npcFont", "fonts/dejavusans.ttf");
- AddDEF("showBackground", true);
- AddDEF("enableTradeTab", true);
- AddDEF("cyclePlayers", true);
- AddDEF("cycleMonsters", true);
- AddDEF("cycleNPC", true);
- AddDEF("floorItemsHighlight", true);
- AddDEF("enableBotCheker", true);
- AddDEF("removeColors", true);
- AddDEF("showMagicInDebug", true);
- AddDEF("allowCommandsInChatTabs", true);
- AddDEF("serverMsgInDebug", true);
- AddDEF("hideShopMessages", true);
- AddDEF("showChatHistory", true);
- AddDEF("chatMaxLinesLimit", 40);
- AddDEF("chatColor", 0);
- AddDEF("showJob", true);
- AddDEF("updateOnlineList", true);
- AddDEF("targetOnlyReachable", true);
- AddDEF("errorsInDebug", true);
- AddDEF("tradebot", true);
- AddDEF("debugLog", false);
- AddDEF("unimplimentedLog", false);
- AddDEF("drawHotKeys", true);
- AddDEF("serverAttack", true);
- AddDEF("autofixPos", false);
- AddDEF("alphaCache", true);
- AddDEF("attackMoving", true);
- AddDEF("attackNext", false);
- AddDEF("quickStats", true);
- AddDEF("warpParticle", false);
- AddDEF("autoShop", false);
- AddDEF("enableBattleTab", false);
- AddDEF("showBattleEvents", false);
- AddDEF("showMobHP", true);
- AddDEF("showOwnHP", true);
- AddDEF("usePersistentIP", true);
- AddDEF("showJobExp", true);
- AddDEF("showExtMinimaps", false);
- AddDEF("hideChatInput", true);
- AddDEF("enableAttackFilter", true);
- AddDEF("enablePickupFilter", true);
- AddDEF("securetrades", true);
- AddDEF("unsecureChars", "IO0@#$");
- AddDEF("currentTip", 0);
- AddDEF("useLocalTime", false);
- AddDEF("enableAdvert", true);
- AddDEF("enableMapReduce", true);
- AddDEF("showPlayersStatus", true);
- AddDEF("beingopacity", false);
- AddDEF("adjustPerfomance", true);
- AddDEF("enableAlphaFix", false);
- AddDEF("disableAdvBeingCaching", true);
- AddDEF("disableBeingCaching", false);
- AddDEF("enableReorderSprites", true);
- AddDEF("showip", false);
- AddDEF("seflMouseHeal", true);
- AddDEF("enableLazyScrolling", false);
- AddDEF("extMouseTargeting", true);
- AddDEF("showMVP", false);
- AddDEF("pvpAttackType", 0);
- AddDEF("lang", "");
- AddDEF("selectedJoystick", 0);
- AddDEF("useInactiveJoystick", false);
- AddDEF("testInfo", "");
- AddDEF("enableresize", true);
- AddDEF("noframe", false);
- AddDEF("groupFriends", true);
- AddDEF("grabinput", false);
- AddDEF("usefbo", false);
- AddDEF("gamma", 1);
- AddDEF("vsync", 0);
- AddDEF("enableBuggyServers", true);
- AddDEF("soundwhisper", "newmessage");
- AddDEF("soundhighlight", "reminder");
- AddDEF("soundglobal", "email");
- AddDEF("sounderror", "error");
- AddDEF("soundtrade", "start");
- AddDEF("soundinfo", "notify");
- AddDEF("soundrequest", "attention");
- AddDEF("soundguild", "newmessage");
- AddDEF("soundshowwindow", "page");
- AddDEF("soundhidewindow", "book");
- AddDEF("autohideButtons", true);
- AddDEF("autohideChat", false);
- AddDEF("downloadProxy", "");
- AddDEF("downloadProxyType", 0);
- AddDEF("downloadProxyTunnel", false);
- AddDEF("blur", false);
-#if defined(WIN32) || defined(__APPLE__)
- AddDEF("centerwindow", true);
-#else // defined(WIN32) || defined(__APPLE__)
-
- AddDEF("centerwindow", false);
-#endif // defined(WIN32) || defined(__APPLE__)
-
- AddDEF("audioFrequency", 44100);
- AddDEF("audioChannels", 2);
-#ifdef USE_SDL2
- AddDEF("repeateDelay", 500);
- AddDEF("repeateInterval", 30);
- AddDEF("repeateInterval2", 500);
-#else // USE_SDL2
-
- AddDEF("repeateDelay", SDL_DEFAULT_REPEAT_DELAY);
- AddDEF("repeateInterval", SDL_DEFAULT_REPEAT_INTERVAL);
- AddDEF("repeateInterval2", SDL_DEFAULT_REPEAT_DELAY);
-#endif // USE_SDL2
-
- AddDEF("compresstextures", 0);
- AddDEF("rectangulartextures", false);
- AddDEF("networksleep", 0);
- AddDEF("newtextures", true);
- AddDEF("videodetected", false);
- AddDEF("hideErased", false);
- AddDEF("enableDelayedAnimations", true);
- AddDEF("enableCompoundSpriteDelay", true);
-#ifdef ANDROID
- AddDEF("useAtlases", false);
-#else // ANDROID
-
- AddDEF("useAtlases", true);
-#endif // ANDROID
-
- AddDEF("useTextureSampler", false);
- AddDEF("ministatussaved", 0);
- AddDEF("allowscreensaver", false);
- AddDEF("debugOpenGL", 0);
- AddDEF("protectChatFocus", true);
-#if defined(__APPLE__)
- AddDEF("enableGamma", false);
-#else // defined(__APPLE__)
-
- AddDEF("enableGamma", true);
-#endif // defined(__APPLE__)
-
- AddDEF("logInput", false);
- AddDEF("highlightWords", "");
- AddDEF("globalsFilter", "Sagatha");
- AddDEF("selfMouseHeal", true);
- AddDEF("serverslistupdate", "");
- AddDEF("fadeoutmusic", true);
- AddDEF("screenActionKeyboard", CAST_S32(
- InputAction::SHOW_KEYBOARD));
- AddDEF("screenActionButton0", CAST_S32(InputAction::TALK));
- AddDEF("screenActionButton1", CAST_S32(
- InputAction::TARGET_ATTACK));
- AddDEF("screenActionButton2", CAST_S32(InputAction::PICKUP));
- AddDEF("screenActionButton3", CAST_S32(InputAction::STOP_SIT));
- AddDEF("screenActionButton4", CAST_S32(InputAction::TARGET_NPC));
- AddDEF("screenActionButton5", CAST_S32(
- InputAction::WINDOW_STATUS));
- AddDEF("screenActionButton6", CAST_S32(
- InputAction::WINDOW_INVENTORY));
- AddDEF("screenActionButton7", CAST_S32(InputAction::WINDOW_SKILL));
- AddDEF("screenActionButton8", CAST_S32(
- InputAction::WINDOW_SOCIAL));
- AddDEF("screenActionButton9", CAST_S32(InputAction::WINDOW_DEBUG));
- AddDEF("screenActionButton10", CAST_S32(
- InputAction::CHANGE_TRADE));
- AddDEF("screenActionButton11", CAST_S32(InputAction::DIRECT_DOWN));
- AddDEF("screenButtonsFormat", 0);
- AddDEF("autoresizeminimaps", false);
- AddDEF("showGuildOnline", false);
- AddDEF("showPartyOnline", false);
- AddDEF("enableGmTab", true);
- AddDEF("gamecount", 0);
- AddDEF("rated", false);
- AddDEF("weightMsg", true);
- AddDEF("enableLangTab", true);
- AddDEF("showAllLang", false);
- AddDEF("moveNames", false);
- AddDEF("uselonglivesprites", false);
- AddDEF("uselonglivesounds", true);
- AddDEF("screenDensity", 0);
- AddDEF("cfgver", 14);
- AddDEF("enableDebugLog", false);
- AddDEF("doubleClick", true);
- AddDEF("useDiagonalSpeed", true);
- AddDEF("protectedItems", "");
- AddDEF("inventorySortOrder", 0);
- AddDEF("storageSortOrder", 0);
- AddDEF("cartSortOrder", 0);
- AddDEF("buySortOrder", 0);
- AddDEF("showmotd", false);
- AddDEF("playMapAnimations", true);
- AddDEF("usepets", true);
- AddDEF("scale", 1);
- AddDEF("addwatermark", true);
- AddDEF("hidesupport", false);
- AddDEF("showserverpos", false);
- AddDEF("textureSize", "1024,1024,1024,1024,1024,1024");
- AddDEF("ignorelogpackets", "");
- AddDEF("disableLoggingInGame", false);
- AddDEF("sellShopName", "unnamed");
- AddDEF("showBadges", BadgeDrawType::Top);
- AddDEF("tradescreenshot", false);
- AddDEF("skillAutotarget", true);
- AddDEF("logPlayerActions", false);
- AddDEF("enableGuiOpacity", true);
- AddDEF("enableTradeFilter", true);
- AddDEF("enableIdCollecting", false);
- AddDEF("checkOpenGLVersion", true);
- AddDEF("openglContext", false);
- AddDEF("allowMoveByMouse", true);
- AddDEF("enableDSA", true);
- AddDEF("blockAltTab", true);
- AddDEF("sdlLogLevel", 0);
- AddDEF("allowHighDPI", false);
- AddDEF("sdlDriver", "");
- AddDEF("parallelAudioChannels", 16);
-}
-
-void setConfigDefaults2(Configuration &cfg)
-{
- logger->log("Add config default values to configuration %s",
- cfg.getFileName().c_str());
- DefaultsData &configData = cfg.getDefaultValues();
- const int density = graphicsManager.getDensity();
- int size = 12;
- int buttonSize = 1;
- switch (density)
- {
- case DENSITY_LOW:
- case DENSITY_MEDIUM:
- buttonSize = 1;
- break;
- case DENSITY_TV:
- size = 14;
- buttonSize = 1;
- break;
- case DENSITY_HIGH:
- size = 16;
- buttonSize = 2;
- break;
- case DENSITY_XHIGH:
- size = 18;
- buttonSize = 3;
- break;
- case DENSITY_XXHIGH:
- size = 20;
- buttonSize = 3;
- break;
- default:
- break;
- }
- AddDEF("fontSize", size);
- AddDEF("npcfontSize", size + 1);
- if (mainGraphics->getHeight() < 480)
- {
- AddDEF("screenButtonsSize", 0);
- AddDEF("screenJoystickSize", 0);
- }
- else
- {
- AddDEF("screenButtonsSize", buttonSize);
- AddDEF("screenJoystickSize", buttonSize);
- }
-}
-
-void setBrandingDefaults(Configuration &cfg)
-{
- logger->log("Set branding default values to configuration %s",
- cfg.getFileName().c_str());
- cfg.cleanDefaults();
- DefaultsData &configData = cfg.getDefaultValues();
- AddDEF("wallpapersPath", "");
- AddDEF("wallpapersFile", "");
- AddDEF("appName", "ManaPlus");
- AddDEF("appIcon", "icons/manaplus");
- AddDEF("loginMusic", "keprohm.ogg");
- AddDEF("defaultServer", "");
- AddDEF("defaultPort", DEFAULT_PORT);
- AddDEF("defaultServerType", "tmwathena");
- AddDEF("onlineServerList",
- "http://manaplus.org/serverlist.xml");
- AddDEF("onlineServerList2",
- "http://www.manaplus.org/serverlist.xml");
- AddDEF("onlineServerFile", "serverlistplus.xml");
- AddDEF("appShort", "mana");
- AddDEF("screenshots", "ManaPlus");
- AddDEF("defaultUpdateHost", "");
- AddDEF("helpPath", "");
- AddDEF("tagsPath", "");
- AddDEF("theme", "");
- AddDEF("font", "fonts/dejavusans.ttf");
- AddDEF("boldFont", "fonts/dejavusans-bold.ttf");
- AddDEF("particleFont", "fonts/dejavusans.ttf");
- AddDEF("helpFont", "fonts/dejavusansmono.ttf");
- AddDEF("secureFont", "fonts/dejavusansmono.ttf");
- AddDEF("npcFont", "fonts/dejavusans.ttf");
- AddDEF("japanFont", "fonts/mplus-1p-regular.ttf");
- AddDEF("chinaFont", "fonts/wqy-microhei.ttf");
-
- AddDEF("guiPath", "graphics/gui/");
- AddDEF("guiThemePath", "themes/");
- AddDEF("fontsPath", "fonts/");
-
- AddDEF("systemsounds", "sfx/system/");
-
- AddDEF("wallpaperFile", "");
- AddDEF("dataPath", "");
-
- AddDEF("androidDownloadUrl", "https://play.google.com/store/apps/details"
- "?id=org.evolonline.beta.manaplus");
- AddDEF("androidDownloadText", "Google Play");
- AddDEF("otherDownloadUrl", "http://manaplus.org/");
- AddDEF("otherDownloadText", "http://manaplus.org/");
- AddDEF("windowsDownloadUrl", "http://download.manaplus.org/"
- "manaplus/download/manaplus-win32.exe");
- AddDEF("windowsDownloadText", "download here");
- AddDEF("updateMirror1", "http://manaplus.org/update/");
- AddDEF("updateMirror2", "http://www.manaplus.org/update/");
- AddDEF("updateMirror3", "http://www2.manaplus.org/update/");
- AddDEF("updateMirror4", "http://www3.manaplus.org/update/");
- AddDEF("updateMirror5", "");
- AddDEF("updateMirror6", "");
- AddDEF("updateMirror7", "");
-}
-
-void setPathsDefaults(Configuration &cfg)
-{
- logger->log("Set path default values to configuration %s",
- cfg.getFileName().c_str());
- cfg.cleanDefaults();
- DefaultsData &configData = cfg.getDefaultValues();
- AddDEF("itemIcons", "graphics/items/");
- AddDEF("unknownItemFile", "unknown-item.png");
- AddDEF("sprites", "graphics/sprites/");
- AddDEF("spriteErrorFile", "error.xml");
- AddDEF("guiIcons", "graphics/guiicons/");
- AddDEF("shaders", "graphics/shaders/");
- AddDEF("help", "help/");
- AddDEF("tags", "help/idx/");
- AddDEF("badges", "graphics/badges/");
-
- AddDEF("simpleVertexShader", "simple_vertex.glsl");
- AddDEF("simpleFragmentShader", "simple_frag.glsl");
- AddDEF("gles2VertexShader", "gles2_vertex.glsl");
- AddDEF("gles2FragmentShader", "gles2_frag.glsl");
-
- AddDEF("particles", "graphics/particles/");
- AddDEF("portalEffectFile", "warparea.particle.xml");
- AddDEF("effectId", -1);
- AddDEF("hitEffectId", 26);
- AddDEF("missEffectId", -1);
- AddDEF("criticalHitEffectId", 28);
- AddDEF("afkEffectId", -1);
- AddDEF("newQuestEffectId", -1);
- AddDEF("completeQuestEffectId", -1);
- AddDEF("skillLevelUpEffectId", -1);
- AddDEF("skillRemoveEffectId", -1);
- AddDEF("skillSrcEffectId", -1);
- AddDEF("skillDstEffectId", -1);
- AddDEF("skillCastingSrcEffectId", -1);
- AddDEF("skillCastingDstEffectId", -1);
- AddDEF("skillCastingGroundEffectId", -1);
- AddDEF("skillHitEffectId", -1);
- AddDEF("skillMissEffectId", -1);
-
- AddDEF("spiritEffectId", -1);
-
- AddDEF("minimaps", "graphics/minimaps/");
- AddDEF("maps", "maps/");
- AddDEF("sfx", "sfx/");
- AddDEF("music", "music/");
-
- AddDEF("wallpapers", "graphics/images/");
- AddDEF("wallpaperFile", "login_wallpaper.png");
-
- AddDEF("statusEffectsFile", "status-effects.xml");
- AddDEF("statusEffectsPatchFile", "status-effects_patch.xml");
- AddDEF("statusEffectsPatchDir", "status-effects.d");
- AddDEF("effectsFile", "effects.xml");
- AddDEF("effectsPatchFile", "effects_patch.xml");
- AddDEF("effectsPatchDir", "effects.d");
- AddDEF("unitsFile", "units.xml");
- AddDEF("unitsPatchFile", "units_patch.xml");
- AddDEF("unitsPatchDir", "units.d");
- AddDEF("featuresFile", "features.xml");
- AddDEF("questsFile", "quests.xml");
- AddDEF("questsPatchFile", "quests_patch.xml");
- AddDEF("questsPatchDir", "quests.d");
- AddDEF("skillsFile", "skills.xml");
- AddDEF("skillsPatchFile", "skills_patch.xml");
- AddDEF("skillsPatchDir", "skills.d");
- AddDEF("skillsFile2", "ea-skills.xml");
- AddDEF("equipmentWindowFile", "equipmentwindow.xml");
- AddDEF("emotesFile", "emotes.xml");
- AddDEF("emotesPatchFile", "emotes_patch.xml");
- AddDEF("emotesPatchDir", "emotes.d");
- AddDEF("hairColorFile", "hair.xml");
- AddDEF("hairColorPatchFile", "hair_patch.xml");
- AddDEF("hairColorPatchDir", "hair.d");
- AddDEF("horsesFile", "horses.xml");
- AddDEF("horsesPatchFile", "horses_patch.xml");
- AddDEF("horsesPatchDir", "horses.d");
- AddDEF("itemColorsFile", "itemcolors.xml");
- AddDEF("itemColorsPatchFile", "itemcolors_patch.xml");
- AddDEF("itemColorsPatchDir", "itemcolors.d");
- AddDEF("charCreationFile", "charcreation.xml");
- AddDEF("soundsFile", "sounds.xml");
- AddDEF("soundsPatchFile", "sounds_patch.xml");
- AddDEF("soundsPatchDir", "sounds.d");
- AddDEF("itemsFile", "items.xml");
- AddDEF("itemsPatchFile", "items_patch.xml");
- AddDEF("itemsPatchDir", "items.d");
- AddDEF("itemFieldsFile", "itemfields.xml");
- AddDEF("itemFieldsPatchFile", "itemfields_patch.xml");
- AddDEF("itemFieldsPatchDir", "itemfields.d");
- AddDEF("itemOptionsFile", "itemoptions.xml");
- AddDEF("itemOptionsPatchFile", "itemoptions_patch.xml");
- AddDEF("itemOptionsPatchDir", "itemoptions.d");
- AddDEF("avatarsFile", "avatars.xml");
- AddDEF("avatarsPatchFile", "avatars_patch.xml");
- AddDEF("avatarsPatchDir", "avatars.d");
- AddDEF("modsFile", "mods.xml");
- AddDEF("modsPatchFile", "mods_patch.xml");
- AddDEF("modsPatchDir", "mods.d");
- AddDEF("npcsFile", "npcs.xml");
- AddDEF("npcsPatchFile", "npcs_patch.xml");
- AddDEF("npcsPatchDir", "npcs.d");
- AddDEF("petsFile", "pets.xml");
- AddDEF("petsPatchFile", "pets_patch.xml");
- AddDEF("petsPatchDir", "pets.d");
- AddDEF("monstersFile", "monsters.xml");
- AddDEF("monstersPatchFile", "monsters_patch.xml");
- AddDEF("monstersPatchDir", "monsters.d");
- AddDEF("mercenariesFile", "mercenaries.xml");
- AddDEF("mercenariesPatchFile", "mercenaries_patch.xml");
- AddDEF("mercenariesPatchDir", "mercenaries.d");
- AddDEF("homunculusesFile", "homunculuses.xml");
- AddDEF("homunculusesPatchFile", "homunculuses_patch.xml");
- AddDEF("homunculusesPatchDir", "homunculuses.d");
- AddDEF("skillUnitsFile", "skillunits.xml");
- AddDEF("skillUnitsPatchFile", "skillunits_patch.xml");
- AddDEF("skillUnitsPatchDir", "skillunits.d");
- AddDEF("elementalsFile", "elementals.xml");
- AddDEF("elementalsPatchFile", "elementals_patch.xml");
- AddDEF("elementalsPatchDir", "elementals.d");
- AddDEF("mapsRemapFile", "maps/remap.xml");
- AddDEF("mapsRemapPatchFile", "maps/remap_patch.xml");
- AddDEF("mapsRemapPatchDir", "maps/remap.d");
- AddDEF("mapsFile", "maps.xml");
- AddDEF("mapsPatchFile", "maps_patch.xml");
- AddDEF("mapsPatchDir", "maps.d");
- AddDEF("npcDialogsFile", "npcdialogs.xml");
- AddDEF("npcDialogsPatchFile", "npcdialogs_patch.xml");
- AddDEF("npcDialogsPatchDir", "npcdialogs.d");
- AddDEF("deadMessagesFile", "deadmessages.xml");
- AddDEF("deadMessagesPatchFile", "deadmessages_patch.xml");
- AddDEF("deadMessagesPatchDir", "deadmessages.d");
- AddDEF("defaultCommandsFile", "defaultcommands.xml");
- AddDEF("defaultCommandsPatchFile", "defaultcommands_patch.xml");
- AddDEF("defaultCommandsPatchDir", "defaultcommands.d");
- AddDEF("badgesFile", "badges.xml");
- AddDEF("badgesPatchFile", "badges_patch.xml");
- AddDEF("badgesPatchDir", "badges.d");
- AddDEF("languagesFile", "languages.xml");
- AddDEF("languagesPatchFile", "languages_patch.xml");
- AddDEF("languagesPatchDir", "languages.d");
- AddDEF("textsFile", "texts.xml");
- AddDEF("textsPatchFile", "texts_patch.xml");
- AddDEF("textsPatchDir", "texts.d");
- AddDEF("networkFile", "network.xml");
- AddDEF("networkPatchFile", "network_patch.xml");
- AddDEF("networkPatchDir", "network.d");
- AddDEF("statFile", "stats.xml");
- AddDEF("statPatchFile", "stats_patch.xml");
- AddDEF("statPatchDir", "stats.d");
- AddDEF("groupsFile", "groups.xml");
- AddDEF("groupsPatchFile", "groups_patch.xml");
- AddDEF("groupsPatchDir", "groups.d");
- AddDEF("equipmentSlotsFile", "equipmentslots.xml");
- AddDEF("weaponsFile", "weapons.xml");
- AddDEF("poisonEffectName", "poison");
- AddDEF("cartEffectName", "cart");
- AddDEF("ridingEffectName", "riding");
- AddDEF("trickDeadEffectName", "trick dead");
- AddDEF("postDelayName", "post delay");
- AddDEF("gmTabMinimalLevel", "2");
- AddDEF("team1badge", "team1.xml");
- AddDEF("team2badge", "team2.xml");
- AddDEF("team3badge", "team3.xml");
- AddDEF("gmbadge", "gm.xml");
- AddDEF("shopbadge", "shop.xml");
- AddDEF("inactivebadge", "inactive.xml");
- AddDEF("awaybadge", "away.xml");
- AddDEF("cutInsDir", "graphics/cutins");
- AddDEF("gmCommandSymbol", "@");
- AddDEF("gmCharCommandSymbol", "#");
- AddDEF("linkCommandSymbol", "=");
- AddDEF("emptyAtlasName", "ignored");
- AddDEF("skillCastingAnimation", "");
- AddDEF("languageIcons", "graphics/badges/flags");
- AddDEF("palettesDir", "");
- AddDEF("defaultPaletteFile", "palette.gpl");
- AddDEF("unknownSkillIcon", "graphics/sprites/error.png");
- AddDEF("attackSkillIcon", "graphics/sprites/error.png");
- AddDEF("groundSkillIcon", "graphics/sprites/error.png");
- AddDEF("selfSkillIcon", "graphics/sprites/error.png");
- AddDEF("unusedSkillIcon", "graphics/sprites/error.png");
- AddDEF("supportSkillIcon", "graphics/sprites/error.png");
- AddDEF("trapSkillIcon", "graphics/sprites/error.png");
- AddDEF("missingSkillIcon", "graphics/sprites/error.png");
- AddDEF("unknownSkillsAutoTab", true);
-
- AddDEF("overweightPercent", 50);
- AddDEF("playerNameOffset", 64);
- AddDEF("playerBadgeAtRightOffset", 32);
-
-#ifdef TMWA_SUPPORT
- AddDEF("gmDefaultLevel", 60);
-#endif // TMWA_SUPPORT
-
- AddDEF("enableNewMailSystem", true);
-}
-
-void setFeaturesDefaults(Configuration &cfg)
-{
- logger->log("Set features default values to configuration %s",
- cfg.getFileName().c_str());
- cfg.cleanDefaults();
- DefaultsData &configData = cfg.getDefaultValues();
- AddDEF("languageTab", false);
- AddDEF("allowFollow", true);
- AddDEF("fixDeadAnimation", true);
- AddDEF("forceAccountGender", -1);
- AddDEF("forceCharGender", -1);
-}
-
-#undef AddDEF