CSpellHandler.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. #include "StdInc.h"
  2. #include "CSpellHandler.h"
  3. #include "CGeneralTextHandler.h"
  4. #include "filesystem/CResourceLoader.h"
  5. #include "VCMI_Lib.h"
  6. #include "JsonNode.h"
  7. #include <cctype>
  8. #include "BattleHex.h"
  9. #include "CModHandler.h"
  10. /*
  11. * CSpellHandler.cpp, part of VCMI engine
  12. *
  13. * Authors: listed in file AUTHORS in main folder
  14. *
  15. * License: GNU General Public License v2.0 or later
  16. * Full text of license available in license.txt file, in main folder
  17. *
  18. */
  19. using namespace boost::assign;
  20. namespace SRSLPraserHelpers
  21. {
  22. static int XYToHex(int x, int y)
  23. {
  24. return x + 17 * y;
  25. }
  26. static int XYToHex(std::pair<int, int> xy)
  27. {
  28. return XYToHex(xy.first, xy.second);
  29. }
  30. static int hexToY(int battleFieldPosition)
  31. {
  32. return battleFieldPosition/17;
  33. }
  34. static int hexToX(int battleFieldPosition)
  35. {
  36. int pos = battleFieldPosition - hexToY(battleFieldPosition) * 17;
  37. return pos;
  38. }
  39. static std::pair<int, int> hexToPair(int battleFieldPosition)
  40. {
  41. return std::make_pair(hexToX(battleFieldPosition), hexToY(battleFieldPosition));
  42. }
  43. //moves hex by one hex in given direction
  44. //0 - left top, 1 - right top, 2 - right, 3 - right bottom, 4 - left bottom, 5 - left
  45. static std::pair<int, int> gotoDir(int x, int y, int direction)
  46. {
  47. switch(direction)
  48. {
  49. case 0: //top left
  50. return std::make_pair((y%2) ? x-1 : x, y-1);
  51. case 1: //top right
  52. return std::make_pair((y%2) ? x : x+1, y-1);
  53. case 2: //right
  54. return std::make_pair(x+1, y);
  55. case 3: //right bottom
  56. return std::make_pair((y%2) ? x : x+1, y+1);
  57. case 4: //left bottom
  58. return std::make_pair((y%2) ? x-1 : x, y+1);
  59. case 5: //left
  60. return std::make_pair(x-1, y);
  61. default:
  62. throw std::runtime_error("Disaster: wrong direction in SRSLPraserHelpers::gotoDir!\n");
  63. }
  64. }
  65. static std::pair<int, int> gotoDir(std::pair<int, int> xy, int direction)
  66. {
  67. return gotoDir(xy.first, xy.second, direction);
  68. }
  69. static bool isGoodHex(std::pair<int, int> xy)
  70. {
  71. return xy.first >=0 && xy.first < 17 && xy.second >= 0 && xy.second < 11;
  72. }
  73. //helper function for std::set<ui16> CSpell::rangeInHexes(unsigned int centralHex, ui8 schoolLvl ) const
  74. static std::set<ui16> getInRange(unsigned int center, int low, int high)
  75. {
  76. std::set<ui16> ret;
  77. if(low == 0)
  78. {
  79. ret.insert(center);
  80. }
  81. std::pair<int, int> mainPointForLayer[6]; //A, B, C, D, E, F points
  82. for(auto & elem : mainPointForLayer)
  83. elem = hexToPair(center);
  84. for(int it=1; it<=high; ++it) //it - distance to the center
  85. {
  86. for(int b=0; b<6; ++b)
  87. mainPointForLayer[b] = gotoDir(mainPointForLayer[b], b);
  88. if(it>=low)
  89. {
  90. std::pair<int, int> curHex;
  91. //adding lines (A-b, B-c, C-d, etc)
  92. for(int v=0; v<6; ++v)
  93. {
  94. curHex = mainPointForLayer[v];
  95. for(int h=0; h<it; ++h)
  96. {
  97. if(isGoodHex(curHex))
  98. ret.insert(XYToHex(curHex));
  99. curHex = gotoDir(curHex, (v+2)%6);
  100. }
  101. }
  102. } //if(it>=low)
  103. }
  104. return ret;
  105. }
  106. }
  107. using namespace SRSLPraserHelpers;
  108. CSpell::CSpell()
  109. {
  110. isDamage = false;
  111. isRising = false;
  112. isOffensive = false;
  113. }
  114. CSpell::~CSpell()
  115. {
  116. for (auto & elem : effects)
  117. {
  118. for (size_t j=0; j<elem.size(); j++)
  119. delete elem[j];
  120. }
  121. }
  122. std::vector<BattleHex> CSpell::rangeInHexes(BattleHex centralHex, ui8 schoolLvl, ui8 side, bool *outDroppedHexes) const
  123. {
  124. std::vector<BattleHex> ret;
  125. if(id == SpellID::FIRE_WALL || id == SpellID::FORCE_FIELD)
  126. {
  127. //Special case - shape of obstacle depends on caster's side
  128. //TODO make it possible through spell_info config
  129. BattleHex::EDir firstStep, secondStep;
  130. if(side)
  131. {
  132. firstStep = BattleHex::TOP_LEFT;
  133. secondStep = BattleHex::TOP_RIGHT;
  134. }
  135. else
  136. {
  137. firstStep = BattleHex::TOP_RIGHT;
  138. secondStep = BattleHex::TOP_LEFT;
  139. }
  140. //Adds hex to the ret if it's valid. Otherwise sets output arg flag if given.
  141. auto addIfValid = [&](BattleHex hex)
  142. {
  143. if(hex.isValid())
  144. ret.push_back(hex);
  145. else if(outDroppedHexes)
  146. *outDroppedHexes = true;
  147. };
  148. ret.push_back(centralHex);
  149. addIfValid(centralHex.moveInDir(firstStep, false));
  150. if(schoolLvl >= 2) //advanced versions of fire wall / force field cotnains of 3 hexes
  151. addIfValid(centralHex.moveInDir(secondStep, false)); //moveInDir function modifies subject hex
  152. return ret;
  153. }
  154. std::string rng = range[schoolLvl] + ','; //copy + artificial comma for easier handling
  155. if(rng.size() >= 1 && rng[0] != 'X') //there is at lest one hex in range
  156. {
  157. std::string number1, number2;
  158. int beg, end;
  159. bool readingFirst = true;
  160. for(auto & elem : rng)
  161. {
  162. if( std::isdigit(elem) ) //reading numer
  163. {
  164. if(readingFirst)
  165. number1 += elem;
  166. else
  167. number2 += elem;
  168. }
  169. else if(elem == ',') //comma
  170. {
  171. //calculating variables
  172. if(readingFirst)
  173. {
  174. beg = atoi(number1.c_str());
  175. number1 = "";
  176. }
  177. else
  178. {
  179. end = atoi(number2.c_str());
  180. number2 = "";
  181. }
  182. //obtaining new hexes
  183. std::set<ui16> curLayer;
  184. if(readingFirst)
  185. {
  186. curLayer = getInRange(centralHex, beg, beg);
  187. }
  188. else
  189. {
  190. curLayer = getInRange(centralHex, beg, end);
  191. readingFirst = true;
  192. }
  193. //adding abtained hexes
  194. for(auto & curLayer_it : curLayer)
  195. {
  196. ret.push_back(curLayer_it);
  197. }
  198. }
  199. else if(elem == '-') //dash
  200. {
  201. beg = atoi(number1.c_str());
  202. number1 = "";
  203. readingFirst = false;
  204. }
  205. }
  206. }
  207. //remove duplicates (TODO check if actually needed)
  208. range::unique(ret);
  209. return ret;
  210. }
  211. CSpell::ETargetType CSpell::getTargetType() const
  212. {
  213. return targetType;
  214. }
  215. void CSpell::getEffects(std::vector<Bonus>& lst, const int level) const
  216. {
  217. if (level < 0 || level >= GameConstants::SPELL_SCHOOL_LEVELS)
  218. {
  219. logGlobal->errorStream() << __FUNCTION__ << " invalid school level " << level;
  220. return;
  221. }
  222. if (effects.empty())
  223. {
  224. logGlobal->errorStream() << __FUNCTION__ << " This spell (" + name + ") has no bonus effects! " << name;
  225. return;
  226. }
  227. if (effects.size() <= level)
  228. {
  229. logGlobal->errorStream() << __FUNCTION__ << " This spell (" + name + ") is missing entry for level " << level;
  230. return;
  231. }
  232. lst.reserve(lst.size() + effects[level].size());
  233. for (Bonus *b : effects[level])
  234. {
  235. //TODO: value, add value
  236. lst.push_back(Bonus(*b));
  237. }
  238. }
  239. bool CSpell::isImmuneBy(const IBonusBearer* obj) const
  240. {
  241. //todo: use new bonus API
  242. for(auto b : limiters)
  243. {
  244. if (!obj->hasBonusOfType(b))
  245. return true;
  246. }
  247. for(auto b : immunities)
  248. {
  249. if (obj->hasBonusOfType(b))
  250. return true;
  251. }
  252. auto battleTestElementalImmunity = [&,this](Bonus::BonusType element) -> bool
  253. {
  254. if (obj->hasBonusOfType(element, 0)) //always resist if immune to all spells altogether
  255. return true;
  256. else if (!isPositive()) //negative or indifferent
  257. {
  258. if ((isDamageSpell() && obj->hasBonusOfType(element, 2)) || obj->hasBonusOfType(element, 1))
  259. return true;
  260. }
  261. return false;
  262. };
  263. if (fire)
  264. {
  265. if (battleTestElementalImmunity(Bonus::FIRE_IMMUNITY))
  266. return true;
  267. }
  268. if (water)
  269. {
  270. if (battleTestElementalImmunity(Bonus::WATER_IMMUNITY))
  271. return true;
  272. }
  273. if (earth)
  274. {
  275. if (battleTestElementalImmunity(Bonus::EARTH_IMMUNITY))
  276. return true;
  277. }
  278. if (air)
  279. {
  280. if (battleTestElementalImmunity(Bonus::AIR_IMMUNITY))
  281. return true;
  282. }
  283. TBonusListPtr levelImmunities = obj->getBonuses(Selector::type(Bonus::LEVEL_SPELL_IMMUNITY));
  284. if(obj->hasBonusOfType(Bonus::NEGATE_ALL_NATURAL_IMMUNITIES))
  285. {
  286. levelImmunities->remove_if([](const Bonus* b){ return b->source == Bonus::CREATURE_ABILITY; });
  287. }
  288. if(obj->hasBonusOfType(Bonus::SPELL_IMMUNITY, id)
  289. || ( levelImmunities->size() > 0 && levelImmunities->totalValue() >= level && level))
  290. {
  291. return true;
  292. }
  293. return false;
  294. }
  295. void CSpell::setAttributes(const std::string& newValue)
  296. {
  297. attributes = newValue;
  298. if(attributes.find("CREATURE_TARGET_1") != std::string::npos
  299. || attributes.find("CREATURE_TARGET_2") != std::string::npos)
  300. targetType = CREATURE_EXPERT_MASSIVE;
  301. else if(attributes.find("CREATURE_TARGET") != std::string::npos)
  302. targetType = CREATURE;
  303. else if(attributes.find("OBSTACLE_TARGET") != std::string::npos)
  304. targetType = OBSTACLE;
  305. else
  306. targetType = NO_TARGET;
  307. }
  308. bool DLL_LINKAGE isInScreenRange(const int3 &center, const int3 &pos)
  309. {
  310. int3 diff = pos - center;
  311. if(diff.x >= -9 && diff.x <= 9 && diff.y >= -8 && diff.y <= 8)
  312. return true;
  313. else
  314. return false;
  315. }
  316. CSpell * CSpellHandler::loadSpell(CLegacyConfigParser & parser, const SpellID id)
  317. {
  318. auto spell = new CSpell; //new currently being read spell
  319. spell->id = id;
  320. spell->name = parser.readString();
  321. spell->abbName = parser.readString();
  322. spell->level = parser.readNumber();
  323. spell->earth = parser.readString() == "x";
  324. spell->water = parser.readString() == "x";
  325. spell->fire = parser.readString() == "x";
  326. spell->air = parser.readString() == "x";
  327. spell->costs = parser.readNumArray<si32>(4);
  328. spell->power = parser.readNumber();
  329. spell->powers = parser.readNumArray<si32>(4);
  330. for (int i = 0; i < 9 ; i++)
  331. spell->probabilities[i] = parser.readNumber();
  332. spell->AIVals = parser.readNumArray<si32>(4);
  333. for (int i = 0; i < 4 ; i++)
  334. spell->descriptions.push_back(parser.readString());
  335. std::string attributes = parser.readString();
  336. //spell fixes
  337. if (id == SpellID::FORGETFULNESS)
  338. {
  339. //forgetfulness needs to get targets automatically on expert level
  340. boost::replace_first(attributes, "CREATURE_TARGET", "CREATURE_TARGET_2");
  341. }
  342. if (id == SpellID::DISRUPTING_RAY)
  343. {
  344. // disrupting ray will now affect single creature
  345. boost::replace_first(attributes,"2", "");
  346. }
  347. spell->setAttributes(attributes);
  348. spell->mainEffectAnim = -1;
  349. return spell;
  350. }
  351. CSpellHandler::CSpellHandler()
  352. {
  353. CLegacyConfigParser parser("DATA/SPTRAITS.TXT");
  354. auto read = [&,this](bool combat, bool alility)
  355. {
  356. do
  357. {
  358. const SpellID id = SpellID(spells.size());
  359. CSpell * spell = loadSpell(parser,id);
  360. spell->combatSpell = combat;
  361. spell->creatureAbility = alility;
  362. spells.push_back(spell);
  363. }
  364. while (parser.endLine() && !parser.isNextEntryEmpty());
  365. };
  366. auto skip = [&](int cnt)
  367. {
  368. for(int i=0; i<cnt; i++)
  369. parser.endLine();
  370. };
  371. skip(5);// header
  372. read(false,false); //read adventure map spells
  373. skip(3);
  374. read(true,false); //read battle spells
  375. skip(3);
  376. read(true,true);//read creature abilities
  377. spells.push_back(spells[SpellID::ACID_BREATH_DEFENSE]); //clone Acid Breath attributes for Acid Breath damage effect
  378. //loading of additional spell traits
  379. JsonNode config(ResourceID("config/spell_info.json"));
  380. config.setMeta("core");
  381. for(auto &spell : config["spells"].Struct())
  382. {
  383. //reading exact info
  384. int spellID = spell.second["id"].Float();
  385. CSpell *s = spells[spellID];
  386. s->positiveness = spell.second["effect"].Float();
  387. s->mainEffectAnim = spell.second["anim"].Float();
  388. s->range.resize(4);
  389. int idx = 0;
  390. for(const JsonNode &range : spell.second["ranges"].Vector())
  391. s->range[idx++] = range.String();
  392. s->counteredSpells = spell.second["counters"].convertTo<std::vector<SpellID> >();
  393. s->identifier = spell.first;
  394. VLC->modh->identifiers.registerObject("core", "spell", spell.first, spellID);
  395. const JsonNode & flags_node = spell.second["flags"];
  396. if (!flags_node.isNull())
  397. {
  398. auto flags = flags_node.convertTo<std::vector<std::string> >();
  399. for (const auto & flag : flags)
  400. {
  401. if (flag == "damage")
  402. {
  403. s->isDamage = true;
  404. }
  405. else if (flag == "rising")
  406. {
  407. s->isRising = true;
  408. }
  409. else if (flag == "offensive")
  410. {
  411. s->isOffensive = true;
  412. }
  413. }
  414. }
  415. const JsonNode & effects_node = spell.second["effects"];
  416. for (const JsonNode & bonus_node : effects_node.Vector())
  417. {
  418. auto &v_node = bonus_node["values"];
  419. auto &a_node = bonus_node["ainfos"];
  420. auto v = v_node.convertTo<std::vector<int> >();
  421. auto a = a_node.convertTo<std::vector<int> >();
  422. if(v.size() && v.size() != GameConstants::SPELL_SCHOOL_LEVELS)
  423. logGlobal->errorStream() << s->name << " should either have no values or exactly " << GameConstants::SPELL_SCHOOL_LEVELS;
  424. if(a.size() && a.size() != GameConstants::SPELL_SCHOOL_LEVELS)
  425. logGlobal->errorStream() << s->name << " should either have no ainfos or exactly " << GameConstants::SPELL_SCHOOL_LEVELS;
  426. s->effects.resize(GameConstants::SPELL_SCHOOL_LEVELS);
  427. for (int i = 0; i < GameConstants::SPELL_SCHOOL_LEVELS; i++)
  428. {
  429. Bonus * b = JsonUtils::parseBonus(bonus_node);
  430. b->sid = s->id; //for all
  431. b->source = Bonus::SPELL_EFFECT;//for all
  432. b->val = s->powers[i];
  433. if (!v.empty())
  434. b->val = v[i];
  435. if (!a.empty())
  436. b->additionalInfo = a[i];
  437. s->effects[i].push_back(b);
  438. }
  439. }
  440. auto find_in_map = [](std::string name, std::vector<Bonus::BonusType> &vec)
  441. {
  442. auto it = bonusNameMap.find(name);
  443. if (it == bonusNameMap.end())
  444. {
  445. logGlobal->errorStream() << "Error: invalid bonus name" << name;
  446. }
  447. else
  448. {
  449. vec.push_back((Bonus::BonusType)it->second);
  450. }
  451. };
  452. auto read_node = [&](std::string name, std::vector<Bonus::BonusType> &vec)
  453. {
  454. const JsonNode & node = spell.second[name];
  455. if (!node.isNull())
  456. {
  457. auto names = node.convertTo<std::vector<std::string> >();
  458. for(auto name : names)
  459. find_in_map(name, vec);
  460. }
  461. };
  462. read_node("immunity",s->immunities);
  463. read_node("limit",s->limiters);
  464. const JsonNode & graphicsNode = spell.second["graphics"];
  465. if (!graphicsNode.isNull())
  466. {
  467. s->iconImmune = graphicsNode["iconImmune"].String();
  468. }
  469. }
  470. }
  471. CSpellHandler::~CSpellHandler()
  472. {
  473. for(auto & spell : spells)
  474. {
  475. spell.dellNull();
  476. }
  477. }
  478. std::vector<bool> CSpellHandler::getDefaultAllowed() const
  479. {
  480. std::vector<bool> allowedSpells;
  481. allowedSpells.resize(GameConstants::SPELLS_QUANTITY, true);
  482. return allowedSpells;
  483. }