Mercurial > mm7
annotate Spells.cpp @ 1238:77ea5c5f2c0b
m
author | Ritor1 |
---|---|
date | Mon, 10 Jun 2013 00:37:03 +0600 |
parents | ab6560001f5b |
children | 86a83e12d795 dcc52e17b517 |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1104
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1104
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1104
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1104
diff
changeset
|
4 |
0 | 5 #include <stdlib.h> |
6 | |
7 #include "Spells.h" | |
8 #include "Overlays.h" | |
9 #include "Allocator.h" | |
10 #include "LOD.h" | |
189 | 11 #include "texts.h" |
0 | 12 |
13 #include "mm7_data.h" | |
14 | |
15 | |
16 | |
17 | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
18 std::array<TownPortalData, 6> TownPortalList = //4ECBB8 |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
19 {{ |
839 | 20 {Vec3_int_(-5121, 2107, 1), 1536, 0, 21, 0}, |
21 {Vec3_int_(-15148, -10240, 1473), 0, 0, 4, 0}, | |
22 {Vec3_int_(-10519, 5375, 753), 512, 0, 3, 0}, | |
23 {Vec3_int_(3114, -11055, 513), 0, 0, 10, 0}, | |
24 {Vec3_int_(-158, 7624, 1), 512, 0, 7, 0}, | |
25 {Vec3_int_(-1837, -4247, 65), 65, 0, 8, 0} | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
26 }} ; |
0 | 27 |
28 struct SpellStats *pSpellStats; | |
29 | |
30 | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
31 std::array<stru324_spell, 103> stru_4E3ACC = |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
32 {{ |
488 | 33 {10, 0}, |
34 {1000, 0}, {1010, 0}, {1020, 0}, {1030, 0}, {1040, 0}, {1050, 0}, {1060, 0}, {1070, 0}, {1080, 0}, {1090, 0}, {1100, 0}, | |
35 {2000, 0}, {2010, 0}, {2020, 0}, {2030, 0}, {2040, 0}, {2050, 0}, {2060, 0}, {2070, 0}, {2080, 0}, {2090, 0}, {2100, 0}, | |
36 {3000, 0}, {3010, 0}, {3020, 0}, {3030, 0}, {3040, 0}, {3050, 0}, {3060, 0}, {3070, 0}, {3080, 0}, {3090, 0}, {3100, 0}, | |
37 {4000, 0}, {4010, 0}, {4020, 0}, {4030, 0}, {4040, 0}, {4050, 0}, {4060, 0}, {4070, 0}, {4080, 0}, {4090, 0}, {4100, 0}, | |
38 {5000, 0}, {5010, 0}, {5020, 0}, {5030, 0}, {5040, 0}, {5050, 0}, {5060, 0}, {5070, 0}, {5080, 0}, {5090, 0}, {5100, 0}, | |
39 {6000, 0}, {6010, 0}, {6020, 0}, {6030, 0}, {6040, 0}, {6050, 0}, {6060, 0}, {6070, 0}, {6080, 0}, {6090, 0}, {6100, 0}, | |
40 {7000, 0}, {7010, 0}, {7020, 0}, {7030, 0}, {7040, 0}, {7050, 0}, {7060, 0}, {7070, 0}, {7080, 0}, {7090, 0}, {7100, 0}, | |
41 {8000, 0}, {8010, 0}, {8020, 0}, {8030, 0}, {8040, 0}, {8050, 0}, {8060, 0}, {8070, 0}, {8080, 0}, {8090, 0}, {8100, 0}, | |
1086 | 42 {9000, 0}, {9010, 0}, {9020, 0}, {9030, 0}, {9040, 0}, {9050, 0}, {9060, 0}, {9070, 0}, {9080, 0}, {9090, 0}, {9100, 0}, |
43 {545, 0}, | |
44 {545, 0}, | |
45 {555, 0} | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
46 }}; |
363 | 47 //9 spellbook pages 11 spells per page 9*11 =99 +1 zero struct at 0. It counted from 1! |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
48 std::array<SpellData, 100> pSpellDatas={{ |
363 | 49 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, |
50 | |
51 {1, 1, 1, 1, 60, 60, 60, 40, 0, 0},//0 | |
192 | 52 {2, 2, 2, 2, 110, 110, 100, 90, 768, 0}, |
53 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0}, | |
54 {4, 4, 4, 4, 120, 120, 120, 120, 0, 0}, | |
55 {5, 5, 5, 5, 120, 120, 120, 120, 0, 0}, | |
56 {8, 8, 8, 8, 100, 100, 90, 80, 1536, 0}, | |
57 {10, 10, 10, 10, 150, 150, 150, 150, 1536, 0}, | |
58 {15, 15, 15, 15, 120, 120, 120, 120, 1536, 0}, | |
59 {20, 20, 20, 20, 100, 100, 100, 90, 264, 0}, | |
60 {25, 25, 25, 25, 100, 100, 100, 90, 268, 0}, | |
61 {30, 30, 30, 30, 90, 90, 90, 90, 3855, 0}, | |
363 | 62 |
63 {1, 1, 1, 0, 60, 60, 60, 60, 0, 0}, //1 | |
192 | 64 {2, 2, 2, 2, 120, 120, 120, 100, 0, 0}, |
65 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0}, | |
66 {4, 4, 4, 4, 110, 100, 90, 80, 258, 0}, | |
67 {5, 5, 5, 5, 90, 90, 70, 50, 0, 0}, | |
68 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0}, | |
69 {10, 10, 10, 10, 100, 100, 90, 70, 2048, 0}, | |
70 {15, 15, 15, 15, 200, 200, 200, 200, 0, 0}, | |
71 {20, 20, 20, 20, 100, 100, 100, 90, 2570, 0}, | |
72 {25, 25, 25, 25, 250, 250, 250, 250, 0, 0}, | |
73 {30, 30, 30, 30, 90, 90, 90, 90, 276, 0}, | |
363 | 74 |
75 {1, 1, 1, 1, 60, 60, 60, 20, 0, 0}, //2 | |
192 | 76 {2, 2, 2, 2, 110, 100, 90, 70, 514, 0}, |
77 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0}, | |
78 {4, 4, 4, 4, 110, 100, 90, 80, 1024, 0}, | |
79 {5, 5, 5, 5, 150, 150, 150, 150, 0, 0}, | |
80 {8, 8, 8, 8, 200, 200, 200, 200, 0, 0}, | |
81 {10, 10, 10, 10, 100, 100, 90, 80, 2313, 0}, | |
82 {15, 15, 15, 15, 140, 140, 140, 140, 0, 0}, | |
83 {20, 20, 20, 20, 200, 200, 200, 200, 0, 0}, | |
84 {25, 25, 25, 25, 80, 80, 80, 80, 780, 0}, | |
85 {30, 30, 30, 30, 250, 250, 250, 250, 0, 0}, | |
363 | 86 |
87 {1, 1, 1, 1, 80, 80, 80, 80, 0, 0}, //3 | |
192 | 88 {2, 2, 2, 2, 100, 100, 100, 100, 0, 0}, |
89 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0}, | |
90 {4, 4, 4, 4, 110, 100, 90, 80, 773, 0}, | |
91 {5, 5, 5, 5, 120, 120, 120, 120, 0, 0}, | |
92 {8, 8, 8, 8, 100, 100, 90, 80, 2304, 0}, | |
93 {10, 10, 10, 10, 140, 140, 140, 140, 0, 0}, | |
94 {15, 15, 15, 15, 90, 90, 90, 80, 2048, 0}, | |
95 {20, 20, 20, 20, 150, 150, 150, 150, 0, 0}, | |
96 {25, 25, 25, 25, 100, 100, 100, 90, 276, 0}, | |
97 {30, 30, 30, 30, 90, 90, 90, 90, 25, 0}, | |
363 | 98 |
99 {1, 1, 1, 1, 100, 100, 100, 100, 0, 0}, //4 | |
192 | 100 {2, 2, 2, 2, 100, 100, 100, 100, 0, 0}, |
101 {3, 3, 3, 3, 90, 90, 90, 90, 0, 0}, | |
102 {4, 4, 4, 4, 120, 120, 120, 120, 0, 0}, | |
103 {5, 5, 5, 5, 120, 120, 120, 120, 0, 0}, | |
104 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0}, | |
105 {10, 10, 10, 10, 120, 120, 120, 120, 0, 0}, | |
106 {15, 15, 15, 15, 100, 100, 100, 100, 2058, 0}, | |
107 {20, 20, 20, 20, 240, 240, 240, 240, 0, 0}, | |
108 {25, 25, 25, 25, 150, 150, 150, 150, 0, 0}, | |
109 {30, 30, 30, 30, 1000, 1000, 1000, 1000, 0, 0}, | |
363 | 110 |
111 {1, 1, 1, 1, 120, 120, 120, 120, 0, 0}, //5 | |
192 | 112 {2, 2, 2, 2, 110, 110, 110, 110, 771, 0}, |
113 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0}, | |
114 {4, 4, 4, 4, 110, 100, 90, 80, 0, 0}, | |
115 {5, 5, 5, 5, 100, 100, 100, 100, 0, 0}, | |
116 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0}, | |
117 {10, 10, 10, 10, 120, 120, 120, 120, 0, 0}, | |
118 {15, 15, 15, 15, 80, 80, 80, 80, 0, 0}, | |
119 {20, 20, 20, 20, 120, 120, 120, 120, 0, 0}, | |
120 {25, 25, 25, 25, 110, 110, 110, 100, 268, 0}, | |
121 {30, 30, 30, 30, 120, 120, 120, 120, 0, 0}, | |
363 | 122 |
123 {1, 1, 1, 1, 120, 120, 120, 120, 0, 0}, //6 | |
192 | 124 {2, 2, 2, 2, 100, 100, 100, 100, 0, 0}, |
125 {3, 3, 3, 3, 120, 120, 120, 120, 0, 0}, | |
126 {4, 4, 4, 4, 110, 100, 90, 80, 520, 0}, | |
127 {5, 5, 5, 5, 110, 110, 110, 110, 0, 0}, | |
128 {8, 8, 8, 8, 120, 120, 120, 120, 0, 0}, | |
129 {10, 10, 10, 10, 120, 120, 120, 120, 0, 0}, | |
130 {15, 15, 15, 15, 120, 120, 120, 120, 0, 0}, | |
131 {20, 20, 20, 20, 120, 120, 120, 120, 0, 0}, | |
132 {25, 25, 25, 25, 110, 110, 110, 100, 1310, 0}, | |
133 {30, 30, 30, 30, 100, 100, 100, 100, 0, 0}, | |
363 | 134 |
135 {5, 5, 5, 5, 110, 100, 90, 80, 1024, 0}, //7 | |
192 | 136 {10, 10, 10, 10, 120, 110, 100, 90, 4112, 0}, |
137 {15, 15, 15, 15, 120, 110, 100, 90, 0, 0}, | |
138 {20, 20, 20, 20, 160, 140, 120, 100, 0, 0}, | |
139 {25, 25, 25, 25, 140, 140, 140, 140, 0, 0}, | |
140 {30, 30, 30, 30, 500, 500, 500, 500, 0, 0}, | |
141 {35, 35, 35, 35, 135, 135, 120, 100, 281, 0}, | |
142 {40, 40, 40, 40, 500, 500, 500, 500, 0, 0}, | |
143 {45, 45, 45, 45, 250, 250, 250, 250, 0, 0}, | |
144 {50, 50, 50, 50, 150, 150, 150, 135, 5140, 0}, | |
145 {55, 55, 55, 55, 300, 300, 300, 300, 0, 0}, | |
363 | 146 |
147 {10, 10, 10, 10, 140, 140, 140, 140, 0, 0}, //8 | |
192 | 148 {15, 15, 15, 15, 120, 110, 100, 90, 2585, 0}, |
149 {20, 20, 20, 20, 120, 100, 90, 120, 0, 0}, | |
150 {25, 25, 25, 25, 120, 120, 120, 120, 0, 0}, | |
151 {30, 30, 30, 30, 90, 90, 80, 70, 1542, 0}, | |
152 {35, 35, 35, 35, 120, 120, 100, 80, 0, 0}, | |
153 {40, 40, 40, 40, 110, 110, 110, 110, 0, 0}, | |
154 {45, 45, 45, 45, 200, 200, 200, 150, 0, 0}, | |
155 {50, 50, 50, 50, 120, 120, 120, 100, 6400, 0}, | |
156 {55, 55, 55, 55, 250, 250, 250, 250, 306, 0}, | |
157 {60, 60, 60, 60, 300, 300, 300, 300, 2073, 0} | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
158 }}; |
0 | 159 |
490 | 160 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
161 std::array<unsigned int, 25> wand_spell_ids = |
490 | 162 { |
163 // 135 Wand of Fire 136 Wand of Sparks 137 Wand of Poison 138 Wand of Stunning 139 Wand of Harm | |
164 SPELL_FIRE_FIRE_BOLT, SPELL_AIR_SPARKS, SPELL_WATER_POISON_SPRAY, SPELL_EARTH_STUN, SPELL_BODY_HARM, | |
165 // 140 Fairy Wand of Light 141 Fairy Wand of Ice 142 Fairy Wand of Lashing 143 Fairy Wand of Mind 144 Fairy Wand of Swarms | |
166 SPELL_LIGHT_LIGHT_BOLT, SPELL_WATER_ICE_BOLT, SPELL_SPIRIT_SPIRIT_LASH, SPELL_MIND_MIND_BLAST, SPELL_EARTH_DEADLY_SWARM, | |
167 // 145 Alacorn Wand of Fireballs 146 Alacorn Wand of Acid 147 Alacorn Wand of Lightning 148 Alacorn Wand of Blades 149 Alacorn Wand of Charms | |
168 SPELL_FIRE_FIREBALL, SPELL_WATER_ACID_BURST, SPELL_AIR_LIGHNING_BOLT, SPELL_EARTH_BLADES, SPELL_MIND_CHARM, | |
169 // 150 Arcane Wand of Blasting 151 Arcane Wand of The Fist 152 Arcane Wand of Rocks 153 Arcane Wand of Paralyzing 154 Arcane Wand of Clouds | |
170 SPELL_WATER_ICE_BLAST, SPELL_BODY_FLYING_FIST, SPELL_EARTH_ROCK_BLAST, SPELL_LIGHT_PARALYZE, SPELL_DARK_TOXIC_CLOUD, | |
171 // 155 Mystic Wand of Implosion 156 Mystic Wand of Distortion 157 Mystic Wand of Sharpmetal 158 Mystic Wand of Shrinking 159 Mystic Wand of Incineration | |
172 SPELL_AIR_IMPLOSION, SPELL_EARTH_MASS_DISTORTION, SPELL_DARK_SHARPMETAL, SPELL_DARK_SHRINKING_RAY, SPELL_FIRE_INCINERATE | |
173 }; | |
174 | |
175 | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1165
diff
changeset
|
176 std::array<std::array<unsigned char, 12>, 9> pSpellbookSpellIndices = // 4E2430 |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1165
diff
changeset
|
177 {{ //0 1 2 3 4 5 6 7 8 9 10 11 |
357 | 178 {0, 3, 1, 8, 11, 7, 4, 10, 6, 2, 5, 9}, |
179 {0, 11, 2, 9, 6, 8, 5, 10, 3, 7, 1, 4}, | |
180 {0, 4, 8, 9, 1, 10, 3, 11, 7, 6, 2, 5}, | |
181 {0, 7, 10, 8, 2, 11, 1, 5, 3, 6, 4, 9}, | |
182 {0, 5, 10, 11, 7, 2, 8, 1, 4, 9, 3, 6}, | |
183 {0, 5, 9, 8, 3, 7, 6, 4, 1, 11, 2, 10}, | |
184 {0, 1, 6, 9, 3, 5, 8, 11, 7, 10, 4, 2}, | |
185 {0, 1, 10, 11, 9, 4, 3, 6, 5, 7, 8, 2}, | |
186 {0, 9, 3, 7, 1, 5, 2, 10, 11, 8, 6, 4} | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1165
diff
changeset
|
187 }}; |
0 | 188 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
189 std::array<std::array<struct SpellBookIconPos, 12>, 9> pIconPos={{ |
363 | 190 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
191 { 0, 0, 17, 13, 115, 2, 217, 15, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
192 299, 6, 28, 125, 130, 133, 294, 114, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
193 11, 232, 134, 233, 237, 171, 296, 231}, |
0 | 194 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
195 { 0, 0, 19, 9, 117, 3, 206, 13, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
196 285, 7, 16, 123, 113, 101, 201, 118, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
197 317, 110, 11, 230, 149, 236, 296, 234}, |
357 | 198 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
199 { 0, 0, 17, 9, 140, 0, 210, 34, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
200 293, 5, 15, 98, 78, 121, 175, 136, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
201 301, 115, 15, 226, 154, 225, 272, 220}, |
357 | 202 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
203 { 0, 0, 7, 9, 156, 2, 277, 9, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
204 11, 117, 111, 82, 180, 102, 303, 108, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
205 10, 229, 120, 221, 201, 217, 296, 225}, |
357 | 206 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
207 { 0, 0, 18, 8, 89, 15, 192, 14, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
208 292, 7, 22, 129, 125, 146, 217, 136, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
209 305, 115, 22, 226, 174, 237, 290, 231}, |
357 | 210 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
211 { 0, 0, 18, 12, 148, 9, 292, 7, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
212 17, 122, 121, 99, 220, 87, 293, 112, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
213 13, 236, 128, 213, 220, 223, 315, 223}, |
357 | 214 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
215 { 0, 0, 23, 14, 127, 8, 204, 0, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
216 306, 8, 14, 115, 122, 132, 200, 116, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
217 293, 122, 20, 228, 154, 228, 294, 239}, |
357 | 218 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
219 { 0, 0, 19, 14, 124, 10, 283, 12, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
220 8, 105, 113, 89, 190, 82, 298, 108, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
221 18, 181, 101, 204, 204, 203, 285, 218}, |
357 | 222 |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
223 { 0, 0, 18, 17, 110, 16, 201, 15, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
224 307, 15, 18, 148, 125, 166, 201, 123, |
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
225 275, 120, 28, 235, 217, 222, 324, 216}}}; |
0 | 226 |
227 | |
228 //----- (0042EB31) -------------------------------------------------------- | |
229 bool SpellBuff::NotExpired() | |
230 { | |
189 | 231 return (signed __int64)this->uExpireTime > 0 ? true:false; |
0 | 232 } |
233 | |
234 | |
235 //----- (00458585) -------------------------------------------------------- | |
236 void SpellBuff::Reset() | |
237 { | |
982 | 238 uSkill = 0; |
239 uPower = 0; | |
240 uExpireTime = 0i64; | |
241 uCaster = 0; | |
242 uFlags = 0; | |
243 if (uOverlayID) | |
0 | 244 { |
982 | 245 pOtherOverlayList->pOverlays[uOverlayID - 1].Reset(); |
142 | 246 pOtherOverlayList->bRedraw = true; |
982 | 247 uOverlayID = 0; |
0 | 248 } |
249 } | |
250 | |
251 //----- (004585CA) -------------------------------------------------------- | |
252 signed int SpellBuff::_4585CA(__int64 a2) | |
253 { | |
982 | 254 if (uExpireTime && uExpireTime < a2) |
0 | 255 { |
982 | 256 uExpireTime = 0; |
257 uPower = 0; | |
258 uSkill = 0; | |
259 uOverlayID = 0; | |
260 return true; | |
0 | 261 } |
982 | 262 return false; |
0 | 263 } |
264 | |
265 //----- (004584E0) -------------------------------------------------------- | |
982 | 266 bool SpellBuff::Apply(unsigned __int64 uExpireTime, unsigned __int16 uSkillLevel, unsigned __int16 uPower, int uOverlayID, unsigned __int8 caster) |
0 | 267 { |
982 | 268 if (this->uExpireTime && uExpireTime < this->uExpireTime) |
269 return false; | |
0 | 270 |
982 | 271 this->uSkill = uSkillLevel; |
272 this->uPower = uPower; | |
273 this->uExpireTime = uExpireTime; | |
274 if (this->uOverlayID && this->uOverlayID != uOverlayID) | |
0 | 275 { |
982 | 276 pOtherOverlayList->pOverlays[this->uOverlayID - 1].Reset(); |
277 pOtherOverlayList->bRedraw = true; | |
278 this->uOverlayID = 0; | |
0 | 279 } |
982 | 280 this->uOverlayID = uOverlayID; |
281 this->uCaster = caster; | |
282 | |
283 return true; | |
0 | 284 } |
285 | |
286 //----- (0045384A) -------------------------------------------------------- | |
287 void SpellStats::Initialize() | |
982 | 288 { |
191 | 289 int decode_step; |
290 char* test_string; | |
291 bool break_loop; | |
292 unsigned char c; | |
293 unsigned int temp_str_len; | |
294 char* tmp_pos; | |
189 | 295 |
191 | 296 if ( pSpellsTXT_Raw ) |
297 pAllocator->FreeChunk(pSpellsTXT_Raw); | |
298 pSpellsTXT_Raw = NULL; | |
189 | 299 |
191 | 300 pSpellsTXT_Raw = (char *)pEvents_LOD->LoadRaw("spells.txt", 0); |
301 strtok(pSpellsTXT_Raw, "\r"); | |
302 strtok(NULL, "\r"); | |
303 for(int i=1; i<100; ++i) | |
304 { | |
305 test_string=strtok(NULL, "\r")+1; | |
306 decode_step =0; | |
307 break_loop=false; | |
308 do | |
309 { | |
310 c = *(unsigned char*)test_string; | |
311 temp_str_len = 0; | |
312 while((c!='\t')&&(c>0)) | |
313 { | |
314 ++temp_str_len; | |
315 c=test_string[temp_str_len]; | |
316 } | |
317 tmp_pos=test_string+temp_str_len; | |
318 if (*tmp_pos == 0) | |
319 break_loop = true; | |
320 *tmp_pos = 0; | |
321 if (temp_str_len) | |
322 { | |
323 switch (decode_step) | |
324 { | |
325 case 2: | |
326 pInfos[i].pName=RemoveQuotes(test_string); | |
327 break; | |
328 case 3: | |
192 | 329 pInfos[i].uSchool = SPELL_SCHOOL_NONE; |
1104 | 330 if (!_stricmp("fire", test_string) ) |
191 | 331 { |
192 | 332 pInfos[i].uSchool =SPELL_SCHOOL_FIRE; |
191 | 333 break; |
334 } | |
1104 | 335 if ( !_stricmp("air", test_string) ) |
191 | 336 { |
192 | 337 pInfos[i].uSchool = SPELL_SCHOOL_AIR; |
191 | 338 break; |
339 } | |
1104 | 340 if ( !_stricmp("water", test_string)) |
191 | 341 { |
192 | 342 pInfos[i].uSchool = SPELL_SCHOOL_WATER; |
191 | 343 break; |
344 } | |
1104 | 345 if ( !_stricmp("earth", test_string)) |
191 | 346 { |
192 | 347 pInfos[i].uSchool = SPELL_SCHOOL_EARTH; |
191 | 348 break; |
349 } | |
1104 | 350 if ( !_stricmp("spirit", test_string)) |
191 | 351 { |
192 | 352 pInfos[i].uSchool = SPELL_SCHOOL_SPIRIT; |
191 | 353 break; |
354 } | |
1104 | 355 if ( !_stricmp("mind", test_string)) |
191 | 356 { |
192 | 357 pInfos[i].uSchool = SPELL_SCHOOL_MIND; |
191 | 358 break; |
359 } | |
1104 | 360 if ( !_stricmp("body", test_string) ) |
191 | 361 { |
192 | 362 pInfos[i].uSchool = SPELL_SCHOOL_BODY; |
191 | 363 break; |
364 } | |
1104 | 365 if ( !_stricmp("light", test_string) ) |
191 | 366 { |
192 | 367 pInfos[i].uSchool = SPELL_SCHOOL_LIGHT; |
191 | 368 break; |
369 } | |
1104 | 370 if ( !_stricmp("dark", test_string)) |
191 | 371 { |
192 | 372 pInfos[i].uSchool = SPELL_SCHOOL_DARK; |
191 | 373 break; |
374 } | |
375 | |
1104 | 376 if ( !_stricmp("magic", test_string)) |
191 | 377 { |
192 | 378 pInfos[i].uSchool = SPELL_SCHOOL_MAGIC; |
191 | 379 break; |
380 } | |
381 break; | |
382 case 4: | |
383 pInfos[i].pShortName=RemoveQuotes(test_string); | |
384 break; | |
385 case 5: | |
386 pInfos[i].pDescription=RemoveQuotes(test_string); | |
387 break; | |
388 case 6: | |
389 pInfos[i].pBasicSkillDesc=RemoveQuotes(test_string); | |
390 break; | |
391 case 7: | |
392 pInfos[i].pExpertSkillDesc=RemoveQuotes(test_string); | |
393 break; | |
394 case 8: | |
395 pInfos[i].pMasterSkillDesc=RemoveQuotes(test_string); | |
396 break; | |
397 case 9: | |
398 pInfos[i].pGrandmasterSkillDesc=RemoveQuotes(test_string); | |
399 break; | |
400 case 10: | |
401 int in_string_pos=0; | |
192 | 402 unsigned char test; |
191 | 403 int in_str_len=strlen(test_string); |
192 | 404 for (int j=0; j<in_str_len; ++j) |
405 { | |
406 test= tolower(test_string[j]); | |
407 switch (test) | |
408 { | |
409 case 109: | |
410 pSpellDatas[i].field_12|=1; | |
411 break; | |
412 case 101: | |
413 pSpellDatas[i].field_12|=2; | |
414 break; | |
415 case 99: | |
416 pSpellDatas[i].field_12|=4; | |
417 break; | |
418 case 120: | |
419 pSpellDatas[i].field_12|=8; | |
420 break; | |
421 } | |
422 } | |
191 | 423 break; |
424 } | |
425 } | |
426 else | |
427 break_loop=true; | |
428 ++decode_step; | |
429 test_string=tmp_pos+1; | |
430 } while ((decode_step<11)&&!break_loop); | |
431 if ((i%11)==0) | |
432 strtok(NULL, "\r"); | |
433 } | |
434 | |
435 } |