CCreatureHandler.cpp 29 KB

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