CCreatureHandler.cpp 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094
  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()->effectRange = Bonus::ONLY_ALLIED_ARMY;
  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->id = 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. BonusList bl;
  579. loadToIt (dump2, buf, it, 3); //ignore first line
  580. loadToIt (dump2, buf, it, 4); //ignore index
  581. loadStackExp(b, bl, buf, it);
  582. BOOST_FOREACH(Bonus * b, bl)
  583. addBonusForAllCreatures(b); //health bonus is common for all
  584. loadToIt (dump2, buf, it, 3); //crop comment
  585. for (i = 1; i < 8; ++i)
  586. {
  587. for (int j = 0; j < 4; ++j) //four modifiers common for tiers
  588. {
  589. loadToIt (dump2, buf, it, 4); //ignore index
  590. bl.clear();
  591. loadStackExp(b, bl, buf, it);
  592. BOOST_FOREACH(Bonus * b, bl)
  593. addBonusForTier(i, b);
  594. loadToIt (dump2, buf, it, 3); //crop comment
  595. }
  596. }
  597. do //parse everything that's left
  598. {
  599. loadToIt(creid, buf, it, 4); //get index
  600. b.id = creid; //id = this particular creature ID
  601. loadStackExp(b, creatures[creid]->bonuses, buf, it); //add directly to CCreature Node
  602. loadToIt (dump2, buf, it, 3); //crop comment
  603. } while (it < buf.size());
  604. //Calculate rank exp values, formula appears complicated bu no parsing needed
  605. expRanks.resize(8);
  606. int dif = 0;
  607. it = 8000; //ignore name of this variable
  608. expRanks[0].push_back(it);
  609. for (int j = 1; j < 10; ++j) //used for tiers 8-10, and all other probably
  610. {
  611. expRanks[0].push_back(expRanks[0][j-1] + it + dif);
  612. dif += it/5;
  613. }
  614. for (i = 1; i < 8; ++i)
  615. {
  616. dif = 0;
  617. it = 1000 * i;
  618. expRanks[i].push_back(it);
  619. for (int j = 1; j < 10; ++j)
  620. {
  621. expRanks[i].push_back(expRanks[i][j-1] + it + dif);
  622. dif += it/5;
  623. }
  624. }
  625. buf = bitmaph->getTextFile("CREXPMOD.TXT"); //could be hardcoded though, lots of useless info
  626. it = 0;
  627. loadToIt (dump2, buf, it, 3); //ignore first line
  628. maxExpPerBattle.resize(8);
  629. si32 val;
  630. for (i = 1; i < 8; ++i)
  631. {
  632. loadToIt (dump2, buf, it, 4); //index
  633. loadToIt (dump2, buf, it, 4); //float multiplier -> hardcoded
  634. loadToIt (dump2, buf, it, 4); //ignore upgrade mod? ->hardcoded
  635. loadToIt (dump2, buf, it, 4); //already calculated
  636. loadToIt (val, buf, it, 4);
  637. maxExpPerBattle[i] = (ui32)val;
  638. loadToIt (val, buf, it, 4); //11th level
  639. val += (si32)expRanks[i].back();
  640. expRanks[i].push_back((ui32)val);
  641. loadToIt (dump2, buf, it, 3); //crop comment
  642. }
  643. //skeleton gets exp penalty
  644. creatures[56].get()->addBonus(-50, Bonus::EXP_MULTIPLIER, -1);
  645. creatures[57].get()->addBonus(-50, Bonus::EXP_MULTIPLIER, -1);
  646. //exp for tier >7, rank 11
  647. expRanks[0].push_back(14700);
  648. expAfterUpgrade = 75; //percent
  649. }//end of Stack Experience
  650. //experiment - add 100 to attack for creatures of tier 1
  651. // Bonus *b = new Bonus(Bonus::PERMANENT, Bonus::PRIMARY_SKILL, Bonus::OTHER, +100, 0, 0);
  652. // addBonusForTier(1, b);
  653. }
  654. void CCreatureHandler::loadAnimationInfo()
  655. {
  656. std::string buf = bitmaph->getTextFile("CRANIM.TXT");
  657. int andame = buf.size();
  658. int i=0; //buf iterator
  659. int hmcr=0;
  660. for(; i<andame; ++i)
  661. {
  662. if(buf[i]=='\r')
  663. ++hmcr;
  664. if(hmcr==2)
  665. break;
  666. }
  667. i+=2;
  668. for(int dd=0; dd<creatures.size(); ++dd)
  669. {
  670. //tlog5 << "\t\t\tReading animation info for creature " << dd << std::endl;
  671. loadUnitAnimInfo(*creatures[dd], buf, i);
  672. }
  673. return;
  674. }
  675. void CCreatureHandler::loadUnitAnimInfo(CCreature & unit, std::string & src, int & i)
  676. {
  677. int befi=i;
  678. unit.timeBetweenFidgets = readFloat(befi, i, src.size(), src);
  679. while(unit.timeBetweenFidgets == 0.0)
  680. {
  681. for(; i<src.size(); ++i)
  682. {
  683. if(src[i]=='\r')
  684. break;
  685. }
  686. i+=2;
  687. unit.timeBetweenFidgets = readFloat(befi, i, src.size(), src);
  688. }
  689. unit.walkAnimationTime = readFloat(befi, i, src.size(), src);
  690. unit.attackAnimationTime = readFloat(befi, i, src.size(), src);
  691. unit.flightAnimationDistance = readFloat(befi, i, src.size(), src);
  692. ///////////////////////
  693. unit.upperRightMissleOffsetX = readNumber(befi, i, src.size(), src);
  694. unit.upperRightMissleOffsetY = readNumber(befi, i, src.size(), src);
  695. unit.rightMissleOffsetX = readNumber(befi, i, src.size(), src);
  696. unit.rightMissleOffsetY = readNumber(befi, i, src.size(), src);
  697. unit.lowerRightMissleOffsetX = readNumber(befi, i, src.size(), src);
  698. unit.lowerRightMissleOffsetY = readNumber(befi, i, src.size(), src);
  699. ///////////////////////
  700. for(int jjj=0; jjj<12; ++jjj)
  701. {
  702. unit.missleFrameAngles[jjj] = readFloat(befi, i, src.size(), src);
  703. }
  704. unit.troopCountLocationOffset= readNumber(befi, i, src.size(), src);
  705. unit.attackClimaxFrame = readNumber(befi, i, src.size(), src);
  706. for(; i<src.size(); ++i)
  707. {
  708. if(src[i]=='\r')
  709. break;
  710. }
  711. i+=2;
  712. }
  713. void CCreatureHandler::loadStackExp(Bonus & b, BonusList & bl, std::string & src, int & it) //help function for parsing CREXPBON.txt
  714. { //TODO: handle rank limiters
  715. std::string buf, mod;
  716. bool enable = false; //some bonuses are activated with values 2 or 1
  717. loadToIt(buf, src, it, 4);
  718. loadToIt(mod, src, it, 4);
  719. switch (buf[0])
  720. {
  721. case 'H':
  722. b.type = Bonus::STACK_HEALTH;
  723. b.valType = Bonus::PERCENT_TO_BASE;
  724. break;
  725. case 'A':
  726. b.type = Bonus::PRIMARY_SKILL;
  727. b.subtype = PrimarySkill::ATTACK;
  728. break;
  729. case 'D':
  730. b.type = Bonus::PRIMARY_SKILL;
  731. b.subtype = PrimarySkill::DEFENSE;
  732. break;
  733. case 'M': //Max damage
  734. b.type = Bonus::CREATURE_DAMAGE;
  735. b.subtype = 2;
  736. break;
  737. case 'm': //Min damage
  738. b.type = Bonus::CREATURE_DAMAGE;
  739. b.subtype = 1;
  740. break;
  741. case 'S':
  742. b.type = Bonus::STACKS_SPEED;
  743. b.additionalInfo = 0;
  744. break;
  745. case 'b':
  746. b.type = Bonus::ENEMY_DEFENCE_REDUCTION; break;
  747. case 'C':
  748. b.type = Bonus::CHANGES_SPELL_COST_FOR_ALLY; break;
  749. case 'e':
  750. b.type = Bonus::DOUBLE_DAMAGE_CHANCE; break;
  751. case 'g':
  752. b.type = Bonus::SPELL_DAMAGE_REDUCTION; break;
  753. case 'R':
  754. b.type = Bonus::ADDITIONAL_RETALIATION; break;
  755. case 'f': //on-off skill
  756. enable = true; //sometimes format is: 2 -> 0, 1 -> 1
  757. switch (mod[0])
  758. {
  759. case 'A':
  760. b.type = Bonus::ATTACKS_ALL_ADJACENT; break;
  761. case 'b':
  762. b.type = Bonus::RETURN_AFTER_STRIKE; break;
  763. case 'B':
  764. b.type = Bonus::TWO_HEX_ATTACK_BREATH; break;
  765. case 'c':
  766. b.type = Bonus::JOUSTING; break;
  767. case 'D':
  768. b.type = Bonus::ADDITIONAL_ATTACK; break;
  769. case 'f':
  770. b.type = Bonus::FEARLESS; break;
  771. case 'F':
  772. b.type = Bonus::FLYING; break;
  773. case 'm':
  774. b.type = Bonus::SELF_MORALE; break;
  775. case 'M':
  776. b.type = Bonus::NO_MORALE; break;
  777. case 'p': //Mind spells
  778. case 'P':
  779. {
  780. loadMindImmunity(b, bl, src, it);
  781. return;
  782. }
  783. return;
  784. case 'r': //TODO: Rebirth on/off? makes sense?
  785. break;
  786. case 'R':
  787. b.type = Bonus::BLOCKS_RETALIATION; break;
  788. case 's':
  789. b.type = Bonus::FREE_SHOOTING; break;
  790. case 'u':
  791. b.type = Bonus::SPELL_RESISTANCE_AURA; break;
  792. break;
  793. case 'U':
  794. b.type = Bonus::UNDEAD; break;
  795. default:
  796. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  797. break;
  798. }
  799. break;
  800. case 'w': //specific spell immunities, enabled/disabled
  801. enable = true;
  802. switch (mod[0])
  803. {
  804. case 'B': //Blind
  805. b.type = Bonus::SPELL_IMMUNITY;
  806. b.subtype = 74;
  807. break;
  808. case 'H': //Hypnotize
  809. b.type = Bonus::SPELL_IMMUNITY;
  810. b.subtype = 60;
  811. break;
  812. case 'I': //Implosion
  813. b.type = Bonus::SPELL_IMMUNITY;
  814. b.subtype = 18;
  815. break;
  816. case 'K': //Berserk
  817. b.type = Bonus::SPELL_IMMUNITY;
  818. b.subtype = 59;
  819. break;
  820. case 'M': //Meteor Shower
  821. b.type = Bonus::SPELL_IMMUNITY;
  822. b.subtype = 23;
  823. break;
  824. case 'R': //Armageddon
  825. b.type = Bonus::SPELL_IMMUNITY;
  826. b.subtype = 26;
  827. break;
  828. case 'S': //Slow
  829. b.type = Bonus::SPELL_IMMUNITY;
  830. b.subtype = 54;
  831. break;
  832. case '6': //problem - in VCMI value represents level, here it represents on/off
  833. case '7':
  834. case '8':
  835. case '9':
  836. b.type = Bonus::LEVEL_SPELL_IMMUNITY; //TODO - value can't be read afterwards
  837. b.val = std::atoi(mod.c_str()) - 5;
  838. break;
  839. case ':':
  840. b.type = Bonus::LEVEL_SPELL_IMMUNITY;
  841. b.val = SPELL_LEVELS; //in case someone adds higher level spells?
  842. break;
  843. default:
  844. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  845. }
  846. break;
  847. case 'i':
  848. enable = true;
  849. b.type = Bonus::NO_DISTANCE_PENALTY;
  850. break;
  851. case 'o':
  852. enable = true;
  853. b.type = Bonus::NO_OBSTACLES_PENALTY;
  854. break;
  855. case 'a':
  856. //case 'c': //some special abilities are threated as spells, will cause bugs
  857. b.type = Bonus::SPELL_AFTER_ATTACK;
  858. b.subtype = stringToNumber(mod);
  859. break;
  860. case 'h':
  861. b.type= Bonus::HATE;
  862. b.subtype = stringToNumber(mod);
  863. break;
  864. default:
  865. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  866. break;
  867. }
  868. switch (mod[0])
  869. {
  870. case '+':
  871. case '=': //should we allow percent values to stack or pick highest?
  872. b.valType = Bonus::ADDITIVE_VALUE;
  873. break;
  874. }
  875. //limiters, range
  876. si32 lastVal, curVal, lastLev = 0;
  877. if (enable) //0 and 2 means non-active, 1 - active
  878. {
  879. b.val = 0; //on-off ability, no value specified
  880. loadToIt (curVal, src, it, 4); // 0 level is never active
  881. for (int i = 1; i < 11; ++i)
  882. {
  883. loadToIt (curVal, src, it, 4);
  884. if (curVal == 1)
  885. {
  886. b.val = curVal;
  887. b.limiter.reset (new RankRangeLimiter(i));
  888. bl.push_back(new Bonus(b));
  889. break; //never turned off it seems
  890. }
  891. }
  892. }
  893. else
  894. {
  895. loadToIt (lastVal, src, it, 4); //basic value, not particularly useful but existent
  896. for (int i = 1; i < 11; ++i)
  897. {
  898. loadToIt (curVal, src, it, 4);
  899. if (curVal > lastVal) //threshold, add new bonus
  900. {
  901. b.val = curVal - lastVal;
  902. lastVal = curVal;
  903. b.limiter.reset (new RankRangeLimiter(i));
  904. bl.push_back(new Bonus(b));
  905. lastLev = i; //start new range from here, i = previous rank
  906. }
  907. else if (curVal < lastVal)
  908. {
  909. b.val = lastVal;
  910. b.limiter.reset (new RankRangeLimiter(lastLev, i));
  911. }
  912. }
  913. }
  914. }
  915. void CCreatureHandler::loadMindImmunity(Bonus & b, BonusList & bl, std::string & src, int & it)
  916. {
  917. CCreature * cre = creatures[b.id]; //odd workaround
  918. b.type = Bonus::SPELL_IMMUNITY;
  919. b.val = Bonus::BASE_NUMBER;
  920. std::vector<si32> values;
  921. values.resize(10);
  922. si32 val;
  923. loadToIt (val, src, it, 4); //basic value
  924. for (int i = 0; i < 10; ++i)
  925. {
  926. loadToIt (values[i], src, it, 4);
  927. if (values[i] = 2)
  928. values[i] = 0;
  929. }
  930. std::vector<int> mindSpells = getMindSpells();
  931. for (int g=0; g < mindSpells.size(); ++g)
  932. {
  933. b.subtype = mindSpells[g];
  934. cre->bonuses.push_back(new Bonus(b));
  935. }
  936. }
  937. int CCreatureHandler::stringToNumber(std::string & s)
  938. {
  939. boost::algorithm::replace_first(s,"#",""); //drop hash character
  940. return std::atoi(s.c_str());
  941. }
  942. CCreatureHandler::~CCreatureHandler()
  943. {
  944. }
  945. static int retreiveRandNum(const boost::function<int()> &randGen)
  946. {
  947. if(randGen)
  948. return randGen();
  949. else
  950. return rand();
  951. }
  952. template <typename T> const T & pickRandomElementOf(const std::vector<T> &v, const boost::function<int()> &randGen)
  953. {
  954. return v[retreiveRandNum(randGen) % v.size()];
  955. }
  956. int CCreatureHandler::pickRandomMonster(const boost::function<int()> &randGen, int tier) const
  957. {
  958. int r = 0;
  959. if(tier == -1) //pick any allowed creature
  960. {
  961. do
  962. {
  963. pickRandomElementOf(creatures, randGen);
  964. //r = retreiveRandNum(randGen) % CREATURES_COUNT;
  965. } while (vstd::contains(VLC->creh->notUsedMonsters,r));
  966. }
  967. else
  968. {
  969. assert(iswith(tier, 1, 7));
  970. std::vector<int> allowed;
  971. BOOST_FOREACH(const CBonusSystemNode *b, creaturesOfLevel[tier].children)
  972. {
  973. assert(b->nodeType == CBonusSystemNode::CREATURE);
  974. int creid = static_cast<const CCreature*>(b)->idNumber;
  975. if(!vstd::contains(notUsedMonsters, creid))
  976. allowed.push_back(creid);
  977. }
  978. if(!allowed.size())
  979. {
  980. tlog2 << "Cannot pick a random creature of tier " << tier << "!\n";
  981. return 0;
  982. }
  983. return pickRandomElementOf(allowed, randGen);
  984. }
  985. return r;
  986. }
  987. void CCreatureHandler::addBonusForTier(int tier, Bonus *b)
  988. {
  989. assert(iswith(tier, 1, 7));
  990. creaturesOfLevel[tier].addNewBonus(b);
  991. }
  992. void CCreatureHandler::addBonusForAllCreatures(Bonus *b)
  993. {
  994. allCreatures.addNewBonus(b);
  995. }