CArtHandler.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. #define VCMI_DLL
  2. #include "../stdafx.h"
  3. #include "CArtHandler.h"
  4. #include "CLodHandler.h"
  5. #include "CGeneralTextHandler.h"
  6. #include <boost/assign/std/vector.hpp>
  7. #include <boost/assign/list_of.hpp>
  8. #include "../lib/VCMI_Lib.h"
  9. extern CLodHandler *bitmaph;
  10. using namespace boost::assign;
  11. /*
  12. * CArtHandler.cpp, part of VCMI engine
  13. *
  14. * Authors: listed in file AUTHORS in main folder
  15. *
  16. * License: GNU General Public License v2.0 or later
  17. * Full text of license available in license.txt file, in main folder
  18. *
  19. */
  20. const std::string & CArtifact::Name() const
  21. {
  22. if(name.size())
  23. return name;
  24. else
  25. return VLC->generaltexth->artifNames[id];
  26. }
  27. const std::string & CArtifact::Description() const
  28. {
  29. if(description.size())
  30. return description;
  31. else
  32. return VLC->generaltexth->artifDescriptions[id];
  33. }
  34. CArtHandler::CArtHandler()
  35. {
  36. VLC->arth = this;
  37. }
  38. void CArtHandler::loadArtifacts(bool onlyTxt)
  39. {
  40. std::vector<ui16> slots;
  41. slots += 17, 16, 15,14,13, 18, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0;
  42. std::map<char, CArtifact::EartClass> classes =
  43. map_list_of('S',CArtifact::ART_SPECIAL)('T',CArtifact::ART_TREASURE)('N',CArtifact::ART_MINOR)('J',CArtifact::ART_MAJOR)('R',CArtifact::ART_RELIC);
  44. std::string buf = bitmaph->getTextFile("ARTRAITS.TXT"), dump, pom;
  45. int it=0;
  46. for(int i=0; i<2; ++i)
  47. {
  48. loadToIt(dump,buf,it,3);
  49. }
  50. VLC->generaltexth->artifNames.resize(ARTIFACTS_QUANTITY);
  51. VLC->generaltexth->artifDescriptions.resize(ARTIFACTS_QUANTITY);
  52. for (int i=0; i<ARTIFACTS_QUANTITY; i++)
  53. {
  54. CArtifact nart;
  55. nart.id=i;
  56. loadToIt(VLC->generaltexth->artifNames[i],buf,it,4);
  57. loadToIt(pom,buf,it,4);
  58. nart.price=atoi(pom.c_str());
  59. for(int j=0;j<slots.size();j++)
  60. {
  61. loadToIt(pom,buf,it,4);
  62. if(pom[0]=='x')
  63. nart.possibleSlots.push_back(slots[j]);
  64. }
  65. loadToIt(pom,buf,it,4);
  66. nart.aClass = classes[pom[0]];
  67. //load description and remove quotation marks
  68. std::string &desc = VLC->generaltexth->artifDescriptions[i];
  69. loadToIt(desc,buf,it,3);
  70. if(desc[0] == '\"' && desc[desc.size()-1] == '\"')
  71. desc = desc.substr(1,desc.size()-2);
  72. if(!onlyTxt)
  73. artifacts.push_back(nart);
  74. }
  75. sortArts();
  76. if(!onlyTxt)
  77. addBonuses();
  78. }
  79. int CArtHandler::convertMachineID(int id, bool creToArt )
  80. {
  81. int dif = 142;
  82. if(creToArt)
  83. {
  84. switch (id)
  85. {
  86. case 147:
  87. dif--;
  88. break;
  89. case 148:
  90. dif++;
  91. break;
  92. }
  93. dif = -dif;
  94. }
  95. else
  96. {
  97. switch (id)
  98. {
  99. case 6:
  100. dif--;
  101. break;
  102. case 5:
  103. dif++;
  104. break;
  105. }
  106. }
  107. return id + dif;
  108. }
  109. void CArtHandler::sortArts()
  110. {
  111. for(int i=0;i<144;i++) //do 144, bo nie chcemy bzdurek
  112. {
  113. switch (artifacts[i].aClass)
  114. {
  115. case CArtifact::ART_TREASURE:
  116. treasures.push_back(&(artifacts[i]));
  117. break;
  118. case CArtifact::ART_MINOR:
  119. minors.push_back(&(artifacts[i]));
  120. break;
  121. case CArtifact::ART_MAJOR:
  122. majors.push_back(&(artifacts[i]));
  123. break;
  124. case CArtifact::ART_RELIC:
  125. relics.push_back(&(artifacts[i]));
  126. break;
  127. }
  128. }
  129. }
  130. void CArtHandler::giveArtBonus( int aid, HeroBonus::BonusType type, int val, int subtype )
  131. {
  132. artifacts[aid].bonuses.push_back(HeroBonus(HeroBonus::PERMANENT,type,HeroBonus::ARTIFACT,val,aid,subtype));
  133. }
  134. void CArtHandler::addBonuses()
  135. {
  136. #define ART_PRIM_SKILL(ID, whichSkill, val) giveArtBonus(ID,HeroBonus::PRIMARY_SKILL,val,whichSkill)
  137. #define ART_MORALE(ID, val) giveArtBonus(ID,HeroBonus::MORALE,val)
  138. #define ART_LUCK(ID, val) giveArtBonus(ID,HeroBonus::LUCK,val)
  139. #define ART_MORALE_AND_LUCK(ID, val) giveArtBonus(ID,HeroBonus::MORALE_AND_LUCK,val)
  140. #define ART_ALL_PRIM_SKILLS(ID, val) ART_PRIM_SKILL(ID,0,val); ART_PRIM_SKILL(ID,1,val); ART_PRIM_SKILL(ID,2,val); ART_PRIM_SKILL(ID,3,val)
  141. #define ART_ATTACK_AND_DEFENSE(ID, val) ART_PRIM_SKILL(ID,0,val); ART_PRIM_SKILL(ID,1,val)
  142. #define ART_POWER_AND_KNOWLEDGE(ID, val) ART_PRIM_SKILL(ID,2,val); ART_PRIM_SKILL(ID,3,val)
  143. //Attack bonus artifacts (Weapons)
  144. ART_PRIM_SKILL(7,0,+2); //Centaur Axe
  145. ART_PRIM_SKILL(8,0,+3);
  146. ART_PRIM_SKILL(9,0,+4);
  147. ART_PRIM_SKILL(10,0,+5);
  148. ART_PRIM_SKILL(11,0,+6);
  149. ART_PRIM_SKILL(12,0,+12);
  150. ART_PRIM_SKILL(12,1,-3);
  151. //Defense bonus artifacts (Shields)
  152. ART_PRIM_SKILL(13,1,+2); //Shield of the Dwarven Lords
  153. ART_PRIM_SKILL(14,1,+3);
  154. ART_PRIM_SKILL(15,1,+4);
  155. ART_PRIM_SKILL(16,1,+5);
  156. ART_PRIM_SKILL(17,1,+6);
  157. ART_PRIM_SKILL(18,1,+12);
  158. ART_PRIM_SKILL(18,0,-3);
  159. //Knowledge bonus artifacts (Helmets)
  160. ART_PRIM_SKILL(19,3,+1); //Helm of the Alabaster Unicorn
  161. ART_PRIM_SKILL(20,3,+2);
  162. ART_PRIM_SKILL(21,3,+3);
  163. ART_PRIM_SKILL(22,3,+4);
  164. ART_PRIM_SKILL(23,3,+5);
  165. ART_PRIM_SKILL(24,3,+10);
  166. ART_PRIM_SKILL(24,2,-2);
  167. //Spell power bonus artifacts (Armours)
  168. ART_PRIM_SKILL(25,2,+1); //Breastplate of Petrified Wood
  169. ART_PRIM_SKILL(26,2,+2);
  170. ART_PRIM_SKILL(27,2,+3);
  171. ART_PRIM_SKILL(28,2,+4);
  172. ART_PRIM_SKILL(29,2,+5);
  173. ART_PRIM_SKILL(30,2,+10);
  174. ART_PRIM_SKILL(30,3,-2);
  175. //All primary skills (various)
  176. ART_ALL_PRIM_SKILLS(31,+1); //Armor of Wonder
  177. ART_ALL_PRIM_SKILLS(32,+2);
  178. ART_ALL_PRIM_SKILLS(33,+3);
  179. ART_ALL_PRIM_SKILLS(34,+4);
  180. ART_ALL_PRIM_SKILLS(35,+5);
  181. ART_ALL_PRIM_SKILLS(36,+6); //Helm of Heavenly Enlightenment
  182. //Attack and Defense (various)
  183. ART_ATTACK_AND_DEFENSE(37,+1); //Quiet Eye of the Dragon
  184. ART_ATTACK_AND_DEFENSE(38,+2);
  185. ART_ATTACK_AND_DEFENSE(39,+3);
  186. ART_ATTACK_AND_DEFENSE(40,+4);
  187. //Spell power and Knowledge (various)
  188. ART_POWER_AND_KNOWLEDGE(41,+1); //Dragonbone Greaves
  189. ART_POWER_AND_KNOWLEDGE(42,+2);
  190. ART_POWER_AND_KNOWLEDGE(43,+3);
  191. ART_POWER_AND_KNOWLEDGE(44,+4);
  192. //Luck and morale
  193. ART_MORALE(45,+1); //Still Eye of the Dragon
  194. ART_LUCK(45,+1); //Still Eye of the Dragon
  195. ART_LUCK(46,+1); //Clover of Fortune
  196. ART_LUCK(47,+1); //Cards of Prophecy
  197. ART_LUCK(48,+1); //Ladybird of Luck
  198. ART_MORALE(49,+1); //Badge of Courage
  199. ART_MORALE(50,+1); //Crest of Valor
  200. ART_MORALE(51,+1); //Glyph of Gallantry
  201. giveArtBonus(52,HeroBonus::SIGHT_RADIOUS,+1);//Speculum
  202. giveArtBonus(53,HeroBonus::SIGHT_RADIOUS,+1);//Spyglass
  203. //necromancy bonus
  204. giveArtBonus(54,HeroBonus::SECONDARY_SKILL_PREMY,+5,12);//Amulet of the Undertaker
  205. giveArtBonus(55,HeroBonus::SECONDARY_SKILL_PREMY,+10,12);//Vampire's Cowl
  206. giveArtBonus(56,HeroBonus::SECONDARY_SKILL_PREMY,+15,12);//Dead Man's Boots
  207. giveArtBonus(57,HeroBonus::MAGIC_RESISTANCE,+5);//Garniture of Interference
  208. giveArtBonus(58,HeroBonus::MAGIC_RESISTANCE,+10);//Surcoat of Counterpoise
  209. giveArtBonus(59,HeroBonus::MAGIC_RESISTANCE,+15);//Boots of Polarity
  210. //archery bonus
  211. giveArtBonus(60,HeroBonus::SECONDARY_SKILL_PREMY,+5,1);//Bow of Elven Cherrywood
  212. giveArtBonus(61,HeroBonus::SECONDARY_SKILL_PREMY,+10,1);//Bowstring of the Unicorn's Mane
  213. giveArtBonus(62,HeroBonus::SECONDARY_SKILL_PREMY,+15,1);//Angel Feather Arrows
  214. //eagle eye bonus
  215. giveArtBonus(63,HeroBonus::SECONDARY_SKILL_PREMY,+5,11);//Bird of Perception
  216. giveArtBonus(64,HeroBonus::SECONDARY_SKILL_PREMY,+10,11);//Stoic Watchman
  217. giveArtBonus(65,HeroBonus::SECONDARY_SKILL_PREMY,+15,11);//Emblem of Cognizance
  218. //reducing cost of surrendering
  219. giveArtBonus(66,HeroBonus::SURRENDER_DISCOUNT,+10);//Statesman's Medal
  220. giveArtBonus(67,HeroBonus::SURRENDER_DISCOUNT,+10);//Diplomat's Ring
  221. giveArtBonus(68,HeroBonus::SURRENDER_DISCOUNT,+10);//Ambassador's Sash
  222. giveArtBonus(69,HeroBonus::STACKS_SPEED,+1);//Ring of the Wayfarer
  223. giveArtBonus(70,HeroBonus::LAND_MOVEMENT,+300);//Equestrian's Gloves
  224. giveArtBonus(71,HeroBonus::SEA_MOVEMENT,+1000);//Necklace of Ocean Guidance
  225. giveArtBonus(72,HeroBonus::FLYING_MOVEMENT,+1);//Angel Wings
  226. giveArtBonus(73,HeroBonus::MANA_REGENERATION,+1);//Charm of Mana
  227. giveArtBonus(74,HeroBonus::MANA_REGENERATION,+2);//Talisman of Mana
  228. giveArtBonus(75,HeroBonus::MANA_REGENERATION,+3);//Mystic Orb of Mana
  229. giveArtBonus(76,HeroBonus::SPELL_DURATION,+1);//Collar of Conjuring
  230. giveArtBonus(77,HeroBonus::SPELL_DURATION,+2);//Ring of Conjuring
  231. giveArtBonus(78,HeroBonus::SPELL_DURATION,+3);//Cape of Conjuring
  232. giveArtBonus(79,HeroBonus::AIR_SPELL_DMG_PREMY,+50);//Orb of the Firmament
  233. giveArtBonus(80,HeroBonus::EARTH_SPELL_DMG_PREMY,+50);//Orb of Silt
  234. giveArtBonus(81,HeroBonus::FIRE_SPELL_DMG_PREMY,+50);//Orb of Tempestuous Fire
  235. giveArtBonus(82,HeroBonus::WATER_SPELL_DMG_PREMY,+50);//Orb of Driving Rain
  236. giveArtBonus(83,HeroBonus::BLOCK_SPELLS_ABOVE_LEVEL,3);//Recanter's Cloak
  237. giveArtBonus(84,HeroBonus::BLOCK_MORALE,0);//Spirit of Oppression
  238. giveArtBonus(85,HeroBonus::BLOCK_LUCK,0);//Hourglass of the Evil Hour
  239. giveArtBonus(86,HeroBonus::FIRE_SPELLS,0);//Tome of Fire Magic
  240. giveArtBonus(87,HeroBonus::AIR_SPELLS,0);//Tome of Air Magic
  241. giveArtBonus(88,HeroBonus::WATER_SPELLS,0);//Tome of Water Magic
  242. giveArtBonus(89,HeroBonus::EARTH_SPELLS,0);//Tome of Earth Magic
  243. giveArtBonus(90,HeroBonus::WATER_WALKING,0);//Boots of Levitation
  244. giveArtBonus(91,HeroBonus::NO_SHOTING_PENALTY,0);//Golden Bow
  245. giveArtBonus(92,HeroBonus::SPELL_IMMUNITY,35);//Sphere of Permanence
  246. giveArtBonus(93,HeroBonus::NEGATE_ALL_NATURAL_IMMUNITIES,0);//Orb of Vulnerability
  247. giveArtBonus(94,HeroBonus::STACK_HEALTH,+1);//Ring of Vitality
  248. giveArtBonus(95,HeroBonus::STACK_HEALTH,+1);//Ring of Life
  249. giveArtBonus(96,HeroBonus::STACK_HEALTH,+2);//Vial of Lifeblood
  250. giveArtBonus(97,HeroBonus::STACKS_SPEED,+1);//Necklace of Swiftness
  251. giveArtBonus(98,HeroBonus::LAND_MOVEMENT,+600);//Boots of Speed
  252. giveArtBonus(99,HeroBonus::STACKS_SPEED,+2);//Cape of Velocity
  253. giveArtBonus(100,HeroBonus::SPELL_IMMUNITY,59);//Pendant of Dispassion
  254. giveArtBonus(101,HeroBonus::SPELL_IMMUNITY,62);//Pendant of Second Sight
  255. giveArtBonus(102,HeroBonus::SPELL_IMMUNITY,42);//Pendant of Holiness
  256. giveArtBonus(103,HeroBonus::SPELL_IMMUNITY,24);//Pendant of Life
  257. giveArtBonus(104,HeroBonus::SPELL_IMMUNITY,25);//Pendant of Death
  258. giveArtBonus(105,HeroBonus::SPELL_IMMUNITY,60);//Pendant of Free Will
  259. giveArtBonus(106,HeroBonus::SPELL_IMMUNITY,17);//Pendant of Negativity
  260. giveArtBonus(107,HeroBonus::SPELL_IMMUNITY,61);//Pendant of Total Recall
  261. giveArtBonus(108,HeroBonus::MORALE_AND_LUCK,+3);//Pendant of Courage
  262. giveArtBonus(109,HeroBonus::GENERATE_RESOURCE,+1,4); //Everflowing Crystal Cloak
  263. giveArtBonus(110,HeroBonus::GENERATE_RESOURCE,+1,5); //Ring of Infinite Gems
  264. giveArtBonus(111,HeroBonus::GENERATE_RESOURCE,+1,1); //Everpouring Vial of Mercury
  265. giveArtBonus(112,HeroBonus::GENERATE_RESOURCE,+1,2); //Inexhaustible Cart of Ore
  266. giveArtBonus(113,HeroBonus::GENERATE_RESOURCE,+1,3); //Eversmoking Ring of Sulfur
  267. giveArtBonus(114,HeroBonus::GENERATE_RESOURCE,+1,0); //Inexhaustible Cart of Lumber
  268. giveArtBonus(115,HeroBonus::GENERATE_RESOURCE,+1000,6); //Endless Sack of Gold
  269. giveArtBonus(116,HeroBonus::GENERATE_RESOURCE,+750,6); //Endless Bag of Gold
  270. giveArtBonus(117,HeroBonus::GENERATE_RESOURCE,+500,6); //Endless Purse of Gold
  271. giveArtBonus(118,HeroBonus::CREATURE_GROWTH,+5,2); //Legs of Legion
  272. giveArtBonus(119,HeroBonus::CREATURE_GROWTH,+4,3); //Loins of Legion
  273. giveArtBonus(120,HeroBonus::CREATURE_GROWTH,+3,4); //Torso of Legion
  274. giveArtBonus(121,HeroBonus::CREATURE_GROWTH,+2,5); //Arms of Legion
  275. giveArtBonus(122,HeroBonus::CREATURE_GROWTH,+1,6); //Head of Legion
  276. //Sea Captain's Hat
  277. giveArtBonus(123,HeroBonus::WHIRLPOOL_PROTECTION,0);
  278. giveArtBonus(123,HeroBonus::SEA_MOVEMENT,+500);
  279. giveArtBonus(123,HeroBonus::SPELL,3,0);
  280. giveArtBonus(123,HeroBonus::SPELL,3,1);
  281. giveArtBonus(124,HeroBonus::SPELLS_OF_LEVEL,3,1); //Spellbinder's Hat
  282. giveArtBonus(125,HeroBonus::ENEMY_CANT_ESCAPE,0); //Shackles of War
  283. giveArtBonus(126,HeroBonus::BLOCK_SPELLS_ABOVE_LEVEL,0);//Orb of Inhibition
  284. }
  285. void CArtHandler::clear()
  286. {
  287. artifacts.clear();
  288. treasures.clear();
  289. minors.clear();
  290. majors.clear();
  291. relics.clear();
  292. }