Mercurial > mm7
annotate Items.h @ 1358:61010a655c94
a few itemID changed to their enum values + added a few new ones
author | Grumpy7 |
---|---|
date | Sat, 13 Jul 2013 16:52:00 +0200 |
parents | 0dbf6c4dd029 |
children | 297b6f192232 |
rev | line source |
---|---|
0 | 1 #pragma once |
1202 | 2 #include <array> |
0 | 3 |
1036 | 4 enum DAMAGE_TYPE:unsigned int |
5 { | |
6 DMGT_FIRE = 0, | |
7 DMGT_ELECTR = 1, | |
8 DMGT_COLD = 2, | |
9 DMGT_3 = 3, | |
10 DMGT_PHISYCAL= 4, | |
11 DMGT_5 = 5, | |
12 DMGT_SPIRIT = 6, | |
13 DMGT_MIND = 7, | |
14 DMGT_BODY = 8, | |
15 DMGT_DARK =10 | |
16 }; | |
0 | 17 |
18 | |
19 | |
20 /* 338 */ | |
463 | 21 enum ITEM_FLAGS :unsigned int |
0 | 22 { |
23 ITEM_IDENTIFIED = 0x1, | |
24 ITEM_BROKEN = 0x2, | |
25 ITEM_TEMP_BONUS = 0x8, | |
984 | 26 ITEM_AURA_EFFECT_RED = 0x10, |
27 ITEM_AURA_EFFECT_BLUE = 0x20, | |
28 ITEM_AURA_EFFECT_GREEN = 0x40, | |
29 ITEM_AURA_EFFECT_PURPLE = 0x80, | |
0 | 30 ITEM_STOLEN = 0x100, |
31 ITEM_ENCHANTED = 0x200, | |
32 }; | |
33 | |
34 | |
377 | 35 enum ITEM_MATERIAL |
437 | 36 { |
377 | 37 MATERIAL_COMMON =0, |
38 MATERIAL_ARTEFACT = 1, | |
39 MATERIAL_RELIC = 2, | |
40 MATERIAL_SPECIAL = 3 | |
437 | 41 }; |
377 | 42 |
0 | 43 /* 330 */ |
44 enum ITEM_TYPE | |
45 { | |
46 ITEM_LONGSWORD_1 = 0x1, | |
47 ITEM_DAGGER_1 = 0xF, | |
48 ITEM_AXE_1 = 0x17, | |
49 ITEM_SPEAR_1 = 0x1F, | |
50 ITEM_CROSSBOW_1 = 0x2F, | |
51 ITEM_MACE_1 = 0x32, | |
52 ITEM_STAFF_1 = 0x3D, | |
816 | 53 ITEM_BLASTER = 64, |
54 ITEM_LASER_RIFLE = 65, | |
0 | 55 ITEM_LEATHER_1 = 0x42, |
56 ITEM_CHAINMAIL_1 = 0x47, | |
57 ITEM_PLATE_1 = 0x4C, | |
58 ITEM_BUCKLER_1 = 0x54, | |
59 ITEM_GAUNTLETS_1 = 0x6E, | |
60 ITEM_BOOTS_1 = 0x73, | |
490 | 61 ITEM_WAND_FIRE = 135, |
62 ITEM_WAND_STUN = 138, | |
0 | 63 ITEM_WAND_INCENERATION = 0x9F, |
64 ITEM_TROLL_BLOOD = 0xCA, | |
65 ITEM_DRAGON_EYE = 0xCC, | |
66 ITEM_HARPY_FEATHER = 0xCF, | |
67 ITEM_DEVIL_ICHOR = 0xD6, | |
68 ITEM_OOZE_ECTOPLASM_BOTTLE = 0xD9, | |
69 ITEM_POTION_BOTTLE = 0xDC, | |
70 ITEM_SPELLBOOK_FIRE_STRIKE = 0x191, | |
71 ITEM_SPELLBOOK_AIR_FEATHER_FALL = 0x19C, | |
72 ITEM_SPELLBOOK_WATER_POISON_SPRAY = 0x1A7, | |
73 ITEM_SPELLBOOK_EARTH_SLOW = 0x1B2, | |
74 ITEM_SPELLBOOK_SPIRIT_BLESS = 0x1BD, | |
75 ITEM_SPELLBOOK_MIND_MIND_BLAST = 0x1C8, | |
76 ITEM_SPELLBOOK_BODY_FIRST_AID = 0x1D3, | |
77 ITEM_SPELLBOOK_BODY_HEAL = 0x1D6, | |
78 ITEM_SPELLBOOK_BODY_BREAK_POISON = 0x1D7, | |
79 ITEM_SPELLBOOK_LIGHT_LIGHT_BOLT = 0x1DD, | |
80 ITEM_SPELLBOOK_LIGHT_SUN_BURST = 0x1E6, | |
81 ITEM_SPELLBOOK_LIGHT_DIVINE_INTERVENTION = 0x1E7, | |
82 ITEM_ARTIFACT_PUCK = 0x1F4, | |
513 | 83 ITEM_ARTICACT_GOVERNONS_ARMOR = 504,//1F8 |
84 ITEM_ARTIFACT_YORUBA = 505,//1F9 | |
305 | 85 ITEM_ARTIFACT_SPLITTER = 506,//1FA |
1080 | 86 ITEM_ARTIFACT_GHOULSBANE = 507,//1FA |
87 ITEM_ARTEFACT_ULLYSES =510, | |
513 | 88 ITEM_ARTIFACT_LEAGUE_BOOTS = 512,//200 |
1358
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
89 ITEM_RELIC_ETHRICS_STAFF = 515,//204 |
513 | 90 ITEM_RELIC_HARECS_LEATHER = 516,//204 |
1358
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
91 ITEM_RELIC_OLD_NICK = 517,//204 |
1080 | 92 ITEM_RELIC_KELEBRIM = 520,//208 |
513 | 93 ITEM_RELIC_TALEDONS_HELM = 521,//209 |
94 ITEM_RELIC_SCHOLARS_CAP = 522,//20A | |
95 ITEM_RELIC_PHYNAXIAN_CROWN = 523,//20B | |
96 ITEM_RILIC_TITANS_BELT = 524,//20C | |
97 ITEM_RELIC_TWILIGHT = 525,//20D | |
1358
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
98 ITEM_RELIC_JUSTICE = 527, |
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
99 ITEM_RELIC_MEKORIGS_HAMMER = 528, |
831 | 100 ITEM_ARTIFACT_HERMES_SANDALS = 529, |
513 | 101 ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP = 530,//212 |
1358
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
102 ITEM_ARTIFACT_ELFBANE = 531,//212 |
513 | 103 ITEM_ARTIFACT_MINDS_EYE = 532,//214 |
104 ITEM_ELVEN_CHAINMAIL = 533,//215 | |
1358
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
105 ITEM_FORGE_GAUNTLETS = 534, |
831 | 106 ITEM_ARTIFACT_HEROS_BELT = 535,//217 |
107 ITEM_ARTIFACT_LADYS_ESCORT = 536, | |
513 | 108 ITEM_RARE_SHADOWS_MASK = 544,//220 |
109 ITEM_RARE_SUN_CLOAK = 547,//223 | |
110 ITEM_RARE_MOON_CLOAK = 548,//224 | |
111 ITEM_RARE_VAMPIRES_CAPE = 550,//226 | |
1358
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
112 ITEM_LICH_JAR_FULL = 601, |
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
113 ITEM_WETSUIT = 604, |
61010a655c94
a few itemID changed to their enum values + added a few new ones
Grumpy7
parents:
1202
diff
changeset
|
114 ITEM_LICH_JAR_EMPTY = 615, |
0 | 115 }; |
116 | |
117 /* 331 */ | |
816 | 118 enum ITEM_EQUIP_TYPE: unsigned __int8 |
0 | 119 { |
816 | 120 EQUIP_OFF_HAND = 0, |
121 EQUIP_MAIN_HAND = 1, | |
122 EQUIP_BOW = 2, | |
123 EQUIP_ARMOUR = 3, | |
124 EQUIP_SHIELD = 4, | |
125 EQUIP_HELMET = 5, | |
126 EQUIP_BELT = 6, | |
127 EQUIP_CLOAK = 7, | |
1082 | 128 EQUIP_GAUNTLETS = 8, |
129 EQUIP_BOOTS = 9, | |
816 | 130 EQUIP_RING = 10, |
131 EQUIP_AMULET = 11, | |
132 EQUIP_WAND = 12, | |
133 EQUIP_REAGENT = 13, | |
134 EQUIP_POTION = 14, | |
135 EQUIP_SPELL_SCROLL = 15, | |
136 EQUIP_BOOK = 16, | |
1080 | 137 EQIUP_ANY = 16, |
816 | 138 EQUIP_MESSAGE_SCROLL = 17, |
139 EQUIP_GOLD = 18, | |
140 EQUIP_GEM = 19, | |
141 EQUIP_NONE = 20 | |
0 | 142 }; |
143 | |
144 | |
145 | |
146 /* 64 */ | |
147 #pragma pack(push, 1) | |
526 | 148 struct ItemGen //0x24 |
0 | 149 { |
150 //----- (0042EB25) -------------------------------------------------------- | |
1012 | 151 // inline ItemGen() |
152 // { | |
153 // Reset(); | |
154 // } | |
0 | 155 |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1082
diff
changeset
|
156 inline bool Broken() {return (uAttributes & ITEM_BROKEN) != 0;} |
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1082
diff
changeset
|
157 inline bool Identified() {return (uAttributes & ITEM_IDENTIFIED) != 0;} |
315 | 158 inline void SetIdentified() {uAttributes |= ITEM_IDENTIFIED;} |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1082
diff
changeset
|
159 inline bool Stolen() {return (uAttributes & ITEM_STOLEN) != 0;} |
749 | 160 inline void SetStolen() {uAttributes |= ITEM_STOLEN;} |
271 | 161 |
0 | 162 bool GenerateArtifact(); |
163 unsigned int GetValue(); | |
164 const char *GetDisplayName(); | |
165 const char *GetIdentifiedName(); | |
166 void UpdateTempBonus(__int64 uTimePlayed); | |
167 void Reset(); | |
385 | 168 int _439DF3_get_additional_damage(int *a2, bool *vampiyr); |
0 | 169 |
170 | |
171 | |
1019 | 172 int uItemID; //0 |
173 int uEnchantmentType; //4 | |
174 int _bonus_strength; //8 | |
175 int uSpecEnchantmentType; // 25 +5 levels //0c | |
816 | 176 // 16 Drain Hit Points from target. |
177 // 39 Double damage vs Demons. | |
178 // 40 Double damage vs Dragons | |
179 // 45 +5 Speed and Accuracy | |
180 // 56 +5 Might and Endurance. | |
181 // 57 +5 Intellect and Personality. | |
182 // 58 Increased Value. | |
183 // 60 +3 Unarmed and Dodging skills | |
184 // 61 +3 Stealing and Disarm skills. | |
185 // 59 Increased Weapon speed. | |
186 // 63 Double Damage vs. Elves. | |
187 // 64 Double Damage vs. Undead. | |
188 // 67 Adds 5 points of Body damage and +2 Disarm skill. | |
189 // 68 Adds 6-8 points of Cold damage and +5 Armor Class. | |
831 | 190 // 71 Prevents drowning damage. |
191 // 72 Prevents falling damage. | |
1019 | 192 int uNumCharges; //10 |
193 unsigned int uAttributes; //14 | |
0 | 194 unsigned __int8 uBodyAnchor; |
195 char uMaxCharges; | |
377 | 196 char uHolderPlayer; |
0 | 197 char field_1B; |
198 unsigned __int64 uExpireTime; | |
199 }; | |
200 #pragma pack(pop) | |
201 | |
202 | |
203 | |
204 /* 175 */ | |
205 #pragma pack(push, 1) | |
559 | 206 struct ItemDesc //30h |
229 | 207 { //Item # |Pic File|Name|Value|Equip Stat|Skill Group|Mod1|Mod2|material| |
208 ///ID/Rep/St|Not identified name|Sprite Index|VarA|VarB|Equip X|Equip Y|Notes | |
209 char *pIconName; //0 4 | |
210 char *pName; //4 8 | |
211 char *pUnidentifiedName; //8 c | |
212 char *pDescription; //0c 10 | |
213 unsigned int uValue; //10 14 | |
214 unsigned __int16 uSpriteID; //14 18 | |
215 __int16 field_1A; //16 | |
365 | 216 signed __int16 uEquipX; //18 1c |
217 signed __int16 uEquipY; //1a 1e | |
816 | 218 ITEM_EQUIP_TYPE uEquipType; //1c 20 |
229 | 219 unsigned __int8 uSkillType; //1d 21 |
220 unsigned __int8 uDamageDice; //1e 22 | |
221 unsigned __int8 uDamageRoll; //1f 23 | |
222 unsigned __int8 uDamageMod; //20 24 | |
223 unsigned __int8 uMaterial; //21 25 | |
224 char _additional_value; //22 26 | |
225 char _bonus_type; //23 27 | |
226 char _bonus_strength; //24 28 | |
227 char field_25; // 25 29 | |
228 char field_26; //26 2A | |
229 char field_27; // 27 2b | |
230 union | |
315 | 231 { |
229 | 232 unsigned __int8 uChanceByTreasureLvl[6]; |
233 struct { | |
234 unsigned __int8 uChanceByTreasureLvl1; // 28 2c | |
235 unsigned __int8 uChanceByTreasureLvl2; // 29 2d | |
236 unsigned __int8 uChanceByTreasureLvl3; // 2A 2e | |
237 unsigned __int8 uChanceByTreasureLvl4; // 2B 2f | |
238 unsigned __int8 uChanceByTreasureLvl5; // 2C 30 | |
239 unsigned __int8 uChanceByTreasureLvl6; // 2D 32 | |
240 }; | |
315 | 241 }; |
242 unsigned char uItemID_Rep_St; //2e 32 | |
243 char field_2f; | |
244 }; | |
0 | 245 #pragma pack(pop) |
246 | |
247 | |
248 | |
249 /* 177 */ | |
250 #pragma pack(push, 1) | |
251 struct ItemEnchantment | |
222 | 252 { //Bonus|Sta|Of Name|Arm|Shld|Helm|Belt|Cape|Gaunt|Boot|Ring|Amul |
253 char *pBonusStat; | |
254 char *pOfName; | |
255 /* union{ | |
256 struct { | |
257 unsigned char to_arm; | |
258 unsigned char to_shld; | |
259 unsigned char to_helm; | |
260 unsigned char to_belt; | |
261 unsigned char to_cape; | |
262 unsigned char to_gaunt; | |
263 unsigned char to_boot; | |
264 unsigned char to_ring; | |
265 unsigned char to_amul; | |
266 }; */ | |
267 unsigned char to_item[12]; | |
268 // }; | |
269 }; | |
0 | 270 #pragma pack(pop) |
271 | |
272 /* 178 */ | |
273 #pragma pack(push, 1) | |
559 | 274 struct ItemSpecialEnchantment //1Ch |
222 | 275 { //Bonus Stat|Name Add|W1|W2|Miss|Arm|Shld|Helm|Belt|Cape|Gaunt|Boot|Ring|Amul|Value|Lvl|Description fo special Bonuses and values |
276 | |
559 | 277 char *pBonusStatement; //0 |
278 char *pNameAdd; //4 | |
279 char to_item_apply[12]; //8 | |
280 int iValue; //14 | |
281 int iTreasureLevel; //18 | |
0 | 282 }; |
283 #pragma pack(pop) | |
284 | |
222 | 285 #pragma pack(push, 1) |
286 struct BonusRange | |
287 { | |
288 unsigned int minR; | |
289 unsigned int maxR; | |
290 }; | |
291 #pragma pack(pop) | |
193
821fd955c379
fixed potion data parsing. Somehow 3d render was affected
Gloval
parents:
0
diff
changeset
|
292 |
0 | 293 /* 176 */ |
294 #pragma pack(push, 1) | |
295 struct ItemsTable | |
296 { | |
297 void Initialize(); | |
298 void LoadPotions(); | |
299 void LoadPotionNotes(); | |
385 | 300 void GenerateItem(int treasure_level, unsigned int uTreasureType, ItemGen *pItem); |
0 | 301 void SetSpecialBonus(ItemGen *pItem); |
377 | 302 bool IsMaterialSpecial(ItemGen *pItem); |
303 bool IsMaterialNonCommon(ItemGen *pItem); | |
374 | 304 void Release(); |
0 | 305 |
222 | 306 int uAllItemsCount; |
307 ItemDesc pItems[800]; //4-9604h | |
308 ItemEnchantment pEnchantments[24]; //9604h | |
229 | 309 ItemSpecialEnchantment pSpecialEnchantments[72]; //97E4h -9FC4h |
224 | 310 char field_9FC4[5000]; |
0 | 311 char field_B348[5000]; |
312 char field_C6D0[5000]; | |
313 char field_DA58[5000]; | |
229 | 314 char field_EDE0[384]; |
222 | 315 unsigned __int16 potion_data[50][50]; // 77B2h*2=EF64h -102ECh |
316 unsigned __int16 potion_note[50][50]; // 8176h*2=102ECh -11674h | |
317 char *pItemsTXT_Raw; //11674h | |
0 | 318 char *pRndItemsTXT_Raw; |
222 | 319 char *pStdItemsTXT_Raw; //1167Ch |
320 char *pSpcItemsTXT_Raw; //11680h | |
224 | 321 unsigned int uChanceByTreasureLvlSumm[6]; //11684 |
322 unsigned int uBonusChanceStandart[6]; //1169c | |
323 unsigned int uBonusChanceSpecial[6]; //116B4 | |
324 unsigned int uBonusChanceWpSpecial[6]; //116cc -116e4 | |
222 | 325 unsigned int pEnchantmentsSumm[9]; //116E4h -11708h |
326 BonusRange bonus_ranges[6]; //45C2h*4 =11708h | |
224 | 327 unsigned int pSpecialEnchantmentsSumm[24]; //11738h |
328 unsigned int pSpecialEnchantments_count; //11798h | |
0 | 329 char field_1179C; |
315 | 330 char field_1179D; |
331 char field_1179E; | |
332 char field_1179F; | |
0 | 333 }; |
334 #pragma pack(pop) | |
335 | |
463 | 336 void GenerateStandartShopItems(); |
337 void GenerateSpecialShopItems(); | |
598 | 338 void GenerateItemsInChest(); |
0 | 339 |
1202 | 340 extern std::array<const char, 5> uItemsAmountPerShopType; // weak |
0 | 341 extern ItemGen *ptr_50C9A4; |
342 | |
377 | 343 extern struct ItemsTable *pItemsTable; |
344 | |
345 /* | |
346 +10 to all Resistances. 1 | |
347 +10 to all Seven Statistics. 2 | |
348 Explosive Impact! 3 | |
349 Adds 3-4 points of Cold damage. 4 | |
350 Adds 6-8 points of Cold damage. 5 | |
351 Adds 9-12 points of Cold damage. 6 | |
352 Adds 2-5 points of Electrical damage. 7 | |
353 Adds 4-10 points of Electrical damage. 8 | |
354 Adds 6-15 points of Electrical damage. 9 | |
355 Adds 1-6 points of Fire damage. 10 | |
356 Adds 2-12 points of Fire damage. 11 | |
357 Adds 3-18 points of Fire damage. 12 | |
358 Adds 5 points of Body damage. 13 | |
359 Adds 8 points of Body damage. 14 | |
360 Adds 12 points of Body damage. 15 | |
361 Drain Hit Points from target. 16 | |
362 Increases rate of Recovery. 17 | |
363 Wearer resistant to Diseases. 18 | |
364 Wearer resistant to Insanity. 19 | |
365 Wearer resistant to Paralysis. 20 | |
366 Wearer resistant to Poison. 21 | |
367 Wearer resistant to Sleep. 22 | |
368 Wearer resistant to Stone. 23 | |
369 Increased Knockback. 24 | |
370 +5 Level. 25 | |
371 Increases effect of all Air spells. 26 | |
372 Increases effect of all Body spells. 27 | |
373 Increases effect of all Dark spells. 28 | |
374 Increases effect of all Earth spells. 29 | |
375 Increases effect of all Fire spells. 30 | |
376 Increases effect of all Light spells. 31 | |
377 Increases effect of all Mind spells. 32 | |
378 Increases effect of all Spirit spells. 33 | |
379 Increases effect of all Water spells. 34 | |
380 Increases chance of Disarming. 35 | |
381 Half damage from all missile attacks. 36 | |
382 Regenerate Hit points over time. 37 | |
383 Regenerate Spell points over time. 38 | |
384 Double damage vs Demons. 39 | |
385 Double damage vs Dragons 40 | |
386 Drain Hit Points from target and Increased Weapon speed. 41 | |
387 +1 to Seven Stats, HP, SP, Armor, Resistances. 42 | |
388 +10 to Endurance, Armor, Hit points. 43 | |
389 +10 Hit points and Regenerate Hit points over time. 44 | |
390 +5 Speed and Accuracy. 45 | |
391 Adds 10-20 points of Fire damage and +25 Might. 46 | |
392 +10 Spell points and Regenerate Spell points over time. 47 | |
393 +15 Endurance and +5 Armor. 48 | |
394 +10 Intellect and Luck. 49 | |
395 +30 Fire Resistance and Regenerate Hit points over time. 50 | |
396 +10 Spell points, Speed, Intellect. 51 | |
397 +10 Endurance and Accuracy. 52 | |
398 +10 Might and Personality. 53 | |
399 +15 Endurance and Regenerate Hit points over time. 54 | |
400 +15 Luck and Regenerate Spell points over time. 55 | |
401 +5 Might and Endurance. 56 | |
402 +5 Intellect and Personality. 57 | |
403 Increased Value. 58 | |
404 Increased Weapon speed. 59 | |
405 +3 Unarmed and Dodging skills. 60 | |
406 +3 Stealing and Disarm skills. 61 | |
407 +3 ID Item and ID Monster skills. 62 | |
408 Double Damage vs. Elves. 63 | |
409 Double Damage vs. Undead. 64 | |
410 Double Damage vs. Titans. 65 | |
411 Regenerate Spell points and Hit points over time. 66 | |
412 Adds 5 points of Body damage and +2 Disarm skill. 67 | |
413 Adds 6-8 points of Cold damage and +5 Armor Class. 68 | |
414 +20 Air Resistance and Shielding. 69 | |
415 +10 Water Resistance and +2 Alchemy skill. 70 | |
416 Prevents damage from drowning. 71 | |
417 Prevents damage from falling. 72 | |
939 | 418 */ |
419 | |
420 | |
421 /* 391 */ | |
422 #pragma pack(push, 1) | |
423 struct stru351_summoned_item | |
424 { | |
425 int field_0_expire_second; | |
426 int field_4_expire_minute; | |
427 int field_8_expire_hour; | |
428 int field_C_expire_day; | |
429 int field_10_expire_week; | |
430 int field_14_exprie_month; | |
431 int field_18_expire_year; | |
432 }; | |
433 #pragma pack(pop) |