CSpellHandler.cpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. #include "StdInc.h"
  2. #include "CSpellHandler.h"
  3. #include "CLodHandler.h"
  4. #include "../lib/VCMI_Lib.h"
  5. #include "../lib/JsonNode.h"
  6. #include <cctype>
  7. #include "GameConstants.h"
  8. extern CLodHandler *bitmaph;
  9. /*
  10. * CSpellHandler.cpp, part of VCMI engine
  11. *
  12. * Authors: listed in file AUTHORS in main folder
  13. *
  14. * License: GNU General Public License v2.0 or later
  15. * Full text of license available in license.txt file, in main folder
  16. *
  17. */
  18. using namespace boost::assign;
  19. namespace SRSLPraserHelpers
  20. {
  21. static int XYToHex(int x, int y)
  22. {
  23. return x + 17 * y;
  24. }
  25. static int XYToHex(std::pair<int, int> xy)
  26. {
  27. return XYToHex(xy.first, xy.second);
  28. }
  29. static int hexToY(int battleFieldPosition)
  30. {
  31. return battleFieldPosition/17;
  32. }
  33. static int hexToX(int battleFieldPosition)
  34. {
  35. int pos = battleFieldPosition - hexToY(battleFieldPosition) * 17;
  36. return pos;
  37. }
  38. static std::pair<int, int> hexToPair(int battleFieldPosition)
  39. {
  40. return std::make_pair(hexToX(battleFieldPosition), hexToY(battleFieldPosition));
  41. }
  42. //moves hex by one hex in given direction
  43. //0 - left top, 1 - right top, 2 - right, 3 - right bottom, 4 - left bottom, 5 - left
  44. static std::pair<int, int> gotoDir(int x, int y, int direction)
  45. {
  46. switch(direction)
  47. {
  48. case 0: //top left
  49. return std::make_pair(y%2 ? x-1 : x, y-1);
  50. case 1: //top right
  51. return std::make_pair(y%2 ? x : x+1, y-1);
  52. case 2: //right
  53. return std::make_pair(x+1, y);
  54. case 3: //right bottom
  55. return std::make_pair(y%2 ? x : x+1, y+1);
  56. case 4: //left bottom
  57. return std::make_pair(y%2 ? x-1 : x, y+1);
  58. case 5: //left
  59. return std::make_pair(x-1, y);
  60. default:
  61. throw std::string("Disaster: wrong direction in SRSLPraserHelpers::gotoDir!\n");
  62. }
  63. }
  64. static std::pair<int, int> gotoDir(std::pair<int, int> xy, int direction)
  65. {
  66. return gotoDir(xy.first, xy.second, direction);
  67. }
  68. static bool isGoodHex(std::pair<int, int> xy)
  69. {
  70. return xy.first >=0 && xy.first < 17 && xy.second >= 0 && xy.second < 11;
  71. }
  72. //helper fonction for std::set<ui16> CSpell::rangeInHexes(unsigned int centralHex, ui8 schoolLvl ) const
  73. static std::set<ui16> getInRange(unsigned int center, int low, int high)
  74. {
  75. std::set<ui16> ret;
  76. if(low == 0)
  77. {
  78. ret.insert(center);
  79. }
  80. std::pair<int, int> mainPointForLayer[6]; //A, B, C, D, E, F points
  81. for(int b=0; b<6; ++b)
  82. mainPointForLayer[b] = hexToPair(center);
  83. for(int it=1; it<=high; ++it) //it - distance to the center
  84. {
  85. for(int b=0; b<6; ++b)
  86. mainPointForLayer[b] = gotoDir(mainPointForLayer[b], b);
  87. if(it>=low)
  88. {
  89. std::pair<int, int> curHex;
  90. //adding lines (A-b, B-c, C-d, etc)
  91. for(int v=0; v<6; ++v)
  92. {
  93. curHex = mainPointForLayer[v];
  94. for(int h=0; h<it; ++h)
  95. {
  96. if(isGoodHex(curHex))
  97. ret.insert(XYToHex(curHex));
  98. curHex = gotoDir(curHex, (v+2)%6);
  99. }
  100. }
  101. } //if(it>=low)
  102. }
  103. return ret;
  104. }
  105. }
  106. using namespace SRSLPraserHelpers;
  107. CSpellHandler::CSpellHandler()
  108. {
  109. VLC->spellh = this;
  110. }
  111. std::set<ui16> CSpell::rangeInHexes(unsigned int centralHex, ui8 schoolLvl ) const
  112. {
  113. std::set<ui16> ret;
  114. std::string rng = range[schoolLvl] + ','; //copy + artificial comma for easier handling
  115. if(rng.size() >= 1 && rng[0] != 'X') //there is at lest one hex in range
  116. {
  117. std::string number1, number2;
  118. int beg, end;
  119. bool readingFirst = true;
  120. for(int it=0; it<rng.size(); ++it)
  121. {
  122. if( std::isdigit(rng[it]) ) //reading numer
  123. {
  124. if(readingFirst)
  125. number1 += rng[it];
  126. else
  127. number2 += rng[it];
  128. }
  129. else if(rng[it] == ',') //comma
  130. {
  131. //calculating variables
  132. if(readingFirst)
  133. {
  134. beg = atoi(number1.c_str());
  135. number1 = "";
  136. }
  137. else
  138. {
  139. end = atoi(number2.c_str());
  140. number2 = "";
  141. }
  142. //obtaining new hexes
  143. std::set<ui16> curLayer;
  144. if(readingFirst)
  145. {
  146. curLayer = getInRange(centralHex, beg, beg);
  147. }
  148. else
  149. {
  150. curLayer = getInRange(centralHex, beg, end);
  151. readingFirst = true;
  152. }
  153. //adding abtained hexes
  154. for(std::set<ui16>::iterator it = curLayer.begin(); it != curLayer.end(); ++it)
  155. {
  156. ret.insert(*it);
  157. }
  158. }
  159. else if(rng[it] == '-') //dash
  160. {
  161. beg = atoi(number1.c_str());
  162. number1 = "";
  163. readingFirst = false;
  164. }
  165. }
  166. }
  167. return ret;
  168. }
  169. CSpell::ETargetType CSpell::getTargetType() const
  170. {
  171. if(attributes.find("CREATURE_TARGET_1") != std::string::npos
  172. || attributes.find("CREATURE_TARGET_2") != std::string::npos)
  173. return CREATURE_EXPERT_MASSIVE;
  174. if(attributes.find("CREATURE_TARGET") != std::string::npos)
  175. return CREATURE;
  176. if(attributes.find("OBSTACLE_TARGET") != std::string::npos)
  177. return OBSTACLE;
  178. return NO_TARGET;
  179. }
  180. bool CSpell::isPositive() const
  181. {
  182. return positiveness == POSITIVE;
  183. }
  184. bool CSpell::isNegative() const
  185. {
  186. return positiveness == NEGATIVE;
  187. }
  188. static bool startsWithX(const std::string &s)
  189. {
  190. return s.size() && s[0] == 'x';
  191. }
  192. bool DLL_LINKAGE isInScreenRange(const int3 &center, const int3 &pos)
  193. {
  194. int3 diff = pos - center;
  195. if(diff.x >= -9 && diff.x <= 9 && diff.y >= -8 && diff.y <= 8)
  196. return true;
  197. else
  198. return false;
  199. }
  200. void CSpellHandler::loadSpells()
  201. {
  202. std::string buf = bitmaph->getTextFile("SPTRAITS.TXT"), pom;
  203. int andame = buf.size(), i=0; //buf iterator
  204. for(int z=0; z<5; ++z)
  205. loadToIt(pom,buf,i,3);
  206. bool combSpells=false; //true, if we are reading combat spells
  207. bool creatureAbility=false; //if true, only creature can use this spell
  208. int ifHit = 0;
  209. while(i<andame)
  210. {
  211. if(spells.size()==81)
  212. break;
  213. CSpell * nsp = new CSpell; //new currently being read spell
  214. loadToIt(nsp->name,buf,i,4);
  215. if(nsp->name == std::string(""))
  216. {
  217. if(ifHit == 0)
  218. {
  219. combSpells = true;
  220. }
  221. if(ifHit == 1)
  222. {
  223. creatureAbility = true;
  224. }
  225. for(int z=0; z<3; ++z)
  226. loadToIt(pom,buf,i,3);
  227. loadToIt(nsp->name,buf,i,4);
  228. ++ifHit;
  229. }
  230. loadToIt(nsp->abbName,buf,i,4);
  231. loadToIt(nsp->level,buf,i,4);
  232. loadToIt(pom,buf,i,4);
  233. nsp->earth = startsWithX(pom);
  234. loadToIt(pom,buf,i,4);
  235. nsp->water = startsWithX(pom);
  236. loadToIt(pom,buf,i,4);
  237. nsp->fire = startsWithX(pom);
  238. loadToIt(pom,buf,i,4);
  239. nsp->air = startsWithX(pom);
  240. nsp->costs.resize(4);
  241. for (int z = 0; z < 4 ; z++)
  242. loadToIt(nsp->costs[z],buf,i,4);
  243. loadToIt(nsp->power,buf,i,4);
  244. nsp->powers.resize(4);
  245. for (int z = 0; z < 4 ; z++)
  246. loadToIt(nsp->powers[z],buf,i,4);
  247. nsp->probabilities.resize(9);
  248. for (int z = 0; z < 9 ; z++)
  249. loadToIt(nsp->probabilities[z],buf,i,4);
  250. nsp->AIVals.resize(4);
  251. for (int z = 0; z < 4 ; z++)
  252. loadToIt(nsp->AIVals[z],buf,i,4);
  253. nsp->descriptions.resize(4);
  254. for (int z = 0; z < 4 ; z++)
  255. {
  256. loadToIt(nsp->descriptions[z],buf,i,4);
  257. boost::algorithm::replace_all(nsp->descriptions[z],"\"","");
  258. }
  259. loadToIt(nsp->attributes,buf,i,3);
  260. nsp->id = spells.size();
  261. nsp->combatSpell = combSpells;
  262. nsp->creatureAbility = creatureAbility;
  263. nsp->mainEffectAnim = -1;
  264. spells.push_back(nsp);
  265. }
  266. boost::replace_first (spells[47]->attributes, "2", ""); // disrupting ray will now affect single creature
  267. //loading of additional spell traits
  268. const JsonNode config(GameConstants::DATA_DIR + "/config/spell_info.json");
  269. BOOST_FOREACH(const JsonNode &spell, config["spells"].Vector())
  270. {
  271. //reading exact info
  272. int spellID = spell["id"].Float();
  273. spells[spellID]->positiveness = spell["effect"].Float();
  274. spells[spellID]->mainEffectAnim = spell["anim"].Float();
  275. spells[spellID]->range.resize(4);
  276. int idx = 0;
  277. BOOST_FOREACH(const JsonNode &range, spell["ranges"].Vector())
  278. spells[spellID]->range[idx++] = range.String();
  279. }
  280. spells.push_back(spells[80]); //clone Acid Breath attributes for Acid Breath damage effect
  281. //forgetfulness needs to get targets automatically on expert level
  282. boost::replace_first(spells[61]->attributes, "CREATURE_TARGET", "CREATURE_TARGET_2"); //TODO: use flags instead?
  283. damageSpells += 11, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 57, 77;
  284. risingSpells += 38, 39, 40;
  285. mindSpells += 50, 59, 60, 61, 62;
  286. }