StringConstants.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * constants/StringConstants.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "GameConstants.h"
  12. VCMI_LIB_NAMESPACE_BEGIN
  13. ///
  14. /// String ID which are pointless to move to config file - these types are mostly hardcoded
  15. ///
  16. namespace GameConstants
  17. {
  18. const std::string RESOURCE_NAMES [RESOURCE_QUANTITY] = {
  19. "wood", "mercury", "ore", "sulfur", "crystal", "gems", "gold", "mithril"
  20. };
  21. const std::string PLAYER_COLOR_NAMES [PlayerColor::PLAYER_LIMIT_I] = {
  22. "red", "blue", "tan", "green", "orange", "purple", "teal", "pink"
  23. };
  24. const std::string ALIGNMENT_NAMES [3] = {"good", "evil", "neutral"};
  25. const std::string DIFFICULTY_NAMES [5] = {"pawn", "knight", "rook", "queen", "king"};
  26. }
  27. namespace NPrimarySkill
  28. {
  29. const std::string names [GameConstants::PRIMARY_SKILLS] = { "attack", "defence", "spellpower", "knowledge" };
  30. }
  31. namespace NSecondarySkill
  32. {
  33. const std::string names [GameConstants::SKILL_QUANTITY] =
  34. {
  35. "pathfinding", "archery", "logistics", "scouting", "diplomacy", // 5
  36. "navigation", "leadership", "wisdom", "mysticism", "luck", // 10
  37. "ballistics", "eagleEye", "necromancy", "estates", "fireMagic", // 15
  38. "airMagic", "waterMagic", "earthMagic", "scholar", "tactics", // 20
  39. "artillery", "learning", "offence", "armorer", "intelligence", // 25
  40. "sorcery", "resistance", "firstAid"
  41. };
  42. const std::vector<std::string> levels =
  43. {
  44. "none", "basic", "advanced", "expert"
  45. };
  46. }
  47. namespace EBuildingType
  48. {
  49. const std::string names [44] =
  50. {
  51. "mageGuild1", "mageGuild2", "mageGuild3", "mageGuild4", "mageGuild5", // 5
  52. "tavern", "shipyard", "fort", "citadel", "castle", // 10
  53. "villageHall", "townHall", "cityHall", "capitol", "marketplace", // 15
  54. "resourceSilo", "blacksmith", "special1", "horde1", "horde1Upgr", // 20
  55. "ship", "special2", "special3", "special4", "horde2", // 25
  56. "horde2Upgr", "grail", "extraTownHall", "extraCityHall", "extraCapitol", // 30
  57. "dwellingLvl1", "dwellingLvl2", "dwellingLvl3", "dwellingLvl4", "dwellingLvl5", // 35
  58. "dwellingLvl6", "dwellingLvl7", "dwellingUpLvl1", "dwellingUpLvl2", "dwellingUpLvl3", // 40
  59. "dwellingUpLvl4", "dwellingUpLvl5", "dwellingUpLvl6", "dwellingUpLvl7"
  60. };
  61. }
  62. namespace NFaction
  63. {
  64. const std::string names [GameConstants::F_NUMBER] =
  65. {
  66. "castle", "rampart", "tower",
  67. "inferno", "necropolis", "dungeon",
  68. "stronghold", "fortress", "conflux"
  69. };
  70. }
  71. namespace NArtifactPosition
  72. {
  73. const std::string namesHero [19] =
  74. {
  75. "head", "shoulders", "neck", "rightHand", "leftHand", "torso", //5
  76. "rightRing", "leftRing", "feet", //8
  77. "misc1", "misc2", "misc3", "misc4", //12
  78. "mach1", "mach2", "mach3", "mach4", //16
  79. "spellbook", "misc5" //18
  80. };
  81. const std::string namesCreature[1] =
  82. {
  83. "creature1"
  84. };
  85. const std::string namesCommander[6] =
  86. {
  87. "commander1", "commander2", "commander3", "commander4", "commander5", "commander6",
  88. };
  89. const std::string backpack = "backpack";
  90. }
  91. namespace NMetaclass
  92. {
  93. const std::string names [16] =
  94. {
  95. "",
  96. "artifact", "creature", "faction", "experience", "hero",
  97. "heroClass", "luck", "mana", "morale", "movement",
  98. "object", "primarySkill", "secondarySkill", "spell", "resource"
  99. };
  100. }
  101. namespace NPathfindingLayer
  102. {
  103. const std::string names[EPathfindingLayer::NUM_LAYERS] =
  104. {
  105. "land", "sail", "water", "air"
  106. };
  107. }
  108. namespace MappedKeys
  109. {
  110. static const std::map<std::string, BuildingID> BUILDING_NAMES_TO_TYPES =
  111. {
  112. { "special1", BuildingID::SPECIAL_1 },
  113. { "special2", BuildingID::SPECIAL_2 },
  114. { "special3", BuildingID::SPECIAL_3 },
  115. { "special4", BuildingID::SPECIAL_4 },
  116. { "grail", BuildingID::GRAIL },
  117. { "mageGuild1", BuildingID::MAGES_GUILD_1 },
  118. { "mageGuild2", BuildingID::MAGES_GUILD_2 },
  119. { "mageGuild3", BuildingID::MAGES_GUILD_3 },
  120. { "mageGuild4", BuildingID::MAGES_GUILD_4 },
  121. { "mageGuild5", BuildingID::MAGES_GUILD_5 },
  122. { "tavern", BuildingID::TAVERN },
  123. { "shipyard", BuildingID::SHIPYARD },
  124. { "fort", BuildingID::FORT },
  125. { "citadel", BuildingID::CITADEL },
  126. { "castle", BuildingID::CASTLE },
  127. { "villageHall", BuildingID::VILLAGE_HALL },
  128. { "townHall", BuildingID::TOWN_HALL },
  129. { "cityHall", BuildingID::CITY_HALL },
  130. { "capitol", BuildingID::CAPITOL },
  131. { "marketplace", BuildingID::MARKETPLACE },
  132. { "resourceSilo", BuildingID::RESOURCE_SILO },
  133. { "blacksmith", BuildingID::BLACKSMITH },
  134. { "horde1", BuildingID::HORDE_1 },
  135. { "horde1Upgr", BuildingID::HORDE_1_UPGR },
  136. { "horde2", BuildingID::HORDE_2 },
  137. { "horde2Upgr", BuildingID::HORDE_2_UPGR },
  138. { "ship", BuildingID::SHIP },
  139. { "dwellingLvl1", BuildingID::DWELL_LVL_1 },
  140. { "dwellingLvl2", BuildingID::DWELL_LVL_2 },
  141. { "dwellingLvl3", BuildingID::DWELL_LVL_3 },
  142. { "dwellingLvl4", BuildingID::DWELL_LVL_4 },
  143. { "dwellingLvl5", BuildingID::DWELL_LVL_5 },
  144. { "dwellingLvl6", BuildingID::DWELL_LVL_6 },
  145. { "dwellingLvl7", BuildingID::DWELL_LVL_7 },
  146. { "dwellingUpLvl1", BuildingID::DWELL_LVL_1_UP },
  147. { "dwellingUpLvl2", BuildingID::DWELL_LVL_2_UP },
  148. { "dwellingUpLvl3", BuildingID::DWELL_LVL_3_UP },
  149. { "dwellingUpLvl4", BuildingID::DWELL_LVL_4_UP },
  150. { "dwellingUpLvl5", BuildingID::DWELL_LVL_5_UP },
  151. { "dwellingUpLvl6", BuildingID::DWELL_LVL_6_UP },
  152. { "dwellingUpLvl7", BuildingID::DWELL_LVL_7_UP },
  153. };
  154. static const std::map<std::string, BuildingSubID::EBuildingSubID> SPECIAL_BUILDINGS =
  155. {
  156. { "mysticPond", BuildingSubID::MYSTIC_POND },
  157. { "artifactMerchant", BuildingSubID::ARTIFACT_MERCHANT },
  158. { "freelancersGuild", BuildingSubID::FREELANCERS_GUILD },
  159. { "magicUniversity", BuildingSubID::MAGIC_UNIVERSITY },
  160. { "castleGate", BuildingSubID::CASTLE_GATE },
  161. { "creatureTransformer", BuildingSubID::CREATURE_TRANSFORMER },//only skeleton transformer yet
  162. { "portalOfSummoning", BuildingSubID::PORTAL_OF_SUMMONING },
  163. { "ballistaYard", BuildingSubID::BALLISTA_YARD },
  164. { "stables", BuildingSubID::STABLES },
  165. { "manaVortex", BuildingSubID::MANA_VORTEX },
  166. { "lookoutTower", BuildingSubID::LOOKOUT_TOWER },
  167. { "library", BuildingSubID::LIBRARY },
  168. { "brotherhoodOfSword", BuildingSubID::BROTHERHOOD_OF_SWORD },//morale garrison bonus
  169. { "fountainOfFortune", BuildingSubID::FOUNTAIN_OF_FORTUNE },//luck garrison bonus
  170. { "spellPowerGarrisonBonus", BuildingSubID::SPELL_POWER_GARRISON_BONUS },//such as 'stormclouds', but this name is not ok for good towns
  171. { "attackGarrisonBonus", BuildingSubID::ATTACK_GARRISON_BONUS },
  172. { "defenseGarrisonBonus", BuildingSubID::DEFENSE_GARRISON_BONUS },
  173. { "escapeTunnel", BuildingSubID::ESCAPE_TUNNEL },
  174. { "attackVisitingBonus", BuildingSubID::ATTACK_VISITING_BONUS },
  175. { "defenceVisitingBonus", BuildingSubID::DEFENSE_VISITING_BONUS },
  176. { "spellPowerVisitingBonus", BuildingSubID::SPELL_POWER_VISITING_BONUS },
  177. { "knowledgeVisitingBonus", BuildingSubID::KNOWLEDGE_VISITING_BONUS },
  178. { "experienceVisitingBonus", BuildingSubID::EXPERIENCE_VISITING_BONUS },
  179. { "lighthouse", BuildingSubID::LIGHTHOUSE },
  180. { "treasury", BuildingSubID::TREASURY },
  181. { "thievesGuild", BuildingSubID::THIEVES_GUILD }
  182. };
  183. static const std::map<std::string, EMarketMode> MARKET_NAMES_TO_TYPES =
  184. {
  185. { "resource-resource", EMarketMode::RESOURCE_RESOURCE },
  186. { "resource-player", EMarketMode::RESOURCE_PLAYER },
  187. { "creature-resource", EMarketMode::CREATURE_RESOURCE },
  188. { "resource-artifact", EMarketMode::RESOURCE_ARTIFACT },
  189. { "artifact-resource", EMarketMode::ARTIFACT_RESOURCE },
  190. { "artifact-experience", EMarketMode::ARTIFACT_EXP },
  191. { "creature-experience", EMarketMode::CREATURE_EXP },
  192. { "creature-undead", EMarketMode::CREATURE_UNDEAD },
  193. { "resource-skill", EMarketMode::RESOURCE_SKILL },
  194. };
  195. }
  196. VCMI_LIB_NAMESPACE_END