CCreatureHandler.cpp 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112
  1. #define VCMI_DLL
  2. #include "../stdafx.h"
  3. #include "CCreatureHandler.h"
  4. #include "CLodHandler.h"
  5. #include <sstream>
  6. #include <boost/assign/std/set.hpp>
  7. #include <boost/assign/std/vector.hpp>
  8. #include <boost/assign/std/list.hpp>
  9. #include <boost/assign/list_of.hpp>
  10. #include <boost/algorithm/string.hpp>
  11. #include <boost/algorithm/string/find.hpp>
  12. #include <boost/algorithm/string/replace.hpp>
  13. #include "../lib/VCMI_Lib.h"
  14. #include "../lib/CGameState.h"
  15. #include <boost/foreach.hpp>
  16. #include <boost/lexical_cast.hpp>
  17. using namespace boost::assign;
  18. extern CLodHandler * bitmaph;
  19. /*
  20. * CCreatureHandler.cpp, part of VCMI engine
  21. *
  22. * Authors: listed in file AUTHORS in main folder
  23. *
  24. * License: GNU General Public License v2.0 or later
  25. * Full text of license available in license.txt file, in main folder
  26. *
  27. */
  28. static std::vector<int> getMindSpells()
  29. {
  30. std::vector<int> ret;
  31. ret.push_back(50); //sorrow
  32. ret.push_back(59); //berserk
  33. ret.push_back(60); //hypnotize
  34. ret.push_back(61); //forgetfulness
  35. ret.push_back(62); //blind
  36. return ret;
  37. }
  38. CCreatureHandler::CCreatureHandler()
  39. {
  40. VLC->creh = this;
  41. // Set the faction alignments to the defaults:
  42. // Good: Castle, Rampart, Tower // Evil: Inferno, Necropolis, Dungeon
  43. // Neutral: Stronghold, Fortess, Conflux
  44. factionAlignments += 1, 1, 1, -1, -1, -1, 0, 0, 0;
  45. doubledCreatures += 4, 14, 20, 28, 42, 44, 60, 70, 72, 85, 86, 100, 104; //according to Strategija
  46. allCreatures.description = "All creatures";
  47. creaturesOfLevel[0].description = "Creatures of unnormalized tier";
  48. for(int i = 1; i < ARRAY_COUNT(creaturesOfLevel); i++)
  49. creaturesOfLevel[i].description = "Creatures of tier " + boost::lexical_cast<std::string>(i);
  50. }
  51. int CCreature::getQuantityID(const int & quantity)
  52. {
  53. if (quantity<5)
  54. return 0;
  55. if (quantity<10)
  56. return 1;
  57. if (quantity<20)
  58. return 2;
  59. if (quantity<50)
  60. return 3;
  61. if (quantity<100)
  62. return 4;
  63. if (quantity<250)
  64. return 5;
  65. if (quantity<500)
  66. return 5;
  67. if (quantity<1000)
  68. return 6;
  69. if (quantity<4000)
  70. return 7;
  71. return 8;
  72. }
  73. bool CCreature::isDoubleWide() const
  74. {
  75. return doubleWide;
  76. }
  77. bool CCreature::isFlying() const
  78. {
  79. return hasBonusOfType(Bonus::FLYING);
  80. }
  81. bool CCreature::isShooting() const
  82. {
  83. return hasBonusOfType(Bonus::SHOOTER);
  84. }
  85. bool CCreature::isUndead() const
  86. {
  87. return hasBonusOfType(Bonus::UNDEAD);
  88. }
  89. /**
  90. * Determines if the creature is of a good alignment.
  91. * @return true if the creture is good, false otherwise.
  92. */
  93. bool CCreature::isGood () const
  94. {
  95. return VLC->creh->isGood(faction);
  96. }
  97. /**
  98. * Determines if the creature is of an evil alignment.
  99. * @return true if the creature is evil, false otherwise.
  100. */
  101. bool CCreature::isEvil () const
  102. {
  103. return VLC->creh->isEvil(faction);
  104. }
  105. si32 CCreature::maxAmount(const std::vector<si32> &res) const //how many creatures can be bought
  106. {
  107. int ret = 2147483645;
  108. int resAmnt = std::min(res.size(),cost.size());
  109. for(int i=0;i<resAmnt;i++)
  110. if(cost[i])
  111. ret = std::min(ret,(int)(res[i]/cost[i]));
  112. return ret;
  113. }
  114. CCreature::CCreature()
  115. {
  116. doubleWide = false;
  117. nodeType = CBonusSystemNode::CREATURE;
  118. }
  119. void CCreature::addBonus(int val, int type, int subtype /*= -1*/)
  120. {
  121. Bonus *added = new Bonus(Bonus::PERMANENT, type, Bonus::CREATURE_ABILITY, val, idNumber, subtype, Bonus::BASE_NUMBER);
  122. addNewBonus(added);
  123. }
  124. // void CCreature::getParents(TCNodes &out, const CBonusSystemNode *root /*= NULL*/) const
  125. // {
  126. // out.insert (VLC->creh->globalEffects);
  127. // }
  128. bool CCreature::isMyUpgrade(const CCreature *anotherCre) const
  129. {
  130. //TODO upgrade of upgrade?
  131. return vstd::contains(upgrades, anotherCre->idNumber);
  132. }
  133. bool CCreature::valid() const
  134. {
  135. return this == VLC->creh->creatures[idNumber];
  136. }
  137. std::string CCreature::nodeName() const
  138. {
  139. return "\"" + namePl + "\"";
  140. }
  141. int readNumber(int & befi, int & i, int andame, std::string & buf) //helper function for void CCreatureHandler::loadCreatures() and loadUnitAnimInfo()
  142. {
  143. befi=i;
  144. for(; i<andame; ++i)
  145. {
  146. if(buf[i]=='\t')
  147. break;
  148. }
  149. std::string tmp = buf.substr(befi, i-befi);
  150. int ret = atoi(buf.substr(befi, i-befi).c_str());
  151. ++i;
  152. return ret;
  153. }
  154. float readFloat(int & befi, int & i, int andame, std::string & buf) //helper function for void CCreatureHandler::loadUnitAnimInfo()
  155. {
  156. befi=i;
  157. for(; i<andame; ++i)
  158. {
  159. if(buf[i]=='\t')
  160. break;
  161. }
  162. std::string tmp = buf.substr(befi, i-befi);
  163. float ret = atof(buf.substr(befi, i-befi).c_str());
  164. ++i;
  165. return ret;
  166. }
  167. /**
  168. * Determines if a faction is good.
  169. * @param ID of the faction.
  170. * @return true if the faction is good, false otherwise.
  171. */
  172. bool CCreatureHandler::isGood (si8 faction) const
  173. {
  174. return faction != -1 && factionAlignments[faction] == 1;
  175. }
  176. /**
  177. * Determines if a faction is evil.
  178. * @param ID of the faction.
  179. * @return true if the faction is evil, false otherwise.
  180. */
  181. bool CCreatureHandler::isEvil (si8 faction) const
  182. {
  183. return faction != -1 && factionAlignments[faction] == -1;
  184. }
  185. void CCreatureHandler::loadCreatures()
  186. {
  187. notUsedMonsters += 122,124,126,128,145,146,147,148,149,160,161,162,163,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191;
  188. tlog5 << "\t\tReading config/cr_abils.txt and ZCRTRAIT.TXT" << std::endl;
  189. bool useCreAbilsFromZCRTRAIT = true;
  190. ////////////reading cr_abils.txt ///////////////////
  191. std::ifstream abils(DATA_DIR "/config/cr_abils.txt", std::ios::in | std::ios::binary); //this file is not in lod
  192. const int MAX_LINE_SIZE = 1000;
  193. char abilLine[MAX_LINE_SIZE+1];
  194. for(int i=0; i<5; ++i) //removing 5 comment lines
  195. {
  196. abils.getline(abilLine, MAX_LINE_SIZE);
  197. }
  198. //reading first line (determining if we should use creature abilities from ZCRTRAIT.TXT)
  199. abils.getline(abilLine, MAX_LINE_SIZE);
  200. useCreAbilsFromZCRTRAIT = atoi(abilLine);
  201. ////////////reading ZCRTRAIT.TXT ///////////////////
  202. std::string buf = bitmaph->getTextFile("ZCRTRAIT.TXT");
  203. int andame = buf.size();
  204. int i=0; //buf iterator
  205. int hmcr=0;
  206. for(; i<andame; ++i)
  207. {
  208. if(buf[i]=='\r')
  209. ++hmcr;
  210. if(hmcr==2)
  211. break;
  212. }
  213. i+=2;
  214. while(i<buf.size())
  215. {
  216. CCreature &ncre = *new CCreature;
  217. ncre.idNumber = creatures.size();
  218. ncre.cost.resize(RESOURCE_QUANTITY);
  219. ncre.level=0;
  220. int befi=i;
  221. for(; i<andame; ++i)
  222. {
  223. if(buf[i]=='\t')
  224. break;
  225. }
  226. ncre.nameSing = buf.substr(befi, i-befi);
  227. ++i;
  228. befi=i;
  229. for(; i<andame; ++i)
  230. {
  231. if(buf[i]=='\t')
  232. break;
  233. }
  234. ncre.namePl = buf.substr(befi, i-befi);
  235. ++i;
  236. for(int v=0; v<7; ++v)
  237. {
  238. ncre.cost[v] = readNumber(befi, i, andame, buf);
  239. }
  240. ncre.fightValue = readNumber(befi, i, andame, buf);
  241. ncre.AIValue = readNumber(befi, i, andame, buf);
  242. ncre.growth = readNumber(befi, i, andame, buf);
  243. ncre.hordeGrowth = readNumber(befi, i, andame, buf);
  244. ncre.hitPoints = readNumber(befi, i, andame, buf);
  245. ncre.addBonus(ncre.hitPoints, Bonus::STACK_HEALTH);
  246. ncre.speed = readNumber(befi, i, andame, buf);
  247. ncre.addBonus(ncre.speed, Bonus::STACKS_SPEED);
  248. ncre.attack = readNumber(befi, i, andame, buf);
  249. ncre.addBonus(ncre.attack, Bonus::PRIMARY_SKILL, PrimarySkill::ATTACK);
  250. ncre.defence = readNumber(befi, i, andame, buf);
  251. ncre.addBonus(ncre.defence, Bonus::PRIMARY_SKILL, PrimarySkill::DEFENSE);
  252. ncre.damageMin = readNumber(befi, i, andame, buf); //not used anymore?
  253. ncre.addBonus(ncre.damageMin, Bonus::CREATURE_DAMAGE, 1);
  254. ncre.damageMax = readNumber(befi, i, andame, buf);
  255. ncre.addBonus(ncre.damageMax, Bonus::CREATURE_DAMAGE, 2);
  256. ncre.shots = readNumber(befi, i, andame, buf);
  257. ncre.spells = readNumber(befi, i, andame, buf);
  258. ncre.ammMin = readNumber(befi, i, andame, buf);
  259. ncre.ammMax = readNumber(befi, i, andame, buf);
  260. befi=i;
  261. for(; i<andame; ++i)
  262. {
  263. if(buf[i]=='\t')
  264. break;
  265. }
  266. ncre.abilityText = buf.substr(befi, i-befi);
  267. ++i;
  268. befi=i;
  269. for(; i<andame; ++i)
  270. {
  271. if(buf[i]=='\r')
  272. break;
  273. }
  274. ncre.abilityRefs = buf.substr(befi, i-befi);
  275. i+=2;
  276. if(useCreAbilsFromZCRTRAIT)
  277. { //adding abilities from ZCRTRAIT.TXT
  278. if(boost::algorithm::find_first(ncre.abilityRefs, "DOUBLE_WIDE"))
  279. ncre.doubleWide = true;
  280. if(boost::algorithm::find_first(ncre.abilityRefs, "FLYING_ARMY"))
  281. ncre.addBonus(0, Bonus::FLYING);
  282. if(boost::algorithm::find_first(ncre.abilityRefs, "SHOOTING_ARMY"))
  283. ncre.addBonus(0, Bonus::SHOOTER);
  284. if(boost::algorithm::find_first(ncre.abilityRefs, "SIEGE_WEAPON"))
  285. ncre.addBonus(0, Bonus::SIEGE_WEAPON);
  286. if(boost::algorithm::find_first(ncre.abilityRefs, "const_two_attacks"))
  287. ncre.addBonus(1, Bonus::ADDITIONAL_ATTACK);
  288. if(boost::algorithm::find_first(ncre.abilityRefs, "const_free_attack"))
  289. ncre.addBonus(0, Bonus::BLOCKS_RETALIATION);
  290. if(boost::algorithm::find_first(ncre.abilityRefs, "IS_UNDEAD"))
  291. ncre.addBonus(0, Bonus::UNDEAD);
  292. if(boost::algorithm::find_first(ncre.abilityRefs, "const_no_melee_penalty"))
  293. ncre.addBonus(0, Bonus::NO_MELEE_PENALTY);
  294. if(boost::algorithm::find_first(ncre.abilityRefs, "const_jousting"))
  295. ncre.addBonus(0, Bonus::JOUSTING);
  296. if(boost::algorithm::find_first(ncre.abilityRefs, "const_raises_morale"))
  297. {
  298. ncre.addBonus(+1, Bonus::MORALE);;
  299. ncre.bonuses.back()->addPropagator(new CPropagatorNodeType(CBonusSystemNode::HERO));
  300. }
  301. if(boost::algorithm::find_first(ncre.abilityRefs, "const_lowers_morale"))
  302. {
  303. ncre.addBonus(-1, Bonus::MORALE);;
  304. ncre.bonuses.back()->effectRange = Bonus::ONLY_ENEMY_ARMY;
  305. }
  306. if(boost::algorithm::find_first(ncre.abilityRefs, "KING_1"))
  307. ncre.addBonus(0, Bonus::KING1);
  308. if(boost::algorithm::find_first(ncre.abilityRefs, "KING_2"))
  309. ncre.addBonus(0, Bonus::KING2);
  310. if(boost::algorithm::find_first(ncre.abilityRefs, "KING_3"))
  311. ncre.addBonus(0, Bonus::KING3);
  312. if(boost::algorithm::find_first(ncre.abilityRefs, "const_no_wall_penalty"))
  313. ncre.addBonus(0, Bonus::NO_WALL_PENALTY);
  314. if(boost::algorithm::find_first(ncre.abilityRefs, "CATAPULT"))
  315. ncre.addBonus(0, Bonus::CATAPULT);
  316. if(boost::algorithm::find_first(ncre.abilityRefs, "MULTI_HEADED"))
  317. ncre.addBonus(0, Bonus::ATTACKS_ALL_ADJACENT);
  318. if(boost::algorithm::find_first(ncre.abilityRefs, "IMMUNE_TO_MIND_SPELLS"))
  319. {
  320. std::vector<int> mindSpells = getMindSpells();
  321. for(int g=0; g<mindSpells.size(); ++g)
  322. ncre.addBonus(0, Bonus::SPELL_IMMUNITY, mindSpells[g]); //giants are immune to mind spells
  323. }
  324. if(boost::algorithm::find_first(ncre.abilityRefs, "IMMUNE_TO_FIRE_SPELLS"))
  325. ncre.addBonus(0, Bonus::FIRE_IMMUNITY);
  326. if(boost::algorithm::find_first(ncre.abilityRefs, "HAS_EXTENDED_ATTACK"))
  327. ncre.addBonus(0, Bonus::TWO_HEX_ATTACK_BREATH);;
  328. }
  329. if(ncre.nameSing!=std::string("") && ncre.namePl!=std::string(""))
  330. {
  331. ncre.idNumber = creatures.size();
  332. creatures.push_back(&ncre);
  333. }
  334. }
  335. ////second part of reading cr_abils.txt////
  336. bool contReading = true;
  337. while(contReading) //main reading loop
  338. {
  339. abils.getline(abilLine, MAX_LINE_SIZE);
  340. std::istringstream reader(abilLine);
  341. char command;
  342. reader >> command;
  343. switch(command)
  344. {
  345. case '+': //add new ability
  346. {
  347. int creatureID;
  348. Bonus *nsf = new Bonus();
  349. si32 buf;
  350. std::string type;
  351. reader >> creatureID;
  352. reader >> type;
  353. std::map<std::string, int>::const_iterator it = bonusNameMap.find(type);
  354. CCreature *cre = creatures[creatureID];
  355. if (it == bonusNameMap.end())
  356. {
  357. if(type == "DOUBLE_WIDE")
  358. cre->doubleWide = true;
  359. else if(type == "ENEMY_MORALE_DECREASING")
  360. {
  361. cre->addBonus(-1, Bonus::MORALE);
  362. cre->bonuses.back()->effectRange = Bonus::ONLY_ENEMY_ARMY;
  363. }
  364. else if(type == "ENEMY_LUCK_DECREASING")
  365. {
  366. cre->addBonus(-1, Bonus::LUCK);
  367. cre->bonuses.back()->effectRange = Bonus::ONLY_ENEMY_ARMY;
  368. }
  369. else
  370. tlog1 << "Error: invalid type " << type << " in cr_abils.txt" << std::endl;
  371. break;
  372. }
  373. nsf->type = it->second;
  374. reader >> buf; nsf->val = buf;
  375. reader >> buf; nsf->subtype = buf;
  376. reader >> buf; nsf->additionalInfo = buf;
  377. nsf->source = Bonus::CREATURE_ABILITY;
  378. nsf->sid = cre->idNumber;
  379. nsf->duration = Bonus::ONE_BATTLE;
  380. nsf->turnsRemain = 0;
  381. cre->addNewBonus(nsf);
  382. break;
  383. }
  384. case '-': //remove ability
  385. {
  386. int creatureID;
  387. std::string type;
  388. reader >> creatureID;
  389. reader >> type;
  390. std::map<std::string, int>::const_iterator it = bonusNameMap.find(type);
  391. if (it == bonusNameMap.end())
  392. {
  393. if(type == "DOUBLE_WIDE")
  394. creatures[creatureID]->doubleWide = false;
  395. else
  396. tlog1 << "Error: invalid type " << type << " in cr_abils.txt" << std::endl;
  397. break;
  398. }
  399. int typeNo = it->second;
  400. Bonus::BonusType ecf = static_cast<Bonus::BonusType>(typeNo);
  401. Bonus *b = creatures[creatureID]->getBonus(Selector::type(ecf));
  402. creatures[creatureID]->removeBonus(b);
  403. break;
  404. }
  405. case '0': //end reading
  406. {
  407. contReading = false;
  408. break;
  409. }
  410. default: //invalid command
  411. {
  412. tlog1 << "Parse error in file config/cr_abils.txt" << std::endl;
  413. break;
  414. }
  415. }
  416. }
  417. abils.close();
  418. tlog5 << "\t\tReading config/crerefnam.txt" << std::endl;
  419. //loading reference names
  420. std::ifstream ifs(DATA_DIR "/config/crerefnam.txt");
  421. int tempi;
  422. std::string temps;
  423. for (;;)
  424. {
  425. ifs >> tempi >> temps;
  426. if (tempi>=creatures.size())
  427. break;
  428. boost::assign::insert(nameToID)(temps,tempi);
  429. creatures[tempi]->nameRef=temps;
  430. }
  431. ifs.close();
  432. ifs.clear();
  433. tlog5 << "\t\tReading config/monsters.txt" << std::endl;
  434. ifs.open(DATA_DIR "/config/monsters.txt");
  435. {
  436. while(!ifs.eof())
  437. {
  438. int id, lvl;
  439. ifs >> id >> lvl;
  440. if(!ifs.good())
  441. break;
  442. CCreature *c = creatures[id];
  443. c->level = lvl;
  444. if(isbetw(lvl, 0, ARRAY_COUNT(creaturesOfLevel)))
  445. c->attachTo(&creaturesOfLevel[lvl]);
  446. else
  447. c->attachTo(&creaturesOfLevel[0]);
  448. }
  449. }
  450. BOOST_FOREACH(CBonusSystemNode &b, creaturesOfLevel)
  451. b.attachTo(&allCreatures);
  452. ifs.close();
  453. ifs.clear();
  454. tlog5 << "\t\tReading config/cr_factions.txt" << std::endl;
  455. ifs.open(DATA_DIR "/config/cr_factions.txt");
  456. while(!ifs.eof())
  457. {
  458. int id, fact;
  459. ifs >> id >> fact;
  460. creatures[id]->faction = fact;
  461. }
  462. ifs.close();
  463. ifs.clear();
  464. tlog5 << "\t\tReading config/cr_upgrade_list.txt" << std::endl;
  465. ifs.open(DATA_DIR "/config/cr_upgrade_list.txt");
  466. while(!ifs.eof())
  467. {
  468. int id, up;
  469. ifs >> id >> up;
  470. creatures[id]->upgrades.insert(up);
  471. }
  472. ifs.close();
  473. ifs.clear();
  474. //loading unit animation def names
  475. tlog5 << "\t\tReading config/CREDEFS.TXT" << std::endl;
  476. std::ifstream inp(DATA_DIR "/config/CREDEFS.TXT", std::ios::in | std::ios::binary); //this file is not in lod
  477. inp.seekg(0,std::ios::end); // na koniec
  478. int andame2 = inp.tellg(); // read length
  479. inp.seekg(0,std::ios::beg); // wracamy na poczatek
  480. char * bufor = new char[andame2+1]; // allocate memory
  481. inp.read((char*)bufor, andame2); // read map file to buffer
  482. inp.close();
  483. bufor[andame2] = 0;
  484. buf = std::string(bufor);
  485. delete [] bufor;
  486. i = 0; //buf iterator
  487. hmcr = 0;
  488. for(; i<andame2; ++i) //omitting rubbish
  489. {
  490. if(buf[i]=='\r')
  491. break;
  492. }
  493. i+=2;
  494. tlog5 << "We have "<<creatures.size() << " creatures\n";
  495. for(int s=0; s<creatures.size(); ++s)
  496. {
  497. //tlog5 <<"\t\t\t" << s <<". Reading defname. \n";
  498. int befi=i;
  499. std::string rub;
  500. for(; i<andame2; ++i)
  501. {
  502. if(buf[i]==' ')
  503. break;
  504. }
  505. rub = buf.substr(befi, i-befi);
  506. ++i;
  507. befi=i;
  508. for(; i<andame2; ++i)
  509. {
  510. if(buf[i]=='\r')
  511. break;
  512. }
  513. std::string defName = buf.substr(befi, i-befi);
  514. creatures[s]->animDefName = defName;
  515. }
  516. tlog5 << "\t\tReading CRANIM.TXT.txt" << std::endl;
  517. loadAnimationInfo();
  518. //loading id to projectile mapping
  519. tlog5 << "\t\tReading config/cr_shots.txt" << std::endl;
  520. std::ifstream inp2(DATA_DIR "/config/cr_shots.txt", std::ios::in | std::ios::binary); //this file is not in lod
  521. char dump [200];
  522. inp2.getline(dump, 200);
  523. while(true)
  524. {
  525. int id;
  526. std::string name;
  527. bool spin;
  528. inp2>>id;
  529. if(id == -1)
  530. break;
  531. inp2>>name;
  532. idToProjectile[id] = name;
  533. inp2>>spin;
  534. idToProjectileSpin[id] = spin;
  535. }
  536. inp2.close();
  537. //reading factionToTurretCreature
  538. tlog5 << "\t\tReading config/cr_to_turret.txt" << std::endl;
  539. std::ifstream inp3(DATA_DIR "/config/cr_to_turret.txt", std::ios::in | std::ios::binary); //this file is not in lod
  540. std::string dump2;
  541. inp3 >> dump2 >> dump2;
  542. for(int g=0; g<F_NUMBER; ++g)
  543. {
  544. inp3 >> factionToTurretCreature[g];
  545. }
  546. inp3.close();
  547. //reading creature ability names
  548. ifs.open(DATA_DIR "/config/bonusnames.txt");
  549. {
  550. std::string buf2, buf3, line;
  551. int i;
  552. std::map<std::string,int>::const_iterator it;
  553. getline(ifs, line); //skip 1st line
  554. while(!ifs.eof())
  555. {
  556. getline(ifs, buf, '\t');
  557. getline(ifs, buf2, '\t');
  558. getline(ifs, buf3);
  559. it = bonusNameMap.find(buf);
  560. if (it != bonusNameMap.end())
  561. stackBonuses[it->second] = std::pair<std::string, std::string>(buf2,buf3);
  562. else
  563. tlog2 << "Bonus " << buf << " not recognized, ingoring\n";
  564. }
  565. }
  566. ifs.close();
  567. if (STACK_EXP) //reading default stack experience bonuses
  568. {
  569. buf = bitmaph->getTextFile("CREXPBON.TXT");
  570. int it = 0;
  571. si32 creid = -1;
  572. Bonus b; //prototype with some default properties
  573. b.source = Bonus::STACK_EXPERIENCE;
  574. b.duration = Bonus::PERMANENT;
  575. b.valType = Bonus::ADDITIVE_VALUE;
  576. b.effectRange = Bonus::NO_LIMIT;
  577. b.additionalInfo = 0;
  578. b.turnsRemain = 0;
  579. BonusList bl;
  580. loadToIt (dump2, buf, it, 3); //ignore first line
  581. loadToIt (dump2, buf, it, 4); //ignore index
  582. loadStackExp(b, bl, buf, it);
  583. BOOST_FOREACH(Bonus * b, bl)
  584. addBonusForAllCreatures(b); //health bonus is common for all
  585. loadToIt (dump2, buf, it, 3); //crop comment
  586. for (i = 1; i < 7; ++i)
  587. {
  588. for (int j = 0; j < 4; ++j) //four modifiers common for tiers
  589. {
  590. loadToIt (dump2, buf, it, 4); //ignore index
  591. bl.clear();
  592. loadStackExp(b, bl, buf, it);
  593. BOOST_FOREACH(Bonus * b, bl)
  594. addBonusForTier(i, b);
  595. loadToIt (dump2, buf, it, 3); //crop comment
  596. }
  597. }
  598. for (int j = 0; j < 4; ++j) //tier 7
  599. {
  600. loadToIt (dump2, buf, it, 4); //ignore index
  601. bl.clear();
  602. loadStackExp(b, bl, buf, it);
  603. BOOST_FOREACH(Bonus * b, bl)
  604. {
  605. addBonusForTier(7, b);
  606. creaturesOfLevel[0].addNewBonus(b); //bonuses from level 7 are given to high-level creatures
  607. }
  608. loadToIt (dump2, buf, it, 3); //crop comment
  609. }
  610. do //parse everything that's left
  611. {
  612. loadToIt(creid, buf, it, 4); //get index
  613. b.sid = creid; //id = this particular creature ID
  614. loadStackExp(b, creatures[creid]->bonuses, buf, it); //add directly to CCreature Node
  615. loadToIt (dump2, buf, it, 3); //crop comment
  616. } while (it < buf.size());
  617. //Calculate rank exp values, formula appears complicated bu no parsing needed
  618. expRanks.resize(8);
  619. int dif = 0;
  620. it = 8000; //ignore name of this variable
  621. expRanks[0].push_back(it);
  622. for (int j = 1; j < 10; ++j) //used for tiers 8-10, and all other probably
  623. {
  624. expRanks[0].push_back(expRanks[0][j-1] + it + dif);
  625. dif += it/5;
  626. }
  627. for (i = 1; i < 8; ++i)
  628. {
  629. dif = 0;
  630. it = 1000 * i;
  631. expRanks[i].push_back(it);
  632. for (int j = 1; j < 10; ++j)
  633. {
  634. expRanks[i].push_back(expRanks[i][j-1] + it + dif);
  635. dif += it/5;
  636. }
  637. }
  638. buf = bitmaph->getTextFile("CREXPMOD.TXT"); //could be hardcoded though, lots of useless info
  639. it = 0;
  640. loadToIt (dump2, buf, it, 3); //ignore first line
  641. maxExpPerBattle.resize(8);
  642. si32 val;
  643. for (i = 1; i < 8; ++i)
  644. {
  645. loadToIt (dump2, buf, it, 4); //index
  646. loadToIt (dump2, buf, it, 4); //float multiplier -> hardcoded
  647. loadToIt (dump2, buf, it, 4); //ignore upgrade mod? ->hardcoded
  648. loadToIt (dump2, buf, it, 4); //already calculated
  649. loadToIt (val, buf, it, 4);
  650. maxExpPerBattle[i] = (ui32)val;
  651. loadToIt (val, buf, it, 4); //11th level
  652. val += (si32)expRanks[i].back();
  653. expRanks[i].push_back((ui32)val);
  654. loadToIt (dump2, buf, it, 3); //crop comment
  655. }
  656. //skeleton gets exp penalty
  657. creatures[56].get()->addBonus(-50, Bonus::EXP_MULTIPLIER, -1);
  658. creatures[57].get()->addBonus(-50, Bonus::EXP_MULTIPLIER, -1);
  659. //exp for tier >7, rank 11
  660. expRanks[0].push_back(147000);
  661. expAfterUpgrade = 75; //percent
  662. maxExpPerBattle[0] = maxExpPerBattle[7];
  663. }//end of Stack Experience
  664. //experiment - add 100 to attack for creatures of tier 1
  665. // Bonus *b = new Bonus(Bonus::PERMANENT, Bonus::PRIMARY_SKILL, Bonus::OTHER, +100, 0, 0);
  666. // addBonusForTier(1, b);
  667. }
  668. void CCreatureHandler::loadAnimationInfo()
  669. {
  670. std::string buf = bitmaph->getTextFile("CRANIM.TXT");
  671. int andame = buf.size();
  672. int i=0; //buf iterator
  673. int hmcr=0;
  674. for(; i<andame; ++i)
  675. {
  676. if(buf[i]=='\r')
  677. ++hmcr;
  678. if(hmcr==2)
  679. break;
  680. }
  681. i+=2;
  682. for(int dd=0; dd<creatures.size(); ++dd)
  683. {
  684. //tlog5 << "\t\t\tReading animation info for creature " << dd << std::endl;
  685. loadUnitAnimInfo(*creatures[dd], buf, i);
  686. }
  687. return;
  688. }
  689. void CCreatureHandler::loadUnitAnimInfo(CCreature & unit, std::string & src, int & i)
  690. {
  691. int befi=i;
  692. unit.timeBetweenFidgets = readFloat(befi, i, src.size(), src);
  693. while(unit.timeBetweenFidgets == 0.0)
  694. {
  695. for(; i<src.size(); ++i)
  696. {
  697. if(src[i]=='\r')
  698. break;
  699. }
  700. i+=2;
  701. unit.timeBetweenFidgets = readFloat(befi, i, src.size(), src);
  702. }
  703. unit.walkAnimationTime = readFloat(befi, i, src.size(), src);
  704. unit.attackAnimationTime = readFloat(befi, i, src.size(), src);
  705. unit.flightAnimationDistance = readFloat(befi, i, src.size(), src);
  706. ///////////////////////
  707. unit.upperRightMissleOffsetX = readNumber(befi, i, src.size(), src);
  708. unit.upperRightMissleOffsetY = readNumber(befi, i, src.size(), src);
  709. unit.rightMissleOffsetX = readNumber(befi, i, src.size(), src);
  710. unit.rightMissleOffsetY = readNumber(befi, i, src.size(), src);
  711. unit.lowerRightMissleOffsetX = readNumber(befi, i, src.size(), src);
  712. unit.lowerRightMissleOffsetY = readNumber(befi, i, src.size(), src);
  713. ///////////////////////
  714. for(int jjj=0; jjj<12; ++jjj)
  715. {
  716. unit.missleFrameAngles[jjj] = readFloat(befi, i, src.size(), src);
  717. }
  718. unit.troopCountLocationOffset= readNumber(befi, i, src.size(), src);
  719. unit.attackClimaxFrame = readNumber(befi, i, src.size(), src);
  720. for(; i<src.size(); ++i)
  721. {
  722. if(src[i]=='\r')
  723. break;
  724. }
  725. i+=2;
  726. }
  727. void CCreatureHandler::loadStackExp(Bonus & b, BonusList & bl, std::string & src, int & it) //help function for parsing CREXPBON.txt
  728. {
  729. std::string buf, mod;
  730. bool enable = false; //some bonuses are activated with values 2 or 1
  731. loadToIt(buf, src, it, 4);
  732. loadToIt(mod, src, it, 4);
  733. switch (buf[0])
  734. {
  735. case 'H':
  736. b.type = Bonus::STACK_HEALTH;
  737. b.valType = Bonus::PERCENT_TO_BASE;
  738. break;
  739. case 'A':
  740. b.type = Bonus::PRIMARY_SKILL;
  741. b.subtype = PrimarySkill::ATTACK;
  742. break;
  743. case 'D':
  744. b.type = Bonus::PRIMARY_SKILL;
  745. b.subtype = PrimarySkill::DEFENSE;
  746. break;
  747. case 'M': //Max damage
  748. b.type = Bonus::CREATURE_DAMAGE;
  749. b.subtype = 2;
  750. break;
  751. case 'm': //Min damage
  752. b.type = Bonus::CREATURE_DAMAGE;
  753. b.subtype = 1;
  754. break;
  755. case 'S':
  756. b.type = Bonus::STACKS_SPEED; break;
  757. case 'b':
  758. b.type = Bonus::ENEMY_DEFENCE_REDUCTION; break;
  759. case 'C':
  760. b.type = Bonus::CHANGES_SPELL_COST_FOR_ALLY; break;
  761. case 'e':
  762. b.type = Bonus::DOUBLE_DAMAGE_CHANCE; break;
  763. case 'g':
  764. b.type = Bonus::SPELL_DAMAGE_REDUCTION; break;
  765. case 'R':
  766. b.type = Bonus::ADDITIONAL_RETALIATION; break;
  767. case 'f': //on-off skill
  768. enable = true; //sometimes format is: 2 -> 0, 1 -> 1
  769. switch (mod[0])
  770. {
  771. case 'A':
  772. b.type = Bonus::ATTACKS_ALL_ADJACENT; break;
  773. case 'b':
  774. b.type = Bonus::RETURN_AFTER_STRIKE; break;
  775. case 'B':
  776. b.type = Bonus::TWO_HEX_ATTACK_BREATH; break;
  777. case 'c':
  778. b.type = Bonus::JOUSTING; break;
  779. case 'D':
  780. b.type = Bonus::ADDITIONAL_ATTACK; break;
  781. case 'f':
  782. b.type = Bonus::FEARLESS; break;
  783. case 'F':
  784. b.type = Bonus::FLYING; break;
  785. case 'm':
  786. b.type = Bonus::SELF_MORALE; break;
  787. case 'M':
  788. b.type = Bonus::NO_MORALE; break;
  789. case 'p': //Mind spells
  790. case 'P':
  791. {
  792. loadMindImmunity(b, bl, src, it);
  793. return;
  794. }
  795. return;
  796. case 'r': //TODO: Rebirth on/off? makes sense?
  797. break;
  798. case 'R':
  799. b.type = Bonus::BLOCKS_RETALIATION; break;
  800. case 's':
  801. b.type = Bonus::FREE_SHOOTING; break;
  802. case 'u':
  803. b.type = Bonus::SPELL_RESISTANCE_AURA; break;
  804. case 'U':
  805. b.type = Bonus::UNDEAD; break;
  806. default:
  807. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  808. return;
  809. break;
  810. }
  811. break;
  812. case 'w': //specific spell immunities, enabled/disabled
  813. enable = true;
  814. switch (mod[0])
  815. {
  816. case 'B': //Blind
  817. b.type = Bonus::SPELL_IMMUNITY;
  818. b.subtype = 74;
  819. break;
  820. case 'H': //Hypnotize
  821. b.type = Bonus::SPELL_IMMUNITY;
  822. b.subtype = 60;
  823. break;
  824. case 'I': //Implosion
  825. b.type = Bonus::SPELL_IMMUNITY;
  826. b.subtype = 18;
  827. break;
  828. case 'K': //Berserk
  829. b.type = Bonus::SPELL_IMMUNITY;
  830. b.subtype = 59;
  831. break;
  832. case 'M': //Meteor Shower
  833. b.type = Bonus::SPELL_IMMUNITY;
  834. b.subtype = 23;
  835. break;
  836. case 'R': //Armageddon
  837. b.type = Bonus::SPELL_IMMUNITY;
  838. b.subtype = 26;
  839. break;
  840. case 'S': //Slow
  841. b.type = Bonus::SPELL_IMMUNITY;
  842. b.subtype = 54;
  843. break;
  844. case '6':
  845. case '7':
  846. case '8':
  847. case '9':
  848. b.type = Bonus::LEVEL_SPELL_IMMUNITY; //TODO - value can't be read afterwards
  849. b.val = std::atoi(mod.c_str()) - 5;
  850. break;
  851. case ':':
  852. b.type = Bonus::LEVEL_SPELL_IMMUNITY;
  853. b.val = SPELL_LEVELS; //in case someone adds higher level spells?
  854. break;
  855. default:
  856. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  857. return;
  858. }
  859. break;
  860. case 'i':
  861. enable = true;
  862. b.type = Bonus::NO_DISTANCE_PENALTY;
  863. break;
  864. case 'o':
  865. enable = true;
  866. b.type = Bonus::NO_OBSTACLES_PENALTY;
  867. break;
  868. case 'a':
  869. //case 'c': //some special abilities are threated as spells, will cause bugs
  870. b.type = Bonus::SPELL_AFTER_ATTACK;
  871. b.subtype = stringToNumber(mod);
  872. break;
  873. case 'h':
  874. b.type= Bonus::HATE;
  875. b.subtype = stringToNumber(mod);
  876. break;
  877. default:
  878. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  879. return;
  880. break;
  881. }
  882. switch (mod[0])
  883. {
  884. case '+':
  885. case '=': //should we allow percent values to stack or pick highest?
  886. b.valType = Bonus::ADDITIVE_VALUE;
  887. break;
  888. }
  889. //limiters, range
  890. si32 lastVal, curVal, lastLev = 0;
  891. if (enable) //0 and 2 means non-active, 1 - active
  892. {
  893. b.val = 0; //on-off ability, no value specified
  894. loadToIt (curVal, src, it, 4); // 0 level is never active
  895. for (int i = 1; i < 11; ++i)
  896. {
  897. loadToIt (curVal, src, it, 4);
  898. if (curVal == 1)
  899. {
  900. b.val = curVal;
  901. b.limiter.reset (new RankRangeLimiter(i));
  902. bl.push_back(new Bonus(b));
  903. break; //never turned off it seems
  904. }
  905. }
  906. }
  907. else
  908. {
  909. loadToIt (lastVal, src, it, 4); //basic value, not particularly useful but existent
  910. for (int i = 1; i < 11; ++i)
  911. {
  912. loadToIt (curVal, src, it, 4);
  913. if (curVal > lastVal) //threshold, add new bonus
  914. {
  915. b.val = curVal - lastVal;
  916. lastVal = curVal;
  917. b.limiter.reset (new RankRangeLimiter(i));
  918. bl.push_back(new Bonus(b));
  919. lastLev = i; //start new range from here, i = previous rank
  920. }
  921. else if (curVal < lastVal)
  922. {
  923. b.val = lastVal;
  924. b.limiter.reset (new RankRangeLimiter(lastLev, i));
  925. }
  926. }
  927. }
  928. }
  929. void CCreatureHandler::loadMindImmunity(Bonus & b, BonusList & bl, std::string & src, int & it)
  930. {
  931. CCreature * cre = creatures[b.sid]; //odd workaround
  932. b.type = Bonus::SPELL_IMMUNITY;
  933. b.val = Bonus::BASE_NUMBER;
  934. si32 lastVal, curVal, lastLev = 0;
  935. b.val = 0; //on-off ability, no value specified
  936. loadToIt (curVal, src, it, 4); // 0 level is never active
  937. for (int i = 1; i < 11; ++i)
  938. {
  939. loadToIt (curVal, src, it, 4);
  940. if (curVal == 1)
  941. {
  942. b.val = curVal;
  943. b.limiter.reset (new RankRangeLimiter(i));
  944. break; //only one limiter here
  945. }
  946. }
  947. std::vector<int> mindSpells = getMindSpells(); //multiplicate spells
  948. for (int g=0; g < mindSpells.size(); ++g)
  949. {
  950. b.subtype = mindSpells[g];
  951. cre->bonuses.push_back(new Bonus(b));
  952. }
  953. }
  954. int CCreatureHandler::stringToNumber(std::string & s)
  955. {
  956. boost::algorithm::replace_first(s,"#",""); //drop hash character
  957. return std::atoi(s.c_str());
  958. }
  959. CCreatureHandler::~CCreatureHandler()
  960. {
  961. }
  962. static int retreiveRandNum(const boost::function<int()> &randGen)
  963. {
  964. if(randGen)
  965. return randGen();
  966. else
  967. return rand();
  968. }
  969. template <typename T> const T & pickRandomElementOf(const std::vector<T> &v, const boost::function<int()> &randGen)
  970. {
  971. return v[retreiveRandNum(randGen) % v.size()];
  972. }
  973. int CCreatureHandler::pickRandomMonster(const boost::function<int()> &randGen, int tier) const
  974. {
  975. int r = 0;
  976. if(tier == -1) //pick any allowed creature
  977. {
  978. do
  979. {
  980. pickRandomElementOf(creatures, randGen);
  981. //r = retreiveRandNum(randGen) % CREATURES_COUNT;
  982. } while (vstd::contains(VLC->creh->notUsedMonsters,r));
  983. }
  984. else
  985. {
  986. assert(iswith(tier, 1, 7));
  987. std::vector<int> allowed;
  988. BOOST_FOREACH(const CBonusSystemNode *b, creaturesOfLevel[tier].children)
  989. {
  990. assert(b->nodeType == CBonusSystemNode::CREATURE);
  991. int creid = static_cast<const CCreature*>(b)->idNumber;
  992. if(!vstd::contains(notUsedMonsters, creid))
  993. allowed.push_back(creid);
  994. }
  995. if(!allowed.size())
  996. {
  997. tlog2 << "Cannot pick a random creature of tier " << tier << "!\n";
  998. return 0;
  999. }
  1000. return pickRandomElementOf(allowed, randGen);
  1001. }
  1002. return r;
  1003. }
  1004. void CCreatureHandler::addBonusForTier(int tier, Bonus *b)
  1005. {
  1006. assert(iswith(tier, 1, 7));
  1007. creaturesOfLevel[tier].addNewBonus(b);
  1008. }
  1009. void CCreatureHandler::addBonusForAllCreatures(Bonus *b)
  1010. {
  1011. allCreatures.addNewBonus(b);
  1012. }