CCreatureHandler.cpp 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131
  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.addBonus(ncre.shots, Bonus::SHOTS);
  258. ncre.spells = readNumber(befi, i, andame, buf);
  259. ncre.ammMin = readNumber(befi, i, andame, buf);
  260. ncre.ammMax = readNumber(befi, i, andame, buf);
  261. befi=i;
  262. for(; i<andame; ++i)
  263. {
  264. if(buf[i]=='\t')
  265. break;
  266. }
  267. ncre.abilityText = buf.substr(befi, i-befi);
  268. ++i;
  269. befi=i;
  270. for(; i<andame; ++i)
  271. {
  272. if(buf[i]=='\r')
  273. break;
  274. }
  275. ncre.abilityRefs = buf.substr(befi, i-befi);
  276. i+=2;
  277. if(useCreAbilsFromZCRTRAIT)
  278. { //adding abilities from ZCRTRAIT.TXT
  279. if(boost::algorithm::find_first(ncre.abilityRefs, "DOUBLE_WIDE"))
  280. ncre.doubleWide = true;
  281. if(boost::algorithm::find_first(ncre.abilityRefs, "FLYING_ARMY"))
  282. ncre.addBonus(0, Bonus::FLYING);
  283. if(boost::algorithm::find_first(ncre.abilityRefs, "SHOOTING_ARMY"))
  284. ncre.addBonus(0, Bonus::SHOOTER);
  285. if(boost::algorithm::find_first(ncre.abilityRefs, "SIEGE_WEAPON"))
  286. ncre.addBonus(0, Bonus::SIEGE_WEAPON);
  287. if(boost::algorithm::find_first(ncre.abilityRefs, "const_two_attacks"))
  288. ncre.addBonus(1, Bonus::ADDITIONAL_ATTACK);
  289. if(boost::algorithm::find_first(ncre.abilityRefs, "const_free_attack"))
  290. ncre.addBonus(0, Bonus::BLOCKS_RETALIATION);
  291. if(boost::algorithm::find_first(ncre.abilityRefs, "IS_UNDEAD"))
  292. ncre.addBonus(0, Bonus::UNDEAD);
  293. if(boost::algorithm::find_first(ncre.abilityRefs, "const_no_melee_penalty"))
  294. ncre.addBonus(0, Bonus::NO_MELEE_PENALTY);
  295. if(boost::algorithm::find_first(ncre.abilityRefs, "const_jousting"))
  296. ncre.addBonus(0, Bonus::JOUSTING);
  297. if(boost::algorithm::find_first(ncre.abilityRefs, "const_raises_morale"))
  298. {
  299. ncre.addBonus(+1, Bonus::MORALE);;
  300. ncre.bonuses.back()->addPropagator(new CPropagatorNodeType(CBonusSystemNode::HERO));
  301. }
  302. if(boost::algorithm::find_first(ncre.abilityRefs, "const_lowers_morale"))
  303. {
  304. ncre.addBonus(-1, Bonus::MORALE);;
  305. ncre.bonuses.back()->effectRange = Bonus::ONLY_ENEMY_ARMY;
  306. }
  307. if(boost::algorithm::find_first(ncre.abilityRefs, "KING_1"))
  308. ncre.addBonus(0, Bonus::KING1);
  309. if(boost::algorithm::find_first(ncre.abilityRefs, "KING_2"))
  310. ncre.addBonus(0, Bonus::KING2);
  311. if(boost::algorithm::find_first(ncre.abilityRefs, "KING_3"))
  312. ncre.addBonus(0, Bonus::KING3);
  313. if(boost::algorithm::find_first(ncre.abilityRefs, "const_no_wall_penalty"))
  314. ncre.addBonus(0, Bonus::NO_WALL_PENALTY);
  315. if(boost::algorithm::find_first(ncre.abilityRefs, "CATAPULT"))
  316. ncre.addBonus(0, Bonus::CATAPULT);
  317. if(boost::algorithm::find_first(ncre.abilityRefs, "MULTI_HEADED"))
  318. ncre.addBonus(0, Bonus::ATTACKS_ALL_ADJACENT);
  319. if(boost::algorithm::find_first(ncre.abilityRefs, "IMMUNE_TO_MIND_SPELLS"))
  320. {
  321. std::vector<int> mindSpells = getMindSpells();
  322. for(int g=0; g<mindSpells.size(); ++g)
  323. ncre.addBonus(0, Bonus::SPELL_IMMUNITY, mindSpells[g]); //giants are immune to mind spells
  324. }
  325. if(boost::algorithm::find_first(ncre.abilityRefs, "IMMUNE_TO_FIRE_SPELLS"))
  326. ncre.addBonus(0, Bonus::FIRE_IMMUNITY);
  327. if(boost::algorithm::find_first(ncre.abilityRefs, "HAS_EXTENDED_ATTACK"))
  328. ncre.addBonus(0, Bonus::TWO_HEX_ATTACK_BREATH);;
  329. }
  330. if(ncre.nameSing!=std::string("") && ncre.namePl!=std::string(""))
  331. {
  332. ncre.idNumber = creatures.size();
  333. creatures.push_back(&ncre);
  334. }
  335. }
  336. ////second part of reading cr_abils.txt////
  337. bool contReading = true;
  338. while(contReading) //main reading loop
  339. {
  340. abils.getline(abilLine, MAX_LINE_SIZE);
  341. std::istringstream reader(abilLine);
  342. char command;
  343. reader >> command;
  344. switch(command)
  345. {
  346. case '+': //add new ability
  347. {
  348. int creatureID;
  349. Bonus *nsf = new Bonus();
  350. si32 buf;
  351. std::string type;
  352. reader >> creatureID;
  353. reader >> type;
  354. std::map<std::string, int>::const_iterator it = bonusNameMap.find(type);
  355. CCreature *cre = creatures[creatureID];
  356. if (it == bonusNameMap.end())
  357. {
  358. if(type == "DOUBLE_WIDE")
  359. cre->doubleWide = true;
  360. else if(type == "ENEMY_MORALE_DECREASING")
  361. {
  362. cre->addBonus(-1, Bonus::MORALE);
  363. cre->bonuses.back()->effectRange = Bonus::ONLY_ENEMY_ARMY;
  364. }
  365. else if(type == "ENEMY_LUCK_DECREASING")
  366. {
  367. cre->addBonus(-1, Bonus::LUCK);
  368. cre->bonuses.back()->effectRange = Bonus::ONLY_ENEMY_ARMY;
  369. }
  370. else
  371. tlog1 << "Error: invalid type " << type << " in cr_abils.txt" << std::endl;
  372. break;
  373. }
  374. nsf->type = it->second;
  375. reader >> buf; nsf->val = buf;
  376. reader >> buf; nsf->subtype = buf;
  377. reader >> buf; nsf->additionalInfo = buf;
  378. nsf->source = Bonus::CREATURE_ABILITY;
  379. nsf->sid = cre->idNumber;
  380. //nsf->duration = Bonus::ONE_BATTLE; //what the?
  381. nsf->duration = Bonus::PERMANENT;
  382. nsf->turnsRemain = 0;
  383. cre->addNewBonus(nsf);
  384. break;
  385. }
  386. case '-': //remove ability
  387. {
  388. int creatureID;
  389. std::string type;
  390. reader >> creatureID;
  391. reader >> type;
  392. std::map<std::string, int>::const_iterator it = bonusNameMap.find(type);
  393. if (it == bonusNameMap.end())
  394. {
  395. if(type == "DOUBLE_WIDE")
  396. creatures[creatureID]->doubleWide = false;
  397. else
  398. tlog1 << "Error: invalid type " << type << " in cr_abils.txt" << std::endl;
  399. break;
  400. }
  401. int typeNo = it->second;
  402. Bonus::BonusType ecf = static_cast<Bonus::BonusType>(typeNo);
  403. Bonus *b = creatures[creatureID]->getBonus(Selector::type(ecf));
  404. creatures[creatureID]->removeBonus(b);
  405. break;
  406. }
  407. case '0': //end reading
  408. {
  409. contReading = false;
  410. break;
  411. }
  412. default: //invalid command
  413. {
  414. tlog1 << "Parse error in file config/cr_abils.txt" << std::endl;
  415. break;
  416. }
  417. }
  418. }
  419. abils.close();
  420. tlog5 << "\t\tReading config/crerefnam.txt" << std::endl;
  421. //loading reference names
  422. std::ifstream ifs(DATA_DIR "/config/crerefnam.txt");
  423. int tempi;
  424. std::string temps;
  425. for (;;)
  426. {
  427. ifs >> tempi >> temps;
  428. if (tempi>=creatures.size())
  429. break;
  430. boost::assign::insert(nameToID)(temps,tempi);
  431. creatures[tempi]->nameRef=temps;
  432. }
  433. ifs.close();
  434. ifs.clear();
  435. tlog5 << "\t\tReading config/monsters.txt" << std::endl;
  436. ifs.open(DATA_DIR "/config/monsters.txt");
  437. {
  438. while(!ifs.eof())
  439. {
  440. int id, lvl;
  441. ifs >> id >> lvl;
  442. if(!ifs.good())
  443. break;
  444. CCreature *c = creatures[id];
  445. c->level = lvl;
  446. }
  447. }
  448. buildBonusTreeForTiers();
  449. ifs.close();
  450. ifs.clear();
  451. tlog5 << "\t\tReading config/cr_factions.txt" << std::endl;
  452. ifs.open(DATA_DIR "/config/cr_factions.txt");
  453. while(!ifs.eof())
  454. {
  455. int id, fact;
  456. ifs >> id >> fact;
  457. creatures[id]->faction = fact;
  458. }
  459. ifs.close();
  460. ifs.clear();
  461. tlog5 << "\t\tReading config/cr_upgrade_list.txt" << std::endl;
  462. ifs.open(DATA_DIR "/config/cr_upgrade_list.txt");
  463. while(!ifs.eof())
  464. {
  465. int id, up;
  466. ifs >> id >> up;
  467. creatures[id]->upgrades.insert(up);
  468. }
  469. ifs.close();
  470. ifs.clear();
  471. //loading unit animation def names
  472. tlog5 << "\t\tReading config/CREDEFS.TXT" << std::endl;
  473. std::ifstream inp(DATA_DIR "/config/CREDEFS.TXT", std::ios::in | std::ios::binary); //this file is not in lod
  474. inp.seekg(0,std::ios::end); // na koniec
  475. int andame2 = inp.tellg(); // read length
  476. inp.seekg(0,std::ios::beg); // wracamy na poczatek
  477. char * bufor = new char[andame2+1]; // allocate memory
  478. inp.read((char*)bufor, andame2); // read map file to buffer
  479. inp.close();
  480. bufor[andame2] = 0;
  481. buf = std::string(bufor);
  482. delete [] bufor;
  483. i = 0; //buf iterator
  484. hmcr = 0;
  485. for(; i<andame2; ++i) //omitting rubbish
  486. {
  487. if(buf[i]=='\r')
  488. break;
  489. }
  490. i+=2;
  491. tlog5 << "We have "<<creatures.size() << " creatures\n";
  492. for(int s=0; s<creatures.size(); ++s)
  493. {
  494. //tlog5 <<"\t\t\t" << s <<". Reading defname. \n";
  495. int befi=i;
  496. std::string rub;
  497. for(; i<andame2; ++i)
  498. {
  499. if(buf[i]==' ')
  500. break;
  501. }
  502. rub = buf.substr(befi, i-befi);
  503. ++i;
  504. befi=i;
  505. for(; i<andame2; ++i)
  506. {
  507. if(buf[i]=='\r')
  508. break;
  509. }
  510. std::string defName = buf.substr(befi, i-befi);
  511. creatures[s]->animDefName = defName;
  512. }
  513. tlog5 << "\t\tReading CRANIM.TXT.txt" << std::endl;
  514. loadAnimationInfo();
  515. //loading id to projectile mapping
  516. tlog5 << "\t\tReading config/cr_shots.txt" << std::endl;
  517. std::ifstream inp2(DATA_DIR "/config/cr_shots.txt", std::ios::in | std::ios::binary); //this file is not in lod
  518. char dump [200];
  519. inp2.getline(dump, 200);
  520. while(true)
  521. {
  522. int id;
  523. std::string name;
  524. bool spin;
  525. inp2>>id;
  526. if(id == -1)
  527. break;
  528. inp2>>name;
  529. idToProjectile[id] = name;
  530. inp2>>spin;
  531. idToProjectileSpin[id] = spin;
  532. }
  533. inp2.close();
  534. //reading factionToTurretCreature
  535. tlog5 << "\t\tReading config/cr_to_turret.txt" << std::endl;
  536. std::ifstream inp3(DATA_DIR "/config/cr_to_turret.txt", std::ios::in | std::ios::binary); //this file is not in lod
  537. std::string dump2;
  538. inp3 >> dump2 >> dump2;
  539. for(int g=0; g<F_NUMBER; ++g)
  540. {
  541. inp3 >> factionToTurretCreature[g];
  542. }
  543. inp3.close();
  544. //reading creature ability names
  545. ifs.open(DATA_DIR "/config/bonusnames.txt");
  546. {
  547. std::string buf2, buf3, line;
  548. int i;
  549. std::map<std::string,int>::const_iterator it;
  550. getline(ifs, line); //skip 1st line
  551. while(!ifs.eof())
  552. {
  553. getline(ifs, buf, '\t');
  554. getline(ifs, buf2, '\t');
  555. getline(ifs, buf3);
  556. it = bonusNameMap.find(buf);
  557. if (it != bonusNameMap.end())
  558. stackBonuses[it->second] = std::pair<std::string, std::string>(buf2,buf3);
  559. else
  560. tlog2 << "Bonus " << buf << " not recognized, ingoring\n";
  561. }
  562. }
  563. ifs.close();
  564. if (STACK_EXP) //reading default stack experience bonuses
  565. {
  566. buf = bitmaph->getTextFile("CREXPBON.TXT");
  567. int it = 0;
  568. si32 creid = -1;
  569. Bonus b; //prototype with some default properties
  570. b.source = Bonus::STACK_EXPERIENCE;
  571. b.duration = Bonus::PERMANENT;
  572. b.valType = Bonus::ADDITIVE_VALUE;
  573. b.effectRange = Bonus::NO_LIMIT;
  574. b.additionalInfo = 0;
  575. b.turnsRemain = 0;
  576. BonusList bl;
  577. loadToIt (dump2, buf, it, 3); //ignore first line
  578. loadToIt (dump2, buf, it, 4); //ignore index
  579. loadStackExp(b, bl, buf, it);
  580. BOOST_FOREACH(Bonus * b, bl)
  581. addBonusForAllCreatures(b); //health bonus is common for all
  582. loadToIt (dump2, buf, it, 3); //crop comment
  583. for (i = 1; i < 7; ++i)
  584. {
  585. for (int j = 0; j < 4; ++j) //four modifiers common for tiers
  586. {
  587. loadToIt (dump2, buf, it, 4); //ignore index
  588. bl.clear();
  589. loadStackExp(b, bl, buf, it);
  590. BOOST_FOREACH(Bonus * b, bl)
  591. addBonusForTier(i, b);
  592. loadToIt (dump2, buf, it, 3); //crop comment
  593. }
  594. }
  595. for (int j = 0; j < 4; ++j) //tier 7
  596. {
  597. loadToIt (dump2, buf, it, 4); //ignore index
  598. bl.clear();
  599. loadStackExp(b, bl, buf, it);
  600. BOOST_FOREACH(Bonus * b, bl)
  601. {
  602. addBonusForTier(7, b);
  603. creaturesOfLevel[0].addNewBonus(b); //bonuses from level 7 are given to high-level creatures
  604. }
  605. loadToIt (dump2, buf, it, 3); //crop comment
  606. }
  607. do //parse everything that's left
  608. {
  609. loadToIt(creid, buf, it, 4); //get index
  610. b.sid = creid; //id = this particular creature ID
  611. loadStackExp(b, creatures[creid]->bonuses, buf, it); //add directly to CCreature Node
  612. loadToIt (dump2, buf, it, 3); //crop comment
  613. } while (it < buf.size());
  614. //Calculate rank exp values, formula appears complicated bu no parsing needed
  615. expRanks.resize(8);
  616. int dif = 0;
  617. it = 8000; //ignore name of this variable
  618. expRanks[0].push_back(it);
  619. for (int j = 1; j < 10; ++j) //used for tiers 8-10, and all other probably
  620. {
  621. expRanks[0].push_back(expRanks[0][j-1] + it + dif);
  622. dif += it/5;
  623. }
  624. for (i = 1; i < 8; ++i)
  625. {
  626. dif = 0;
  627. it = 1000 * i;
  628. expRanks[i].push_back(it);
  629. for (int j = 1; j < 10; ++j)
  630. {
  631. expRanks[i].push_back(expRanks[i][j-1] + it + dif);
  632. dif += it/5;
  633. }
  634. }
  635. buf = bitmaph->getTextFile("CREXPMOD.TXT"); //could be hardcoded though, lots of useless info
  636. it = 0;
  637. loadToIt (dump2, buf, it, 3); //ignore first line
  638. maxExpPerBattle.resize(8);
  639. si32 val;
  640. for (i = 1; i < 8; ++i)
  641. {
  642. loadToIt (dump2, buf, it, 4); //index
  643. loadToIt (dump2, buf, it, 4); //float multiplier -> hardcoded
  644. loadToIt (dump2, buf, it, 4); //ignore upgrade mod? ->hardcoded
  645. loadToIt (dump2, buf, it, 4); //already calculated
  646. loadToIt (val, buf, it, 4);
  647. maxExpPerBattle[i] = (ui32)val;
  648. loadToIt (val, buf, it, 4); //11th level
  649. val += (si32)expRanks[i].back();
  650. expRanks[i].push_back((ui32)val);
  651. loadToIt (dump2, buf, it, 3); //crop comment
  652. }
  653. //skeleton gets exp penalty
  654. creatures[56].get()->addBonus(-50, Bonus::EXP_MULTIPLIER, -1);
  655. creatures[57].get()->addBonus(-50, Bonus::EXP_MULTIPLIER, -1);
  656. //exp for tier >7, rank 11
  657. expRanks[0].push_back(147000);
  658. expAfterUpgrade = 75; //percent
  659. maxExpPerBattle[0] = maxExpPerBattle[7];
  660. }//end of Stack Experience
  661. //experiment - add 100 to attack for creatures of tier 1
  662. // Bonus *b = new Bonus(Bonus::PERMANENT, Bonus::PRIMARY_SKILL, Bonus::OTHER, +100, 0, 0);
  663. // addBonusForTier(1, b);
  664. }
  665. void CCreatureHandler::loadAnimationInfo()
  666. {
  667. std::string buf = bitmaph->getTextFile("CRANIM.TXT");
  668. int andame = buf.size();
  669. int i=0; //buf iterator
  670. int hmcr=0;
  671. for(; i<andame; ++i)
  672. {
  673. if(buf[i]=='\r')
  674. ++hmcr;
  675. if(hmcr==2)
  676. break;
  677. }
  678. i+=2;
  679. for(int dd=0; dd<creatures.size(); ++dd)
  680. {
  681. //tlog5 << "\t\t\tReading animation info for creature " << dd << std::endl;
  682. loadUnitAnimInfo(*creatures[dd], buf, i);
  683. }
  684. return;
  685. }
  686. void CCreatureHandler::loadUnitAnimInfo(CCreature & unit, std::string & src, int & i)
  687. {
  688. int befi=i;
  689. unit.timeBetweenFidgets = readFloat(befi, i, src.size(), src);
  690. while(unit.timeBetweenFidgets == 0.0)
  691. {
  692. for(; i<src.size(); ++i)
  693. {
  694. if(src[i]=='\r')
  695. break;
  696. }
  697. i+=2;
  698. unit.timeBetweenFidgets = readFloat(befi, i, src.size(), src);
  699. }
  700. unit.walkAnimationTime = readFloat(befi, i, src.size(), src);
  701. unit.attackAnimationTime = readFloat(befi, i, src.size(), src);
  702. unit.flightAnimationDistance = readFloat(befi, i, src.size(), src);
  703. ///////////////////////
  704. unit.upperRightMissleOffsetX = readNumber(befi, i, src.size(), src);
  705. unit.upperRightMissleOffsetY = readNumber(befi, i, src.size(), src);
  706. unit.rightMissleOffsetX = readNumber(befi, i, src.size(), src);
  707. unit.rightMissleOffsetY = readNumber(befi, i, src.size(), src);
  708. unit.lowerRightMissleOffsetX = readNumber(befi, i, src.size(), src);
  709. unit.lowerRightMissleOffsetY = readNumber(befi, i, src.size(), src);
  710. ///////////////////////
  711. for(int jjj=0; jjj<12; ++jjj)
  712. {
  713. unit.missleFrameAngles[jjj] = readFloat(befi, i, src.size(), src);
  714. }
  715. unit.troopCountLocationOffset= readNumber(befi, i, src.size(), src);
  716. unit.attackClimaxFrame = readNumber(befi, i, src.size(), src);
  717. for(; i<src.size(); ++i)
  718. {
  719. if(src[i]=='\r')
  720. break;
  721. }
  722. i+=2;
  723. }
  724. void CCreatureHandler::loadStackExp(Bonus & b, BonusList & bl, std::string & src, int & it) //help function for parsing CREXPBON.txt
  725. {
  726. std::string buf, mod;
  727. bool enable = false; //some bonuses are activated with values 2 or 1
  728. loadToIt(buf, src, it, 4);
  729. loadToIt(mod, src, it, 4);
  730. switch (buf[0])
  731. {
  732. case 'H':
  733. b.type = Bonus::STACK_HEALTH;
  734. b.valType = Bonus::PERCENT_TO_BASE;
  735. break;
  736. case 'A':
  737. b.type = Bonus::PRIMARY_SKILL;
  738. b.subtype = PrimarySkill::ATTACK;
  739. break;
  740. case 'D':
  741. b.type = Bonus::PRIMARY_SKILL;
  742. b.subtype = PrimarySkill::DEFENSE;
  743. break;
  744. case 'M': //Max damage
  745. b.type = Bonus::CREATURE_DAMAGE;
  746. b.subtype = 2;
  747. break;
  748. case 'm': //Min damage
  749. b.type = Bonus::CREATURE_DAMAGE;
  750. b.subtype = 1;
  751. break;
  752. case 'S':
  753. b.type = Bonus::STACKS_SPEED; break;
  754. case 'O':
  755. b.type = Bonus::SHOTS; break;
  756. case 'b':
  757. b.type = Bonus::ENEMY_DEFENCE_REDUCTION; break;
  758. case 'C':
  759. b.type = Bonus::CHANGES_SPELL_COST_FOR_ALLY; break;
  760. case 'e':
  761. b.type = Bonus::DOUBLE_DAMAGE_CHANCE; break;
  762. case 'g':
  763. b.type = Bonus::SPELL_DAMAGE_REDUCTION;
  764. b.subtype = -1; //all magic schools
  765. break;
  766. case 'R':
  767. b.type = Bonus::ADDITIONAL_RETALIATION; break;
  768. case 'f': //on-off skill
  769. enable = true; //sometimes format is: 2 -> 0, 1 -> 1
  770. switch (mod[0])
  771. {
  772. case 'A':
  773. b.type = Bonus::ATTACKS_ALL_ADJACENT; break;
  774. case 'b':
  775. b.type = Bonus::RETURN_AFTER_STRIKE; break;
  776. case 'B':
  777. b.type = Bonus::TWO_HEX_ATTACK_BREATH; break;
  778. case 'c':
  779. b.type = Bonus::JOUSTING; break;
  780. case 'D':
  781. b.type = Bonus::ADDITIONAL_ATTACK; break;
  782. case 'f':
  783. b.type = Bonus::FEARLESS; break;
  784. case 'F':
  785. b.type = Bonus::FLYING; break;
  786. case 'm':
  787. b.type = Bonus::SELF_MORALE; break;
  788. case 'M':
  789. b.type = Bonus::NO_MORALE; break;
  790. case 'p': //Mind spells
  791. case 'P':
  792. {
  793. loadMindImmunity(b, bl, src, it);
  794. return;
  795. }
  796. return;
  797. case 'r': //TODO: Rebirth on/off? makes sense?
  798. break;
  799. case 'R':
  800. b.type = Bonus::BLOCKS_RETALIATION; break;
  801. case 's':
  802. b.type = Bonus::FREE_SHOOTING; break;
  803. case 'u':
  804. b.type = Bonus::SPELL_RESISTANCE_AURA; break;
  805. case 'U':
  806. b.type = Bonus::UNDEAD; break;
  807. default:
  808. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  809. return;
  810. break;
  811. }
  812. break;
  813. case 'w': //specific spell immunities, enabled/disabled
  814. enable = true;
  815. switch (mod[0])
  816. {
  817. case 'B': //Blind
  818. b.type = Bonus::SPELL_IMMUNITY;
  819. b.subtype = 74;
  820. break;
  821. case 'H': //Hypnotize
  822. b.type = Bonus::SPELL_IMMUNITY;
  823. b.subtype = 60;
  824. break;
  825. case 'I': //Implosion
  826. b.type = Bonus::SPELL_IMMUNITY;
  827. b.subtype = 18;
  828. break;
  829. case 'K': //Berserk
  830. b.type = Bonus::SPELL_IMMUNITY;
  831. b.subtype = 59;
  832. break;
  833. case 'M': //Meteor Shower
  834. b.type = Bonus::SPELL_IMMUNITY;
  835. b.subtype = 23;
  836. break;
  837. case 'R': //Armageddon
  838. b.type = Bonus::SPELL_IMMUNITY;
  839. b.subtype = 26;
  840. break;
  841. case 'S': //Slow
  842. b.type = Bonus::SPELL_IMMUNITY;
  843. b.subtype = 54;
  844. break;
  845. case '6':
  846. case '7':
  847. case '8':
  848. case '9':
  849. b.type = Bonus::LEVEL_SPELL_IMMUNITY; //TODO - value can't be read afterwards
  850. b.val = std::atoi(mod.c_str()) - 5;
  851. break;
  852. case ':':
  853. b.type = Bonus::LEVEL_SPELL_IMMUNITY;
  854. b.val = SPELL_LEVELS; //in case someone adds higher level spells?
  855. break;
  856. default:
  857. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  858. return;
  859. }
  860. break;
  861. case 'i':
  862. enable = true;
  863. b.type = Bonus::NO_DISTANCE_PENALTY;
  864. break;
  865. case 'o':
  866. enable = true;
  867. b.type = Bonus::NO_OBSTACLES_PENALTY;
  868. break;
  869. case 'a':
  870. //case 'c': //some special abilities are threated as spells, will cause bugs
  871. b.type = Bonus::SPELL_AFTER_ATTACK;
  872. b.subtype = stringToNumber(mod);
  873. break;
  874. case 'h':
  875. b.type= Bonus::HATE;
  876. b.subtype = stringToNumber(mod);
  877. break;
  878. default:
  879. tlog3 << "Not parsed bonus " << buf << mod << "\n";
  880. return;
  881. break;
  882. }
  883. switch (mod[0])
  884. {
  885. case '+':
  886. case '=': //should we allow percent values to stack or pick highest?
  887. b.valType = Bonus::ADDITIVE_VALUE;
  888. break;
  889. }
  890. //limiters, range
  891. si32 lastVal, curVal, lastLev = 0;
  892. if (enable) //0 and 2 means non-active, 1 - active
  893. {
  894. b.val = 0; //on-off ability, no value specified
  895. loadToIt (curVal, src, it, 4); // 0 level is never active
  896. for (int i = 1; i < 11; ++i)
  897. {
  898. loadToIt (curVal, src, it, 4);
  899. if (curVal == 1)
  900. {
  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 (b.type == Bonus::HATE)
  914. curVal *= 10; //odd fix
  915. if (curVal > lastVal) //threshold, add new bonus
  916. {
  917. b.val = curVal - lastVal;
  918. lastVal = curVal;
  919. b.limiter.reset (new RankRangeLimiter(i));
  920. bl.push_back(new Bonus(b));
  921. lastLev = i; //start new range from here, i = previous rank
  922. }
  923. else if (curVal < lastVal)
  924. {
  925. b.val = lastVal;
  926. b.limiter.reset (new RankRangeLimiter(lastLev, i));
  927. }
  928. }
  929. }
  930. }
  931. void CCreatureHandler::loadMindImmunity(Bonus & b, BonusList & bl, std::string & src, int & it)
  932. {
  933. CCreature * cre = creatures[b.sid]; //odd workaround
  934. b.type = Bonus::SPELL_IMMUNITY;
  935. b.val = Bonus::BASE_NUMBER;
  936. si32 lastVal, curVal, lastLev = 0;
  937. b.val = 0; //on-off ability, no value specified
  938. loadToIt (curVal, src, it, 4); // 0 level is never active
  939. for (int i = 1; i < 11; ++i)
  940. {
  941. loadToIt (curVal, src, it, 4);
  942. if (curVal == 1)
  943. {
  944. b.limiter.reset (new RankRangeLimiter(i));
  945. break; //only one limiter here
  946. }
  947. }
  948. std::vector<int> mindSpells = getMindSpells(); //multiplicate spells
  949. for (int g=0; g < mindSpells.size(); ++g)
  950. {
  951. b.subtype = mindSpells[g];
  952. cre->bonuses.push_back(new Bonus(b));
  953. }
  954. }
  955. int CCreatureHandler::stringToNumber(std::string & s)
  956. {
  957. boost::algorithm::replace_first(s,"#",""); //drop hash character
  958. return std::atoi(s.c_str());
  959. }
  960. CCreatureHandler::~CCreatureHandler()
  961. {
  962. }
  963. static int retreiveRandNum(const boost::function<int()> &randGen)
  964. {
  965. if(randGen)
  966. return randGen();
  967. else
  968. return rand();
  969. }
  970. template <typename T> const T & pickRandomElementOf(const std::vector<T> &v, const boost::function<int()> &randGen)
  971. {
  972. return v[retreiveRandNum(randGen) % v.size()];
  973. }
  974. int CCreatureHandler::pickRandomMonster(const boost::function<int()> &randGen, int tier) const
  975. {
  976. int r = 0;
  977. if(tier == -1) //pick any allowed creature
  978. {
  979. do
  980. {
  981. r = pickRandomElementOf(creatures, randGen)->idNumber;
  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. }
  1013. void CCreatureHandler::buildBonusTreeForTiers()
  1014. {
  1015. BOOST_FOREACH(CCreature *c, creatures)
  1016. {
  1017. if(isbetw(c->level, 0, ARRAY_COUNT(creaturesOfLevel)))
  1018. c->attachTo(&creaturesOfLevel[c->level]);
  1019. else
  1020. c->attachTo(&creaturesOfLevel[0]);
  1021. }
  1022. BOOST_FOREACH(CBonusSystemNode &b, creaturesOfLevel)
  1023. b.attachTo(&allCreatures);
  1024. }
  1025. void CCreatureHandler::deserializationFix()
  1026. {
  1027. buildBonusTreeForTiers();
  1028. }