Mercurial > mm7
annotate Actor.cpp @ 1460:ff2118028c71
renaming _guilds_member_bits to _achieved_awards_bits
author | Gloval |
---|---|
date | Wed, 21 Aug 2013 20:58:36 +0400 |
parents | 5c95f2246c2a |
children | 845907a747d3 |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1115
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1115
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1115
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1115
diff
changeset
|
4 |
322 | 5 #include <assert.h> |
6 | |
1016 | 7 |
1253 | 8 #include "mm7_data.h" |
1016 | 9 #include "DecalBuilder.h" |
10 | |
11 #include "Sprites.h" | |
12 #include "stru6.h" | |
13 | |
14 | |
0 | 15 #include "Actor.h" |
16 #include "Math.h" | |
17 #include "Outdoor.h" | |
18 #include "AudioPlayer.h" | |
19 #include "Game.h" | |
20 #include "ObjectList.h" | |
21 #include "Overlays.h" | |
22 #include "Events.h" | |
23 #include "IndoorCamera.h" | |
24 #include "FactionTable.h" | |
25 #include "TurnEngine.h" | |
26 #include "MapInfo.h" | |
924 | 27 #include "CastSpellInfo.h" |
0 | 28 #include "Time.h" |
29 #include "LOD.h" | |
30 #include "Party.h" | |
31 #include "GUIWindow.h" | |
32 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
33 #include "MM7.h" |
1016 | 34 #include "SpriteObject.h" |
1295 | 35 #include "stru298.h" |
1297 | 36 #include "Log.h" |
37 #include "Texts.h" | |
38 #include "Allocator.h" | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
39 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
40 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
41 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
42 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
43 |
1202 | 44 std::array<Actor, 500> pActors; |
760 | 45 int uNumActors; |
0 | 46 |
47 stru319 stru_50C198; // idb | |
48 | |
994 | 49 |
50 | |
51 | |
52 //----- (0041AF52) -------------------------------------------------------- | |
53 void Actor::DrawHealthBar(Actor *a1, GUIWindow *a2) | |
54 { | |
55 unsigned int v2; // eax@1 | |
56 GUIWindow *v3; // edi@1 | |
57 unsigned int v4; // esi@1 | |
58 signed int v5; // ebx@4 | |
59 double v6; // st7@5 | |
60 unsigned int v7; // eax@6 | |
61 unsigned int v8; // ebx@10 | |
62 unsigned int v9; // [sp+14h] [bp-Ch]@4 | |
63 unsigned int v10; // [sp+1Ch] [bp-4h]@4 | |
64 | |
65 v2 = a1->pMonsterInfo.uHP; | |
66 v3 = a2; | |
67 v4 = 25; | |
68 if ( (signed int)v2 > 25 ) | |
69 { | |
70 v4 = 200; | |
71 if ( (signed int)v2 < 200 ) | |
72 v4 = a1->pMonsterInfo.uHP; | |
73 } | |
74 v5 = a1->sCurrentHP; | |
75 v10 = v4; | |
76 v9 = uTextureID_mhp_grn; | |
77 if ( v5 < (signed int)v2 ) | |
78 { | |
79 v6 = (double)(signed int)v2; | |
80 v10 = (signed __int64)((double)(signed int)v4 / (double)(signed int)v2 * (double)a1->sCurrentHP); | |
81 if ( v5 <= (signed int)(signed __int64)(0.34 * v6) ) | |
82 { | |
83 v7 = uTextureID_mhp_red; | |
84 v9 = v7; | |
85 } | |
86 else if ( v5 <= (signed int)(signed __int64)(v6 * 0.67) ) | |
87 { | |
88 v7 = uTextureID_mhp_yel; | |
89 v9 = v7; | |
90 } | |
91 } | |
92 v8 = a2->uFrameX + (signed int)(a2->uFrameWidth - v4) / 2; | |
93 | |
94 pRenderer->SetTextureClipRect(v8, a2->uFrameY + 32, v8 + v4, a2->uFrameY + 52); | |
95 pRenderer->DrawTextureIndexed(v8, v3->uFrameY + 32, pIcons_LOD->GetTexture(uTextureID_mhp_bd)); | |
96 pRenderer->SetTextureClipRect(v8, v3->uFrameY + 32, v8 + v10, v3->uFrameY + 52); | |
97 pRenderer->DrawTextureIndexed(v8, v3->uFrameY + 34, pIcons_LOD->GetTexture(v9)); | |
98 | |
99 pRenderer->ResetTextureClipRect(); | |
100 pRenderer->DrawTextureIndexed(v8 - 5, v3->uFrameY + 32, pIcons_LOD->GetTexture(uTextureID_mhp_capl)); | |
101 pRenderer->DrawTextureIndexed(v8 + v4, v3->uFrameY + 32, pIcons_LOD->GetTexture(uTextureID_mhp_capr)); | |
102 } | |
103 | |
781 | 104 //----- (00448A40) -------------------------------------------------------- |
105 void Actor::ToggleFlag(signed int uActorID, unsigned int uFlag, int bToggle) | |
106 { | |
107 if ( uActorID >= 0 && uActorID <= (signed int)(uNumActors - 1) ) | |
108 { | |
109 if ( bToggle ) | |
110 { | |
111 pActors[uActorID].uAttributes |= uFlag; | |
112 } | |
113 else | |
114 { | |
115 if ( uFlag == 0x10000 ) | |
116 { | |
117 if (pActors[uActorID].uAIState == Disabled ) | |
118 pActors[uActorID].uAIState = Standing; | |
119 } | |
120 pActors[uActorID].uAttributes &= ~uFlag; | |
121 } | |
122 } | |
123 } | |
0 | 124 |
125 //----- (00448518) -------------------------------------------------------- | |
126 void __fastcall sub_448518_npc_set_item(int npc, unsigned int item, int a3) | |
127 { | |
128 signed int v3; // eax@1 | |
129 int *v4; // edi@2 | |
130 signed int v5; // eax@6 | |
131 char *v6; // ecx@6 | |
132 char *v7; // eax@11 | |
133 ItemGen *v8; // ecx@15 | |
134 | |
135 v3 = 0; | |
136 if ( (signed int)uNumActors > 0 ) | |
137 { | |
602 | 138 v4 = (int *)&pActors[0].sNPC_ID; |
0 | 139 while ( *(short *)v4 != npc ) |
140 { | |
141 ++v3; | |
142 v4 += 209; | |
143 if ( v3 >= (signed int)uNumActors ) | |
144 return; | |
145 } | |
146 v5 = v3; | |
147 v6 = (char *)&pActors[v5].uCarriedItemID; | |
148 if ( a3 ) | |
149 { | |
150 if ( *(short *)v6 ) | |
151 { | |
152 if ( pActors[v5].array_000234[0].uItemID ) | |
153 { | |
154 v7 = (char *)&pActors[v5].array_000234[1]; | |
155 if ( !*(int *)v7 ) | |
156 *(int *)v7 = item; | |
157 } | |
158 else | |
159 { | |
160 pActors[v5].array_000234[0].uItemID = item; | |
161 } | |
162 } | |
163 else | |
164 { | |
165 *(short *)v6 = item; | |
166 } | |
167 } | |
168 else | |
169 { | |
170 if ( *(short *)v6 == item ) | |
171 { | |
172 *(short *)v6 = 0; | |
173 } | |
174 else | |
175 { | |
176 v8 = pActors[v5].array_000234; | |
177 if ( pActors[v5].array_000234[0].uItemID == item | |
178 || (v8 = &pActors[v5].array_000234[1], pActors[v5].array_000234[1].uItemID == item) ) | |
179 v8->Reset(); | |
180 } | |
181 } | |
182 } | |
183 } | |
184 | |
185 //----- (004485A7) -------------------------------------------------------- | |
526 | 186 void Actor::GiveItem(signed int uActorID, unsigned int uItemID, unsigned int bGive) |
0 | 187 { |
188 unsigned int v3; // eax@3 | |
189 char *v4; // ecx@3 | |
526 | 190 int *v5; // eax@8 |
0 | 191 ItemGen *v6; // ecx@12 |
192 | |
526 | 193 if ( (uActorID >= 0) && (signed int)uActorID <= (signed int)(uNumActors - 1) ) |
0 | 194 { |
195 v3 = uActorID; | |
196 v4 = (char *)&pActors[uActorID].uCarriedItemID; | |
197 if ( bGive ) | |
198 { | |
199 if ( *(short *)v4 ) | |
200 { | |
201 if ( pActors[v3].array_000234[0].uItemID ) | |
202 { | |
203 v5 = &pActors[v3].array_000234[1].uItemID; | |
204 if ( !*v5 ) | |
205 *v5 = uItemID; | |
206 } | |
207 else | |
208 { | |
209 pActors[v3].array_000234[0].uItemID = uItemID; | |
210 } | |
211 } | |
212 else | |
213 { | |
214 *(short *)v4 = uItemID; | |
215 } | |
216 } | |
217 else | |
218 { | |
219 if ( *(short *)v4 == uItemID ) | |
220 { | |
221 *(short *)v4 = 0; | |
222 } | |
223 else | |
224 { | |
225 v6 = pActors[v3].array_000234; | |
226 if ( pActors[v3].array_000234[0].uItemID == uItemID | |
227 || (v6 = &pActors[v3].array_000234[1], pActors[v3].array_000234[1].uItemID == uItemID) ) | |
228 v6->Reset(); | |
229 } | |
230 } | |
231 } | |
232 } | |
233 | |
188 | 234 |
0 | 235 //----- (0040894B) -------------------------------------------------------- |
236 bool Actor::CanAct() | |
237 { | |
1114 | 238 bool isparalyzed; // esi@1 |
239 bool isstoned; // edi@2 | |
0 | 240 unsigned __int16 v3; // ax@6 |
241 | |
1114 | 242 isstoned = (signed __int64)this->pActorBuffs[5].uExpireTime > 0;// stoned |
243 isparalyzed = (signed __int64)this->pActorBuffs[6].uExpireTime > 0;// paralyzed | |
0 | 244 v3 = this->uAIState; |
1114 | 245 return !(isstoned || isparalyzed || v3 == Dying || v3 == Dead || v3 == Removed || v3 == Summoned || v3 == Disabled); |
0 | 246 } |
247 | |
248 //----- (004089C7) -------------------------------------------------------- | |
303 | 249 bool Actor::IsNotAlive() |
0 | 250 { |
1115 | 251 bool isstoned; // esi@1 |
303 | 252 //unsigned __int16 v2; // ax@3 |
0 | 253 |
1115 | 254 isstoned = (signed __int64)this->pActorBuffs[5].uExpireTime > 0;// stoned |
303 | 255 //v2 = this->uAIState; |
1115 | 256 return (isstoned || (uAIState == Dying) || (uAIState == Dead) || (uAIState == Removed) || (uAIState == Summoned) || (uAIState == Disabled)); |
0 | 257 } |
258 | |
259 //----- (004086E9) -------------------------------------------------------- | |
260 void Actor::SetRandomGoldIfTheresNoItem() | |
261 { | |
262 Actor *v1; // esi@1 | |
263 int v2; // edi@1 | |
264 signed int v3; // ebx@2 | |
265 unsigned __int8 v4; // al@7 | |
266 | |
267 v1 = this; | |
268 v2 = 0; | |
269 if ( !this->array_000234[3].uItemID ) | |
270 { | |
271 v3 = 0; | |
272 if ( this->pMonsterInfo.uTreasureDiceRolls ) | |
273 { | |
274 do | |
275 { | |
276 ++v3; | |
277 v2 += rand() % v1->pMonsterInfo.uTreasureDiceSides + 1; | |
278 } | |
279 while ( v3 < v1->pMonsterInfo.uTreasureDiceRolls ); | |
280 if ( v2 ) | |
281 { | |
282 v1->array_000234[3].uItemID = 197; | |
377 | 283 v1->array_000234[3].uSpecEnchantmentType = v2; |
0 | 284 } |
285 } | |
286 } | |
287 if ( rand() % 100 < v1->pMonsterInfo.uTreasureDropChance ) | |
288 { | |
289 v4 = v1->pMonsterInfo.uTreasureLevel; | |
290 if ( v4 ) | |
291 pItemsTable->GenerateItem(v4, v1->pMonsterInfo.uTreasureType, &v1->array_000234[2]); | |
292 } | |
293 v1->uAttributes |= 0x800000; | |
294 } | |
295 | |
296 //----- (00404AC7) -------------------------------------------------------- | |
1060 | 297 void __fastcall Actor::AI_SpellAttack(unsigned int uActorID, AIDirection *pDir, int spellnum, int a4, unsigned int uSkillLevel) |
0 | 298 { |
299 Actor *v5; // esi@1 | |
300 unsigned int v6; // edi@1 | |
301 unsigned int v7; // eax@1 | |
302 int v8; // edi@16 | |
303 int v9; // edi@17 | |
304 signed int v10; // ecx@22 | |
305 signed int v11; // eax@29 | |
306 __int16 *v12; // edi@30 | |
307 int v13; // ecx@34 | |
308 int v14; // edx@34 | |
309 int v15; // eax@34 | |
310 AIDirection *v16; // esi@34 | |
311 unsigned __int16 v17; // di@34 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
312 //int v18; // eax@34 |
0 | 313 int v19; // edi@34 |
314 int v20; // eax@35 | |
315 int v21; // eax@39 | |
316 SoundID v22; // eax@39 | |
317 signed int v23; // eax@41 | |
318 double v24; // st7@49 | |
319 float v25; // ST5C_4@50 | |
320 int v26; // eax@50 | |
321 double v27; // st7@50 | |
322 double v28; // st6@50 | |
323 float v29; // ST4C_4@51 | |
324 int v30; // esi@50 | |
325 int v31; // ST3C_4@51 | |
326 unsigned int v32; // edi@51 | |
327 char *v33; // eax@54 | |
328 unsigned __int16 v34; // ax@57 | |
329 signed int v35; // ecx@58 | |
330 signed int v36; // eax@67 | |
331 signed int v37; // eax@68 | |
332 signed __int64 v38; // qtt@69 | |
333 int v39; // ecx@75 | |
334 int v40; // eax@79 | |
335 int v41; // ecx@90 | |
336 int v42; // ecx@91 | |
337 int v43; // eax@95 | |
338 int v44; // ecx@100 | |
339 int v45; // ecx@101 | |
340 int v46; // eax@105 | |
341 unsigned int v47; // ebx@106 | |
342 int v48; // ecx@110 | |
343 char v49; // zf@123 | |
344 int v50; // eax@127 | |
345 int v51; // ecx@130 | |
346 int v52; // eax@132 | |
347 int v53; // ecx@137 | |
348 int v54; // ecx@138 | |
349 int v55; // eax@142 | |
350 SpellBuff *v56; // esi@143 | |
351 Player **v57; // esi@145 | |
352 int v58; // eax@146 | |
353 int v59; // edi@146 | |
354 int v60; // eax@146 | |
355 int v61; // edi@146 | |
356 int v62; // eax@146 | |
357 signed int v63; // edi@146 | |
358 signed int v64; // edi@147 | |
359 int v65; // eax@151 | |
360 char *v66; // eax@160 | |
361 int v67; // edi@167 | |
362 int v68; // edi@168 | |
363 int v69; // eax@171 | |
364 signed int v70; // ecx@172 | |
365 signed int v71; // eax@179 | |
366 __int16 *v72; // edi@180 | |
367 int v73; // ecx@184 | |
368 int v74; // edx@184 | |
369 int v75; // eax@184 | |
370 AIDirection *v76; // esi@184 | |
371 unsigned __int16 v77; // di@184 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
372 //int v78; // eax@184 |
0 | 373 int v79; // edx@185 |
374 int v80; // eax@185 | |
375 int v81; // eax@189 | |
376 unsigned __int16 v82; // ax@190 | |
377 int v83; // ecx@192 | |
378 int v84; // edx@192 | |
379 int v85; // eax@192 | |
380 AIDirection *v86; // esi@192 | |
381 unsigned __int16 v87; // di@192 | |
382 __int16 v88; // ax@192 | |
383 signed int v89; // ecx@192 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
384 //int v90; // eax@192 |
0 | 385 signed int v91; // eax@200 |
386 int v92; // eax@201 | |
387 int v93; // ecx@207 | |
388 int v94; // ecx@208 | |
389 int v95; // eax@212 | |
390 int v96; // ecx@217 | |
391 int v97; // eax@221 | |
392 SoundID v98; // [sp-18h] [bp-E8h]@79 | |
393 signed int v99; // [sp-14h] [bp-E4h]@39 | |
394 unsigned int v100; // [sp-10h] [bp-E0h]@39 | |
395 signed int v101; // [sp-Ch] [bp-DCh]@39 | |
396 signed int v102; // [sp-8h] [bp-D8h]@39 | |
397 int v103; // [sp-4h] [bp-D4h]@39 | |
398 unsigned int v104; // [sp+0h] [bp-D0h]@39 | |
399 signed int v105; // [sp+4h] [bp-CCh]@23 | |
400 int v106; // [sp+4h] [bp-CCh]@39 | |
401 signed int v107; // [sp+4h] [bp-CCh]@42 | |
402 signed int v108; // [sp+4h] [bp-CCh]@173 | |
403 int pitch; // [sp+2Ch] [bp-A4h]@51 | |
404 float v110; // [sp+30h] [bp-A0h]@50 | |
405 int v111; // [sp+38h] [bp-98h]@41 | |
406 float v112; // [sp+3Ch] [bp-94h]@49 | |
407 int v113; // [sp+40h] [bp-90h]@41 | |
408 int v114; // [sp+48h] [bp-88h]@41 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
409 SpriteObject a1; // [sp+4Ch] [bp-84h]@1 |
0 | 410 int v116; // [sp+BCh] [bp-14h]@49 |
411 AIDirection *v117; // [sp+C0h] [bp-10h]@1 | |
412 int v118; // [sp+C4h] [bp-Ch]@29 | |
413 float v119; // [sp+C8h] [bp-8h]@48 | |
414 float v120; // [sp+CCh] [bp-4h]@1 | |
415 int spellnuma; // [sp+D8h] [bp+8h]@29 | |
416 int spellnumb; // [sp+D8h] [bp+8h]@48 | |
417 float spellnumc; // [sp+D8h] [bp+8h]@50 | |
418 signed int spellnumd; // [sp+D8h] [bp+8h]@53 | |
419 int spellnume; // [sp+D8h] [bp+8h]@179 | |
420 int a1a; // [sp+E0h] [bp+10h]@34 | |
421 signed int a1b; // [sp+E0h] [bp+10h]@145 | |
422 int a1c; // [sp+E0h] [bp+10h]@184 | |
423 | |
424 LODWORD(v120) = uActorID; | |
425 v5 = &pActors[uActorID]; | |
426 v117 = pDir; | |
427 v6 = uSkillLevel & 0x3F; | |
428 v7 = SkillToMastery(uSkillLevel); | |
429 if ( spellnum <= 47 ) | |
430 { | |
431 if ( spellnum != 47 ) | |
432 { | |
433 if ( spellnum <= 18 ) | |
434 { | |
435 if ( spellnum == 18 || spellnum == 2 ) | |
436 goto LABEL_159; | |
437 if ( spellnum != 5 ) | |
438 { | |
439 if ( spellnum == 6 ) | |
440 goto LABEL_159; | |
441 if ( spellnum != 9 ) | |
442 { | |
443 if ( spellnum != 11 ) | |
444 { | |
445 if ( spellnum != 15 ) | |
446 { | |
447 if ( spellnum != 17 ) | |
448 return; | |
449 if ( (signed int)v7 <= 0 ) | |
450 goto LABEL_20; | |
451 if ( (signed int)v7 <= 2 ) | |
452 { | |
453 v9 = 300 * v6; | |
454 } | |
455 else | |
456 { | |
457 if ( v7 != 3 ) | |
458 { | |
459 if ( v7 == 4 ) | |
460 { | |
461 v8 = 3600 * (v6 + 64); | |
462 LABEL_21: | |
463 v5->pActorBuffs[15].Apply( | |
464 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v8 << 7) * 0.033333335), | |
465 v7, | |
466 0, | |
467 0, | |
468 0); | |
469 return; | |
470 } | |
471 LABEL_20: | |
472 v8 = 0; | |
473 goto LABEL_21; | |
474 } | |
475 v9 = 900 * v6; | |
476 } | |
477 v8 = v9 + 3840; | |
478 goto LABEL_21; | |
479 } | |
480 v10 = 3; | |
481 if ( uSkillLevel & 0x0100 ) | |
482 { | |
483 v105 = 9; | |
484 } | |
485 else | |
486 { | |
487 if ( (uSkillLevel & 0x80u) == 0 ) | |
488 { | |
489 if ( !(uSkillLevel & 0x40) ) | |
490 goto LABEL_29; | |
491 v105 = 5; | |
492 } | |
493 else | |
494 { | |
495 v105 = 7; | |
496 } | |
497 } | |
498 v10 = v105; | |
499 LABEL_29: | |
500 spellnuma = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360; | |
924 | 501 a1.uType = stru_4E3ACC[15].uType; |
0 | 502 v118 = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360 / (v10 - 1); |
503 v11 = 0; | |
504 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
505 { | |
506 LABEL_33: | |
507 LOWORD(v11) = 0; | |
508 } | |
509 else | |
510 { | |
511 v12 = &pObjectList->pObjects->uObjectID; | |
924 | 512 while ( stru_4E3ACC[15].uType != *v12 ) |
0 | 513 { |
514 ++v11; | |
515 v12 += 28; | |
516 if ( v11 >= (signed int)pObjectList->uNumObjects ) | |
517 goto LABEL_33; | |
518 } | |
519 } | |
520 a1.uObjectDescID = v11; | |
521 a1.stru_24.Reset(); | |
822 | 522 a1.spell_id = SPELL_AIR_SPARKS; |
0 | 523 v13 = v5->vPosition.x; |
524 v14 = v5->vPosition.y; | |
822 | 525 a1.spell_level = uSkillLevel; |
0 | 526 a1.vPosition.x = v13; |
527 v15 = v5->vPosition.z + ((signed int)v5->uActorHeight >> 1); | |
528 v16 = v117; | |
529 v17 = LOWORD(v117->uYawAngle); | |
822 | 530 a1.spell_skill = 0; |
0 | 531 a1.vPosition.y = v14; |
532 a1.vPosition.z = v15; | |
533 a1.uFacing = v17; | |
534 a1.uSoundID = 0; | |
535 a1.uAttributes = 0; | |
536 a1.uSectorID = pIndoor->GetSector(v13, v14, v15); | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
537 a1.spell_caster_pid = PID(OBJECT_Actor, LODWORD(v120)); |
0 | 538 a1.uSpriteFrameID = 0; |
823 | 539 a1.spell_target_pid = 0; |
0 | 540 a1.field_60_distance_related_prolly_lod = 3; |
541 v19 = spellnuma / -2; | |
542 a1a = spellnuma / 2; | |
543 if ( spellnuma / -2 > spellnuma / 2 ) | |
544 { | |
545 v20 = spellnuma / 2; | |
546 } | |
547 else | |
548 { | |
549 do | |
550 { | |
551 a1.uFacing = v19 + LOWORD(v16->uYawAngle); | |
552 v20 = a1.Create( | |
553 (signed __int16)a1.uFacing, | |
554 v16->uPitchAngle, | |
555 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
556 0); | |
557 v19 += v118; | |
558 } | |
559 while ( v19 <= a1a ); | |
560 } | |
561 if ( v20 != -1 ) | |
562 { | |
563 v106 = 0; | |
564 v104 = 0; | |
565 v103 = 0; | |
566 v102 = 0; | |
567 v21 = 8 * v20; | |
568 v101 = -1; | |
569 LOBYTE(v21) = v21 | 2; | |
570 v100 = 0; | |
571 v99 = v21; | |
572 v22 = (SoundID)word_4EE088_sound_ids[15]; | |
573 LABEL_202: | |
574 v98 = v22; | |
575 goto LABEL_222; | |
576 } | |
577 return; | |
578 } | |
579 LABEL_159: | |
924 | 580 a1.uType = stru_4E3ACC[spellnum].uType; |
0 | 581 v119 = 0.0; |
582 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
583 { | |
584 LABEL_191: | |
585 v82 = 0; | |
586 } | |
587 else | |
588 { | |
589 v66 = (char *)&pObjectList->pObjects->uObjectID; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
590 while ( (short)a1.uType != *(short *)v66 ) |
0 | 591 { |
592 ++LODWORD(v119); | |
593 v66 += 56; | |
594 if ( SLODWORD(v119) >= (signed int)pObjectList->uNumObjects ) | |
595 goto LABEL_191; | |
596 } | |
597 v82 = LOWORD(v119); | |
598 } | |
599 a1.uObjectDescID = v82; | |
600 a1.stru_24.Reset(); | |
822 | 601 a1.spell_id = spellnum; |
0 | 602 v83 = v5->vPosition.x; |
603 v84 = v5->vPosition.y; | |
822 | 604 a1.spell_level = uSkillLevel; |
0 | 605 a1.vPosition.x = v83; |
606 v85 = v5->vPosition.z + ((signed int)v5->uActorHeight >> 1); | |
607 v86 = v117; | |
608 v87 = LOWORD(v117->uYawAngle); | |
822 | 609 a1.spell_skill = 0; |
0 | 610 a1.vPosition.y = v84; |
611 a1.vPosition.z = v85; | |
612 a1.uFacing = v87; | |
613 a1.uSoundID = 0; | |
614 a1.uAttributes = 0; | |
615 v88 = pIndoor->GetSector(v83, v84, v85); | |
616 v89 = v86->uDistance; | |
617 a1.uSectorID = v88; | |
618 LODWORD(v119) = v89; | |
619 a1.uSpriteFrameID = 0; | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
620 a1.spell_caster_pid = PID(OBJECT_Actor, LODWORD(v120)); |
823 | 621 a1.spell_target_pid = 0; |
0 | 622 a1.field_60_distance_related_prolly_lod = 3; |
623 if ( (double)v89 >= 307.2 ) | |
624 { | |
625 if ( v89 >= 1024 ) | |
626 { | |
627 if ( v89 >= 2560 ) | |
628 { | |
629 if ( v89 < 5120 ) | |
630 a1.field_60_distance_related_prolly_lod = 3; | |
631 } | |
632 else | |
633 { | |
634 a1.field_60_distance_related_prolly_lod = 2; | |
635 } | |
636 } | |
637 else | |
638 { | |
639 a1.field_60_distance_related_prolly_lod = 1; | |
640 } | |
641 } | |
642 else | |
643 { | |
644 a1.field_60_distance_related_prolly_lod = 0; | |
645 } | |
646 a1.field_61 = 2; | |
647 v91 = a1.Create( | |
648 v86->uYawAngle, | |
649 v86->uPitchAngle, | |
650 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
651 0); | |
652 if ( v91 != -1 ) | |
653 { | |
654 v106 = 0; | |
655 v104 = 0; | |
656 v103 = 0; | |
657 v102 = 0; | |
658 v92 = 8 * v91; | |
659 v101 = -1; | |
660 LOBYTE(v92) = v92 | 2; | |
661 v100 = 0; | |
662 v99 = v92; | |
663 v22 = (SoundID)word_4EE088_sound_ids[spellnum]; | |
664 goto LABEL_202; | |
665 } | |
666 return; | |
667 } | |
668 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
669 return; | |
670 v118 = pParty->vPosition.z; | |
671 v111 = pParty->vPosition.x; | |
672 v114 = pParty->vPosition.z + 2500; | |
673 v113 = pParty->vPosition.y; | |
674 v23 = 8; | |
675 if ( uSkillLevel & 0x0100 ) | |
676 { | |
677 v107 = 14; | |
678 } | |
679 else | |
680 { | |
681 if ( (uSkillLevel & 0x80u) == 0 ) | |
682 { | |
683 if ( !(uSkillLevel & 0x40) ) | |
684 goto LABEL_48; | |
685 v107 = 10; | |
686 } | |
687 else | |
688 { | |
689 v107 = 12; | |
690 } | |
691 } | |
692 v23 = v107; | |
693 LABEL_48: | |
694 v119 = 0.0; | |
695 spellnumb = 0; | |
696 if ( v23 > 0 ) | |
697 { | |
698 v24 = (double)v118; | |
699 v118 = v23; | |
700 v112 = v24; | |
862 | 701 v116 = PID(OBJECT_Actor,LODWORD(v120)); |
0 | 702 do |
703 { | |
704 v26 = rand(); | |
705 v27 = (double)spellnumb; | |
706 v110 = v27; | |
707 v28 = (double)SLODWORD(v119); | |
708 v30 = v26 % 1000; | |
709 v25 = (double)v114; | |
710 spellnumc = (double)(v26 % 1000) + v112 - v25; | |
711 v120 = v28 * v28; | |
712 v119 = v27 * v27; | |
713 if ( sqrt(spellnumc * spellnumc + v119 + v120) <= 1.0 ) | |
714 { | |
715 v32 = 0; | |
716 pitch = 0; | |
717 } | |
718 else | |
719 { | |
720 v31 = (signed __int64)sqrt(v119 + v120); | |
721 v29 = v28; | |
722 v32 = stru_5C6E00->Atan2((signed __int64)v110, (signed __int64)v29); | |
723 pitch = stru_5C6E00->Atan2(v31, (signed __int64)spellnumc); | |
724 } | |
725 a1.stru_24.Reset(); | |
924 | 726 a1.uType = stru_4E3ACC[9].uType; |
0 | 727 spellnumd = 0; |
728 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
729 { | |
730 LABEL_57: | |
731 v34 = 0; | |
732 } | |
733 else | |
734 { | |
735 v33 = (char *)&pObjectList->pObjects->uObjectID; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
736 while ( (short)a1.uType != *(short *)v33 ) |
0 | 737 { |
738 ++spellnumd; | |
739 v33 += 56; | |
740 if ( spellnumd >= (signed int)pObjectList->uNumObjects ) | |
741 goto LABEL_57; | |
742 } | |
743 v34 = spellnumd; | |
744 } | |
745 a1.uObjectDescID = v34; | |
822 | 746 a1.spell_level = uSkillLevel; |
0 | 747 a1.vPosition.x = v111; |
748 a1.vPosition.y = v113; | |
749 a1.vPosition.z = v30 + v114; | |
822 | 750 a1.spell_id = SPELL_FIRE_METEOR_SHOWER; |
751 a1.spell_skill = 0; | |
0 | 752 a1.uAttributes = 0; |
753 a1.uSectorID = 0; | |
754 a1.uSpriteFrameID = 0; | |
822 | 755 a1.spell_caster_pid = v116; |
823 | 756 a1.spell_target_pid = 0; |
0 | 757 a1.field_60_distance_related_prolly_lod = stru_50C198._427546(v30 + 2500); |
758 a1.uFacing = v32; | |
759 a1.uSoundID = 0; | |
760 v35 = v117->uDistance; | |
761 LODWORD(v119) = v117->uDistance; | |
762 if ( (double)SLODWORD(v119) >= 307.2 ) | |
763 { | |
764 if ( v35 >= 1024 ) | |
765 { | |
766 if ( v35 >= 2560 ) | |
767 { | |
768 if ( v35 < 5120 ) | |
769 a1.field_60_distance_related_prolly_lod = 3; | |
770 } | |
771 else | |
772 { | |
773 a1.field_60_distance_related_prolly_lod = 2; | |
774 } | |
775 } | |
776 else | |
777 { | |
778 a1.field_60_distance_related_prolly_lod = 1; | |
779 } | |
780 } | |
781 else | |
782 { | |
783 a1.field_60_distance_related_prolly_lod = 0; | |
784 } | |
785 a1.field_61 = 2; | |
786 v36 = a1.Create( | |
787 v32, | |
788 pitch, | |
789 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
790 0); | |
791 if ( v36 != -1 ) | |
792 { | |
793 v37 = 8 * v36; | |
794 LOBYTE(v37) = v37 | 2; | |
795 pAudioPlayer->PlaySound((SoundID)word_4EE088_sound_ids[9], v37, 0, -1, 0, 0, 0, 0); | |
796 } | |
797 spellnumb = rand() % 1024 - 512; | |
798 v38 = rand(); | |
799 v49 = v118-- == 1; | |
800 LODWORD(v119) = (unsigned __int64)(v38 % 1024) - 512; | |
801 } | |
802 while ( !v49 ); | |
803 } | |
804 return; | |
805 } | |
806 if ( (signed int)v7 > 0 ) | |
807 { | |
808 if ( (signed int)v7 <= 2 ) | |
809 { | |
810 v39 = 60 * (v6 + 60); | |
811 goto LABEL_79; | |
812 } | |
813 if ( v7 == 3 ) | |
814 { | |
815 v39 = 180 * (v6 + 20); | |
816 goto LABEL_79; | |
817 } | |
818 if ( v7 == 4 ) | |
819 { | |
820 v39 = 240 * (v6 + 15); | |
821 LABEL_79: | |
822 v5->pActorBuffs[19].Apply( | |
823 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v39 << 7) * 0.033333335), | |
824 v7, | |
825 0, | |
826 0, | |
827 0); | |
828 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xFF3C1Eu); | |
829 v106 = 0; | |
830 v104 = 0; | |
831 v103 = 0; | |
832 v102 = 0; | |
833 v40 = 8 * LODWORD(v120); | |
834 v101 = -1; | |
862 | 835 LOBYTE(v40) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 836 v100 = 0; |
837 v99 = v40; | |
838 v98 = (SoundID)10040; | |
839 LABEL_222: | |
840 pAudioPlayer->PlaySound(v98, v99, v100, v101, v102, v103, v104, v106); | |
841 return; | |
842 } | |
843 } | |
844 v39 = 0; | |
845 goto LABEL_79; | |
846 } | |
847 if ( spellnum == 26 || spellnum == 29 ) | |
848 goto LABEL_159; | |
849 if ( spellnum != 38 ) | |
850 { | |
851 if ( spellnum == 39 || spellnum == 41 ) | |
852 goto LABEL_159; | |
853 if ( spellnum != 46 ) | |
854 return; | |
855 if ( (signed int)v7 > 0 ) | |
856 { | |
857 if ( (signed int)v7 <= 2 ) | |
858 { | |
859 v41 = 300 * v6; | |
860 goto LABEL_91; | |
861 } | |
862 if ( v7 == 3 ) | |
863 { | |
864 v41 = 900 * v6; | |
865 goto LABEL_91; | |
866 } | |
867 if ( v7 == 4 ) | |
868 { | |
869 v41 = 1200 * v6; | |
870 LABEL_91: | |
871 v42 = v41 + 3840; | |
872 LABEL_95: | |
873 v5->pActorBuffs[17].Apply( | |
874 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v42 << 7) * 0.033333335), | |
875 v7, | |
876 v6 + 5, | |
877 0, | |
878 0); | |
1077 | 879 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5,0xC8C805u); |
0 | 880 v106 = 0; |
881 v104 = 0; | |
882 v103 = 0; | |
883 v102 = 0; | |
884 v43 = 8 * LODWORD(v120); | |
885 v101 = -1; | |
862 | 886 LOBYTE(v43) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 887 v100 = 0; |
888 v99 = v43; | |
889 v98 = (SoundID)14010; | |
890 goto LABEL_222; | |
891 } | |
892 } | |
893 v42 = 0; | |
894 goto LABEL_95; | |
895 } | |
896 if ( (signed int)v7 <= 0 ) | |
897 goto LABEL_104; | |
898 if ( (signed int)v7 <= 2 ) | |
899 { | |
900 v45 = 300 * v6; | |
901 } | |
902 else | |
903 { | |
904 if ( v7 != 3 ) | |
905 { | |
906 if ( v7 == 4 ) | |
907 { | |
908 v44 = 3600 * (v6 + 64); | |
909 LABEL_105: | |
910 v5->pActorBuffs[16].Apply( | |
911 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v44 << 7) * 0.033333335), | |
912 v7, | |
913 v6 + 5, | |
914 0, | |
915 0); | |
1077 | 916 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5,0x5C310Eu); |
0 | 917 v106 = 0; |
918 v104 = 0; | |
919 v103 = 0; | |
920 v102 = 0; | |
921 v46 = 8 * LODWORD(v120); | |
922 v101 = -1; | |
862 | 923 LOBYTE(v46) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 924 v100 = 0; |
925 v99 = v46; | |
926 v98 = (SoundID)13040; | |
927 goto LABEL_222; | |
928 } | |
929 LABEL_104: | |
930 v44 = 0; | |
931 goto LABEL_105; | |
932 } | |
933 v45 = 900 * v6; | |
934 } | |
935 v44 = v45 + 3840; | |
936 goto LABEL_105; | |
937 } | |
938 v47 = 0; | |
939 if ( (signed int)v7 > 0 ) | |
940 { | |
941 if ( (signed int)v7 <= 2 ) | |
942 { | |
943 v48 = 2 * v6 + 40; | |
944 goto LABEL_114; | |
945 } | |
946 if ( v7 == 3 ) | |
947 { | |
948 v48 = 3 * v6 + 60; | |
949 goto LABEL_114; | |
950 } | |
951 if ( v7 == 4 ) | |
952 { | |
953 LOWORD(v48) = 2 * (3 * v6 + 60); | |
954 LABEL_114: | |
955 v5->pActorBuffs[11].Apply(pParty->uTimePlayed + 1280, v7, v48, 0, 0); | |
1077 | 956 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5,0xC8C805u); |
0 | 957 LABEL_127: |
958 v106 = v47; | |
959 v104 = v47; | |
960 v103 = v47; | |
961 v50 = 8 * LODWORD(v120); | |
962 v102 = v47; | |
963 v101 = -1; | |
862 | 964 LOBYTE(v50) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 965 v100 = v47; |
966 v99 = v50; | |
967 v98 = (SoundID)14020; | |
968 goto LABEL_222; | |
969 } | |
970 } | |
971 LOWORD(v48) = 0; | |
972 goto LABEL_114; | |
973 } | |
974 if ( spellnum <= 80 ) | |
975 { | |
976 if ( spellnum == 80 ) | |
977 { | |
978 v56 = pParty->pPartyBuffs; | |
979 do | |
980 { | |
981 v56->Reset(); | |
982 ++v56; | |
983 } | |
984 while ( (signed int)v56 < (signed int)pParty->pPlayers ); | |
985 a1b = 1; | |
986 v57 = &pPlayers[1]; | |
987 do | |
988 { | |
989 v58 = (*v57)->GetActualWillpower(); | |
1036 | 990 v59 = (*v57)->GetParameterBonus(v58); |
0 | 991 v60 = (*v57)->GetActualIntelligence(); |
1036 | 992 v61 = ((*v57)->GetParameterBonus(v60) + v59) >> 1; |
0 | 993 v62 = (*v57)->GetActualLuck(); |
1036 | 994 v63 = v61 + (*v57)->GetParameterBonus(v62) + 30; |
0 | 995 if ( rand() % v63 < 30 ) |
996 { | |
997 v64 = 6048; | |
998 do | |
999 { | |
1000 ((SpellBuff *)((char *)*v57 + v64))->Reset(); | |
1001 v64 += 16; | |
1002 } | |
1003 while ( v64 < 6432 ); | |
1004 pOtherOverlayList->_4418B1(11210, a1b + 99, 0, 65536); | |
1005 } | |
1006 ++a1b; | |
1007 ++v57; | |
1008 } | |
1009 while ( (signed int)v57 <= (signed int)&pPlayers[4] ); | |
1010 v106 = 0; | |
1011 v104 = 0; | |
1012 v103 = 0; | |
1013 v65 = 8 * LODWORD(v120); | |
1014 v102 = 0; | |
1015 v101 = -1; | |
862 | 1016 LOBYTE(v65) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1017 v100 = 0; |
1018 v99 = v65; | |
1019 v22 = (SoundID)word_4EE088_sound_ids[80]; | |
1020 goto LABEL_202; | |
1021 } | |
1022 if ( spellnum != 51 ) | |
1023 { | |
1024 if ( spellnum == 57 || spellnum == 65 || spellnum == 70 ) | |
1025 goto LABEL_159; | |
1026 if ( spellnum == 73 ) | |
1027 { | |
1028 if ( (signed int)v7 <= 0 || (signed int)v7 > 4 ) | |
1029 v51 = 0; | |
1030 else | |
1031 v51 = 3600 * v6; | |
1032 v5->pActorBuffs[21].Apply( | |
1033 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v51 << 7) * 0.033333335), | |
1034 v7, | |
1035 v6, | |
1036 0, | |
1037 0); | |
1038 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xA81376u); | |
1039 v106 = 0; | |
1040 v104 = 0; | |
1041 v103 = 0; | |
1042 v102 = 0; | |
1043 v52 = 8 * LODWORD(v120); | |
1044 v101 = -1; | |
862 | 1045 LOBYTE(v52) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1046 v100 = 0; |
1047 v99 = v52; | |
1048 v98 = (SoundID)16060; | |
1049 goto LABEL_222; | |
1050 } | |
1051 if ( spellnum == 77 ) | |
1052 { | |
1053 v5->sCurrentHP += 5 * v6 + 10; | |
1054 if ( v5->sCurrentHP >= (signed int)v5->pMonsterInfo.uHP ) | |
1055 v5->sCurrentHP = LOWORD(v5->pMonsterInfo.uHP); | |
1056 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xA81376u); | |
1057 v47 = 0; | |
1058 goto LABEL_127; | |
1059 } | |
1060 v49 = spellnum == 78; | |
1061 LABEL_158: | |
1062 if ( !v49 ) | |
1063 return; | |
1064 goto LABEL_159; | |
1065 } | |
1066 if ( (signed int)v7 > 0 ) | |
1067 { | |
1068 if ( (signed int)v7 <= 2 ) | |
1069 { | |
1070 v53 = 300 * v6; | |
1071 goto LABEL_138; | |
1072 } | |
1073 if ( v7 == 3 ) | |
1074 { | |
1075 v53 = 900 * v6; | |
1076 goto LABEL_138; | |
1077 } | |
1078 if ( v7 == 4 ) | |
1079 { | |
1080 v53 = 1200 * v6; | |
1081 LABEL_138: | |
1082 v54 = v53 + 3840; | |
1083 LABEL_142: | |
1084 v5->pActorBuffs[18].Apply( | |
1085 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v54 << 7) * 0.033333335), | |
1086 v7, | |
1087 v6 + 5, | |
1088 0, | |
1089 0); | |
1077 | 1090 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5,0xC8C805u); |
0 | 1091 v106 = 0; |
1092 v104 = 0; | |
1093 v103 = 0; | |
1094 v102 = 0; | |
1095 v55 = 8 * LODWORD(v120); | |
1096 v101 = -1; | |
862 | 1097 LOBYTE(v55) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1098 v100 = 0; |
1099 v99 = v55; | |
1100 v98 = (SoundID)14060; | |
1101 goto LABEL_222; | |
1102 } | |
1103 } | |
1104 v54 = 0; | |
1105 goto LABEL_142; | |
1106 } | |
1107 if ( spellnum == 85 ) | |
1108 { | |
1109 if ( (signed int)v7 > 0 ) | |
1110 { | |
1111 if ( (signed int)v7 <= 2 ) | |
1112 { | |
1113 v96 = 300 * v6 + 3840; | |
1114 goto LABEL_221; | |
1115 } | |
1116 if ( v7 == 3 ) | |
1117 { | |
1118 LOWORD(v6) = 3 * v6; | |
1119 v96 = 900 * (uSkillLevel & 0x3F) + 3840; | |
1120 goto LABEL_221; | |
1121 } | |
1122 if ( v7 == 4 ) | |
1123 { | |
1124 v96 = 1200 * v6 + 3840; | |
1125 LOWORD(v6) = 4 * v6; | |
1126 LABEL_221: | |
1127 v5->pActorBuffs[13].Apply( | |
1128 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v96 << 7) * 0.033333335), | |
1129 v7, | |
1130 v6, | |
1131 0, | |
1132 0); | |
1133 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xFFFFFFu); | |
1134 v106 = 0; | |
1135 v104 = 0; | |
1136 v103 = 0; | |
1137 v102 = 0; | |
1138 v97 = 8 * LODWORD(v120); | |
1139 v101 = -1; | |
862 | 1140 LOBYTE(v97) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1141 v100 = 0; |
1142 v99 = v97; | |
1143 v98 = (SoundID)17070; | |
1144 goto LABEL_222; | |
1145 } | |
1146 } | |
1147 LOWORD(v6) = uSkillLevel; | |
1148 v96 = 0; | |
1149 goto LABEL_221; | |
1150 } | |
1151 if ( spellnum == 86 ) | |
1152 { | |
1153 if ( (signed int)v7 > 0 ) | |
1154 { | |
1155 if ( (signed int)v7 <= 2 ) | |
1156 { | |
1157 v93 = 300 * v6; | |
1158 goto LABEL_208; | |
1159 } | |
1160 if ( v7 == 3 ) | |
1161 { | |
1162 v93 = 900 * v6; | |
1163 goto LABEL_208; | |
1164 } | |
1165 if ( v7 == 4 ) | |
1166 { | |
1167 v93 = 1200 * v6; | |
1168 LABEL_208: | |
1169 v94 = v93 + 3840; | |
1170 LABEL_212: | |
1171 v5->pActorBuffs[14].Apply( | |
1172 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v94 << 7) * 0.033333335), | |
1173 v7, | |
1174 v6 + 5, | |
1175 0, | |
1176 0); | |
1177 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xFFFFFFu); | |
1178 v106 = 0; | |
1179 v104 = 0; | |
1180 v103 = 0; | |
1181 v102 = 0; | |
1182 v95 = 8 * LODWORD(v120); | |
1183 v101 = -1; | |
862 | 1184 LOBYTE(v95) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1185 v100 = 0; |
1186 v99 = v95; | |
1187 v98 = (SoundID)17080; | |
1188 goto LABEL_222; | |
1189 } | |
1190 } | |
1191 v94 = 0; | |
1192 goto LABEL_212; | |
1193 } | |
1194 if ( spellnum == 90 ) | |
1195 goto LABEL_159; | |
1196 if ( spellnum != 93 ) | |
1197 { | |
1198 if ( spellnum != 95 ) | |
1199 { | |
1200 v49 = spellnum == 97; | |
1201 goto LABEL_158; | |
1202 } | |
1203 if ( (signed int)v7 > 0 ) | |
1204 { | |
1205 if ( (signed int)v7 <= 3 ) | |
1206 { | |
1207 v67 = 300 * v6; | |
1208 goto LABEL_168; | |
1209 } | |
1210 if ( v7 == 4 ) | |
1211 { | |
1212 v67 = 900 * v6; | |
1213 LABEL_168: | |
1214 v68 = v67 + 3840; | |
1215 LABEL_171: | |
1216 v5->pActorBuffs[20].Apply( | |
1217 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v68 << 7) * 0.033333335), | |
1218 v7, | |
1219 0, | |
1220 0, | |
1221 0); | |
1077 | 1222 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5,0x7E7E7Eu); |
0 | 1223 v106 = 0; |
1224 v104 = 0; | |
1225 v103 = 0; | |
1226 v102 = 0; | |
1227 v69 = 8 * LODWORD(v120); | |
1228 v101 = -1; | |
862 | 1229 LOBYTE(v69) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1230 v100 = 0; |
1231 v99 = v69; | |
1232 v98 = (SoundID)18060; | |
1233 goto LABEL_222; | |
1234 } | |
1235 } | |
1236 v68 = 0; | |
1237 goto LABEL_171; | |
1238 } | |
1239 v70 = 3; | |
1240 if ( uSkillLevel & 0x100 ) | |
1241 { | |
1242 v108 = 9; | |
1243 } | |
1244 else | |
1245 { | |
1246 if ( (uSkillLevel & 0x80u) == 0 ) | |
1247 { | |
1248 if ( !(uSkillLevel & 0x40) ) | |
1249 goto LABEL_179; | |
1250 v108 = 5; | |
1251 } | |
1252 else | |
1253 { | |
1254 v108 = 7; | |
1255 } | |
1256 } | |
1257 v70 = v108; | |
1258 LABEL_179: | |
1259 spellnume = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360; | |
924 | 1260 a1.uType = stru_4E3ACC[SPELL_DARK_SHARPMETAL].uType; |
0 | 1261 v116 = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360 / (v70 - 1); |
1262 v71 = 0; | |
1263 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
1264 { | |
1265 LABEL_183: | |
1266 LOWORD(v71) = 0; | |
1267 } | |
1268 else | |
1269 { | |
1270 v72 = &pObjectList->pObjects->uObjectID; | |
924 | 1271 while ( stru_4E3ACC[SPELL_DARK_SHARPMETAL].uType != *v72 ) |
0 | 1272 { |
1273 ++v71; | |
1274 v72 += 28; | |
1275 if ( v71 >= (signed int)pObjectList->uNumObjects ) | |
1276 goto LABEL_183; | |
1277 } | |
1278 } | |
1279 a1.uObjectDescID = v71; | |
1280 a1.stru_24.Reset(); | |
822 | 1281 a1.spell_id = SPELL_DARK_SHARPMETAL; |
0 | 1282 v73 = v5->vPosition.x; |
1283 v74 = v5->vPosition.y; | |
822 | 1284 a1.spell_level = uSkillLevel; |
0 | 1285 a1.vPosition.x = v73; |
1286 v75 = v5->vPosition.z + ((signed int)v5->uActorHeight >> 1); | |
1287 v76 = v117; | |
1288 v77 = LOWORD(v117->uYawAngle); | |
822 | 1289 a1.spell_skill = 0; |
0 | 1290 a1.vPosition.y = v74; |
1291 a1.vPosition.z = v75; | |
1292 a1.uFacing = v77; | |
1293 a1.uSoundID = 0; | |
1294 a1.uAttributes = 0; | |
1295 a1.uSectorID = pIndoor->GetSector(v73, v74, v75); | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1296 a1.spell_caster_pid = PID(OBJECT_Actor, LODWORD(v120)); |
0 | 1297 a1.uSpriteFrameID = 0; |
823 | 1298 a1.spell_target_pid = 0; |
0 | 1299 a1.field_60_distance_related_prolly_lod = 3; |
1300 a1c = spellnume / -2; | |
1301 if ( spellnume / -2 > spellnume / 2 ) | |
1302 { | |
1303 v80 = spellnume / -2; | |
1304 } | |
1305 else | |
1306 { | |
1307 do | |
1308 { | |
1309 v79 = v76->uYawAngle; | |
1310 a1.uFacing = a1c + LOWORD(v76->uYawAngle); | |
1311 v80 = a1.Create( | |
1312 v79, | |
1313 v76->uPitchAngle, | |
1314 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1315 0); | |
1316 a1c += v116; | |
1317 } | |
1318 while ( a1c <= spellnume / 2 ); | |
1319 } | |
1320 if ( v80 != -1 ) | |
1321 { | |
1322 v106 = 0; | |
1323 v104 = 0; | |
1324 v103 = 0; | |
1325 v102 = 0; | |
1326 v81 = 8 * v80; | |
1327 v101 = -1; | |
1328 LOBYTE(v81) = v81 | 2; | |
1329 v100 = 0; | |
1330 v99 = v81; | |
1331 v22 = (SoundID)word_4EE088_sound_ids[93]; | |
1332 goto LABEL_202; | |
1333 } | |
1334 } | |
1335 | |
1336 //----- (0043ABB0) -------------------------------------------------------- | |
322 | 1337 bool Actor::ArePeasantsOfSameFaction(Actor *a1, Actor *a2) |
0 | 1338 { |
1339 unsigned int v2; // esi@1 | |
1340 unsigned int v3; // edi@1 | |
1341 bool result; // eax@9 | |
1342 | |
1343 v2 = a1->uAlly; | |
1344 v3 = a2->uAlly; | |
1345 if ( !v2 ) | |
1346 v2 = (a1->pMonsterInfo.uID - 1) / 3 + 1; | |
1347 if ( !v3 ) | |
1348 v3 = (a2->pMonsterInfo.uID - 1) / 3 + 1; | |
1349 if ( (signed int)v2 >= 39 && (signed int)v2 <= 44 && (signed int)v3 >= 39 && (signed int)v3 <= 44 | |
1350 || (signed int)v2 >= 45 && (signed int)v2 <= 50 && (signed int)v3 >= 45 && (signed int)v3 <= 50 | |
1351 || (signed int)v2 >= 51 && (signed int)v2 <= 62 && (signed int)v3 >= 51 && (signed int)v3 <= 62 | |
1352 || (signed int)v2 >= 78 && (signed int)v2 <= 83 && (signed int)v3 >= 78 && (signed int)v3 <= 83 ) | |
1353 result = 1; | |
1354 else | |
1355 result = v2 == v3; | |
1356 return result; | |
1357 } | |
1358 | |
1359 //----- (0043AC45) -------------------------------------------------------- | |
322 | 1360 void Actor::AggroSurroundingPeasants(unsigned int uActorID, int a2) |
0 | 1361 { |
1362 int v4; // ebx@8 | |
1363 int v5; // ST1C_4@8 | |
1364 int v6; // eax@8 | |
1365 | |
1202 | 1366 auto victim = &pActors[uActorID]; |
0 | 1367 if ( a2 == 1 ) |
322 | 1368 BYTE2(victim->uAttributes) |= 8u; |
1369 | |
1370 for (uint i = 0; i < uNumActors; ++i) | |
0 | 1371 { |
1202 | 1372 auto actor = &pActors[i]; |
322 | 1373 if (!actor->CanAct() || i == uActorID) |
1374 continue; | |
1375 | |
1376 if (Actor::ArePeasantsOfSameFaction(victim, actor)) | |
0 | 1377 { |
322 | 1378 v4 = abs(actor->vPosition.x - victim->vPosition.x); |
1379 v5 = abs(actor->vPosition.y - victim->vPosition.y); | |
1380 v6 = abs(actor->vPosition.z - victim->vPosition.z); | |
1381 if (int_get_vector_length(v4, v5, v6) < 4096) | |
0 | 1382 { |
322 | 1383 actor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; |
1384 if ( a2 == 1 ) | |
1385 BYTE2(actor->uAttributes) |= 8u; | |
0 | 1386 } |
1387 } | |
1388 } | |
1389 } | |
1390 | |
1391 //----- (00404874) -------------------------------------------------------- | |
1060 | 1392 char __fastcall Actor::AI_RangedAttack(unsigned int uActorID, AIDirection *a2, int a3, char a4) |
0 | 1393 { |
1394 AIDirection *v4; // edi@1 | |
1395 Actor *v5; // esi@1 | |
1396 char result; // al@1 | |
1397 char *v7; // eax@15 | |
1398 unsigned __int16 v8; // ax@18 | |
1399 unsigned __int16 v9; // ax@19 | |
1400 __int16 v10; // ax@19 | |
1401 signed int v11; // ecx@19 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1402 //int v12; // eax@19 |
0 | 1403 int v13; // edx@28 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1404 //SpriteObject a1; // [sp+Ch] [bp-74h]@1 |
0 | 1405 unsigned int v15; // [sp+7Ch] [bp-4h]@1 |
1406 signed int v16; // [sp+88h] [bp+8h]@14 | |
1407 signed int v17; // [sp+88h] [bp+8h]@19 | |
1408 | |
1409 v15 = uActorID; | |
1410 v4 = a2; | |
1411 v5 = &pActors[uActorID]; | |
1412 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1413 SpriteObject a1; // [sp+Ch] [bp-74h]@1 |
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1414 //SpriteObject::SpriteObject(&a1); |
0 | 1415 |
1416 result = a3 - 1; | |
1417 switch ( a3 ) | |
1418 { | |
1419 case 1: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1420 a1.uType = 545; |
0 | 1421 goto LABEL_14; |
1422 case 2: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1423 a1.uType = 550; |
0 | 1424 goto LABEL_14; |
1425 case 3: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1426 a1.uType = 510; |
0 | 1427 goto LABEL_14; |
1428 case 4: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1429 a1.uType = 500; |
0 | 1430 goto LABEL_14; |
1431 case 5: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1432 a1.uType = 515; |
0 | 1433 goto LABEL_14; |
1434 case 6: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1435 a1.uType = 505; |
0 | 1436 goto LABEL_14; |
1437 case 7: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1438 a1.uType = 530; |
0 | 1439 goto LABEL_14; |
1440 case 8: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1441 a1.uType = 525; |
0 | 1442 goto LABEL_14; |
1443 case 9: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1444 a1.uType = 520; |
0 | 1445 goto LABEL_14; |
1446 case 10: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1447 a1.uType = 535; |
0 | 1448 goto LABEL_14; |
1449 case 11: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1450 a1.uType = 540; |
0 | 1451 goto LABEL_14; |
1452 case 13: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1453 a1.uType = 555; |
0 | 1454 LABEL_14: |
1455 v16 = 0; | |
1456 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
1457 goto LABEL_18; | |
1458 v7 = (char *)&pObjectList->pObjects->uObjectID; | |
1459 break; | |
1460 default: | |
1461 return result; | |
1462 } | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1463 while ( (short)a1.uType != *(short *)v7 ) |
0 | 1464 { |
1465 ++v16; | |
1466 v7 += 56; | |
1467 if ( v16 >= (signed int)pObjectList->uNumObjects ) | |
1468 { | |
1469 LABEL_18: | |
1470 v8 = 0; | |
1471 goto LABEL_19; | |
1472 } | |
1473 } | |
1474 v8 = v16; | |
1475 LABEL_19: | |
1476 a1.uObjectDescID = v8; | |
1477 a1.stru_24.Reset(); | |
1478 a1.vPosition.x = v5->vPosition.x; | |
822 | 1479 a1.spell_id = 0; |
0 | 1480 a1.vPosition.y = v5->vPosition.y; |
822 | 1481 a1.spell_level = 0; |
0 | 1482 v17 = v5->uActorHeight; |
822 | 1483 a1.spell_skill = 0; |
0 | 1484 v9 = LOWORD(v4->uYawAngle); |
1485 a1.vPosition.z = v5->vPosition.z - (unsigned int)(signed __int64)((double)v17 * -0.75); | |
1486 a1.uFacing = v9; | |
1487 a1.uSoundID = 0; | |
1488 a1.uAttributes = 0; | |
1489 v10 = pIndoor->GetSector(a1.vPosition.x, a1.vPosition.y, a1.vPosition.z); | |
1490 v11 = v4->uDistance; | |
1491 a1.uSectorID = v10; | |
1492 a1.uSpriteFrameID = 0; | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1493 a1.spell_caster_pid = PID(OBJECT_Actor, v15); |
823 | 1494 a1.spell_target_pid = 0; |
0 | 1495 if ( (double)v11 >= 307.2 ) |
1496 { | |
1497 if ( v11 >= 1024 ) | |
1498 { | |
1499 a1.field_60_distance_related_prolly_lod = 2; | |
1500 if ( v11 >= 2560 ) | |
1501 a1.field_60_distance_related_prolly_lod = 3; | |
1502 } | |
1503 else | |
1504 { | |
1505 a1.field_60_distance_related_prolly_lod = 1; | |
1506 } | |
1507 } | |
1508 else | |
1509 { | |
1510 a1.field_60_distance_related_prolly_lod = 0; | |
1511 } | |
1512 a1.field_61 = a4; | |
1513 result = a1.Create( | |
1514 v4->uYawAngle, | |
1515 v4->uPitchAngle, | |
1516 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1517 0); | |
1518 if ( v5->pMonsterInfo.uSpecialAbilityType == 1 ) | |
1519 { | |
1520 result = v5->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
1521 if ( result == 2 ) | |
1522 { | |
1523 a1.vPosition.z += 40; | |
1524 v13 = v4->uYawAngle; | |
1525 } | |
1526 else | |
1527 { | |
1528 if ( result != 3 ) | |
1529 return result; | |
1530 a1.Create( | |
1531 v4->uYawAngle + 30, | |
1532 v4->uPitchAngle, | |
1533 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1534 0); | |
1535 v13 = v4->uYawAngle - 30; | |
1536 } | |
1537 result = a1.Create( | |
1538 v13, | |
1539 v4->uPitchAngle, | |
1540 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1541 0); | |
1542 } | |
1543 return result; | |
1544 } | |
1545 | |
1546 //----- (00404736) -------------------------------------------------------- | |
1547 signed int __fastcall Actor::Explode(unsigned int uActorID) | |
1548 { | |
1549 Actor *v1; // esi@1 | |
1550 signed int v2; // edx@1 | |
1551 char *v3; // ecx@2 | |
1552 unsigned __int16 v4; // ax@5 | |
1553 int v5; // ebx@6 | |
1554 int v6; // ecx@6 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1555 //int v7; // eax@6 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1556 SpriteObject a1; // [sp+Ch] [bp-78h]@1 |
0 | 1557 unsigned int v10; // [sp+7Ch] [bp-8h]@1 |
1558 int v11; // [sp+80h] [bp-4h]@6 | |
1559 | |
1560 v10 = uActorID; | |
1561 v1 = &pActors[uActorID]; | |
1562 v2 = 0; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1563 a1.uType = 600; |
0 | 1564 if ( (signed int)pObjectList->uNumObjects <= 0 ) |
1565 { | |
1566 LABEL_5: | |
1567 v4 = 0; | |
1568 } | |
1569 else | |
1570 { | |
1571 v3 = (char *)&pObjectList->pObjects->uObjectID; | |
1572 while ( *(short *)v3 != 600 ) | |
1573 { | |
1574 ++v2; | |
1575 v3 += 56; | |
1576 if ( v2 >= (signed int)pObjectList->uNumObjects ) | |
1577 goto LABEL_5; | |
1578 } | |
1579 v4 = v2; | |
1580 } | |
1581 a1.uObjectDescID = v4; | |
1582 a1.stru_24.Reset(); | |
1583 a1.vPosition.y = v1->vPosition.y; | |
822 | 1584 a1.spell_id = 0; |
0 | 1585 v5 = v1->vPosition.x; |
1586 v11 = v1->uActorHeight; | |
822 | 1587 a1.spell_level = 0; |
1588 a1.spell_skill = 0; | |
0 | 1589 a1.vPosition.x = v5; |
1590 v6 = v1->vPosition.z - (unsigned int)(signed __int64)((double)v11 * -0.75); | |
1591 a1.uFacing = 0; | |
1592 a1.vPosition.z = v6; | |
1593 a1.uSoundID = 0; | |
1594 a1.uAttributes = 0; | |
1595 a1.uSectorID = pIndoor->GetSector(v5, a1.vPosition.y, v6); | |
1596 a1.uSpriteFrameID = 0; | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1597 a1.spell_caster_pid = PID(OBJECT_Actor, v10); |
823 | 1598 a1.spell_target_pid = 0; |
0 | 1599 a1.field_60_distance_related_prolly_lod = 3; |
1600 a1.field_61 = 4; | |
1601 return a1.Create(0, 0, 0, 0); | |
1602 } | |
1603 | |
1604 //----- (004040E9) -------------------------------------------------------- | |
1605 // // Get direction vector from object1 to object2, | |
1606 // // distance from object1 to object2 and Euler angles of the direction vector | |
1607 // // | |
1608 // // | |
1609 // // object1 & object2 format : objectType | (objectID << 3) | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1610 // // objectType == 2 - SpriteObject |
0 | 1611 // // objectType == 3 - Actor |
1612 // // objectType == 4 - Party | |
1613 // // objectType == 5 - Decoration | |
1614 // // | |
1615 // // originally this function had following prototype: | |
1616 // // struct DirectionInfo GetDirectionInfo(signed int object1, signed int object2, signed int a4) | |
1617 // // but compiler converts functions returning structures by value in the such way | |
1618 AIDirection *__fastcall Actor::GetDirectionInfo(unsigned int uObj1ID, unsigned int uObj2ID, AIDirection *pOut, int a4) | |
1619 { | |
1620 signed int v4; // eax@1 | |
1336 | 1621 signed int v5; // ecx@1 |
1622 //unsigned int v6; // ebx@1 | |
0 | 1623 int v7; // ecx@2 |
1624 int v8; // ecx@3 | |
1625 int v9; // ecx@4 | |
1336 | 1626 //BLVFace *v10; // eax@8 |
1627 //unsigned int v11; // ecx@8 | |
1628 //signed int v12; // eax@9 | |
1629 //int v13; // ecx@9 | |
1630 //int v14; // eax@9 | |
0 | 1631 int v15; // eax@11 |
1632 int v16; // eax@12 | |
1633 int v17; // eax@13 | |
1634 int v18; // edx@15 | |
1336 | 1635 //signed int v19; // eax@25 |
1636 //signed int v20; // eax@28 | |
1637 //int v21; // ebx@28 | |
1638 //signed int v22; // eax@28 | |
1639 //BLVFace *v23; // eax@35 | |
1640 //int v24; // edx@35 | |
1641 //unsigned int v25; // ecx@35 | |
1642 //signed int v26; // eax@36 | |
1643 //int v27; // ecx@36 | |
1644 //int v28; // eax@36 | |
1645 //int v29; // eax@37 | |
1646 //signed int v30; // eax@42 | |
0 | 1647 double v31; // st7@45 |
1648 double v32; // st6@45 | |
1649 double v33; // st7@45 | |
1650 AIDirection *result; // eax@48 | |
1336 | 1651 //int v35; // [sp-18h] [bp-64h]@17 |
1652 //int v36; // [sp-14h] [bp-60h]@17 | |
0 | 1653 Vec3_int_ v37; // [sp-10h] [bp-5Ch]@15 |
1336 | 1654 //int *v38; // [sp-4h] [bp-50h]@15 |
1655 //int *v39; // [sp+0h] [bp-4Ch]@15 | |
1656 //int *v40; // [sp+4h] [bp-48h]@15 | |
0 | 1657 AIDirection v41; // [sp+14h] [bp-38h]@46 |
1658 float v42; // [sp+30h] [bp-1Ch]@23 | |
1659 float v43; // [sp+34h] [bp-18h]@45 | |
1336 | 1660 float outy2; // [sp+38h] [bp-14h]@33 |
1661 float outx2; // [sp+3Ch] [bp-10h]@33 | |
0 | 1662 int outz; // [sp+40h] [bp-Ch]@6 |
1663 int outy; // [sp+44h] [bp-8h]@6 | |
1664 int outx; // [sp+48h] [bp-4h]@6 | |
1665 float a4a; // [sp+58h] [bp+Ch]@45 | |
1666 | |
848 | 1667 v4 = PID_ID(uObj1ID); |
1336 | 1668 //v6 = uObj2ID; |
1669 v5 = PID_ID(uObj2ID); | |
1670 switch( PID_TYPE(uObj1ID) ) | |
0 | 1671 { |
1336 | 1672 case OBJECT_Item: |
1673 { | |
1674 outx = pSpriteObjects[v4].vPosition.x; | |
1675 outy = pSpriteObjects[v4].vPosition.y; | |
1676 outz = pSpriteObjects[v4].vPosition.z; | |
1677 break; | |
1678 } | |
1679 case OBJECT_Actor: | |
1680 { | |
1681 outx = pActors[v4].vPosition.x; | |
1682 outy = pActors[v4].vPosition.y; | |
1683 outz = pActors[v4].vPosition.z - (unsigned int)(signed __int64)((double)pActors[v4].uActorHeight * -0.75); | |
1684 break; | |
1685 } | |
1686 case OBJECT_Player: | |
1687 { | |
1688 if ( !v4 ) | |
1689 { | |
1690 outx = pParty->vPosition.x; | |
1691 outy = pParty->vPosition.y; | |
1692 outz = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1693 break; | |
1694 } | |
1695 if ( v4 == 4 ) | |
1696 { | |
1697 v18 = pParty->sRotationY - stru_5C6E00->uIntegerHalfPi; | |
1698 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1699 *(_QWORD *)&v37 = *(_QWORD *)&pParty->vPosition.x; | |
1700 Vec3_int_::Rotate(24, v18, 0, v37, &outx, &outy, &outz); | |
1701 break; | |
1702 } | |
1703 if ( v4 == 3 ) | |
1704 { | |
1705 v18 = pParty->sRotationY - stru_5C6E00->uIntegerHalfPi; | |
1706 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1707 *(_QWORD *)&v37.x = *(_QWORD *)&pParty->vPosition.x; | |
1708 Vec3_int_::Rotate(8, v18, 0, v37, &outx, &outy, &outz); | |
1709 break; | |
1710 } | |
1711 if ( v4 == 2 ) | |
1712 { | |
1713 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1714 v18 = stru_5C6E00->uIntegerHalfPi + pParty->sRotationY; | |
1715 *(_QWORD *)&v37.x = *(_QWORD *)&pParty->vPosition.x; | |
1716 Vec3_int_::Rotate(8, v18, 0, v37, &outx, &outy, &outz); | |
1717 break; | |
1718 } | |
1719 if ( v4 == 1 ) | |
1720 { | |
1721 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1722 v18 = stru_5C6E00->uIntegerHalfPi + pParty->sRotationY; | |
1723 *(_QWORD *)&v37 = *(_QWORD *)&pParty->vPosition.x; | |
1724 Vec3_int_::Rotate(24, v18, 0, v37, &outx, &outy, &outz); | |
1725 break; | |
1726 } | |
1727 } | |
1728 case OBJECT_Decoration: | |
1729 { | |
1730 outx = pLevelDecorations[v4].vPosition.x; | |
1731 outy = pLevelDecorations[v4].vPosition.y; | |
1732 outz = pLevelDecorations[v4].vPosition.z; | |
1733 break; | |
1734 } | |
1735 default: | |
1736 { | |
1737 outz = 0; | |
1738 outy = 0; | |
1739 outx = 0; | |
1740 break; | |
1741 } | |
1742 case OBJECT_BModel: | |
1743 { | |
1744 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1745 { | |
1746 outx = (pIndoor->pFaces[v4].pBounding.x1 + pIndoor->pFaces[v4].pBounding.x2) >> 1; | |
1747 outy = (pIndoor->pFaces[v4].pBounding.y1 + pIndoor->pFaces[v4].pBounding.y2) >> 1; | |
1748 outz = (pIndoor->pFaces[v4].pBounding.z1 + pIndoor->pFaces[v4].pBounding.z2) >> 1; | |
1749 } | |
1750 break; | |
1751 } | |
862 | 1752 } |
1336 | 1753 |
1754 switch( PID_TYPE(uObj2ID) ) | |
862 | 1755 { |
1336 | 1756 case OBJECT_Item: |
1757 { | |
1758 outx2 = pSpriteObjects[v5].vPosition.x; | |
1759 outy2 = pSpriteObjects[v5].vPosition.y; | |
1760 a4 = pSpriteObjects[v5].vPosition.z; | |
1761 break; | |
1762 } | |
1763 case OBJECT_Actor: | |
1764 { | |
1765 outx2 = pActors[v5].vPosition.x; | |
1766 outy2 = pActors[v5].vPosition.y; | |
1767 a4 = pActors[v5].vPosition.z - (unsigned int)(signed __int64)((double)pActors[v5].uActorHeight * -0.75); | |
1768 break; | |
1769 } | |
1770 case OBJECT_Player: | |
1771 { | |
1772 outx2 = pParty->vPosition.x; | |
1773 outy2 = pParty->vPosition.y; | |
1774 if ( !a4 ) | |
1775 a4 = pParty->sEyelevel; | |
1776 a4 = pParty->vPosition.z + a4; | |
1777 break; | |
1778 } | |
1779 case OBJECT_Decoration: | |
1780 { | |
1781 outx2 = pLevelDecorations[v5].vPosition.x; | |
1782 outy2 = pLevelDecorations[v5].vPosition.y; | |
1783 a4 = pLevelDecorations[v5].vPosition.z; | |
1784 break; | |
1785 } | |
1786 default: | |
1787 { | |
1788 outx2 = 0.0; | |
1789 outy2 = 0.0; | |
1790 a4 = 0; | |
1791 break; | |
1792 } | |
1793 case OBJECT_BModel: | |
1794 { | |
1795 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1796 { | |
1797 outx2 = (pIndoor->pFaces[v5].pBounding.x1 + pIndoor->pFaces[v5].pBounding.x2) >> 1; | |
1798 outy2 = (pIndoor->pFaces[v5].pBounding.y1 + pIndoor->pFaces[v5].pBounding.y2) >> 1; | |
1799 a4 = (pIndoor->pFaces[v5].pBounding.z1 + pIndoor->pFaces[v5].pBounding.z2) >> 1; | |
1800 } | |
1801 break; | |
1802 } | |
0 | 1803 } |
862 | 1804 |
1336 | 1805 v31 = (double)outx2 - (double)outx; |
0 | 1806 v42 = v31; |
1336 | 1807 v32 = (double)outy2 - (double)outy; |
0 | 1808 v43 = v32; |
1809 a4a = (double)a4 - (double)outz; | |
1336 | 1810 outx2 = v32 * v32; |
1811 outy2 = v31 * v31; | |
1812 v33 = sqrt(a4a * a4a + outy2 + outx2); | |
0 | 1813 if ( v33 <= 1.0 ) |
1814 { | |
1815 v41.vDirection.x = 65536; | |
1816 v41.vDirection.y = 0; | |
1817 v41.vDirection.z = 0; | |
1818 v41.uDistance = 1; | |
1819 v41.uDistanceXZ = 1; | |
1820 v41.uYawAngle = 0; | |
1821 v41.uPitchAngle = 0; | |
1822 } | |
1823 else | |
1824 { | |
1825 v41.vDirection.x = (signed __int64)(1.0 / v33 * v42 * 65536.0); | |
1826 v41.vDirection.y = (signed __int64)(1.0 / v33 * v43 * 65536.0); | |
1827 v41.vDirection.z = (signed __int64)(1.0 / v33 * a4a * 65536.0); | |
1828 v41.uDistance = (signed __int64)v33; | |
1336 | 1829 v41.uDistanceXZ = (signed __int64)sqrt(outy2 + outx2); |
0 | 1830 v41.uYawAngle = stru_5C6E00->Atan2((signed __int64)v42, (signed __int64)v43); |
1831 v41.uPitchAngle = stru_5C6E00->Atan2(v41.uDistanceXZ, (signed __int64)a4a); | |
1832 } | |
1833 result = pOut; | |
1336 | 1834 memcpy(pOut, &v41, sizeof(AIDirection)); |
0 | 1835 return result; |
1836 } | |
1837 | |
1838 //----- (00404030) -------------------------------------------------------- | |
1060 | 1839 void Actor::AI_FaceObject(unsigned int uActorID, unsigned int uObjID, int _48, AIDirection *a4) |
0 | 1840 { |
1841 unsigned int v4; // edi@1 | |
1842 unsigned int v5; // esi@1 | |
322 | 1843 //unsigned int result; // eax@2 |
0 | 1844 AIDirection *v7; // eax@3 |
1845 unsigned int v8; // ecx@3 | |
1846 Actor *v9; // ebx@3 | |
1847 AIDirection *v10; // esi@4 | |
1848 unsigned __int16 v11; // ax@5 | |
1849 AIDirection a3; // [sp+8h] [bp-38h]@4 | |
1850 AIDirection v13; // [sp+24h] [bp-1Ch]@4 | |
1851 | |
1852 v4 = uObjID; | |
1853 v5 = uActorID; | |
1854 if ( rand() % 100 >= 5 ) | |
1855 { | |
1856 v7 = a4; | |
1857 v8 = 0; | |
1858 v9 = &pActors[v5]; | |
1859 if ( !a4 ) | |
1860 { | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1861 v10 = Actor::GetDirectionInfo(PID(OBJECT_Actor, v5), v4, &a3, 0); |
0 | 1862 v7 = &v13; |
1863 memcpy(&v13, v10, sizeof(v13)); | |
1864 v8 = 0; | |
1865 } | |
1866 v9->uYawAngle = LOWORD(v7->uYawAngle); | |
1867 v11 = LOWORD(v7->uPitchAngle); | |
1868 v9->uCurrentActionTime = v8; | |
1869 v9->vVelocity.z = v8; | |
1870 v9->vVelocity.y = v8; | |
1871 v9->vVelocity.x = v8; | |
1872 v9->uPitchAngle = v11; | |
1873 v9->uCurrentActionLength = 256; | |
1874 v9->uAIState = Interacting; | |
322 | 1875 v9->UpdateAnimation(); |
0 | 1876 } |
1877 else | |
414 | 1878 Actor::AI_Bored(v5, v4, a4); |
0 | 1879 } |
1880 | |
1881 //----- (00403F58) -------------------------------------------------------- | |
414 | 1882 void Actor::AI_StandOrBored(unsigned int uActorID, signed int uObjID, int uActionLength, AIDirection *a4) |
0 | 1883 { |
413 | 1884 if (rand() % 2) |
414 | 1885 AI_Bored(uActorID, uObjID, a4); |
413 | 1886 else |
414 | 1887 AI_Stand(uActorID, uObjID, uActionLength, a4); |
0 | 1888 } |
1889 | |
1890 //----- (00403EB6) -------------------------------------------------------- | |
413 | 1891 void Actor::AI_Stand(unsigned int uActorID, unsigned int object_to_face_pid, unsigned int uActionLength, AIDirection *a4) |
0 | 1892 { |
413 | 1893 assert(uActorID < uNumActors); |
1202 | 1894 auto actor = &pActors[uActorID]; |
413 | 1895 |
1896 AIDirection a3; | |
1897 if (!a4) | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1898 a4 = Actor::GetDirectionInfo(PID(OBJECT_Actor, uActorID), object_to_face_pid, &a3, 0); |
0 | 1899 |
413 | 1900 actor->uAIState = Standing; |
1901 if (!uActionLength) | |
1902 actor->uCurrentActionLength = rand() % 256 + 256; | |
0 | 1903 else |
413 | 1904 actor->uCurrentActionLength = uActionLength; |
1905 actor->uCurrentActionTime = 0; | |
1906 actor->uYawAngle = a4->uYawAngle; | |
1907 actor->uPitchAngle = a4->uPitchAngle; | |
1908 actor->vVelocity.z = 0; | |
1909 actor->vVelocity.y = 0; | |
1910 actor->vVelocity.x = 0; | |
1911 actor->UpdateAnimation(); | |
0 | 1912 } |
1913 | |
1914 //----- (00403E61) -------------------------------------------------------- | |
1915 void __fastcall Actor::StandAwhile(unsigned int uActorID) | |
1916 { | |
1917 Actor *v1; // esi@1 | |
1918 | |
1919 v1 = &pActors[uActorID]; | |
1920 v1->uCurrentActionLength = rand() % 128 + 128; | |
1921 v1->uCurrentActionTime = 0; | |
1922 v1->uAIState = Standing; | |
1923 v1->vVelocity.z = 0; | |
1924 v1->vVelocity.y = 0; | |
1925 v1->vVelocity.x = 0; | |
1926 v1->UpdateAnimation(); | |
1927 } | |
1928 | |
1929 //----- (00403C6C) -------------------------------------------------------- | |
1060 | 1930 void Actor::AI_MeleeAttack(unsigned int uActorID, signed int sTargetPid, struct AIDirection *arg0) |
0 | 1931 { |
1932 Actor *v3; // ebx@1 | |
1933 char v4; // zf@1 | |
322 | 1934 //unsigned int result; // eax@3 |
0 | 1935 AIDirection *v6; // esi@6 |
1936 AIDirection *v7; // edi@6 | |
1937 signed int v8; // eax@7 | |
1938 double v9; // st7@9 | |
1939 Vec3_int_ v10; // ST04_12@9 | |
322 | 1940 //int v11; // eax@10 |
0 | 1941 AIDirection *v12; // eax@11 |
1942 unsigned int v13; // esi@11 | |
1943 AIDirection *v14; // esi@12 | |
1944 SpriteFrame *v15; // ecx@13 | |
1945 __int16 v16; // ax@13 | |
1946 unsigned int v17; // ecx@13 | |
1947 signed __int64 v18; // qax@13 | |
1948 AIDirection a3; // [sp+Ch] [bp-48h]@12 | |
1949 AIDirection v20; // [sp+28h] [bp-2Ch]@12 | |
1950 unsigned int v21; // [sp+44h] [bp-10h]@9 | |
848 | 1951 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 1952 int v23; // [sp+4Ch] [bp-8h]@6 |
1953 unsigned int v24; // [sp+50h] [bp-4h]@1 | |
1954 unsigned int v25; // [sp+5Ch] [bp+8h]@13 | |
1955 | |
1956 v3 = &pActors[uActorID]; | |
848 | 1957 //a2 = edx0; |
1456 | 1958 v4 = v3->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY; |
0 | 1959 v24 = uActorID; |
1960 if ( v4 && v3->pMonsterInfo.uAIType == 1 ) | |
1961 { | |
848 | 1962 Actor::AI_Stand(uActorID, sTargetPid, 0, arg0); |
322 | 1963 return; |
0 | 1964 } |
322 | 1965 |
848 | 1966 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) |
849 | 1967 { |
1968 v8 = PID_ID(sTargetPid); | |
1969 v6 = (AIDirection *)pActors[v8].vPosition.x; | |
1970 v7 = (AIDirection *)pActors[v8].vPosition.y; | |
1971 v23 = (signed __int64)((double)pActors[v8].uActorHeight * 0.75 + (double)pActors[v8].vPosition.z); | |
1972 } | |
1973 else if ( PID_TYPE(sTargetPid) == OBJECT_Player) | |
1974 { | |
1975 v6 = (AIDirection *)pParty->vPosition.x; | |
1976 v7 = (AIDirection *)pParty->vPosition.y; | |
1977 v23 = pParty->vPosition.z + pParty->sEyelevel; | |
1978 } | |
1979 else | |
1980 { | |
1981 v6 = arg0; | |
1982 v7 = arg0; | |
1983 } | |
1984 v21 = v3->uActorHeight; | |
1985 v9 = (double)(signed int)v21 * 0.75; | |
1986 v21 = v3->vPosition.z; | |
1987 v10.z = (signed __int64)(v9 + (double)(signed int)v21); | |
1988 v10.y = v3->vPosition.y; | |
1989 v10.x = v3->vPosition.x; | |
1990 if ( sub_407A1C((int)v6, (int)v7, v23, v10) ) | |
1991 { | |
1992 v12 = arg0; | |
1993 v13 = 0; | |
1994 if ( !arg0 ) | |
0 | 1995 { |
849 | 1996 v14 = Actor::GetDirectionInfo(PID(OBJECT_Actor, v24), sTargetPid, &a3, 0); |
0 | 1997 v12 = &v20; |
1998 memcpy(&v20, v14, sizeof(v20)); | |
1999 v13 = 0; | |
849 | 2000 } |
2001 v15 = pSpriteFrameTable->pSpriteSFrames; | |
2002 v3->uYawAngle = LOWORD(v12->uYawAngle); | |
2003 v16 = v15[v3->pSpriteIDs[ANIM_AtkMelee]].uAnimLength; | |
2004 v17 = v24; | |
2005 v3->uCurrentActionLength = 8 * v16; | |
2006 v3->uCurrentActionTime = v13; | |
2007 v3->uAIState = AttackingMelee; | |
2008 Actor::PlaySound(v17, 0); | |
2009 LODWORD(v18) = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2010 v25 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2011 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v13 | |
2012 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v13 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v13) ) | |
2013 { | |
2014 LODWORD(v18) = 2 * v18; | |
0 | 2015 v25 = v18; |
849 | 2016 } |
2017 if ( pParty->bTurnBasedModeOn != 1 ) | |
0 | 2018 v18 = (signed __int64)(flt_6BE3A8_debug_recmod2 * (double)(signed int)v25 * 2.133333333333333); |
849 | 2019 v3->pMonsterInfo.uRecoveryTime = v18; |
2020 v3->vVelocity.z = v13; | |
2021 v3->vVelocity.y = v13; | |
2022 v3->vVelocity.x = v13; | |
2023 v3->UpdateAnimation(); | |
2024 } | |
2025 else | |
1060 | 2026 Actor::AI_Pursue1(v24, sTargetPid, rand() % 2, 64, arg0); |
0 | 2027 } |
2028 | |
2029 //----- (00438CF3) -------------------------------------------------------- | |
322 | 2030 void Actor::ApplyFineForKillingPeasant(unsigned int uActorID) |
0 | 2031 { |
2032 unsigned int v1; // esi@1 | |
2033 unsigned int v2; // edi@2 | |
2034 char v3; // bl@3 | |
322 | 2035 //char *v4; // ecx@16 |
2036 //signed int v5; // eax@18 | |
0 | 2037 Player **ppPlayers; // esi@20 |
2038 | |
2039 v1 = uLevelMapStatsID; | |
322 | 2040 if ( !uLevelMapStatsID || !pActors[uActorID].IsPeasant()) |
0 | 2041 return; |
322 | 2042 |
2043 v2 = uActorID; | |
0 | 2044 v3 = 1; |
2045 if ( v1 != 5 ) | |
2046 { | |
2047 if ( v1 == 6 || v1 == 7 ) | |
2048 { | |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1340
diff
changeset
|
2049 pParty->IsPartyGood(); //the binary file contains this call. if someone finds out whether it's supposed to be here or not, feel free to apply the appropriate change |
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1340
diff
changeset
|
2050 if ( pParty->IsPartyEvil() ) |
0 | 2051 return; |
2052 goto LABEL_12; | |
2053 } | |
2054 if ( v1 != 8 ) | |
2055 goto LABEL_12; | |
2056 } | |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1340
diff
changeset
|
2057 if ( pParty->IsPartyGood() ) |
0 | 2058 v3 = 0; |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1340
diff
changeset
|
2059 if ( pParty->IsPartyEvil() ) |
0 | 2060 v3 = 1; |
2061 if ( v3 ) | |
2062 { | |
2063 LABEL_12: | |
322 | 2064 pParty->uFine += 100 * (pMapStats->pInfos[uLevelMapStatsID]._steal_perm + pActors[v2].pMonsterInfo.uLevel + GetPartyReputation()); |
0 | 2065 if ( pParty->uFine < 0 ) |
2066 pParty->uFine = 0; | |
2067 if ( pParty->uFine > 4000000 ) | |
2068 pParty->uFine = 4000000; | |
322 | 2069 |
2070 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
2071 { | |
2072 if (pOutdoor->ddm.uReputation < 10000) | |
2073 pOutdoor->ddm.uReputation++; | |
2074 } | |
2075 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
2076 { | |
2077 if (pIndoor->dlv.uReputation < 10000) | |
2078 pIndoor->dlv.uReputation++; | |
2079 } | |
2080 else assert(false); | |
2081 | |
0 | 2082 ppPlayers = &pPlayers[1]; |
2083 do | |
2084 { | |
2085 if ( pParty->uFine ) | |
2086 { | |
1460
ff2118028c71
renaming _guilds_member_bits to _achieved_awards_bits
Gloval
parents:
1456
diff
changeset
|
2087 if ( !(unsigned __int16)_449B57_test_bit((unsigned __int8 *)(*ppPlayers)->_achieved_awards_bits, 1) ) |
ff2118028c71
renaming _guilds_member_bits to _achieved_awards_bits
Gloval
parents:
1456
diff
changeset
|
2088 _449B7E_toggle_bit((unsigned char *)(*ppPlayers)->_achieved_awards_bits, 1, 1u); |
0 | 2089 } |
2090 ++ppPlayers; | |
2091 } | |
2092 while ( (signed int)ppPlayers <= (signed int)&pPlayers[4] ); | |
2093 } | |
2094 } | |
2095 | |
2096 //----- (0043AE80) -------------------------------------------------------- | |
322 | 2097 void Actor::AddBloodsplatOnDamageOverlay(unsigned int uActorID, int a2, signed int a3) |
0 | 2098 { |
2099 int result; // eax@1 | |
2100 unsigned int v4; // esi@1 | |
2101 int v5; // [sp-14h] [bp-18h]@3 | |
2102 unsigned int v6; // [sp-10h] [bp-14h]@3 | |
2103 int v7; // [sp-Ch] [bp-10h]@3 | |
2104 int v8; // [sp-8h] [bp-Ch]@3 | |
2105 __int16 v9; // [sp-4h] [bp-8h]@3 | |
2106 | |
2107 result = a2 - 1; | |
862 | 2108 v4 = PID(OBJECT_Actor,uActorID); |
0 | 2109 switch ( a2 ) |
2110 { | |
2111 case 1: | |
2112 if ( a3 ) | |
2113 { | |
2114 v9 = 0; | |
2115 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2116 v7 = 0; | |
2117 LOWORD(v6) = v4; | |
2118 v5 = 904; | |
2119 goto LABEL_16; | |
2120 } | |
322 | 2121 return; |
0 | 2122 case 2: |
2123 if ( a3 ) | |
2124 { | |
2125 v9 = 0; | |
2126 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2127 v7 = 0; | |
2128 LOWORD(v6) = v4; | |
2129 v5 = 905; | |
2130 goto LABEL_16; | |
2131 } | |
322 | 2132 return; |
0 | 2133 case 3: |
2134 if ( a3 ) | |
2135 { | |
2136 v9 = 0; | |
2137 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2138 v7 = 0; | |
2139 LOWORD(v6) = v4; | |
2140 v5 = 906; | |
2141 goto LABEL_16; | |
2142 } | |
322 | 2143 return; |
0 | 2144 case 4: |
2145 if ( a3 ) | |
2146 { | |
2147 v9 = 0; | |
2148 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2149 v7 = 0; | |
2150 LOWORD(v6) = v4; | |
2151 v5 = 907; | |
2152 goto LABEL_16; | |
2153 } | |
322 | 2154 return; |
0 | 2155 case 5: |
2156 v9 = 4; | |
2157 v8 = 65536; | |
2158 v7 = 0; | |
862 | 2159 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2160 v5 = 901; |
2161 goto LABEL_16; | |
2162 case 6: | |
2163 v9 = 4; | |
2164 v8 = 65536; | |
2165 v7 = 0; | |
862 | 2166 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2167 v5 = 902; |
2168 goto LABEL_16; | |
2169 case 7: | |
2170 v9 = 4; | |
2171 v8 = 65536; | |
2172 v7 = 0; | |
862 | 2173 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2174 v5 = 903; |
2175 goto LABEL_16; | |
2176 case 8: | |
2177 v9 = 4; | |
2178 v8 = 65536; | |
2179 v7 = 0; | |
862 | 2180 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2181 v5 = 900; |
2182 goto LABEL_16; | |
2183 case 9: | |
2184 v9 = 4; | |
2185 v8 = 65536; | |
2186 v7 = 0; | |
862 | 2187 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2188 v5 = 909; |
2189 goto LABEL_16; | |
2190 case 10: | |
2191 v9 = 4; | |
2192 v8 = 65536; | |
2193 v7 = 0; | |
862 | 2194 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2195 v5 = 908; |
2196 LABEL_16: | |
2197 result = pOtherOverlayList->_4418B6(v5, v6, v7, v8, v9); | |
2198 break; | |
2199 default: | |
322 | 2200 return; |
0 | 2201 } |
322 | 2202 return; |
0 | 2203 } |
2204 | |
2205 //----- (0043B3E0) -------------------------------------------------------- | |
2206 int Actor::_43B3E0_CalcDamage(Actor *a1, signed int a2) | |
2207 { | |
2208 signed int v2; // ebp@1 | |
2209 int v3; // eax@9 | |
2210 signed int v4; // edi@9 | |
2211 int v5; // esi@9 | |
2212 int v6; // ebx@11 | |
2213 unsigned __int16 v8; // si@21 | |
2214 int v9; // edi@21 | |
2215 signed int v10; // eax@23 | |
2216 int v11; // [sp+10h] [bp-4h]@1 | |
2217 | |
2218 v2 = 0; | |
2219 v11 = 0; | |
2220 if ( a2 ) | |
2221 { | |
2222 if ( a2 == 1 ) | |
2223 { | |
2224 v3 = a1->pMonsterInfo.uAttack2DamageDiceRolls; | |
2225 v4 = a1->pMonsterInfo.uAttack2DamageDiceSides; | |
2226 v5 = a1->pMonsterInfo.uAttack2DamageBonus; | |
2227 } | |
2228 else | |
2229 { | |
2230 if ( a2 <= 1 ) | |
2231 return 0; | |
2232 if ( a2 <= 3 ) | |
2233 { | |
2234 if ( a2 == 2 ) | |
2235 { | |
2236 v8 = a1->pMonsterInfo.uSpellSkillAndMastery1; | |
2237 v9 = a1->pMonsterInfo.uSpell1ID; | |
2238 } | |
2239 else | |
2240 { | |
2241 v8 = a1->pMonsterInfo.uSpellSkillAndMastery2; | |
2242 v9 = a1->pMonsterInfo.uSpell2ID; | |
2243 } | |
2244 v10 = SkillToMastery(v8); | |
2245 return _43AFE3_calc_spell_damage(v9, v8 & 0x3F, v10, 0); | |
2246 } | |
2247 if ( a2 != 4 ) | |
2248 return 0; | |
2249 v3 = a1->pMonsterInfo.uSpecialAbilityDamageDiceRolls; | |
2250 v4 = a1->pMonsterInfo.uSpecialAbilityDamageDiceSides; | |
2251 v5 = a1->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
2252 } | |
2253 } | |
2254 else | |
2255 { | |
2256 if ( (signed __int64)a1->pActorBuffs[14].uExpireTime > 0 ) | |
2257 v2 = a1->pActorBuffs[14].uPower; | |
2258 if ( (signed __int64)a1->pActorBuffs[18].uExpireTime > 0 && a1->pActorBuffs[18].uPower > v2 ) | |
2259 v2 = a1->pActorBuffs[18].uPower; | |
2260 if ( (signed __int64)a1->pActorBuffs[21].uExpireTime > 0 ) | |
2261 v2 += a1->pActorBuffs[21].uPower; | |
2262 v3 = a1->pMonsterInfo.uAttack1DamageDiceRolls; | |
2263 v4 = a1->pMonsterInfo.uAttack1DamageDiceSides; | |
2264 v5 = a1->pMonsterInfo.uAttack1DamageBonus; | |
2265 } | |
2266 if ( v3 > 0 ) | |
2267 { | |
2268 v6 = v3; | |
2269 do | |
2270 { | |
2271 --v6; | |
2272 v11 += rand() % v4 + 1; | |
2273 } | |
2274 while ( v6 ); | |
2275 } | |
2276 return v11 + v5 + v2; | |
2277 } | |
2278 | |
2279 //----- (00438B9B) -------------------------------------------------------- | |
322 | 2280 bool Actor::IsPeasant() |
0 | 2281 { |
2282 unsigned int v1; // eax@1 | |
2283 | |
2284 v1 = this->uAlly; | |
2285 if ( !v1 ) | |
2286 v1 = (this->pMonsterInfo.uID - 1) / 3 + 1; | |
2287 return (signed int)v1 >= 39 && (signed int)v1 <= 44 | |
2288 || (signed int)v1 >= 45 && (signed int)v1 <= 50 | |
2289 || (signed int)v1 >= 51 && (signed int)v1 <= 62 | |
2290 || (signed int)v1 >= 78 && (signed int)v1 <= 83; | |
2291 } | |
2292 | |
2293 //----- (0042EBEE) -------------------------------------------------------- | |
2294 bool Actor::StealFrom(unsigned int uActorID) | |
2295 { | |
2296 unsigned int v1; // esi@1 | |
2297 Player *pPlayer; // edi@1 | |
2298 bool result; // eax@1 | |
2299 int v4; // ebx@2 | |
2300 unsigned int v5; // eax@2 | |
2301 DDM_DLV_Header *v6; // esi@4 | |
2302 unsigned int v7; // [sp+8h] [bp-4h]@1 | |
2303 int v8; // [sp+8h] [bp-4h]@6 | |
2304 | |
2305 v1 = uActiveCharacter; | |
2306 v7 = uActorID; | |
243 | 2307 pPlayer = &pParty->pPlayers[uActiveCharacter-1]; |
0 | 2308 result = pPlayer->CanAct(); |
2309 if ( result ) | |
2310 { | |
1202 | 2311 pCastSpellInfo.data()->_427D48(v1); |
0 | 2312 v4 = 0; |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
2313 v5 = pMapStats->GetMapInfo(pCurrentMapName.data()); |
0 | 2314 if ( v5 ) |
2315 v4 = pMapStats->pInfos[v5]._steal_perm; | |
2316 v6 = &pOutdoor->ddm; | |
2317 if ( uCurrentlyLoadedLevelType != LEVEL_Outdoor) | |
2318 v6 = &pIndoor->dlv; | |
2319 pPlayer->StealFromActor(v7, v4, v6->uReputation++); | |
2320 v8 = pPlayer->GetAttackRecoveryTime(0); | |
2321 if ( v8 < 30 ) | |
2322 v8 = 30; | |
2323 if ( !pParty->bTurnBasedModeOn ) | |
2324 pPlayer->SetRecoveryTime((signed __int64)(flt_6BE3A4_debug_recmod1 * (double)v8 * 2.133333333333333)); | |
1448 | 2325 pTurnEngine->ApplyPlayerAction(); |
0 | 2326 result = 1; |
2327 } | |
2328 return result; | |
2329 } | |
2330 | |
2331 //----- (00403A60) -------------------------------------------------------- | |
1060 | 2332 void Actor::AI_SpellAttack2(unsigned int uActorID, signed int edx0, AIDirection *pDir) |
0 | 2333 { |
2334 Actor *v3; // ebx@1 | |
2335 AIDirection *v4; // esi@3 | |
2336 AIDirection *v5; // edi@3 | |
2337 signed int v6; // eax@4 | |
2338 Vec3_int_ v7; // ST04_12@6 | |
322 | 2339 //unsigned int result; // eax@7 |
0 | 2340 AIDirection *v9; // eax@8 |
2341 unsigned int v10; // esi@8 | |
2342 AIDirection *v11; // esi@9 | |
2343 SpriteFrame *v12; // ecx@10 | |
2344 __int16 v13; // ax@10 | |
2345 unsigned int v14; // ecx@10 | |
2346 unsigned int v15; // eax@10 | |
2347 signed int v16; // ecx@17 | |
2348 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2349 AIDirection v18; // [sp+28h] [bp-2Ch]@9 | |
2350 int v19; // [sp+44h] [bp-10h]@6 | |
2351 signed int a2; // [sp+48h] [bp-Ch]@1 | |
2352 int v21; // [sp+4Ch] [bp-8h]@3 | |
2353 unsigned int v22; // [sp+50h] [bp-4h]@1 | |
2354 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2355 | |
2356 v22 = uActorID; | |
2357 v3 = &pActors[uActorID]; | |
2358 a2 = edx0; | |
848 | 2359 if ( PID_TYPE(edx0) == OBJECT_Actor) |
0 | 2360 { |
848 | 2361 v6 = PID_ID(edx0); |
0 | 2362 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2363 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2364 v21 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2365 } | |
2366 else | |
2367 { | |
848 | 2368 if ( PID_TYPE(edx0) == OBJECT_Player) |
0 | 2369 { |
2370 v4 = (AIDirection *)pParty->vPosition.x; | |
2371 v5 = (AIDirection *)pParty->vPosition.y; | |
2372 v21 = pParty->vPosition.z + pParty->sEyelevel; | |
2373 } | |
2374 else | |
2375 { | |
2376 v4 = pDir; | |
2377 v5 = pDir; | |
2378 } | |
2379 } | |
2380 v19 = v3->uActorHeight; | |
2381 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2382 v7.y = v3->vPosition.y; | |
2383 v7.x = v3->vPosition.x; | |
2384 if ( sub_407A1C((int)v4, (int)v5, v21, v7) ) | |
2385 { | |
2386 v9 = pDir; | |
2387 v10 = 0; | |
2388 if ( !pDir ) | |
2389 { | |
862 | 2390 v11 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v22), a2, &a3, 0); |
0 | 2391 v9 = &v18; |
2392 memcpy(&v18, v11, sizeof(v18)); | |
2393 v10 = 0; | |
2394 } | |
2395 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2396 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2397 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2398 v14 = v22; |
2399 v3->uCurrentActionLength = 8 * v13; | |
2400 v3->uCurrentActionTime = v10; | |
2401 v3->uAIState = AttackingRanged4; | |
2402 Actor::PlaySound(v14, 0); | |
2403 v15 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2404 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2405 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2406 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2407 { | |
2408 v15 *= 2; | |
2409 pDira = v15; | |
2410 } | |
2411 if ( pParty->bTurnBasedModeOn == 1 ) | |
2412 v3->pMonsterInfo.uRecoveryTime = v15; | |
2413 else | |
2414 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2415 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2416 * (double)(signed int)pDira | |
2417 * -2.133333333333333); | |
2418 v16 = v3->pMonsterInfo.uSpell2ID; | |
2419 v3->vVelocity.z = v10; | |
2420 v3->vVelocity.y = v10; | |
2421 v3->vVelocity.x = v10; | |
2422 if ( sub_42FB5C(v16) ) | |
2423 { | |
2424 v3->uCurrentActionLength = 64; | |
2425 v3->uCurrentActionTime = v10; | |
2426 v3->uAIState = Fidgeting; | |
322 | 2427 v3->UpdateAnimation(); |
0 | 2428 v3->uAIState = AttackingRanged4; |
2429 } | |
2430 else | |
322 | 2431 v3->UpdateAnimation(); |
0 | 2432 } |
2433 else | |
1060 | 2434 Actor::AI_Pursue1(v22, a2, v22, 64, pDir); |
0 | 2435 } |
2436 | |
2437 //----- (00403854) -------------------------------------------------------- | |
1060 | 2438 void Actor::AI_SpellAttack1(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2439 { |
2440 Actor *v3; // ebx@1 | |
2441 AIDirection *v4; // esi@3 | |
2442 AIDirection *v5; // edi@3 | |
2443 signed int v6; // eax@4 | |
2444 Vec3_int_ v7; // ST04_12@6 | |
322 | 2445 //unsigned int result; // eax@7 |
0 | 2446 AIDirection *v9; // eax@8 |
2447 unsigned int v10; // esi@8 | |
2448 AIDirection *v11; // esi@9 | |
2449 SpriteFrame *v12; // ecx@10 | |
2450 __int16 v13; // ax@10 | |
2451 unsigned int v14; // ecx@10 | |
2452 unsigned int v15; // eax@10 | |
2453 signed int v16; // ecx@17 | |
2454 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2455 AIDirection v18; // [sp+28h] [bp-2Ch]@9 | |
2456 int v19; // [sp+44h] [bp-10h]@6 | |
848 | 2457 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2458 int v21; // [sp+4Ch] [bp-8h]@3 |
2459 unsigned int v22; // [sp+50h] [bp-4h]@1 | |
2460 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2461 | |
2462 v22 = uActorID; | |
2463 v3 = &pActors[uActorID]; | |
848 | 2464 //a2 = edx0; |
2465 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2466 { |
848 | 2467 v6 = PID_ID(sTargetPid); |
0 | 2468 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2469 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2470 v21 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2471 } | |
2472 else | |
2473 { | |
848 | 2474 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2475 { |
2476 v4 = (AIDirection *)pParty->vPosition.x; | |
2477 v5 = (AIDirection *)pParty->vPosition.y; | |
2478 v21 = pParty->vPosition.z + pParty->sEyelevel; | |
2479 } | |
2480 else | |
2481 { | |
2482 v4 = pDir; | |
2483 v5 = pDir; | |
2484 } | |
2485 } | |
2486 v19 = v3->uActorHeight; | |
2487 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2488 v7.y = v3->vPosition.y; | |
2489 v7.x = v3->vPosition.x; | |
2490 if ( sub_407A1C((int)v4, (int)v5, v21, v7) ) | |
2491 { | |
2492 v9 = pDir; | |
2493 v10 = 0; | |
2494 if ( !pDir ) | |
2495 { | |
862 | 2496 v11 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v22), sTargetPid, &a3, 0); |
0 | 2497 v9 = &v18; |
2498 memcpy(&v18, v11, sizeof(v18)); | |
2499 v10 = 0; | |
2500 } | |
2501 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2502 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2503 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2504 v14 = v22; |
2505 v3->uCurrentActionLength = 8 * v13; | |
2506 v3->uCurrentActionTime = v10; | |
2507 v3->uAIState = AttackingRanged3; | |
2508 Actor::PlaySound(v14, 0); | |
2509 v15 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2510 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2511 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2512 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2513 { | |
2514 v15 *= 2; | |
2515 pDira = v15; | |
2516 } | |
2517 if ( pParty->bTurnBasedModeOn == 1 ) | |
2518 v3->pMonsterInfo.uRecoveryTime = v15; | |
2519 else | |
2520 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2521 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2522 * (double)(signed int)pDira | |
2523 * -2.133333333333333); | |
2524 v16 = v3->pMonsterInfo.uSpell1ID; | |
2525 v3->vVelocity.z = v10; | |
2526 v3->vVelocity.y = v10; | |
2527 v3->vVelocity.x = v10; | |
2528 if ( sub_42FB5C(v16) ) | |
2529 { | |
2530 v3->uCurrentActionLength = 64; | |
2531 v3->uCurrentActionTime = v10; | |
2532 v3->uAIState = Fidgeting; | |
322 | 2533 v3->UpdateAnimation(); |
0 | 2534 v3->uAIState = AttackingRanged3; |
2535 } | |
2536 else | |
322 | 2537 v3->UpdateAnimation(); |
0 | 2538 } |
2539 else | |
1060 | 2540 Actor::AI_Pursue1(v22, sTargetPid, v22, 64, pDir); |
0 | 2541 } |
2542 | |
2543 //----- (0040368B) -------------------------------------------------------- | |
1060 | 2544 void Actor::AI_MissileAttack2(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2545 { |
2546 Actor *v3; // ebx@1 | |
2547 AIDirection *v4; // esi@3 | |
2548 AIDirection *v5; // edi@3 | |
2549 signed int v6; // eax@4 | |
2550 Vec3_int_ v7; // ST04_12@6 | |
322 | 2551 //unsigned int result; // eax@7 |
0 | 2552 AIDirection *v9; // eax@8 |
2553 unsigned int v10; // esi@8 | |
2554 AIDirection *v11; // esi@9 | |
2555 SpriteFrame *v12; // ecx@10 | |
2556 __int16 v13; // ax@10 | |
2557 unsigned int v14; // ecx@10 | |
2558 signed __int64 v15; // qax@10 | |
2559 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2560 AIDirection v17; // [sp+28h] [bp-2Ch]@9 | |
2561 int v18; // [sp+44h] [bp-10h]@6 | |
848 | 2562 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2563 int v20; // [sp+4Ch] [bp-8h]@3 |
2564 unsigned int v21; // [sp+50h] [bp-4h]@1 | |
2565 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2566 | |
2567 v21 = uActorID; | |
2568 v3 = &pActors[uActorID]; | |
848 | 2569 //a2 = edx0; |
2570 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2571 { |
848 | 2572 v6 = PID_ID(sTargetPid); |
0 | 2573 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2574 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2575 v20 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2576 } | |
2577 else | |
2578 { | |
848 | 2579 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2580 { |
2581 v4 = (AIDirection *)pParty->vPosition.x; | |
2582 v5 = (AIDirection *)pParty->vPosition.y; | |
2583 v20 = pParty->vPosition.z + pParty->sEyelevel; | |
2584 } | |
2585 else | |
2586 { | |
2587 v4 = pDir; | |
2588 v5 = pDir; | |
2589 } | |
2590 } | |
2591 v18 = v3->uActorHeight; | |
2592 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v18 * -0.75); | |
2593 v7.y = v3->vPosition.y; | |
2594 v7.x = v3->vPosition.x; | |
2595 if ( sub_407A1C((int)v4, (int)v5, v20, v7) ) | |
2596 { | |
2597 v9 = pDir; | |
2598 v10 = 0; | |
2599 if ( !pDir ) | |
2600 { | |
862 | 2601 v11 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v21), sTargetPid, &a3, 0); |
0 | 2602 v9 = &v17; |
2603 memcpy(&v17, v11, sizeof(v17)); | |
2604 v10 = 0; | |
2605 } | |
2606 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2607 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2608 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2609 v14 = v21; |
2610 v3->uCurrentActionLength = 8 * v13; | |
2611 v3->uCurrentActionTime = v10; | |
2612 v3->uAIState = AttackingRanged2; | |
2613 Actor::PlaySound(v14, 0); | |
2614 LODWORD(v15) = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2615 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2616 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2617 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2618 { | |
2619 LODWORD(v15) = 2 * v15; | |
2620 pDira = v15; | |
2621 } | |
2622 if ( pParty->bTurnBasedModeOn != 1 ) | |
2623 v15 = (signed __int64)(flt_6BE3A8_debug_recmod2 * (double)(signed int)pDira * 2.133333333333333); | |
2624 v3->pMonsterInfo.uRecoveryTime = v15; | |
2625 v3->vVelocity.z = v10; | |
2626 v3->vVelocity.y = v10; | |
2627 v3->vVelocity.x = v10; | |
322 | 2628 v3->UpdateAnimation(); |
0 | 2629 } |
2630 else | |
1060 | 2631 Actor::AI_Pursue1(v21, sTargetPid, v21, 64, pDir); |
0 | 2632 } |
2633 | |
2634 //----- (00403476) -------------------------------------------------------- | |
1060 | 2635 void Actor::AI_MissileAttack1(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2636 { |
2637 Actor *v3; // ebx@1 | |
2638 int v4; // esi@3 | |
2639 int v5; // edi@3 | |
2640 signed int v6; // eax@4 | |
2641 Vec3_int_ v7; // ST04_12@6 | |
2642 unsigned char v8[12]; // ST04_12@7 | |
322 | 2643 //unsigned int result; // eax@8 |
0 | 2644 AIDirection *v10; // eax@9 |
2645 unsigned int v11; // esi@9 | |
2646 AIDirection *v12; // esi@10 | |
2647 SpriteFrame *v13; // ecx@11 | |
2648 __int16 v14; // ax@11 | |
2649 unsigned int v15; // ecx@11 | |
2650 unsigned int v16; // eax@11 | |
2651 AIDirection a3; // [sp+Ch] [bp-48h]@10 | |
2652 AIDirection v18; // [sp+28h] [bp-2Ch]@10 | |
2653 int v19; // [sp+44h] [bp-10h]@6 | |
848 | 2654 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2655 unsigned int v21; // [sp+4Ch] [bp-8h]@1 |
2656 int v22; // [sp+50h] [bp-4h]@3 | |
2657 unsigned int pDira; // [sp+5Ch] [bp+8h]@11 | |
2658 | |
2659 v21 = uActorID; | |
2660 v3 = &pActors[uActorID]; | |
848 | 2661 //a2 = edx0; |
2662 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2663 { |
848 | 2664 v6 = PID_ID(sTargetPid); |
0 | 2665 v4 = pActors[v6].vPosition.x; |
2666 v5 = pActors[v6].vPosition.y; | |
2667 v22 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2668 } | |
2669 else | |
2670 { | |
848 | 2671 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2672 { |
2673 v4 = pParty->vPosition.x; | |
2674 v5 = pParty->vPosition.y; | |
2675 v22 = pParty->vPosition.z + pParty->sEyelevel; | |
2676 } | |
2677 else | |
2678 { | |
2679 v4 = (int)pDir; | |
2680 v5 = (int)pDir; | |
2681 } | |
2682 } | |
2683 v19 = v3->uActorHeight; | |
2684 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2685 v7.y = v3->vPosition.y; | |
2686 v7.x = v3->vPosition.x; | |
2687 if ( sub_407A1C(v4, v5, v22, v7) | |
2688 || (*(unsigned int *)&v8[8] = v22, | |
2689 v19 = v3->uActorHeight, | |
2690 *(_QWORD *)v8 = __PAIR__(v5, v4), | |
2691 sub_407A1C( | |
2692 v3->vPosition.x, | |
2693 v3->vPosition.y, | |
2694 v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75), | |
2695 *(Vec3_int_ *)v8)) ) | |
2696 { | |
2697 v10 = pDir; | |
2698 v11 = 0; | |
2699 if ( !pDir ) | |
2700 { | |
862 | 2701 v12 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v21), sTargetPid, &a3, 0); |
0 | 2702 v10 = &v18; |
2703 memcpy(&v18, v12, sizeof(v18)); | |
2704 v11 = 0; | |
2705 } | |
2706 v13 = pSpriteFrameTable->pSpriteSFrames; | |
2707 v3->uYawAngle = LOWORD(v10->uYawAngle); | |
319 | 2708 v14 = v13[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2709 v15 = v21; |
2710 v3->uCurrentActionLength = 8 * v14; | |
2711 v3->uCurrentActionTime = v11; | |
2712 v3->uAIState = AttackingRanged1; | |
2713 Actor::PlaySound(v15, 0); | |
2714 v16 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2715 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2716 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v11 | |
2717 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v11 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v11) ) | |
2718 { | |
2719 v16 *= 2; | |
2720 pDira = v16; | |
2721 } | |
2722 if ( pParty->bTurnBasedModeOn == 1 ) | |
2723 v3->pMonsterInfo.uRecoveryTime = v16; | |
2724 else | |
2725 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2726 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2727 * (double)(signed int)pDira | |
2728 * -2.133333333333333); | |
2729 v3->vVelocity.z = v11; | |
2730 v3->vVelocity.y = v11; | |
2731 v3->vVelocity.x = v11; | |
322 | 2732 v3->UpdateAnimation(); |
0 | 2733 } |
2734 else | |
1060 | 2735 Actor::AI_Pursue1(v21, sTargetPid, v21, 64, pDir); |
0 | 2736 } |
2737 | |
2738 //----- (004032B2) -------------------------------------------------------- | |
1456 | 2739 void Actor::AI_RandomMove( unsigned int uActor_id, unsigned int uTarget_id, int radius, int uActionLength ) |
2740 { | |
0 | 2741 unsigned int v4; // edi@1 |
2742 Actor *v5; // esi@1 | |
2743 int v6; // ebx@1 | |
2744 int v7; // ST08_4@1 | |
2745 int v8; // eax@1 | |
2746 unsigned int v9; // ebx@11 | |
2747 int v10; // ebx@13 | |
2748 signed __int16 v11; // cx@17 | |
2749 unsigned int v12; // [sp-8h] [bp-44h]@10 | |
2750 AIDirection *v13; // [sp-4h] [bp-40h]@10 | |
2751 AIDirection v14; // [sp+Ch] [bp-30h]@7 | |
2752 int v15; // [sp+28h] [bp-14h]@11 | |
2753 unsigned int v16; // [sp+2Ch] [bp-10h]@1 | |
2754 int y; // [sp+30h] [bp-Ch]@1 | |
2755 unsigned int uActorID; // [sp+34h] [bp-8h]@1 | |
2756 int v19; // [sp+38h] [bp-4h]@1 | |
2757 | |
414 | 2758 //v14 never filled, maybe it is passed to function but optimized away as local variable |
2759 | |
1456 | 2760 uActorID = uActor_id; |
2761 v4 = uActor_id; | |
2762 v5 = &pActors[uActor_id]; | |
2763 v16 = uTarget_id; | |
0 | 2764 v6 = v5->vInitialPosition.x - v5->vPosition.x; |
2765 v7 = v5->vInitialPosition.x - v5->vPosition.x; | |
2766 y = v5->vInitialPosition.y - v5->vPosition.y; | |
2767 v19 = abs(v7); | |
2768 v8 = abs(y); | |
2769 if ( v19 <= v8 ) | |
2770 v19 = v8 + (v19 >> 1); | |
2771 else | |
2772 v19 += v8 >> 1; | |
2773 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
2774 { | |
2775 if ( !uActionLength ) | |
2776 uActionLength = 256; | |
414 | 2777 Actor::AI_StandOrBored(uActorID, OBJECT_Player, uActionLength, &v14); |
0 | 2778 return; |
2779 } | |
2780 if ( pActors[v4].pMonsterInfo.uMovementType == 3 && v19 < 128 ) | |
2781 { | |
1456 | 2782 Actor::AI_Stand(uActorID, uTarget_id, 256, &v14); |
0 | 2783 return; |
2784 } | |
2785 v15 = (rand() & 0xF) << 12; | |
1456 | 2786 v19 += (unsigned __int64)(v15 * (signed __int64)radius) >> 16; |
0 | 2787 v9 = (stru_5C6E00->uIntegerDoublePi - 1) & stru_5C6E00->Atan2(v6, y); |
2788 if ( rand() % 100 < 25 ) | |
2789 { | |
2790 Actor::StandAwhile(uActorID); | |
2791 return; | |
2792 } | |
2793 v10 = v9 + rand() % 256 - 128; | |
1456 | 2794 if ( abs(v10 - v5->uYawAngle) > 256 && !(v5->uAttributes & 0x200000) ) |
0 | 2795 { |
1456 | 2796 Actor::AI_Stand(uActorID, uTarget_id, 256, &v14); |
245 | 2797 return; |
0 | 2798 } |
2799 v5->uYawAngle = v10; | |
1456 | 2800 if ( v5->uMovementSpeed) |
2801 v5->uCurrentActionLength = 32 * v19 / v5->uMovementSpeed; | |
0 | 2802 else |
2803 v5->uCurrentActionLength = 0; | |
2804 v5->uCurrentActionTime = 0; | |
2805 v5->uAIState = Tethered; | |
2806 if ( rand() % 100 < 2 ) | |
2807 Actor::PlaySound(uActorID, 3u); | |
2808 v5->UpdateAnimation(); | |
2809 } | |
2810 | |
2811 //----- (004031C1) -------------------------------------------------------- | |
2812 char __fastcall Actor::_4031C1_update_job(unsigned int uActorID, signed int a2, int a3) | |
2813 { | |
2814 unsigned int v3; // edi@1 | |
2815 Actor *v4; // esi@1 | |
2816 ActorJob *v5; // eax@1 | |
2817 signed int v6; // edx@2 | |
2818 ActorJob *v7; // eax@2 | |
2819 signed int v8; // edi@2 | |
82 | 2820 ActorJob *v9; // ecx@2 |
0 | 2821 __int16 v10; // cx@15 |
2822 signed int v12; // [sp+8h] [bp-4h]@1 | |
2823 | |
2824 v3 = uActorID; | |
2825 v12 = a2; | |
2826 v4 = &pActors[uActorID]; | |
2827 v5 = (ActorJob *)pActors[uActorID].CanAct(); | |
2828 if ( v5 ) | |
2829 { | |
2830 v6 = 65535; | |
2831 v7 = &v4->pScheduledJobs[v3]; | |
2832 v8 = 7; | |
82 | 2833 v9 = &v7[7];//(char *)&v7[7].uHour; |
2834 while ( !(v9->uAttributes & 1) || v9->uHour > v12 ) | |
0 | 2835 { |
2836 --v8; | |
82 | 2837 --v9; |
0 | 2838 if ( v8 < 0 ) |
82 | 2839 break; |
0 | 2840 } |
82 | 2841 if( v8 >= 0 ) |
2842 v6 = v8; | |
0 | 2843 if ( !v8 && v6 == 65535 ) |
2844 v6 = 7; | |
2845 v5 = &v7[v6]; | |
2846 if ( v4->vInitialPosition.x != v5->vPos.x | |
2847 || v4->vInitialPosition.y != v5->vPos.y | |
2848 || v4->vInitialPosition.z != v5->vPos.z | |
2849 || v4->pMonsterInfo.uMovementType != v5->uAction ) | |
2850 { | |
2851 v4->vInitialPosition.x = v5->vPos.x; | |
2852 v4->vInitialPosition.y = v5->vPos.y; | |
2853 v10 = v5->vPos.z; | |
2854 v4->vInitialPosition.z = v10; | |
2855 LOBYTE(v5) = v5->uAction; | |
1456 | 2856 v4->pMonsterInfo.uMovementType = MONSTER_MOVEMENT_TYPE_STAIONARY; |
0 | 2857 if ( a3 == 1 ) |
2858 { | |
2859 v4->vPosition.x = v4->vInitialPosition.x; | |
2860 v4->vPosition.y = v4->vInitialPosition.y; | |
2861 LOBYTE(v5) = v10; | |
2862 v4->vPosition.z = v10; | |
2863 } | |
2864 } | |
2865 } | |
2866 return (char)v5; | |
2867 } | |
2868 | |
2869 //----- (004030AD) -------------------------------------------------------- | |
1060 | 2870 void Actor::AI_Stun(unsigned int uActorID, signed int edx0, int arg0) |
0 | 2871 { |
2872 unsigned int v3; // edi@1 | |
2873 Actor *v4; // ebx@1 | |
322 | 2874 //__int16 result; // ax@10 |
0 | 2875 SpriteFrame *v6; // ecx@16 |
2876 __int16 v7; // ax@16 | |
2877 unsigned int v8; // ecx@16 | |
2878 AIDirection a3; // [sp+Ch] [bp-40h]@16 | |
2879 AIDirection v10; // [sp+28h] [bp-24h]@16 | |
2880 unsigned int v11; // [sp+44h] [bp-8h]@1 | |
2881 signed int a2; // [sp+48h] [bp-4h]@1 | |
2882 | |
2883 v3 = uActorID; | |
2884 a2 = edx0; | |
2885 v4 = &pActors[uActorID]; | |
2886 v11 = uActorID; | |
2887 if ( v4->uAIState == 7 ) | |
2888 BYTE2(v4->uAttributes) |= 2u; | |
2889 if ( v4->pMonsterInfo.uHostilityType != 4 ) | |
2890 { | |
2891 v4->uAttributes &= 0xFFFFFFFBu; | |
2892 v4->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
2893 } | |
2894 if ( (signed __int64)v4->pActorBuffs[1].uExpireTime > 0 ) | |
2895 v4->pActorBuffs[1].Reset(); | |
2896 if ( (signed __int64)v4->pActorBuffs[4].uExpireTime > 0 ) | |
2897 v4->pActorBuffs[4].Reset(); | |
2898 if ( arg0 | |
322 | 2899 || (v4->uAIState != 8 |
2900 && v4->uAIState != 3 | |
2901 && v4->uAIState != 12 | |
2902 && v4->uAIState != 13 | |
2903 && v4->uAIState != 18 | |
2904 && v4->uAIState != 2)) | |
0 | 2905 { |
862 | 2906 memcpy(&v10, Actor::GetDirectionInfo(PID(OBJECT_Actor,v3), a2, &a3, 0), sizeof(v10)); |
0 | 2907 v6 = pSpriteFrameTable->pSpriteSFrames; |
2908 v4->uYawAngle = LOWORD(v10.uYawAngle); | |
319 | 2909 v7 = v6[v4->pSpriteIDs[ANIM_GotHit]].uAnimLength; |
0 | 2910 v8 = v11; |
2911 v4->uCurrentActionTime = 0; | |
2912 v4->uAIState = Stunned; | |
2913 v4->uCurrentActionLength = 8 * v7; | |
2914 Actor::PlaySound(v8, 2u); | |
322 | 2915 v4->UpdateAnimation(); |
0 | 2916 } |
2917 } | |
2918 | |
2919 //----- (00402F87) -------------------------------------------------------- | |
414 | 2920 void Actor::AI_Bored(unsigned int uActorID, unsigned int uObjID, AIDirection *a4) |
0 | 2921 { |
2922 unsigned int v7; // eax@3 | |
2923 unsigned int v9; // eax@3 | |
1060 | 2924 |
414 | 2925 assert(uActorID < uNumActors); |
1202 | 2926 auto actor = &pActors[uActorID]; |
417 | 2927 |
2928 AIDirection a3; // [sp+Ch] [bp-5Ch]@2 | |
414 | 2929 if (!a4) |
862 | 2930 a4 = Actor::GetDirectionInfo(PID(OBJECT_Actor,uActorID), uObjID, &a3, 0); |
414 | 2931 |
2932 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Bored]].uAnimLength; | |
2933 | |
2934 v7 = stru_5C6E00->Atan2(actor->vPosition.x - pIndoorCamera->pos.x, actor->vPosition.y - pIndoorCamera->pos.y); | |
2935 v9 = stru_5C6E00->uIntegerPi + actor->uYawAngle + ((signed int)stru_5C6E00->uIntegerPi >> 3) - v7; | |
2936 | |
2937 if ( BYTE1(v9) & 7 ) // turned away - just stand | |
2938 Actor::AI_Stand(uActorID, uObjID, actor->uCurrentActionLength, a4); | |
2939 else // facing player - play bored anim | |
0 | 2940 { |
414 | 2941 actor->uAIState = Fidgeting; |
2942 actor->uCurrentActionTime = 0; | |
2943 actor->uYawAngle = a4->uYawAngle; | |
2944 actor->vVelocity.z = 0; | |
2945 actor->vVelocity.y = 0; | |
2946 actor->vVelocity.x = 0; | |
0 | 2947 if ( rand() % 100 < 5 ) |
414 | 2948 Actor::PlaySound(uActorID, 3); |
2949 actor->UpdateAnimation(); | |
0 | 2950 } |
2951 } | |
2952 | |
2953 //----- (00402F27) -------------------------------------------------------- | |
322 | 2954 void Actor::Resurrect(unsigned int uActorID) |
0 | 2955 { |
2956 Actor *pActor; // esi@1 | |
2957 SpriteFrame *v2; // edx@1 | |
2958 int v3; // eax@1 | |
2959 | |
2960 pActor = &pActors[uActorID]; | |
2961 v2 = pSpriteFrameTable->pSpriteSFrames; | |
319 | 2962 v3 = pActor->pSpriteIDs[ANIM_Dying]; |
0 | 2963 pActor->uCurrentActionTime = 0; |
2964 pActor->uAIState = Resurrected; | |
2965 pActor->uCurrentActionAnimation = ANIM_Dying; | |
2966 pActor->uCurrentActionLength = 8 * v2[v3].uAnimLength; | |
2967 pActor->sCurrentHP = LOWORD(pActor->pMonsterInfo.uHP); | |
2968 Actor::PlaySound(uActorID, 1u); | |
322 | 2969 pActor->UpdateAnimation(); |
0 | 2970 } |
2971 | |
2972 //----- (00402D6E) -------------------------------------------------------- | |
319 | 2973 void Actor::Die(unsigned int uActorID) |
0 | 2974 { |
319 | 2975 auto actor = &pActors[uActorID]; |
0 | 2976 |
319 | 2977 actor->uCurrentActionTime = 0; |
2978 actor->uAIState = Dying; | |
2979 actor->uCurrentActionAnimation = ANIM_Dying; | |
2980 actor->sCurrentHP = 0; | |
2981 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Dying]].uAnimLength; | |
2982 actor->pActorBuffs[6].Reset(); | |
2983 actor->pActorBuffs[5].Reset(); | |
2984 Actor::PlaySound(uActorID, 1); | |
2985 actor->UpdateAnimation(); | |
2986 | |
2987 for (uint i = 0; i < 5; ++i) | |
2988 if (pParty->field_750[i] == actor->pMonsterInfo.uID) | |
2989 pParty->field_75A[i] = true; | |
2990 | |
2991 for (uint i = 0; i < 22; ++i) | |
2992 actor->pActorBuffs[i].Reset(); | |
2993 | |
2994 ItemGen drop; | |
1012 | 2995 drop.Reset(); |
319 | 2996 switch (actor->pMonsterInfo.uID) |
0 | 2997 { |
319 | 2998 case MONSTER_HARPY_1: case MONSTER_HARPY_2: case MONSTER_HARPY_3: |
2999 drop.uItemID = ITEM_HARPY_FEATHER; | |
3000 break; | |
3001 | |
3002 case MONSTER_OOZE_1: case MONSTER_OOZE_2: case MONSTER_OOZE_3: | |
3003 drop.uItemID = ITEM_OOZE_ECTOPLASM_BOTTLE; | |
3004 break; | |
3005 | |
3006 case MONSTER_TROLL_1: case MONSTER_TROLL_2: case MONSTER_TROLL_3: | |
3007 drop.uItemID = ITEM_TROLL_BLOOD; | |
3008 break; | |
3009 | |
3010 case MONSTER_DEVIL_1: case MONSTER_DEVIL_2: case MONSTER_DEVIL_3: | |
3011 drop.uItemID = ITEM_DEVIL_ICHOR; | |
3012 break; | |
3013 | |
3014 case MONSTER_DRAGON_1: case MONSTER_DRAGON_2: case MONSTER_DRAGON_3: | |
3015 drop.uItemID = ITEM_DRAGON_EYE; | |
321 | 3016 break; |
0 | 3017 } |
319 | 3018 |
3019 if (rand() % 100 < 20) | |
0 | 3020 { |
319 | 3021 sub_42F7EB_DropItemAt(pItemsTable->pItems[drop.uItemID].uSpriteID, |
3022 actor->vPosition.x, | |
3023 actor->vPosition.y, | |
3024 actor->vPosition.z + 16, | |
3025 rand() % 200 + 200, | |
0 | 3026 1, |
3027 1, | |
3028 0, | |
319 | 3029 &drop); |
0 | 3030 } |
319 | 3031 |
3032 if (actor->pMonsterInfo.uSpecialAbilityType == MONSTER_SPECIAL_ABILITY_EXPLODE) | |
3033 Actor::Explode(uActorID); | |
0 | 3034 } |
3035 | |
3036 //----- (00402CED) -------------------------------------------------------- | |
322 | 3037 void Actor::PlaySound(unsigned int uActorID, unsigned int uSoundID) |
0 | 3038 { |
1408 | 3039 //Actor *v2; // eax@1 |
0 | 3040 unsigned __int16 v3; // dx@1 |
3041 int v4; // eax@3 | |
3042 int v5; // eax@4 | |
3043 unsigned int v6; // eax@6 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3044 //signed int v7; // eax@12 |
0 | 3045 signed int v8; // [sp-18h] [bp-1Ch]@10 |
3046 signed int v9; // [sp-14h] [bp-18h]@10 | |
3047 int v10; // [sp-10h] [bp-14h]@10 | |
3048 unsigned int v11; // [sp-Ch] [bp-10h]@10 | |
3049 int v12; // [sp-8h] [bp-Ch]@10 | |
3050 | |
1408 | 3051 //v2 = &pActors[uActorID]; |
3052 v3 = pActors[uActorID].pSoundSampleIDs[uSoundID]; | |
0 | 3053 if ( v3 ) |
3054 { | |
1408 | 3055 if ( (signed __int64)pActors[uActorID].pActorBuffs[3].uExpireTime <= 0 ) |
0 | 3056 { |
3057 v12 = 0; | |
3058 v8 = -1; | |
3059 } | |
3060 else | |
3061 { | |
1408 | 3062 v4 = pActors[uActorID].pActorBuffs[3].uPower - 2; |
0 | 3063 if ( v4 ) |
3064 { | |
3065 v5 = v4 - 1; | |
3066 if ( v5 ) | |
3067 { | |
3068 if ( v5 == 1 ) | |
3069 v6 = 55125; | |
3070 else | |
3071 v6 = uActorID; | |
3072 } | |
3073 else | |
3074 { | |
3075 v6 = 44100; | |
3076 } | |
3077 } | |
3078 else | |
3079 { | |
3080 v6 = 33075; | |
3081 } | |
3082 v12 = v6; | |
3083 v8 = 0; | |
3084 } | |
1036 | 3085 pAudioPlayer->PlaySound((SoundID)(signed __int16)v3, PID(OBJECT_Actor, uActorID), 0, v8, 0, 0, 0, v12); |
0 | 3086 } |
3087 } | |
3088 | |
3089 //----- (00402AD7) -------------------------------------------------------- | |
1060 | 3090 void Actor::AI_Pursue1(unsigned int uActorID, unsigned int a2, signed int arg0, signed int uActionLength, AIDirection *pDir) |
0 | 3091 { |
3092 unsigned int v5; // edi@1 | |
3093 int v6; // eax@1 | |
3094 Actor *v7; // ebx@1 | |
3095 unsigned int v8; // ecx@1 | |
3096 char v9; // zf@1 | |
3097 AIDirection *v10; // esi@6 | |
1052 | 3098 //int v12; // ecx@19 |
3099 //unsigned int v13; // eax@19 | |
0 | 3100 AIDirection a3; // [sp+Ch] [bp-5Ch]@7 |
1052 | 3101 //AIDirection v15; // [sp+28h] [bp-40h]@7 |
0 | 3102 AIDirection v16; // [sp+44h] [bp-24h]@7 |
1052 | 3103 //unsigned int v17; // [sp+60h] [bp-8h]@1 |
0 | 3104 unsigned int v18; // [sp+64h] [bp-4h]@1 |
1052 | 3105 //int v19; // [sp+70h] [bp+8h]@19 |
0 | 3106 |
3107 v5 = uActorID; | |
3108 v6 = 0; | |
3109 v7 = &pActors[uActorID]; | |
3110 v18 = a2; | |
862 | 3111 v8 = PID(OBJECT_Actor,uActorID); |
0 | 3112 v9 = v7->pMonsterInfo.uFlying == 0; |
3113 if ( !v9 && !pParty->bFlying ) | |
3114 { | |
3115 if ( v7->pMonsterInfo.uMissleAttack1Type ) | |
3116 v6 = v7->uActorRadius + 512; | |
3117 else | |
3118 v6 = pParty->uPartyHeight; | |
3119 } | |
1052 | 3120 |
0 | 3121 v10 = pDir; |
3122 if ( !pDir ) | |
3123 { | |
1052 | 3124 memcpy(&v16, Actor::GetDirectionInfo(v8, a2, &a3, v6), sizeof(v16)); |
0 | 3125 v10 = &v16; |
3126 } | |
3127 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3128 { | |
3129 if ( !uActionLength ) | |
3130 uActionLength = 256; | |
414 | 3131 Actor::AI_StandOrBored(v5, 4, uActionLength, v10); |
322 | 3132 return; |
0 | 3133 } |
3134 if ( (double)(signed int)v10->uDistance < 307.2 ) | |
3135 { | |
3136 if ( !uActionLength ) | |
3137 uActionLength = 256; | |
413 | 3138 Actor::AI_Stand(v5, v18, uActionLength, v10); |
322 | 3139 return; |
0 | 3140 } |
3141 if ( !v7->uMovementSpeed ) | |
322 | 3142 { |
413 | 3143 Actor::AI_Stand(v5, v18, uActionLength, v10); |
322 | 3144 return; |
3145 } | |
0 | 3146 v18 = 16; |
3147 if ( arg0 % 2 ) | |
3148 v18 = -16; | |
1052 | 3149 |
0 | 3150 v7->uYawAngle = stru_5C6E00->Atan2( |
1052 | 3151 pParty->vPosition.x + fixpoint_sub0(stru_5C6E00->Cos(v18 + stru_5C6E00->uIntegerPi + v10->uYawAngle), v10->uDistanceXZ) - v7->vPosition.x, |
3152 pParty->vPosition.y + fixpoint_sub0(stru_5C6E00->Sin(v18 + stru_5C6E00->uIntegerPi + v10->uYawAngle), v10->uDistanceXZ) - v7->vPosition.y); | |
0 | 3153 if ( uActionLength ) |
3154 v7->uCurrentActionLength = uActionLength; | |
3155 else | |
3156 v7->uCurrentActionLength = 128; | |
3157 v7->uPitchAngle = LOWORD(v10->uPitchAngle); | |
3158 v7->uAIState = Pursuing; | |
322 | 3159 v7->UpdateAnimation(); |
0 | 3160 } |
3161 | |
3162 //----- (00402968) -------------------------------------------------------- | |
1060 | 3163 void Actor::AI_Flee(unsigned int uActorID, signed int sTargetPid, int uActionLength, AIDirection *a4) |
0 | 3164 { |
3165 unsigned int v4; // esi@1 | |
3166 Actor *v5; // ebx@1 | |
322 | 3167 //unsigned int result; // eax@1 |
0 | 3168 int v7; // ecx@2 |
3169 signed __int16 v8; // cx@10 | |
3170 unsigned __int16 v9; // ax@15 | |
3171 AIDirection v10; // [sp+8h] [bp-7Ch]@4 | |
3172 AIDirection a3; // [sp+24h] [bp-60h]@3 | |
3173 AIDirection v12; // [sp+40h] [bp-44h]@3 | |
3174 AIDirection v13; // [sp+5Ch] [bp-28h]@4 | |
3175 signed int a1; // [sp+78h] [bp-Ch]@2 | |
3176 unsigned int v15; // [sp+7Ch] [bp-8h]@1 | |
848 | 3177 //signed int a2; // [sp+80h] [bp-4h]@1 |
0 | 3178 |
3179 v4 = uActorID; | |
848 | 3180 //a2 = edx0; |
0 | 3181 v15 = uActorID; |
3182 v5 = &pActors[uActorID]; | |
322 | 3183 //result = pActors[uActorID].CanAct(); |
3184 if ( pActors[uActorID].CanAct() ) | |
0 | 3185 { |
862 | 3186 v7 = PID(OBJECT_Actor,v4); |
3187 a1 = PID(OBJECT_Actor,v4); | |
0 | 3188 if ( !a4 ) |
3189 { | |
3190 a4 = &v12; | |
848 | 3191 memcpy(&v12, Actor::GetDirectionInfo(v7, sTargetPid, &a3, v5->pMonsterInfo.uFlying), sizeof(v12)); |
0 | 3192 v7 = a1; |
3193 } | |
3194 memcpy(&a3, Actor::GetDirectionInfo(v7, 4u, &v10, 0), sizeof(a3)); | |
3195 memcpy(&v13, &a3, sizeof(v13)); | |
3196 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) | |
848 | 3197 || PID_TYPE(sTargetPid) == OBJECT_Actor && (double)(signed int)v13.uDistance < 307.2 ) |
0 | 3198 { |
3199 if ( !uActionLength ) | |
3200 uActionLength = 256; | |
414 | 3201 Actor::AI_StandOrBored(v15, 4, uActionLength, &v13); |
0 | 3202 } |
3203 else | |
3204 { | |
3205 v8 = v5->uMovementSpeed; | |
3206 if ( v8 ) | |
3207 v5->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v8; | |
3208 else | |
3209 v5->uCurrentActionLength = 0; | |
3210 if ( v5->uCurrentActionLength > 256 ) | |
3211 v5->uCurrentActionLength = 256; | |
3212 v5->uYawAngle = LOWORD(stru_5C6E00->uIntegerHalfPi) + LOWORD(a4->uYawAngle); | |
3213 v5->uYawAngle = LOWORD(stru_5C6E00->uDoublePiMask) & (v5->uYawAngle + rand() % (signed int)stru_5C6E00->uIntegerPi); | |
3214 v9 = LOWORD(a4->uPitchAngle); | |
3215 v5->uCurrentActionTime = 0; | |
3216 v5->uPitchAngle = v9; | |
3217 v5->uAIState = Fleeing; | |
322 | 3218 v5->UpdateAnimation(); |
0 | 3219 } |
3220 } | |
3221 } | |
3222 | |
3223 //----- (0040281C) -------------------------------------------------------- | |
1060 | 3224 void Actor::AI_Pursue2(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *pDir, int a5) |
0 | 3225 { |
3226 unsigned int v5; // edi@1 | |
3227 int v6; // eax@1 | |
3228 Actor *v7; // ebx@1 | |
3229 unsigned int v8; // ecx@1 | |
3230 char v9; // zf@1 | |
3231 AIDirection *v10; // esi@7 | |
3232 signed int v11; // edx@12 | |
3233 signed __int16 v13; // cx@19 | |
3234 unsigned __int16 v14; // ax@25 | |
3235 int v15; // [sp-8h] [bp-54h]@12 | |
3236 AIDirection *v16; // [sp-4h] [bp-50h]@12 | |
3237 AIDirection a3; // [sp+Ch] [bp-40h]@8 | |
3238 AIDirection v18; // [sp+28h] [bp-24h]@8 | |
3239 unsigned int v19; // [sp+44h] [bp-8h]@1 | |
3240 unsigned int v20; // [sp+48h] [bp-4h]@1 | |
3241 | |
3242 v5 = uActorID; | |
3243 v6 = 0; | |
3244 v7 = &pActors[uActorID]; | |
3245 v19 = a2; | |
862 | 3246 v8 = PID(OBJECT_Actor,uActorID); |
0 | 3247 v9 = v7->pMonsterInfo.uFlying == 0; |
3248 v20 = v5; | |
3249 if ( !v9 && !pParty->bFlying ) | |
3250 { | |
3251 if ( v7->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
3252 v6 = v7->uActorRadius + 512; | |
3253 else | |
3254 v6 = pParty->uPartyHeight; | |
3255 } | |
3256 v10 = pDir; | |
3257 if ( !pDir ) | |
3258 { | |
3259 memcpy(&v18, Actor::GetDirectionInfo(v8, a2, &a3, v6), sizeof(v18)); | |
3260 memcpy(0, &v18, 0x1Cu); | |
3261 v10 = 0; | |
3262 v5 = v20; | |
3263 } | |
3264 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3265 { | |
3266 if ( !uActionLength ) | |
3267 uActionLength = 256; | |
3268 v16 = v10; | |
3269 v15 = uActionLength; | |
3270 v11 = 4; | |
414 | 3271 Actor::AI_StandOrBored(v5, v11, v15, v16); |
322 | 3272 return; |
0 | 3273 } |
3274 if ( (signed int)v10->uDistance < a5 ) | |
3275 { | |
3276 if ( !uActionLength ) | |
3277 uActionLength = 256; | |
3278 v11 = v19; | |
3279 v16 = v10; | |
3280 v15 = uActionLength; | |
414 | 3281 Actor::AI_StandOrBored(v5, v11, v15, v16); |
322 | 3282 return; |
0 | 3283 } |
3284 if ( uActionLength ) | |
3285 { | |
3286 v7->uCurrentActionLength = uActionLength; | |
3287 } | |
3288 else | |
3289 { | |
3290 v13 = v7->uMovementSpeed; | |
3291 if ( v13 ) | |
3292 v7->uCurrentActionLength = (signed int)(v10->uDistanceXZ << 7) / v13; | |
3293 else | |
3294 v7->uCurrentActionLength = 0; | |
3295 if ( v7->uCurrentActionLength > 32 ) | |
3296 v7->uCurrentActionLength = 32; | |
3297 } | |
3298 v7->uYawAngle = LOWORD(v10->uYawAngle); | |
3299 v14 = LOWORD(v10->uPitchAngle); | |
3300 v7->uCurrentActionTime = 0; | |
3301 v7->uPitchAngle = v14; | |
3302 v7->uAIState = Pursuing; | |
322 | 3303 v7->UpdateAnimation(); |
0 | 3304 } |
3305 | |
3306 //----- (00402686) -------------------------------------------------------- | |
1060 | 3307 void Actor::AI_Pursue3(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *a4) |
0 | 3308 { |
860 | 3309 //unsigned int v4; // edi@1 |
0 | 3310 int v5; // eax@1 |
3311 Actor *v6; // ebx@1 | |
3312 int v7; // ecx@1 | |
3313 char v8; // zf@1 | |
860 | 3314 //AIDirection *v9; // esi@7 |
0 | 3315 signed int v10; // edx@12 |
3316 signed __int16 v12; // cx@19 | |
3317 int v13; // edx@25 | |
3318 __int16 v14; // ax@25 | |
3319 unsigned __int16 v15; // ax@26 | |
3320 unsigned __int16 v16; // ax@28 | |
3321 int v17; // [sp-8h] [bp-54h]@12 | |
860 | 3322 //AIDirection *v18; // [sp-4h] [bp-50h]@12 |
0 | 3323 AIDirection a3; // [sp+Ch] [bp-40h]@8 |
3324 AIDirection v20; // [sp+28h] [bp-24h]@8 | |
3325 int v21; // [sp+44h] [bp-8h]@1 | |
860 | 3326 //unsigned int v22; // [sp+48h] [bp-4h]@1 |
0 | 3327 |
3328 v5 = 0; | |
3329 v6 = &pActors[uActorID]; | |
3330 v21 = a2; | |
862 | 3331 v7 = PID(OBJECT_Actor,uActorID); |
0 | 3332 v8 = v6->pMonsterInfo.uFlying == 0; |
3333 if ( !v8 && !pParty->bFlying ) | |
3334 { | |
3335 if ( v6->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
3336 v5 = v6->uActorRadius + 512; | |
3337 else | |
3338 v5 = pParty->uPartyHeight; | |
3339 } | |
3340 if ( !a4 ) | |
3341 { | |
3342 memcpy(&v20, Actor::GetDirectionInfo(v7, a2, &a3, v5), sizeof(v20)); | |
3343 } | |
3344 if ( MonsterStats::BelongsToSupertype(v6->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3345 { | |
3346 if ( !uActionLength ) | |
3347 uActionLength = 256; | |
860 | 3348 return Actor::AI_StandOrBored(uActorID, 4, uActionLength, a4); |
0 | 3349 } |
860 | 3350 if ( (double)(signed int)a4->uDistance < 307.2 ) |
0 | 3351 { |
3352 if ( !uActionLength ) | |
3353 uActionLength = 256; | |
860 | 3354 return Actor::AI_StandOrBored(uActorID, v21, uActionLength, a4); |
0 | 3355 } |
3356 if ( uActionLength ) | |
3357 { | |
3358 v6->uCurrentActionLength = uActionLength + rand() % uActionLength; | |
3359 } | |
3360 else | |
3361 { | |
3362 v12 = v6->uMovementSpeed; | |
3363 if ( v12 ) | |
860 | 3364 v6->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v12; |
0 | 3365 else |
3366 v6->uCurrentActionLength = 0; | |
3367 if ( v6->uCurrentActionLength > 128 ) | |
3368 v6->uCurrentActionLength = 128; | |
3369 } | |
3370 v13 = rand() % 2; | |
860 | 3371 v14 = LOWORD(a4->uYawAngle); |
0 | 3372 if ( v13 ) |
3373 v15 = v14 + 256; | |
3374 else | |
3375 v15 = v14 - 256; | |
3376 v6->uYawAngle = v15; | |
860 | 3377 v16 = LOWORD(a4->uPitchAngle); |
0 | 3378 v6->uCurrentActionTime = 0; |
3379 v6->uPitchAngle = v16; | |
3380 v6->uAIState = Pursuing; | |
3381 if ( rand() % 100 < 2 ) | |
860 | 3382 Actor::PlaySound(uActorID, 2u); |
322 | 3383 v6->UpdateAnimation(); |
0 | 3384 } |
3385 | |
417 | 3386 //----- (00SelectTarget) -------------------------------------------------------- |
3387 void Actor::_SelectTarget(unsigned int uActorID, int *a2, bool can_target_party) | |
0 | 3388 { |
417 | 3389 //Actor *v3; // esi@1 |
3390 //unsigned int v4; // ebx@1 | |
0 | 3391 int v5; // ecx@1 |
417 | 3392 //unsigned int v6; // eax@1 |
3393 //Actor *v7; // edi@2 | |
3394 //__int16 v8; // ax@3 | |
0 | 3395 int v9; // eax@10 |
3396 signed int v10; // eax@13 | |
3397 int v11; // ebx@16 | |
3398 int v12; // eax@16 | |
417 | 3399 //int v13; // eax@25 |
0 | 3400 signed int v14; // eax@31 |
3401 int v15; // edi@43 | |
3402 int v16; // ebx@45 | |
3403 int v17; // eax@45 | |
417 | 3404 //int v18; // eax@51 |
0 | 3405 int v19; // [sp+Ch] [bp-24h]@16 |
417 | 3406 //int *v20; // [sp+10h] [bp-20h]@1 |
0 | 3407 signed int v21; // [sp+14h] [bp-1Ch]@1 |
417 | 3408 //unsigned int v22; // [sp+18h] [bp-18h]@1 |
0 | 3409 int v23; // [sp+1Ch] [bp-14h]@16 |
417 | 3410 //unsigned int v24; // [sp+20h] [bp-10h]@1 |
0 | 3411 int v25; // [sp+24h] [bp-Ch]@1 |
417 | 3412 //signed int v26; // [sp+28h] [bp-8h]@1 |
0 | 3413 int v27; // [sp+2Ch] [bp-4h]@16 |
3414 int v28; // [sp+2Ch] [bp-4h]@45 | |
3415 | |
3416 v25 = -1; | |
417 | 3417 //v22 = uActorID; |
3418 //v3 = &pActors[uActorID]; | |
3419 //v4 = 0; | |
0 | 3420 v5 = 0; |
417 | 3421 //v6 = v3->uLastCharacterIDToHit; |
0 | 3422 *a2 = 0; |
417 | 3423 //v20 = a2; |
0 | 3424 v21 = 0; |
417 | 3425 //v24 = v3->uLastCharacterIDToHit; |
3426 //v26 = 0; | |
3427 assert(uActorID < uNumActors); | |
1202 | 3428 auto _this = &pActors[uActorID]; |
417 | 3429 |
3430 for (uint i = 0; i < uNumActors; ++i) | |
0 | 3431 { |
1202 | 3432 auto actor = &pActors[i]; |
417 | 3433 //v7 = pActors; |
3434 //do | |
3435 //{ | |
3436 //v8 = v7->uAIState; | |
3437 if (actor->uAIState == Dead || actor->uAIState == Dying || | |
3438 actor->uAIState == Removed || actor->uAIState == Summoned || actor->uAIState == Disabled || uActorID == i ) | |
3439 continue; | |
3440 | |
862 | 3441 if (_this->uLastCharacterIDToHit == 0 || (v9 = 8 * v5, LOBYTE(v9) = PID(OBJECT_Actor,v5), _this->uLastCharacterIDToHit != v9) ) |
245 | 3442 { |
417 | 3443 v10 = _this->GetActorsRelation(actor); |
3444 if ( v10 == 0 ) | |
245 | 3445 continue; |
3446 } | |
417 | 3447 else if (_this->IsNotAlive()) |
245 | 3448 { |
417 | 3449 _this->uLastCharacterIDToHit = 0; |
3450 v10 = _this->GetActorsRelation(actor); | |
3451 if ( v10 == 0 ) | |
245 | 3452 continue; |
3453 } | |
3454 else | |
3455 { | |
417 | 3456 //v18 = actor->uGroup; |
3457 if ( (actor->uGroup != 0 || _this->uGroup != 0) && actor->uGroup == _this->uGroup ) | |
245 | 3458 continue; |
3459 v10 = 4; | |
3460 } | |
417 | 3461 if ( _this->pMonsterInfo.uHostilityType ) |
3462 v10 = pMonsterStats->pInfos[_this->pMonsterInfo.uID].uHostilityType; | |
245 | 3463 v11 = dword_4DF380[v10]; |
417 | 3464 v23 = abs(_this->vPosition.x - actor->vPosition.x); |
3465 v27 = abs(_this->vPosition.y - actor->vPosition.y); | |
3466 v12 = abs(_this->vPosition.z - actor->vPosition.z); | |
245 | 3467 v19 = v12; |
3468 if ( v23 <= v11 | |
3469 && v27 <= v11 | |
3470 && v12 <= v11 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3471 && sub_4070EF_prolly_collide_objects(PID(OBJECT_Actor, i), PID(OBJECT_Actor, uActorID)) |
245 | 3472 && v23 * v23 + v27 * v27 + v19 * v19 < (unsigned int)v25 ) |
3473 { | |
3474 v25 = v23 * v23 + v27 * v27 + v19 * v19; | |
417 | 3475 v21 = i; |
245 | 3476 } |
417 | 3477 //v4 = 0; |
3478 //++v7; | |
3479 //v5 = v26++ + 1; | |
3480 //} | |
3481 //while ( v26 < (signed int)uNumActors ); | |
3482 | |
0 | 3483 } |
417 | 3484 if ( v25 != -1 ) |
3485 { | |
3486 //v13 = 8 * v21; | |
862 | 3487 //LOBYTE(v13) = PID(OBJECT_Actor,v21); |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3488 *a2 = PID(OBJECT_Actor, v21); |
417 | 3489 } |
3490 | |
3491 if (pParty->Invisible()) | |
3492 can_target_party = false; | |
3493 | |
3494 if (can_target_party) | |
0 | 3495 { |
417 | 3496 v14 = _this->GetActorsRelation(0); |
3497 if ( BYTE2(_this->uAttributes) & 8 | |
3498 && SHIDWORD(_this->pActorBuffs[12].uExpireTime) <= (signed int)0 | |
3499 && (SHIDWORD(_this->pActorBuffs[12].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[12].uExpireTime) <= 0) | |
3500 && SHIDWORD(_this->pActorBuffs[1].uExpireTime) <= (signed int)0 | |
3501 && (SHIDWORD(_this->pActorBuffs[1].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[1].uExpireTime) <= 0) | |
3502 && SHIDWORD(_this->pActorBuffs[2].uExpireTime) <= (signed int)0 | |
3503 && (SHIDWORD(_this->pActorBuffs[2].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[2].uExpireTime) <= 0) ) | |
0 | 3504 v14 = 4; |
417 | 3505 if ( v14 != 0 ) |
0 | 3506 { |
848 | 3507 v15 = dword_4DF380[4]; |
417 | 3508 if ( !_this->pMonsterInfo.uHostilityType ) |
0 | 3509 v15 = dword_4DF380[v14]; |
417 | 3510 v16 = abs(_this->vPosition.x - pParty->vPosition.x); |
3511 v28 = abs(_this->vPosition.y - pParty->vPosition.y); | |
3512 v17 = abs(_this->vPosition.z - pParty->vPosition.z); | |
0 | 3513 if ( v16 <= v15 && v28 <= v15 && v17 <= v15 ) |
3514 { | |
3515 if ( v16 * v16 + v28 * v28 + v17 * v17 < (unsigned int)v25 ) | |
417 | 3516 *a2 = OBJECT_Player; |
0 | 3517 } |
3518 } | |
3519 } | |
3520 } | |
3521 // 4DF380: using guessed type int dword_4DF380[]; | |
3522 // 4DF390: using guessed type int dword_4DF390; | |
3523 | |
3524 //----- (0040104C) -------------------------------------------------------- | |
3525 signed int Actor::GetActorsRelation(Actor *a2) | |
3526 { | |
3527 Actor *v2; // esi@1 | |
3528 int v3; // ebp@5 | |
3529 int v4; // edi@11 | |
3530 unsigned int v5; // edx@15 | |
3531 unsigned int v6; // eax@16 | |
3532 unsigned int v7; // ebp@19 | |
3533 int v8; // eax@22 | |
3534 unsigned int v9; // edx@25 | |
3535 unsigned int v10; // edx@33 | |
3536 | |
3537 auto a1 = this; | |
3538 v2 = a2; | |
3539 if ( a1 ) | |
3540 { | |
3541 if ( SHIDWORD(a1->pActorBuffs[9].uExpireTime) >= 0 | |
3542 && (SHIDWORD(a1->pActorBuffs[9].uExpireTime) > 0 || LODWORD(a1->pActorBuffs[9].uExpireTime) > 0) ) | |
3543 return 4; | |
3544 v3 = a1->pMonsterInfo.uID; | |
3545 } | |
3546 else | |
3547 { | |
3548 v3 = 0; | |
3549 } | |
3550 if ( a2 ) | |
3551 { | |
3552 if ( SHIDWORD(a2->pActorBuffs[9].uExpireTime) >= 0 | |
3553 && (SHIDWORD(a2->pActorBuffs[9].uExpireTime) > 0 || LODWORD(a2->pActorBuffs[9].uExpireTime) > 0) ) | |
3554 return 4; | |
3555 v4 = a2->pMonsterInfo.uID; | |
3556 } | |
3557 else | |
3558 { | |
3559 v4 = 0; | |
3560 } | |
3561 if ( a2 ) | |
3562 { | |
3563 if ( a1 ) | |
3564 { | |
3565 v5 = a2->uGroup; | |
3566 if ( v5 ) | |
3567 { | |
3568 v6 = a1->uGroup; | |
3569 if ( v6 ) | |
3570 { | |
3571 if ( v5 == v6 ) | |
3572 return 0; | |
3573 } | |
3574 } | |
3575 } | |
3576 } | |
3577 if ( v3 ) | |
3578 v7 = (v3 - 1) / 3 + 1; | |
3579 else | |
3580 v7 = 0; | |
3581 if ( v4 ) | |
3582 v8 = (v4 - 1) / 3 + 1; | |
3583 else | |
3584 v8 = 0; | |
3585 if ( a1 ) | |
3586 { | |
3587 v9 = a1->uAlly; | |
245 | 3588 if ( (signed int)v9 > 0 ) |
0 | 3589 { |
3590 if ( v9 != 9999 ) | |
3591 { | |
3592 v7 = a1->uAlly; | |
3593 } | |
3594 } | |
245 | 3595 if(v9==9999) |
3596 v7 = 0; | |
0 | 3597 if ( (signed __int64)a1->pActorBuffs[12].uExpireTime > 0 ) |
3598 v7 = 0; | |
3599 } | |
245 | 3600 if ( v2 ) |
0 | 3601 { |
245 | 3602 v10 = v2->uAlly; |
3603 if ( (signed int)v10 > 0 ) | |
3604 { | |
3605 if ( v10 != 9999 ) | |
3606 { | |
3607 v8 = v2->uAlly; | |
3608 } | |
3609 } | |
3610 if(v10==9999) | |
3611 v8 = 0; | |
3612 if ( (signed __int64)v2->pActorBuffs[12].uExpireTime > 0 ) | |
3613 v8 = 0; | |
0 | 3614 } |
3615 if ( a1 && (signed __int64)a1->pActorBuffs[1].uExpireTime > 0 && !v8 | |
3616 || v2 && (signed __int64)v2->pActorBuffs[1].uExpireTime > 0 && !v7 ) | |
3617 return 0; | |
3618 if ( a1 && (signed __int64)a1->pActorBuffs[12].uExpireTime <= 0 && a1->uAttributes & 0x80000 && !v8 ) | |
3619 return 4; | |
3620 if ( v2 && a1 && (signed __int64)a1->pActorBuffs[12].uExpireTime <= 0 && v2->uAttributes & 0x80000 ) | |
3621 { | |
3622 if ( v7 ) | |
245 | 3623 { |
3624 if ( (signed int)v7 < 89 ) | |
3625 { | |
3626 if ( v8 < 89 ) | |
3627 return pFactionTable->relations[v7][v8]; | |
3628 return 0; | |
3629 } | |
3630 return 0; | |
3631 } | |
0 | 3632 return 4; |
3633 } | |
3634 if ( !v7 ) | |
3635 { | |
3636 if ( (!v2 || (signed __int64)v2->pActorBuffs[12].uExpireTime > 0 || !(v2->uAttributes & 0x80000)) | |
100 | 3637 && !pFactionTable->relations[v8][0]) |
0 | 3638 { |
3639 if ( v8 < 89 ) | |
100 | 3640 return pFactionTable->relations[v7][v8]; |
0 | 3641 return 0; |
3642 } | |
3643 return 4; | |
3644 } | |
3645 if ( (signed int)v7 < 89 ) | |
245 | 3646 { |
3647 if ( v8 < 89 ) | |
3648 return pFactionTable->relations[v7][v8]; | |
3649 return 0; | |
3650 } | |
0 | 3651 return 0; |
3652 } | |
3653 | |
3654 //----- (0045976D) -------------------------------------------------------- | |
322 | 3655 void Actor::UpdateAnimation() |
0 | 3656 { |
322 | 3657 //AIState state; // edx@1 |
3658 //unsigned int result; // eax@1 | |
0 | 3659 |
322 | 3660 //state = (AIState)this->; |
3661 uAttributes &= 0xFFDFFFFF; | |
3662 //result = this->uAttributes; | |
3663 switch (uAIState) | |
0 | 3664 { |
3665 case Tethered: | |
322 | 3666 uCurrentActionAnimation = ANIM_Walking; |
3667 break; | |
3668 | |
0 | 3669 case AttackingMelee: |
322 | 3670 uCurrentActionAnimation = ANIM_AtkMelee; |
3671 uAttributes |= 0x200000u; | |
3672 break; | |
3673 | |
0 | 3674 case AttackingRanged1: |
3675 case AttackingRanged2: | |
3676 case AttackingRanged3: | |
3677 case AttackingRanged4: | |
322 | 3678 uCurrentActionAnimation = ANIM_AtkRanged; |
3679 uAttributes |= 0x200000u; | |
3680 break; | |
3681 | |
0 | 3682 case Dying: |
3683 case Resurrected: | |
322 | 3684 uCurrentActionAnimation = ANIM_Dying; |
3685 uAttributes |= 0x200000u; | |
3686 break; | |
3687 | |
0 | 3688 case Pursuing: |
3689 case Fleeing: | |
322 | 3690 uCurrentActionAnimation = ANIM_Walking; |
3691 uAttributes |= 0x200000u; | |
3692 break; | |
3693 | |
0 | 3694 case Stunned: |
322 | 3695 uCurrentActionAnimation = ANIM_GotHit; |
3696 uAttributes |= 0x200000u; | |
3697 break; | |
3698 | |
0 | 3699 case Fidgeting: |
322 | 3700 uCurrentActionAnimation = ANIM_Bored; |
3701 uAttributes |= 0x200000u; | |
3702 break; | |
3703 | |
0 | 3704 case Standing: |
3705 case Interacting: | |
3706 case Summoned: | |
322 | 3707 uCurrentActionAnimation = ANIM_Standing; |
3708 uAttributes |= 0x200000u; | |
3709 break; | |
3710 | |
0 | 3711 case Dead: |
322 | 3712 if (pSpriteFrameTable->pSpriteSFrames[pSpriteIDs[ANIM_Dead]].pHwSpriteIDs[0] <= 0) |
3713 uAIState = Removed; | |
0 | 3714 else |
322 | 3715 uCurrentActionAnimation = ANIM_Dead; |
3716 break; | |
3717 | |
551 | 3718 case Removed: |
652 | 3719 case Disabled: |
551 | 3720 return; |
3721 | |
0 | 3722 default: |
322 | 3723 assert(false); |
0 | 3724 } |
3725 } | |
3726 | |
3727 //----- (00459671) -------------------------------------------------------- | |
3728 void Actor::Reset() | |
3729 { | |
3730 this->pActorName[0] = 0; | |
3731 this->word_000086_some_monster_id = 0; | |
602 | 3732 this->sNPC_ID = 0; |
0 | 3733 this->vPosition.z = 0; |
3734 this->vPosition.y = 0; | |
3735 this->vPosition.x = 0; | |
3736 this->vVelocity.z = 0; | |
3737 this->vVelocity.y = 0; | |
3738 this->vVelocity.x = 0; | |
3739 this->uYawAngle = 0; | |
3740 this->uPitchAngle = 0; | |
3741 this->uAttributes = 0; | |
3742 this->uSectorID = 0; | |
3743 this->uCurrentActionTime = 0; | |
3744 this->vInitialPosition.z = 0; | |
3745 this->vInitialPosition.y = 0; | |
3746 this->vInitialPosition.x = 0; | |
3747 this->vGuardingPosition.z = 0; | |
3748 this->vGuardingPosition.y = 0; | |
3749 this->vGuardingPosition.x = 0; | |
3750 this->uTetherDistance = 256; | |
3751 this->uActorRadius = 32; | |
3752 this->uActorHeight = 128; | |
3753 this->uAIState = Standing; | |
305 | 3754 this->uCurrentActionAnimation = ANIM_Standing; |
0 | 3755 this->uMovementSpeed = 200; |
3756 this->uCarriedItemID = 0; | |
3757 this->uGroup = 0; | |
3758 this->uAlly = 0; | |
3759 this->uSummonerID = 0; | |
3760 this->uLastCharacterIDToHit = 0; | |
3761 this->dword_000334_unique_name = 0; | |
3762 memset(this->pSpriteIDs, 0, sizeof(pSpriteIDs)); | |
3763 memset(this->pActorBuffs, 0, 0x160u); | |
3764 } | |
3765 | |
3766 //----- (0045959A) -------------------------------------------------------- | |
3767 void Actor::PrepareSprites(char load_sounds_if_bit1_set) | |
3768 { | |
694 | 3769 |
3770 MonsterDesc *v3; // esi@1 | |
0 | 3771 MonsterInfo *v9; // [sp+84h] [bp-10h]@1 |
694 | 3772 |
0 | 3773 v3 = &pMonsterList->pMonsters[pMonsterInfo.uID - 1]; |
3774 v9 = &pMonsterStats->pInfos[pMonsterInfo.uID - 1 + 1]; | |
3775 //v12 = pSpriteIDs; | |
3776 //Source = (char *)v3->pSpriteNames; | |
3777 //do | |
3778 for (uint i = 0; i < 8; ++i) | |
3779 { | |
3780 //strcpy(pSpriteName, v3->pSpriteNames[i]); | |
3781 pSpriteIDs[i] = pSpriteFrameTable->FastFindSprite(v3->pSpriteNames[i]); | |
3782 pSpriteFrameTable->InitializeSprite(pSpriteIDs[i]); | |
3783 } | |
3784 uActorHeight = v3->uMonsterHeight; | |
3785 uActorRadius = v3->uMonsterRadius; | |
33 | 3786 uMovementSpeed = v9->uBaseSpeed; |
0 | 3787 if ( !(load_sounds_if_bit1_set & 1) ) |
3788 { | |
694 | 3789 for (int i=0;i<4;++i ) |
3790 pSoundSampleIDs[i]=v3->pSoundSampleIDs[i]; | |
0 | 3791 } |
3792 } | |
3793 | |
3794 //----- (00459667) -------------------------------------------------------- | |
3795 void Actor::Remove() | |
3796 { | |
3797 this->uAIState = Removed; | |
3798 } | |
3799 | |
3800 //----- (0044FD29) -------------------------------------------------------- | |
3801 int Actor::_44FD29(int a2) | |
3802 { | |
3803 Actor *v2; // edi@1 | |
3804 unsigned __int8 v3; // al@1 | |
3805 int v4; // esi@1 | |
3806 int v5; // edx@2 | |
3807 int v6; // eax@8 | |
3808 int v7; // edi@10 | |
3809 Actor *v8; // esi@10 | |
3810 MonsterInfo *v9; // ebx@10 | |
3811 MonsterDesc *v10; // edi@10 | |
3812 unsigned __int16 v11; // ax@10 | |
3813 int v12; // eax@10 | |
3814 int v13; // ebx@10 | |
3815 int v14; // eax@10 | |
3816 int v15; // edi@10 | |
3817 int v16; // eax@10 | |
3818 int v17; // ebx@10 | |
3819 Actor *v18; // ecx@10 | |
3820 signed __int64 v19; // qax@10 | |
3821 unsigned int v20; // eax@12 | |
3822 int v21; // eax@13 | |
3823 int result; // eax@13 | |
3824 Actor *v23; // eax@16 | |
3825 int v24; // [sp+Ch] [bp-1Ch]@1 | |
3826 unsigned int uFaceID; // [sp+10h] [bp-18h]@8 | |
3827 int v26; // [sp+14h] [bp-14h]@10 | |
3828 int v27; // [sp+18h] [bp-10h]@10 | |
3829 int v28; // [sp+1Ch] [bp-Ch]@8 | |
3830 int v29; // [sp+20h] [bp-8h]@10 | |
3831 Actor *v30; // [sp+24h] [bp-4h]@1 | |
3832 | |
3833 v2 = this; | |
3834 v24 = a2; | |
3835 v30 = this; | |
3836 v3 = this->pMonsterInfo.uSpecialAbilityDamageDiceRolls; | |
3837 v4 = this->pMonsterInfo.field_3C_some_special_attack; | |
3838 if ( v3 ) | |
3839 { | |
3840 if ( v3 >= 1u && v3 <= 3u ) | |
3841 v4 = v4 + v3 - 1; | |
3842 } | |
3843 else | |
3844 { | |
3845 v5 = rand() % 100; | |
3846 if ( v5 >= 60 ) | |
3847 { | |
3848 ++v4; | |
3849 if ( v5 >= 90 ) | |
3850 ++v4; | |
3851 } | |
3852 } | |
3853 v6 = v2->vPosition.z; | |
3854 v28 = 0; | |
3855 uFaceID = v6; | |
3856 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
3857 v28 = pIndoor->GetSector(v2->vPosition.x, v2->vPosition.y, v6); | |
3858 v7 = v4 - 1; | |
3859 v8 = &pActors[uNumActors]; | |
3860 v27 = (((uCurrentlyLoadedLevelType != LEVEL_Outdoor) - 1) & 0x40) + 64; | |
3861 v29 = v7; | |
3862 v9 = &pMonsterStats->pInfos[v7 + 1]; | |
3863 pActors[uNumActors].Reset(); | |
3864 v10 = &pMonsterList->pMonsters[v7]; | |
3865 strcpy(v8->pActorName, v9->pName); | |
3866 v8->sCurrentHP = LOWORD(v9->uHP); | |
3867 memcpy(&v8->pMonsterInfo, v9, 0x58u); | |
3868 v8->word_000086_some_monster_id = v29 + 1; | |
3869 v8->uActorRadius = v10->uMonsterRadius; | |
3870 v8->uActorHeight = v10->uMonsterHeight; | |
3871 v11 = v10->uMovementSpeed; | |
3872 v8->pMonsterInfo.uTreasureDiceRolls = 0; | |
3873 v8->pMonsterInfo.uTreasureType = 0; | |
3874 v8->pMonsterInfo.uExp = 0; | |
3875 v8->uMovementSpeed = v11; | |
3876 v12 = rand(); | |
3877 v13 = v12 % 2048; | |
323 | 3878 v14 = stru_5C6E00->Cos(v12 % 2048); |
0 | 3879 v26 = v14; |
3880 v15 = ((unsigned __int64)(v14 * (signed __int64)v27) >> 16) + v30->vPosition.x; | |
323 | 3881 v16 = stru_5C6E00->Sin(v13); |
0 | 3882 v26 = v16; |
3883 v29 = (unsigned __int64)(v16 * (signed __int64)v27) >> 16; | |
3884 LOWORD(v16) = uFaceID; | |
3885 v17 = v29 + v30->vPosition.y; | |
3886 v8->vInitialPosition.z = uFaceID; | |
3887 v8->vPosition.z = v16; | |
3888 LOWORD(v16) = v28; | |
3889 v8->vInitialPosition.x = v15; | |
3890 v8->vPosition.x = v15; | |
3891 v8->vInitialPosition.y = v17; | |
3892 v8->vPosition.y = v17; | |
3893 v8->uTetherDistance = 256; | |
3894 v8->uSectorID = v16; | |
3895 v8->PrepareSprites(0); | |
3896 v18 = v30; | |
3897 v8->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
3898 LODWORD(v19) = v18->uAlly; | |
3899 if ( !(uint)v19 ) | |
3900 { | |
3901 uFaceID = v18->pMonsterInfo.uID - 1; | |
3902 v19 = (signed __int64)((double)uFaceID * 0.33333334); | |
3903 v18 = v30; | |
3904 } | |
3905 v8->uAlly = v19; | |
3906 v20 = v18->uGroup; | |
3907 v8->uCurrentActionTime = 0; | |
3908 v8->uGroup = v20; | |
3909 v8->uAIState = Summoned; | |
3910 v8->uCurrentActionLength = 256; | |
3911 v8->UpdateAnimation(); | |
3912 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor | |
3913 || (v21 = v30->vPosition.z, | |
3914 v27 = v30->vPosition.z, | |
3915 result = pIndoor->GetSector(v15, v17, v21), | |
3916 result == v28) | |
723 | 3917 && (result = BLV_GetFloorLevel(v15, v17, v27, result, &uFaceID), result != -30000) |
0 | 3918 && (result = abs(result - v27), result <= 1024) ) |
3919 { | |
3920 v23 = v30; | |
3921 ++uNumActors; | |
3922 ++v23->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
3923 if ( v23->uAttributes & 0x80000 ) | |
3924 v8->uAttributes |= 0x80000u; | |
3925 result = 8 * v24; | |
862 | 3926 LOBYTE(result) = PID(OBJECT_Actor,v24); |
0 | 3927 v8->uSummonerID = result; |
3928 } | |
3929 return result; | |
781 | 3930 } |
1295 | 3931 // 46DF1A: using guessed type int __fastcall 46DF1A_collide_against_actor(int, int); |
3932 //----- (0046DF1A) -------------------------------------------------------- | |
3933 signed int __fastcall _46DF1A_collide_against_actor(int a1, int a2) | |
3934 { | |
3935 Actor *v2; // edi@1 | |
3936 unsigned __int16 v3; // ax@1 | |
3937 int v4; // esi@6 | |
3938 int v5; // ecx@8 | |
3939 int v6; // eax@10 | |
3940 int v7; // edx@12 | |
3941 int v8; // ecx@14 | |
3942 int v9; // eax@14 | |
3943 int v10; // ebx@14 | |
3944 int v11; // esi@14 | |
3945 int v12; // ebx@15 | |
3946 int v13; // ebx@17 | |
3947 unsigned int v14; // eax@20 | |
3948 signed int result; // eax@21 | |
3949 int v16; // [sp+Ch] [bp-10h]@1 | |
3950 int v17; // [sp+10h] [bp-Ch]@14 | |
3951 int v18; // [sp+14h] [bp-8h]@14 | |
3952 int v19; // [sp+18h] [bp-4h]@14 | |
3953 | |
3954 v16 = a1; | |
3955 v2 = &pActors[a1]; | |
3956 v3 = v2->uAIState; | |
3957 if ( v3 == 11 || v3 == 4 || v3 == 19 || v3 == 5 || v3 == 17 ) | |
3958 goto LABEL_25; | |
3959 v4 = v2->uActorRadius; | |
3960 if ( a2 ) | |
3961 v4 = a2; | |
3962 v5 = v2->vPosition.x; | |
3963 if ( stru_721530.sMaxX > v5 + v4 | |
3964 || stru_721530.sMinX < v5 - v4 | |
3965 || (v6 = v2->vPosition.y, stru_721530.sMaxY > v6 + v4) | |
3966 || stru_721530.sMinY < v6 - v4 | |
3967 || (v7 = v2->vPosition.z, stru_721530.sMaxZ > v7 + v2->uActorHeight) | |
3968 || stru_721530.sMinZ < v7 | |
3969 || (v8 = v5 - stru_721530.normal.x, | |
3970 v9 = v6 - stru_721530.normal.y, | |
3971 v10 = stru_721530.prolly_normal_d + v4, | |
3972 v17 = stru_721530.prolly_normal_d + v4, | |
3973 v11 = (v8 * stru_721530.field_58.y - v9 * stru_721530.field_58.x) >> 16, | |
3974 v18 = v8, | |
3975 v19 = v9, | |
3976 abs((v8 * stru_721530.field_58.y - v9 * stru_721530.field_58.x) >> 16) > v10) | |
3977 || (v12 = (v18 * stru_721530.field_58.x + v19 * stru_721530.field_58.y) >> 16, v12 <= 0) | |
3978 || (signed int)(((unsigned __int64)(stru_721530.field_58.z * (signed __int64)v12) >> 16) + stru_721530.normal.z) < v2->vPosition.z ) | |
3979 { | |
3980 LABEL_25: | |
3981 result = 0; | |
3982 } | |
3983 else | |
3984 { | |
3985 v13 = v12 - integer_sqrt(v17 * v17 - v11 * v11); | |
3986 if ( v13 < 0 ) | |
3987 v13 = 0; | |
3988 if ( v13 < stru_721530.field_7C ) | |
3989 { | |
3990 stru_721530.field_7C = v13; | |
3991 v14 = 8 * v16; | |
3992 LOBYTE(v14) = PID(OBJECT_Actor,v16); | |
3993 stru_721530.uFaceID = v14; | |
3994 } | |
3995 result = 1; | |
3996 } | |
3997 return result; | |
3998 } | |
3999 //----- (00401A91) -------------------------------------------------------- | |
4000 void __cdecl UpdateActorAI() | |
4001 { | |
4002 //unsigned int v0; // esi@4 | |
4003 int v1; // eax@7 | |
4004 //int v2; // ecx@7 | |
4005 //int v3; // eax@7 | |
4006 signed int v4; // edi@10 | |
4007 Actor *v5; // esi@12 | |
4008 signed int sDmg; // eax@14 | |
4009 __int16 v7; // cx@14 | |
4010 //Player **v8; // esi@20 | |
4011 Player *pPlayer; // ecx@21 | |
4012 Actor *pActor; // esi@34 | |
4013 //__int16 v11; // ax@34 | |
4014 //unsigned int v12; // eax@47 | |
4015 //signed int v13; // edi@47 | |
4016 //SpellBuff *v14; // ebx@47 | |
4017 //unsigned int v15; // edi@67 | |
4018 //char *v16; // eax@67 | |
4019 //unsigned int v17; // edx@67 | |
4020 //unsigned int v18; // ecx@67 | |
4021 //unsigned __int16 v19; // ax@72 | |
4022 //int *v20; // esi@80 | |
4023 //Actor *v21; // ebx@80 | |
4024 unsigned __int16 v22; // ax@86 | |
4025 //signed int v23; // eax@94 | |
4026 //unsigned int v24; // eax@102 | |
4027 //signed int v25; // edi@102 | |
4028 //SpellBuff *v26; // esi@102 | |
4029 unsigned int v27; // ecx@123 | |
4030 unsigned int v28; // eax@123 | |
4031 //unsigned int v29; // eax@127 | |
4032 AIDirection *v30; // eax@129 | |
4033 unsigned __int16 v31; // ax@132 | |
4034 //unsigned int v32; // esi@142 | |
4035 int v33; // eax@144 | |
4036 int v34; // eax@147 | |
4037 char v35; // al@150 | |
4038 unsigned int v36; // edi@152 | |
4039 signed int v37; // eax@154 | |
4040 //unsigned __int8 v38; // sf@158 | |
4041 //unsigned __int8 v39; // of@158 | |
4042 //signed int v40; // edx@166 | |
4043 //unsigned int v41; // ecx@166 | |
4044 double v42; // st7@176 | |
4045 double v43; // st6@176 | |
4046 //bool v44; // eax@189 | |
1450 | 4047 int v45; // eax@192 |
1295 | 4048 unsigned __int8 v46; // cl@197 |
4049 double v47; // st7@206 | |
4050 //double v48; // st7@207 | |
4051 //char v49; // zf@208 | |
4052 //char v50; // zf@214 | |
4053 //signed int v51; // edx@219 | |
4054 //unsigned int v52; // ecx@219 | |
4055 __int16 v53; // fps@224 | |
4056 //unsigned __int8 v54; // c0@224 | |
4057 //unsigned __int8 v55; // c3@224 | |
4058 //double v56; // st7@226 | |
4059 AIDirection *v57; // eax@246 | |
4060 double v58; // st7@246 | |
4061 //signed int v59; // [sp-18h] [bp-C8h]@213 | |
4062 //int v60; // [sp-14h] [bp-C4h]@144 | |
4063 //int v61; // [sp-14h] [bp-C4h]@168 | |
4064 //AIDirection *v62; // [sp-14h] [bp-C4h]@213 | |
4065 //signed int v63; // [sp-14h] [bp-C4h]@216 | |
4066 unsigned int v64; // [sp-14h] [bp-C4h]@219 | |
4067 unsigned int v65; // [sp-10h] [bp-C0h]@144 | |
4068 char v66; // [sp-10h] [bp-C0h]@147 | |
4069 //AIDirection *v67; // [sp-10h] [bp-C0h]@167 | |
4070 //int v68; // [sp-10h] [bp-C0h]@168 | |
4071 //AIDirection *v69; // [sp-10h] [bp-C0h]@206 | |
4072 int v70; // [sp-10h] [bp-C0h]@213 | |
4073 //AIDirection *v71; // [sp-10h] [bp-C0h]@216 | |
4074 AIDirection v72; // [sp+0h] [bp-B0h]@246 | |
4075 AIDirection a3; // [sp+1Ch] [bp-94h]@129 | |
4076 AIDirection v74; // [sp+38h] [bp-78h]@246 | |
4077 AIDirection v75; // [sp+54h] [bp-5Ch]@129 | |
4078 int target_pid_type; // [sp+70h] [bp-40h]@83 | |
4079 signed int a1; // [sp+74h] [bp-3Ch]@129 | |
4080 int v78; // [sp+78h] [bp-38h]@79 | |
4081 AIDirection pDir; // [sp+7Ch] [bp-34h]@129 | |
4082 float v80; // [sp+98h] [bp-18h]@33 | |
4083 int v81; // [sp+9Ch] [bp-14h]@100 | |
4084 //int v82; // [sp+A0h] [bp-10h]@45 | |
4085 //unsigned int uActorID; // [sp+A4h] [bp-Ch]@32 | |
4086 unsigned int v84; // [sp+A8h] [bp-8h]@11 | |
4087 signed int target_pid; // [sp+ACh] [bp-4h]@83 | |
4088 AIState uAIState; | |
4089 int v38; | |
4090 | |
4091 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
4092 MakeActorAIList_ODM(); | |
4093 else | |
4094 MakeActorAIList_BLV(); | |
4095 | |
4096 //v0 = 0; | |
4097 if ( uCurrentlyLoadedLevelType != LEVEL_Indoor && pParty->armageddon_timer > 0 ) | |
4098 { | |
4099 if ( pParty->armageddon_timer > 417 ) | |
4100 { | |
4101 pParty->armageddon_timer = 0; | |
4102 } | |
4103 else | |
4104 { | |
4105 pParty->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (pParty->sRotationY + rand() % 16 - 8); | |
4106 pParty->sRotationX = pParty->sRotationX + rand() % 16 - 8; | |
4107 if ( pParty->sRotationX > 128) | |
4108 pParty->sRotationX = 128; | |
4109 else if ( pParty->sRotationX < -128 ) | |
4110 pParty->sRotationX = -128; | |
4111 | |
4112 pParty->uFlags |= 2u; | |
4113 pParty->armageddon_timer -= pMiscTimer->uTimeElapsed; | |
4114 v4 = pParty->field_16140 + 50; | |
4115 if ( pParty->armageddon_timer <= 0 ) | |
4116 { | |
4117 pParty->armageddon_timer = 0; | |
4118 for(int i = 0; i < uNumActors; i++) | |
4119 { | |
4120 pActor=&pActors[i]; | |
4121 if ( pActor->CanAct() ) | |
4122 { | |
4123 sDmg = stru_50C198.CalcMagicalDamageToActor(pActor, 5, v4); | |
4124 pActor->sCurrentHP -= stru_50C198.CalcMagicalDamageToActor(pActor, 5, v4); | |
4125 if ( sDmg ) | |
4126 { | |
4127 if ( pActor->sCurrentHP >= 0 ) | |
4128 { | |
4129 Actor::AI_Stun(i, 4, 0); | |
4130 } | |
4131 else | |
4132 { | |
4133 Actor::Die(i); | |
4134 if ( pActor->pMonsterInfo.uExp ) | |
4135 GivePartyExp(pMonsterStats->pInfos[pActor->pMonsterInfo.uID].uExp); | |
4136 } | |
4137 } | |
4138 } | |
4139 } | |
4140 for(int i = 1; i <= 4; i++) | |
4141 { | |
4142 pPlayer = pPlayers[i]; | |
4143 if ( !pPlayer->pConditions[14] && !pPlayer->pConditions[15] && !pPlayer->pConditions[16] ) | |
4144 pPlayer->ReceiveDamage(v4, DMGT_5); | |
4145 } | |
4146 } | |
1450 | 4147 if (pTurnEngine->pending_actions) |
4148 --pTurnEngine->pending_actions; | |
1295 | 4149 } |
4150 } | |
4151 | |
4152 if (pParty->bTurnBasedModeOn) | |
4153 { | |
1448 | 4154 pTurnEngine->AITurnBasedAction(); |
1295 | 4155 return; |
4156 } | |
4157 | |
4158 | |
4159 //uActorID = v0; | |
4160 for (uint i = 0; i < uNumActors; ++i) | |
4161 { | |
4162 pActor = &pActors[i]; | |
4163 //LODWORD(v80) = (int)(char *)pActors + 176; // uAIState | |
4164 //do | |
4165 //{ | |
4166 //pActor = (Actor *)(LODWORD(v80) - 176); | |
4167 //v11 = *(unsigned int *)LODWORD(v80); | |
4168 //v49 = *(unsigned int *)LODWORD(v80) == 5; | |
4169 ai_near_actors_targets_pid[i] = OBJECT_Player; | |
4170 if (pActor->uAIState == Dead || pActor->uAIState == Removed || pActor->uAIState == Disabled || pActor->uAttributes & 0x0400) | |
4171 continue; | |
4172 | |
4173 if (!pActor->sCurrentHP && pActor->uAIState != Dying) | |
4174 Actor::Die(i); | |
4175 | |
4176 //v84 = *(_QWORD *)(LODWORD(v80) + 84) <= 0i64 ? 0 : 1; | |
4177 //v82 = *(_QWORD *)(LODWORD(v80) + 52) <= 0i64 ? 0 : 1; | |
4178 //v12 = 0; | |
4179 //v13 = 0; | |
4180 //v14 = (SpellBuff *)(LODWORD(v80) + 36); | |
4181 for (uint j = 0; j < 22; ++j) | |
4182 { | |
4183 if (j != 10) | |
1340 | 4184 pActor->pActorBuffs[j].IsBuffExpiredToTime(pParty->uTimePlayed); |
1295 | 4185 } |
4186 /*do | |
4187 { | |
4188 if ( v13 != 10 ) | |
4189 { | |
4190 v14->_4585CA(pParty->uTimePlayed); | |
4191 v12 = 0; | |
4192 } | |
4193 ++v13; | |
4194 ++v14; | |
4195 } | |
4196 while ( v13 < 22 );*/ | |
4197 if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime < 0 ) | |
4198 //&& SHIDWORD(pActor->pActorBuffs[3].uExpireTime) <= (signed int)v12 && (SHIDWORD(pActor->pActorBuffs[3].uExpireTime) < (signed int)v12 | |
4199 // || LODWORD(pActor->pActorBuffs[3].uExpireTime) <= v12) ) | |
4200 pActor->uActorHeight = pMonsterList->pMonsters[pActor->pMonsterInfo.uID - 1].uMonsterHeight; | |
4201 if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0 ) | |
4202 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4203 // not sure | |
4204 else if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime < 0 ) | |
4205 pActor->pMonsterInfo.uHostilityType = pMonsterStats->pInfos[pActor->pMonsterInfo.uID].uHostilityType; | |
4206 | |
4207 if ((signed __int64)pActor->pActorBuffs[ACTOR_BUFF_PARALYZED].uExpireTime > 0 | |
4208 || (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0) | |
4209 continue; | |
4210 | |
4211 //v15 = pMiscTimer->uTimeElapsed; | |
4212 //v16 = (char *)&pActor->pMonsterInfo.uRecoveryTime; | |
4213 //v17 = pActor->uCurrentActionTime; | |
4214 //v18 = pActor->pMonsterInfo.uRecoveryTime; | |
4215 if (pActor->pMonsterInfo.uRecoveryTime) | |
4216 { | |
4217 if (pActor->pMonsterInfo.uRecoveryTime < pMiscTimer->uTimeElapsed) | |
4218 pActor->pMonsterInfo.uRecoveryTime = 0; | |
4219 else | |
4220 pActor->pMonsterInfo.uRecoveryTime -= pMiscTimer->uTimeElapsed; | |
4221 } | |
4222 | |
4223 pActor->uCurrentActionTime += pMiscTimer->uTimeElapsed; | |
4224 if (pActor->uCurrentActionTime < pActor->uCurrentActionLength) | |
4225 continue; | |
4226 | |
4227 //v19 = actor->uAIState; | |
4228 if (pActor->uAIState == Dying) | |
4229 pActor->uAIState = Dead; | |
4230 else | |
4231 { | |
4232 if (pActor->uAIState != Summoned) | |
4233 { | |
4234 Actor::AI_StandOrBored(i, OBJECT_Player, 256, nullptr); | |
4235 continue; | |
4236 } | |
4237 pActor->uAIState = Standing; | |
4238 } | |
4239 | |
4240 pActor->uCurrentActionTime = 0; | |
4241 pActor->uCurrentActionLength = 0; | |
4242 pActor->UpdateAnimation(); | |
4243 //LABEL_78: | |
4244 //++uActorID; | |
4245 //LODWORD(v80) += 836; | |
4246 //} | |
4247 //while ( (signed int)uActorID < (signed int)uNumActors ); | |
4248 } | |
4249 | |
4250 | |
4251 v78 = 0; | |
4252 int actor_id = -1; | |
4253 if ( ai_arrays_size > 0 ) | |
4254 { | |
4255 //while ( 1 ) | |
4256 for(v78 = 0; v78 < ai_arrays_size; ++v78) | |
4257 { | |
4258 actor_id = ai_near_actors_ids[v78]; | |
4259 assert(actor_id < uNumActors); | |
4260 | |
4261 //v20 = &ai_near_actors_targets_pid[actor_id]; | |
4262 pActor = &pActors[actor_id]; | |
4263 Actor::_SelectTarget(actor_id, &ai_near_actors_targets_pid[actor_id], true); | |
4264 if (pActor->pMonsterInfo.uHostilityType && !ai_near_actors_targets_pid[actor_id]) | |
4265 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4266 target_pid = ai_near_actors_targets_pid[actor_id]; | |
4267 target_pid_type = PID_TYPE(target_pid); | |
4268 if ( target_pid_type == OBJECT_Actor) | |
4269 v80 = 0.5; | |
4270 else | |
4271 v80 = 1.0; | |
4272 v22 = pActor->uAIState; | |
4273 if ( v22 == Dying || v22 == Dead || v22 == Removed || v22 == Disabled || v22 == Summoned) | |
4274 { | |
4275 continue; | |
4276 } | |
4277 if ( !pActor->sCurrentHP ) | |
4278 Actor::Die(actor_id); | |
4279 for(int i=0;i<22;i++) | |
4280 { | |
4281 if ( i != 10 ) | |
4282 { | |
1340 | 4283 pActor->pActorBuffs[i].IsBuffExpiredToTime(pParty->uTimePlayed); |
1295 | 4284 } |
4285 } | |
4286 if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime < 0 ) | |
4287 pActor->uActorHeight = pMonsterList->pMonsters[pActor->pMonsterInfo.uID - 1].uMonsterHeight; | |
4288 if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0 ) | |
4289 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4290 // not sure | |
4291 else if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime < 0 ) | |
4292 pActor->pMonsterInfo.uHostilityType = pMonsterStats->pInfos[pActor->pMonsterInfo.uID].uHostilityType; | |
4293 if ( (signed __int64)pActor->pActorBuffs[2].uExpireTime < 0 ) | |
4294 { | |
4295 pActor->uAIState = Removed; | |
4296 continue; | |
4297 } | |
4298 if ( (signed __int64)pActor->pActorBuffs[5].uExpireTime > 0 | |
4299 || (signed __int64)pActor->pActorBuffs[6].uExpireTime > 0) | |
4300 { | |
4301 continue; | |
4302 } | |
4303 v27 = pMiscTimer->uTimeElapsed; | |
4304 v28 = pActor->pMonsterInfo.uRecoveryTime; | |
4305 pActor->uCurrentActionTime += pMiscTimer->uTimeElapsed; | |
4306 if ( (signed int)v28 > 0 ) | |
4307 pActor->pMonsterInfo.uRecoveryTime = v28 - v27; | |
4308 if ( pActor->pMonsterInfo.uRecoveryTime < 0 ) | |
4309 pActor->pMonsterInfo.uRecoveryTime = 0; | |
4310 if ( !(pActor->uAttributes & 0x8000) ) | |
4311 pActor->uAttributes |= 0x8000; | |
4312 a1 = PID(OBJECT_Actor,actor_id); | |
4313 v30 = Actor::GetDirectionInfo(PID(OBJECT_Actor,actor_id), target_pid, &a3, 0); | |
4314 memcpy(&v75, v30, sizeof(v75)); | |
4315 memcpy(&pDir, &v75, sizeof(pDir)); | |
4316 uAIState = pActor->uAIState; | |
4317 /*if ( v21->pMonsterInfo.uHostilityType != MonsterInfo::Hostility_Friendly | |
4318 && (signed int)v21->pMonsterInfo.uRecoveryTime <= 0 | |
4319 && v80 * 307.2 >= (double)(signed int)v75.uDistance | |
4320 && (uAIState == Pursuing || uAIState == Standing || uAIState == Tethered || uAIState == Fidgeting) | |
4321 || ( v21->pMonsterInfo.uMissleAttack1Type && uAIState == Stunned ) ) | |
4322 { | |
4323 v32 = actor_id; | |
4324 } | |
4325 else | |
4326 */ | |
4327 if ( pActor->pMonsterInfo.uHostilityType == MonsterInfo::Hostility_Friendly | |
4328 || (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 | |
4329 || v80 * 307.2 < (double)(signed int)v75.uDistance | |
4330 || uAIState != Pursuing && uAIState != Standing && uAIState != Tethered && uAIState != Fidgeting | |
4331 && !pActor->pMonsterInfo.uMissleAttack1Type || uAIState != Stunned ) | |
4332 { | |
4333 if ( (signed int)pActor->uCurrentActionTime < pActor->uCurrentActionLength ) | |
4334 { | |
4335 continue; | |
4336 } | |
4337 else if ( pActor->uAIState == AttackingMelee ) | |
4338 { | |
4339 v35 = stru_50C198.special_ability_use_check(pActor, actor_id); | |
4340 stru_50FE08.Add( | |
4341 a1, | |
4342 5120, | |
4343 pActor->vPosition.x, | |
4344 pActor->vPosition.y, | |
4345 pActor->vPosition.z + ((signed int)pActor->uActorHeight >> 1), | |
4346 v35, | |
4347 1 | |
4348 ); | |
4349 } | |
4350 else if ( pActor->uAIState == AttackingRanged1 ) | |
4351 { | |
4352 v34 = pActor->pMonsterInfo.uMissleAttack1Type; | |
4353 Actor::AI_RangedAttack(actor_id, &pDir, v34, 0); | |
4354 } | |
4355 else if ( pActor->uAIState == AttackingRanged2 ) | |
4356 { | |
4357 v34 = pActor->pMonsterInfo.uMissleAttack2Type; | |
4358 Actor::AI_RangedAttack(actor_id, &pDir, v34, 1); | |
4359 } | |
4360 else if ( pActor->uAIState == AttackingRanged3 ) | |
4361 { | |
4362 v65 = pActor->pMonsterInfo.uSpellSkillAndMastery1; | |
4363 v33 = pActor->pMonsterInfo.uSpell1ID; | |
4364 Actor::AI_SpellAttack(actor_id, &pDir, v33, 2, v65); | |
4365 } | |
4366 else if ( pActor->uAIState == AttackingRanged4 ) | |
4367 { | |
4368 v65 = pActor->pMonsterInfo.uSpellSkillAndMastery2; | |
4369 v33 = pActor->pMonsterInfo.uSpell2ID; | |
4370 Actor::AI_SpellAttack(actor_id, &pDir, v33, 3, v65); | |
4371 } | |
4372 } | |
4373 | |
4374 v36 = v75.uDistance; | |
4375 if ( pActor->pMonsterInfo.uHostilityType == MonsterInfo::Hostility_Friendly) | |
4376 { | |
4377 if ( target_pid_type == OBJECT_Actor ) | |
4378 { | |
4379 v36 = v75.uDistance; | |
4380 //v37 = (unsigned __int8)*(&byte_5C8D1A[89 * (pActor->pMonsterInfo.uID - 1) / 3] | |
4381 // + (pActors[PID_ID(target_pid)].pMonsterInfo.uID - 1) / 3); | |
4382 v37 =pFactionTable->relations[(pActor->pMonsterInfo.uID-1) / 3 + 1][(pActors[PID_ID(target_pid)].pMonsterInfo.uID - 1) / 3 + 1]; | |
4383 } | |
4384 else | |
4385 { | |
4386 v37 = 4; | |
4387 } | |
4388 v38=0; | |
4389 if ( v37 == 2 ) | |
4390 { | |
4391 //v39 = __OFSUB__(v36, 1024); | |
4392 //v38 = ((v36 - 1024) & 0x80000000u) != 0; | |
4393 v38 = 1024; | |
4394 } | |
4395 else if ( v37 == 3 ) | |
4396 { | |
4397 //v39 = __OFSUB__(v36, 2560); | |
4398 //v38 = ((v36 - 2560) & 0x80000000u) != 0; | |
4399 v38 = 2560; | |
4400 } | |
4401 else if ( v37 == 4 ) | |
4402 { | |
4403 //v39 = __OFSUB__(v36, 5120); | |
4404 //v38 = ((v36 - 5120) & 0x80000000u) != 0; | |
4405 v38 = 5120; | |
4406 } | |
4407 if ( v37 >= 1 && v37 <= 4 && v36 < v38 || v37 == 1 ) | |
4408 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
4409 } | |
4410 | |
4411 if ( (signed __int64)pActor->pActorBuffs[4].uExpireTime > 0 ) | |
4412 { | |
4413 if ( (signed int)v36 >= 10240 ) | |
4414 { | |
1456 | 4415 Actor::AI_RandomMove(actor_id, target_pid, 1024, 0); |
1295 | 4416 } |
4417 else | |
4418 { | |
4419 //peasents after attacked | |
4420 //guard after attacked | |
4421 Actor::AI_Flee(actor_id, target_pid, 0, &pDir); | |
4422 } | |
4423 continue; | |
4424 } | |
4425 | |
4426 if ( pActor->pMonsterInfo.uHostilityType == MonsterInfo::Hostility_Long && target_pid ) | |
4427 { | |
4428 | |
4429 if ( pActor->pMonsterInfo.uAIType == 1 ) | |
4430 { | |
1456 | 4431 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4432 { |
4433 Actor::AI_Stand(actor_id, target_pid, (signed __int64)((double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333), &pDir); | |
4434 } | |
4435 else | |
4436 { | |
4437 Actor::AI_Flee(actor_id, target_pid, 0, &pDir); | |
4438 continue; | |
4439 } | |
4440 | |
4441 } | |
4442 if ( !(pActor->uAttributes & 0x020000) ) | |
4443 { | |
4444 if ( pActor->pMonsterInfo.uAIType == 2 || pActor->pMonsterInfo.uAIType == 3) | |
4445 { | |
4446 if ( pActor->pMonsterInfo.uAIType == 2 ) | |
4447 v43 = (double)(signed int)pActor->pMonsterInfo.uHP * 0.2; | |
4448 if ( pActor->pMonsterInfo.uAIType == 3 ) | |
4449 v43 = (double)(signed int)pActor->pMonsterInfo.uHP * 0.1; | |
4450 v84 = pActor->sCurrentHP; | |
4451 v42 = (double)(signed int)v84; | |
4452 if ( v43 > v42 && (signed int)v36 < 10240 ) | |
4453 { | |
4454 Actor::AI_Flee(actor_id, target_pid, 0, &pDir); | |
4455 continue; | |
4456 } | |
4457 } | |
4458 } | |
4459 | |
4460 v81 = v36 - pActor->uActorRadius; | |
4461 if ( target_pid_type == OBJECT_Actor ) | |
4462 v81 -= pActors[PID_ID(target_pid)].uActorRadius; | |
4463 if ( v81 < 0 ) | |
4464 v81 = 0; | |
4465 rand(); | |
4466 pActor->uAttributes &= 0xFFFBFFFF; | |
4467 if ( v81 < 5120 ) | |
4468 { | |
4469 v45 = stru_50C198.special_ability_use_check(pActor, actor_id); | |
4470 if ( v45 == 0 ) | |
4471 { | |
4472 if ( pActor->pMonsterInfo.uMissleAttack1Type ) | |
4473 { | |
4474 if ( (signed int)pActor->pMonsterInfo.uRecoveryTime <= 0 ) | |
4475 { | |
4476 Actor::AI_MissileAttack1(actor_id, target_pid, &pDir); | |
4477 } | |
1456 | 4478 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4479 { |
4480 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4481 v64 = (signed __int64)v47; | |
4482 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4483 } | |
4484 else | |
4485 { | |
4486 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4487 if ( v80 * 307.2 > (double)v81 ) | |
4488 { | |
4489 v64 = (signed __int64)v47; | |
4490 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4491 } | |
4492 else | |
4493 { | |
4494 Actor::AI_Pursue1(actor_id, target_pid, actor_id, (signed __int64)v47, &pDir); | |
4495 } | |
4496 } | |
4497 } | |
4498 else | |
4499 { | |
4500 if ( (double)v81 >= v80 * 307.2 ) | |
4501 { | |
4502 if ( v81 >= 1024 ) | |
4503 { | |
1456 | 4504 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4505 { |
4506 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4507 v64 = (signed __int64)v47; | |
4508 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4509 } | |
4510 else | |
4511 { | |
4512 //monsters | |
4513 Actor::AI_Pursue3(actor_id, target_pid, 0, &pDir); | |
4514 } | |
4515 } | |
1456 | 4516 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4517 { |
4518 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4519 v64 = (signed __int64)v47; | |
4520 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4521 } | |
4522 else | |
4523 { | |
4524 v70 = (signed __int64)v80 * 307.2; | |
4525 //monsters | |
4526 //guard after player runs away | |
4527 // follow player | |
4528 Actor::AI_Pursue2(actor_id, target_pid, 0, &pDir, v70); | |
4529 } | |
4530 } | |
4531 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) | |
4532 { | |
4533 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4534 v64 = (signed __int64)v47; | |
4535 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4536 } | |
4537 else | |
4538 { | |
4539 //monsters | |
4540 Actor::AI_MeleeAttack(actor_id, target_pid, &pDir); | |
4541 } | |
4542 } | |
4543 continue; | |
4544 } | |
4545 else if ( v45 == 2 || v45 == 3 ) | |
4546 { | |
4547 if ( v45 == 2 ) | |
4548 v46 = pActor->pMonsterInfo.uSpell1ID; | |
4549 else | |
4550 v46 = pActor->pMonsterInfo.uSpell2ID; | |
4551 if ( v46 ) | |
4552 { | |
4553 if ( (signed int)pActor->pMonsterInfo.uRecoveryTime <= 0 ) | |
4554 { | |
4555 if ( v45 == 2 ) | |
4556 Actor::AI_SpellAttack1(actor_id, target_pid, &pDir); | |
4557 else | |
4558 Actor::AI_SpellAttack2(actor_id, target_pid, &pDir); | |
4559 } | |
1456 | 4560 else if ( v80 * 307.2 > (double)v81 || pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4561 { |
4562 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4563 v64 = (signed __int64)v47; | |
4564 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4565 } | |
4566 else | |
4567 { | |
4568 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4569 Actor::AI_Pursue1(actor_id, target_pid, actor_id, (signed __int64)v47, &pDir); | |
4570 } | |
4571 } | |
4572 else | |
4573 { | |
4574 if ( (double)v81 >= v80 * 307.2 ) | |
4575 { | |
4576 if ( v81 >= 1024 ) | |
4577 { | |
1456 | 4578 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4579 { |
4580 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4581 v64 = (signed __int64)v47; | |
4582 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4583 } | |
4584 else | |
4585 { | |
4586 Actor::AI_Pursue3(actor_id, target_pid, 256, &pDir); | |
4587 } | |
4588 } | |
1456 | 4589 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4590 { |
4591 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4592 v64 = (signed __int64)v47; | |
4593 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4594 } | |
4595 else | |
4596 { | |
4597 v70 = (signed __int64)v80 * 307.2; | |
4598 Actor::AI_Pursue2(actor_id, target_pid, 0, &pDir, v70); | |
4599 } | |
4600 } | |
4601 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) | |
4602 { | |
4603 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4604 v64 = (signed __int64)v47; | |
4605 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4606 } | |
4607 else | |
4608 { | |
4609 Actor::AI_MeleeAttack(actor_id, target_pid, &pDir); | |
4610 } | |
4611 } | |
4612 continue; | |
4613 } | |
4614 } | |
4615 } | |
4616 | |
4617 if ( pActor->pMonsterInfo.uHostilityType != MonsterInfo::Hostility_Long || !target_pid || v81 >= 5120 || v45 != 1 ) | |
4618 { | |
1456 | 4619 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_SHORT ) |
1295 | 4620 { |
1456 | 4621 Actor::AI_RandomMove(actor_id, 4, 1024, 0); |
1295 | 4622 } |
4623 else if ( pActor->pMonsterInfo.uMovementType == 1 ) | |
4624 { | |
1456 | 4625 Actor::AI_RandomMove(actor_id, 4, 2560, 0); |
1295 | 4626 } |
4627 else if ( pActor->pMonsterInfo.uMovementType == 2 ) | |
4628 { | |
1456 | 4629 Actor::AI_RandomMove(actor_id, 4, 5120, 0); |
1295 | 4630 } |
4631 else if ( pActor->pMonsterInfo.uMovementType == 4 ) | |
4632 { | |
1456 | 4633 Actor::AI_RandomMove(actor_id, 4, 10240, 0); |
1295 | 4634 } |
1456 | 4635 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4636 { |
4637 v57 = Actor::GetDirectionInfo(a1, 4u, &v72, 0); | |
4638 v58 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4639 memcpy(&v74, v57, sizeof(v74)); | |
4640 memcpy(&pDir, &v74, sizeof(pDir)); | |
4641 v64 = (signed __int64)v58; | |
4642 Actor::AI_Stand(actor_id, 4, v64, &pDir); | |
4643 } | |
4644 } | |
4645 else if ( !pActor->pMonsterInfo.uMissleAttack2Type ) | |
4646 { | |
4647 if ( (double)v81 >= v80 * 307.2 ) | |
4648 { | |
4649 if ( v81 >= 1024 ) | |
4650 { | |
1456 | 4651 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4652 { |
4653 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4654 v64 = (signed __int64)v47; | |
4655 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4656 } | |
4657 else | |
4658 { | |
4659 Actor::AI_Pursue3(actor_id, target_pid, 256, &pDir); | |
4660 } | |
4661 } | |
1456 | 4662 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4663 { |
4664 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4665 v64 = (signed __int64)v47; | |
4666 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4667 } | |
4668 else | |
4669 { | |
4670 v70 = (signed __int64)v80 * 307.2; | |
4671 Actor::AI_Pursue2(actor_id, target_pid, 0, &pDir, v70); | |
4672 } | |
4673 } | |
4674 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) | |
4675 { | |
4676 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
4677 v64 = (signed __int64)v47; | |
4678 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4679 } | |
4680 else | |
4681 { | |
4682 Actor::AI_MeleeAttack(actor_id, target_pid, &pDir); | |
4683 } | |
4684 } | |
4685 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) | |
4686 { | |
4687 v47 = (double)(signed int)pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333; | |
1456 | 4688 if ( v80 * 307.2 > (double)v81 || pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
1295 | 4689 { |
4690 v64 = (signed __int64)v47; | |
4691 Actor::AI_Stand(actor_id, target_pid, v64, &pDir); | |
4692 } | |
4693 else | |
4694 { | |
4695 Actor::AI_Pursue1(actor_id, target_pid, actor_id, (signed __int64)v47, &pDir); | |
4696 } | |
4697 } | |
4698 else | |
4699 { | |
4700 Actor::AI_MissileAttack2(actor_id, target_pid, &pDir); | |
4701 } | |
4702 } | |
4703 } | |
4704 } | |
4705 //----- (0044665D) -------------------------------------------------------- | |
4706 // uType: 0 -> any monster | |
4707 // 1 -> uParam is GroupID | |
4708 // 2 -> uParam is MonsterID | |
4709 // 3 -> uParam is ActorID | |
4710 // uNumAlive: 0 -> all must be alive | |
4711 int __fastcall IsActorAlive(unsigned int uType, unsigned int uParam, unsigned int uNumAlive) | |
4712 { | |
4713 unsigned int uAliveActors; // eax@6 | |
4714 int v5; // ecx@10 | |
4715 unsigned int uTotalActors; // [sp+0h] [bp-4h]@1 | |
4716 | |
4717 uTotalActors = 0; | |
4718 if ( uType ) | |
4719 { | |
4720 if ( uType == 1 ) | |
4721 { | |
4722 uAliveActors = SearchActorByGroup(&uTotalActors, uParam); | |
4723 } | |
4724 else | |
4725 { | |
4726 if ( uType == 2 ) | |
4727 { | |
4728 uAliveActors = SearchActorByMonsterID(&uTotalActors, uParam); | |
4729 } | |
4730 else | |
4731 { | |
4732 if ( uType != 3 ) | |
4733 return 0; | |
4734 uAliveActors = SearchActorByID(&uTotalActors, uParam); | |
4735 } | |
4736 } | |
4737 } | |
4738 else | |
4739 { | |
4740 uAliveActors = SearchAliveActors(&uTotalActors); | |
4741 } | |
4742 v5 = 0; | |
4743 if ( uNumAlive ) | |
4744 LOBYTE(v5) = (signed int)uAliveActors >= (signed int)uNumAlive; | |
4745 else | |
4746 LOBYTE(v5) = uTotalActors == uAliveActors; | |
4747 return v5; | |
1297 | 4748 } |
4749 //----- (00408B54) -------------------------------------------------------- | |
4750 unsigned int __fastcall SearchActorByID(unsigned int *pTotalActors, unsigned int a2) | |
4751 { | |
4752 unsigned int v2; // edi@1 | |
4753 unsigned int *v3; // esi@1 | |
4754 int v4; // eax@1 | |
4755 unsigned int v5; // ebx@1 | |
4756 unsigned int v6; // edx@1 | |
4757 | |
4758 v2 = a2; | |
4759 v3 = pTotalActors; | |
4760 v4 = GetAlertStatus(); | |
4761 v5 = 0; | |
4762 *v3 = 0; | |
4763 v6 = pActors[v2].uAttributes; | |
4764 if ( (v6 & 0x100000) == v4 ) | |
4765 { | |
4766 *v3 = 1; | |
4767 if ( pActors[v2].IsNotAlive() == 1 ) | |
4768 v5 = 1; | |
4769 } | |
4770 return v5; | |
4771 } | |
4772 //----- (00408AE7) -------------------------------------------------------- | |
4773 unsigned int __fastcall SearchActorByGroup(unsigned int *pTotalActors, unsigned int uGroup) | |
4774 { | |
4775 unsigned int *v2; // esi@1 | |
4776 signed int v3; // ebx@1 | |
4777 Actor *v4; // edi@2 | |
4778 int v5; // eax@3 | |
4779 unsigned int v7; // [sp+8h] [bp-Ch]@1 | |
4780 int v8; // [sp+Ch] [bp-8h]@1 | |
4781 unsigned int v9; // [sp+10h] [bp-4h]@1 | |
4782 | |
4783 v7 = uGroup; | |
4784 v2 = pTotalActors; | |
4785 v3 = 0; | |
4786 v8 = GetAlertStatus(); | |
4787 *v2 = 0; | |
4788 v9 = 0; | |
4789 if ( (signed int)uNumActors > 0 ) | |
4790 { | |
4791 v4 = pActors.data();//[0].uGroup; | |
4792 do | |
4793 { | |
4794 v5 = v4->uAttributes; | |
4795 if ( (v5 & 0x100000) == v8 ) | |
4796 { | |
4797 if ( v4->uGroup == v7 ) | |
4798 { | |
4799 ++*v2; | |
4800 if ( v4->IsNotAlive() == 1 ) | |
4801 ++v9; | |
4802 } | |
4803 } | |
4804 ++v3; | |
4805 ++v4; | |
4806 } | |
4807 while ( v3 < (signed int)uNumActors ); | |
4808 } | |
4809 return v9; | |
4810 } | |
4811 //----- (00408A7E) -------------------------------------------------------- | |
4812 unsigned int __fastcall SearchActorByMonsterID(unsigned int *pTotalActors, int uMonsterID) | |
4813 { | |
4814 unsigned int *v2; // esi@1 | |
4815 signed int v3; // ebx@1 | |
4816 Actor *v4; // edi@2 | |
4817 int v5; // eax@3 | |
4818 int v7; // [sp+8h] [bp-Ch]@1 | |
4819 int v8; // [sp+Ch] [bp-8h]@1 | |
4820 unsigned int v9; // [sp+10h] [bp-4h]@1 | |
4821 | |
4822 v7 = uMonsterID; | |
4823 v2 = pTotalActors; | |
4824 v3 = 0; | |
4825 v8 = GetAlertStatus(); | |
4826 *v2 = 0; | |
4827 v9 = 0; | |
4828 if ( (signed int)uNumActors > 0 ) | |
4829 { | |
4830 v4 = pActors.data();//[0].pMonsterInfo.uID; | |
4831 do | |
4832 { | |
4833 v5 = v4->uAttributes; // actor::attributes | |
4834 if ( (v5 & 0x100000) == v8 ) | |
4835 { | |
4836 if ( v4->pMonsterInfo.field_33 == v7 ) | |
4837 { | |
4838 ++*v2; | |
4839 if ( v4->IsNotAlive() == 1 ) | |
4840 ++v9; | |
4841 } | |
4842 } | |
4843 ++v3; | |
4844 ++v4; | |
4845 } | |
4846 while ( v3 < (signed int)uNumActors ); | |
4847 } | |
4848 return v9; | |
4849 } | |
4850 //----- (00408A27) -------------------------------------------------------- | |
4851 unsigned int __thiscall SearchAliveActors(unsigned int *pTotalActors) | |
4852 { | |
4853 unsigned int *v1; // esi@1 | |
4854 int v2; // eax@1 | |
4855 unsigned int v3; // ebp@1 | |
4856 signed int v4; // ebx@1 | |
4857 Actor *v5; // edi@2 | |
4858 unsigned int v6; // eax@3 | |
4859 int v8; // [sp+Ch] [bp-4h]@1 | |
4860 | |
4861 v1 = pTotalActors; | |
4862 v2 = GetAlertStatus(); | |
4863 v3 = 0; | |
4864 v4 = 0; | |
4865 *v1 = 0; | |
4866 v8 = v2; | |
4867 if ( (signed int)uNumActors > 0 ) | |
4868 { | |
4869 v5 = pActors.data(); | |
4870 do | |
4871 { | |
4872 v6 = v5->uAttributes; | |
4873 if ( (v6 & 0x100000) == v8 ) | |
4874 { | |
4875 ++*v1; | |
4876 if ( v5->IsNotAlive() == 1 ) | |
4877 ++v3; | |
4878 } | |
4879 ++v4; | |
4880 ++v5; | |
4881 } | |
4882 while ( v4 < (signed int)uNumActors ); | |
4883 } | |
4884 return v3; | |
4885 } | |
4886 //----- (00408768) -------------------------------------------------------- | |
4887 void InitializeActors() | |
4888 { | |
4889 signed int v5; // [sp+Ch] [bp-10h]@1 | |
4890 signed int v6; // [sp+10h] [bp-Ch]@1 | |
4891 signed int v7; // [sp+14h] [bp-8h]@1 | |
4892 signed int v8; // [sp+18h] [bp-4h]@1 | |
4893 | |
4894 v8 = 0; | |
4895 v6 = 0; | |
4896 v7 = 0; | |
4897 v5 = 0; | |
4898 if ( !_stricmp(pCurrentMapName.data(), "d25.blv") ) | |
4899 v8 = 1; | |
4900 if ( !_stricmp(pCurrentMapName.data(), "d26.blv") ) | |
4901 v6 = 1; | |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1340
diff
changeset
|
4902 if (pParty->IsPartyGood()) |
1297 | 4903 v7 = 1; |
1359
60cdc3eac407
_449B57_test_bit(pParty->_quest_bits, 99) and _449B57_test_bit(pParty->_quest_bits, 100) changed to Party::IsPartyGood, Party::IsPartyEvil, respectively
Grumpy7
parents:
1340
diff
changeset
|
4904 if (pParty->IsPartyEvil()) |
1297 | 4905 v5 = 1; |
4906 | |
4907 Log::Warning(L"%S %S %u", __FILE__, __FUNCTION__, __LINE__); // ai_near_actors_targets_pid[i] for AI_Stand seems always 0; original code behaviour is identical | |
4908 for (uint i = 0; i < uNumActors; ++i) | |
4909 { | |
4910 auto actor = &pActors[i]; | |
4911 | |
4912 if (actor->CanAct() || actor->uAIState == Disabled) | |
4913 { | |
4914 actor->vPosition.x = actor->vInitialPosition.x; | |
4915 actor->vPosition.y = actor->vInitialPosition.y; | |
4916 actor->vPosition.z = actor->vInitialPosition.z; | |
4917 actor->sCurrentHP = actor->pMonsterInfo.uHP; | |
4918 if (actor->uAIState != Disabled) | |
4919 { | |
4920 Actor::AI_Stand(i, ai_near_actors_targets_pid[i], actor->pMonsterInfo.uRecoveryTime, 0); | |
4921 } | |
4922 } | |
4923 | |
4924 actor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4925 | |
4926 if (!v8 || v7) | |
4927 if (!v6 || v5) | |
4928 if (actor->IsPeasant()) | |
4929 BYTE2(actor->uAttributes) &= 0xF7u; | |
4930 | |
4931 BYTE2(actor->uAttributes) &= 0x7Fu; | |
4932 if (BYTE2(actor->uAttributes) & 0x40) | |
4933 Actor::_4031C1_update_job(i, pParty->uCurrentHour, 1); | |
4934 } | |
4935 } | |
4936 //----- (00439474) -------------------------------------------------------- | |
4937 void DamageMonsterFromParty(signed int a1, unsigned int uActorID_Monster, Vec3_int_ *pVelocity) | |
4938 { | |
4939 //signed int v3; // eax@1 | |
4940 SpriteObject *v4; // ebx@1 | |
4941 //int v5; // edx@3 | |
4942 //bool uPlayerID; // eax@3 | |
4943 //Player *pPlayer; // edi@4 | |
4944 Actor *pMonster; // esi@7 | |
4945 //SpriteObject *v9; // ebx@12 | |
4946 int v10; // eax@12 | |
4947 int v11; // ebx@12 | |
4948 unsigned int v12; // ecx@12 | |
4949 int v13; // edx@15 | |
4950 int v14; // edx@17 | |
4951 int v15; // eax@24 | |
4952 unsigned __int16 v16; // cx@25 | |
4953 int v17; // eax@29 | |
4954 int v18; // eax@38 | |
4955 unsigned __int8 v19; // zf@38 | |
4956 unsigned __int8 v20; // sf@38 | |
4957 int v21; // edx@44 | |
4958 int v22; // eax@44 | |
4959 unsigned __int8 v23; // zf@44 | |
4960 unsigned __int8 v24; // sf@44 | |
4961 int v25; // edx@51 | |
4962 int v26; // ecx@51 | |
4963 //signed int v27; // eax@51 | |
4964 //int v28; // eax@53 | |
4965 signed int v29; // eax@76 | |
4966 signed int v30; // eax@84 | |
4967 signed int v31; // eax@92 | |
4968 int v32; // eax@94 | |
4969 int v33; // eax@100 | |
4970 int v34; // eax@104 | |
4971 signed int v35; // eax@104 | |
4972 double v36; // st7@104 | |
4973 float v37; // ST08_4@104 | |
4974 float v38; // ST04_4@104 | |
4975 float v39; // ST00_4@104 | |
4976 int v40; // ebx@107 | |
4977 unsigned int v41; // ebx@109 | |
4978 signed __int64 v42; // qax@125 | |
4979 unsigned __int16 v43; // ax@132 | |
4980 char v44; // bl@132 | |
4981 unsigned __int16 v45; // ax@132 | |
4982 unsigned __int64 v46; // [sp+Ch] [bp-60h]@6 | |
4983 const char *v47; // [sp+14h] [bp-58h]@104 | |
4984 char *pPlayerName; // [sp+18h] [bp-54h]@12 | |
4985 char *pMonsterName; // [sp+1Ch] [bp-50h]@6 | |
4986 int v50; // [sp+20h] [bp-4Ch]@6 | |
4987 //unsigned __int64 *v51; // [sp+30h] [bp-3Ch]@6 | |
4988 int v52; // [sp+34h] [bp-38h]@12 | |
4989 //int v53; // [sp+38h] [bp-34h]@10 | |
4990 //int v54; // [sp+3Ch] [bp-30h]@1 | |
4991 //int v55; // [sp+40h] [bp-2Ch]@12 | |
4992 signed int a4; // [sp+44h] [bp-28h]@1 | |
4993 PlayerEquipment *v57; // [sp+48h] [bp-24h]@10 | |
4994 //int v58; // [sp+4Ch] [bp-20h]@10 | |
4995 int v59; // [sp+50h] [bp-1Ch]@1 | |
4996 unsigned int uActorID_Monster_; // [sp+54h] [bp-18h]@1 | |
4997 int v61; // [sp+58h] [bp-14h]@1 | |
4998 bool v62; // [sp+5Ch] [bp-10h]@1 | |
4999 int uDamageAmount; // [sp+60h] [bp-Ch]@1 | |
5000 int a2; // [sp+64h] [bp-8h]@27 | |
5001 int a3; // [sp+6Bh] [bp-1h]@6 | |
5002 | |
5003 //v3 = a1; | |
5004 v4 = 0; | |
5005 uActorID_Monster_ = uActorID_Monster; | |
5006 //v54 = a1; | |
5007 uDamageAmount = 0; | |
5008 a4 = 0; | |
5009 v61 = 0; | |
5010 v59 = 0; | |
5011 v62 = 0; | |
5012 if ( PID_TYPE(a1) == OBJECT_Item) | |
5013 { | |
5014 v4 = &pSpriteObjects[PID_ID(a1)]; | |
5015 //uDamageAmount = (int)v4; | |
5016 v61 = v4->field_60_distance_related_prolly_lod; | |
5017 a1 = v4->spell_caster_pid; | |
5018 //v54 = v4->field_58_pid; | |
5019 } | |
5020 //v5 = a1 & 7; | |
5021 //uPlayerID = a1 >> 3; | |
5022 if (PID_TYPE(a1) != OBJECT_Player) | |
5023 return; | |
5024 | |
5025 assert(PID_ID(abs(a1)) < 4); | |
5026 auto player = &pParty->pPlayers[PID_ID(a1)]; | |
5027 pMonster = &pActors[uActorID_Monster_]; | |
5028 //uPlayerID = pMonster->IsAlive(); | |
5029 if (pMonster->IsNotAlive()) | |
5030 return; | |
5031 | |
5032 BYTE1(pMonster->uAttributes) |= 0xC0u; | |
5033 if ( pMonster->uAIState == Fleeing ) | |
5034 pMonster->uAttributes |= 0x20000u; | |
5035 //v57 = 0; | |
5036 //v53 = 0; | |
5037 //v58 = 0; | |
5038 bool hit_will_stun = false, | |
5039 hit_will_paralyze = false; | |
5040 if ( !v4 ) | |
5041 { | |
5042 //v51 = (unsigned __int64 *)player->pEquipment.uMainHand; | |
5043 int main_hand_idx = player->pEquipment.uMainHand; | |
5044 v59 = 1; | |
5045 if ( player->HasItemEquipped(EQUIP_MAIN_HAND) ) | |
5046 { | |
1384
b51332ab228f
changed a few member variables in Player to slightly less confusing names
Grumpy7
parents:
1362
diff
changeset
|
5047 auto main_hand_skill = pItemsTable->pItems[player->pInventoryItemList[main_hand_idx - 1].uItemID].uSkillType; |
1297 | 5048 //v55 = pItemsTable->pItems[player->pInventoryItems[main_hand_idx - 1].uItemID].uSkillType; |
5049 //v28 = SkillToMastery(player->pActiveSkills[v55]); | |
5050 auto main_hand_mastery = SkillToMastery(player->pActiveSkills[main_hand_skill]); | |
5051 //uDamageAmount = v28; | |
5052 switch (main_hand_skill) | |
5053 { | |
5054 case PLAYER_SKILL_STAFF: | |
5055 if (main_hand_mastery >= 3) | |
5056 { | |
5057 if (rand() % 100 < (player->GetActualSkillLevel(PLAYER_SKILL_STAFF) & 0x3F)) // stun chance when mastery >= 3 | |
5058 hit_will_stun = true; | |
5059 } | |
5060 break; | |
5061 | |
5062 case PLAYER_SKILL_MACE: | |
5063 if (main_hand_mastery >= 3) | |
5064 { | |
5065 if (rand() % 100 < (player->GetActualSkillLevel(PLAYER_SKILL_MACE) & 0x3F)) | |
5066 hit_will_stun = true; | |
5067 } | |
5068 if (main_hand_mastery >= 4) | |
5069 { | |
5070 if (rand() % 100 < (player->GetActualSkillLevel(PLAYER_SKILL_MACE) & 0x3F)) | |
5071 hit_will_paralyze = true; | |
5072 } | |
5073 break; | |
5074 } | |
5075 } | |
5076 v50 = pMonster->pMonsterInfo.uID; | |
5077 a2 = 4; | |
5078 //v27 = player->CalculateMeleeDamageTo(0, 0, v50); | |
5079 uDamageAmount = player->CalculateMeleeDamageTo(0, 0, v50); | |
5080 //if ( !v57 ) | |
5081 goto LABEL_67; | |
5082 //goto LABEL_69; | |
5083 } | |
5084 | |
5085 | |
5086 v19 = v4->spell_id == SPELL_DARK_SOULDRINKER; | |
5087 v61 = v4->field_60_distance_related_prolly_lod; | |
5088 if ( !v19 ) | |
5089 { | |
5090 //v9 = (SpriteObject *)uDamageAmount; | |
5091 v50 = pParty->vPosition.x - v4->vPosition.x; | |
5092 //v55 = abs(v50); | |
5093 pMonsterName = (char *)(pParty->vPosition.y - v4->vPosition.y); | |
5094 //v51 = (unsigned __int64 *)abs((int)pMonsterName); | |
5095 pPlayerName = (char *)(pParty->vPosition.z - v4->vPosition.z); | |
5096 v52 = abs((int)pPlayerName); | |
5097 v61 = abs(v50); | |
5098 v10 = abs(v50); | |
5099 v11 = (int)abs((int)pMonsterName); | |
5100 v12 = v52; | |
5101 if ( v10 < v11) | |
5102 { | |
5103 v10 = (int)v11; | |
5104 v11 = v10; | |
5105 } | |
5106 if ( v10 < v52 ) | |
5107 { | |
5108 v13 = v10; | |
5109 v10 = v52; | |
5110 v12 = v13; | |
5111 } | |
5112 if ( v11 < (signed int)v12 ) | |
5113 { | |
5114 v14 = v12; | |
5115 v12 = v11; | |
5116 v11 = v14; | |
5117 } | |
5118 //uPlayerID = ((unsigned int)(11 * v11) >> 5) + (v12 >> 2) + v10; | |
5119 v61 = ((unsigned int)(11 * v11) >> 5) + (v12 >> 2) + v10; | |
5120 if ( v61 >= 2560 ) | |
5121 { | |
5122 if ( v61 >= 5120 && !(BYTE1(pMonster->uAttributes) & 4) ) | |
5123 return; | |
5124 v61 = 2; | |
5125 } | |
5126 else | |
5127 { | |
5128 v61 = 1; | |
5129 } | |
5130 //v4 = (SpriteObject *)uDamageAmount; | |
5131 } | |
5132 | |
5133 v15 = v4->spell_id; | |
5134 if ( v15 == SPELL_LASER_PROJECTILE ) | |
5135 { | |
5136 v16 = player->pActiveSkills[7]; | |
5137 v61 = 1; | |
5138 if ( (signed int)SkillToMastery(v16) >= 3 ) | |
5139 a4 = player->pActiveSkills[7] & 0x3F; | |
5140 a2 = 4; | |
5141 uDamageAmount = player->CalculateMeleeDamageTo(1, 1, 0); | |
5142 goto LABEL_67; | |
5143 } | |
5144 if ( v15 != SPELL_BOW_ARROW ) | |
5145 { | |
5146 if ( v15 == SPELL_101 ) | |
5147 { | |
5148 a2 = 0; | |
5149 v18 = player->CalculateRangedDamageTo(0); | |
5150 v19 = HIDWORD(pMonster->pActorBuffs[15].uExpireTime) == 0; | |
5151 v20 = SHIDWORD(pMonster->pActorBuffs[15].uExpireTime) < 0; | |
5152 uDamageAmount = v18; | |
5153 if ( !v20 && (!(v20 | v19) || LODWORD(pMonster->pActorBuffs[15].uExpireTime)) ) | |
5154 uDamageAmount >>= 1; | |
5155 v59 = 1; | |
5156 goto LABEL_67; | |
5157 } | |
5158 if ( v15 == SPELL_EARTH_BLADES ) | |
5159 { | |
5160 a4 = 5 * v4->spell_level; | |
5161 a2 = player->GetSpellSchool(0x27u); | |
5162 v21 = v4->spell_level; | |
5163 v50 = pMonster->sCurrentHP; | |
5164 pMonsterName = (char *)v4->spell_skill; | |
5165 v22 = _43AFE3_calc_spell_damage(39, v21, v4->spell_skill, v50); | |
5166 v23 = HIDWORD(pMonster->pActorBuffs[15].uExpireTime) == 0; | |
5167 v24 = SHIDWORD(pMonster->pActorBuffs[15].uExpireTime) < 0; | |
5168 uDamageAmount = v22; | |
5169 if ( !v24 && (!(v24 | v23) || LODWORD(pMonster->pActorBuffs[15].uExpireTime)) ) | |
5170 uDamageAmount >>= 1; | |
5171 v59 = 0; | |
5172 LABEL_67: | |
5173 if ( !stru_50C198.PlayerHitOrMiss(player, pMonster, v61, a4) ) | |
5174 { | |
5175 //LABEL_68: | |
5176 player->PlaySound(SPEECH_52, 0); | |
5177 return; | |
5178 } | |
5179 goto LABEL_69; | |
5180 } | |
5181 if ( v15 == SPELL_EARTH_STUN ) | |
5182 { | |
5183 uDamageAmount = 0; | |
5184 a2 = 4; | |
5185 hit_will_stun = 1; | |
5186 goto LABEL_67; | |
5187 } | |
5188 a2 = player->GetSpellSchool(v4->spell_id); | |
5189 v25 = v4->spell_level; | |
5190 v26 = v4->spell_id; | |
5191 v50 = pMonster->sCurrentHP; | |
5192 pMonsterName = (char *)v4->spell_skill; | |
5193 //v27 = _43AFE3_calc_spell_damage(v26, v25, (signed int)pMonsterName, v50); | |
5194 v59 = 0; | |
5195 //v57 = (PlayerEquipment *)1; | |
5196 //LABEL_65: | |
5197 uDamageAmount = _43AFE3_calc_spell_damage(v26, v25, v4->spell_skill, v50); | |
5198 //if ( !v57 ) | |
5199 // goto LABEL_67; | |
5200 goto LABEL_69; | |
5201 } | |
5202 v50 = pMonster->word_000086_some_monster_id; | |
5203 a2 = 4; | |
5204 v17 = player->CalculateRangedDamageTo(v50); | |
5205 v19 = v4->stru_24.uItemID == 0; | |
5206 uDamageAmount = v17; | |
5207 v57 = 0; | |
5208 if ( !v19 && v4->stru_24.uSpecEnchantmentType == 3 ) | |
5209 { | |
5210 a2 = 0; | |
5211 v57 = (PlayerEquipment *)1; | |
5212 } | |
5213 if ( SHIDWORD(pMonster->pActorBuffs[15].uExpireTime) >= 0 | |
5214 && (SHIDWORD(pMonster->pActorBuffs[15].uExpireTime) > 0 || LODWORD(pMonster->pActorBuffs[15].uExpireTime)) ) | |
5215 uDamageAmount >>= 1; | |
5216 v59 = 1; | |
5217 //LABEL_66: | |
5218 if ( !v57 ) | |
5219 goto LABEL_67; | |
5220 LABEL_69: | |
1362
d6cf8ead9242
Condition checking functions slightly renamed, some final changes in Player::SetCondition
Grumpy7
parents:
1359
diff
changeset
|
5221 if (player->IsWeak()) |
1297 | 5222 uDamageAmount /= 1; |
5223 if ( (signed __int64)pMonster->pActorBuffs[5].uExpireTime > 0 ) | |
5224 uDamageAmount = 0; | |
5225 v61 = stru_50C198.CalcMagicalDamageToActor(pMonster, a2, uDamageAmount); | |
5226 if ( !v4 && player->IsUnarmed() && (signed __int64)player->pPlayerBuffs[6].uExpireTime > 0 ) | |
5227 { | |
5228 v50 = player->pPlayerBuffs[6].uPower; | |
5229 v29 = stru_50C198.CalcMagicalDamageToActor(pMonster, 8, v50); | |
5230 v61 += v29; | |
5231 } | |
5232 uDamageAmount = v61; | |
5233 if ( v59 ) | |
5234 { | |
5235 if ( v4 ) | |
5236 { | |
5237 a4 = v4->stru_24._439DF3_get_additional_damage(&a2, &v62); | |
5238 if ( v62 && pMonster->sCurrentHP > 0 ) | |
5239 { | |
5240 player->sHealth += v61 / 5; | |
5241 if ( player->sHealth > player->GetMaxHealth() ) | |
5242 player->sHealth = player->GetMaxHealth(); | |
5243 v62 = 0; | |
5244 } | |
5245 v30 = stru_50C198.CalcMagicalDamageToActor(pMonster, a2, a4); | |
5246 uDamageAmount = v61 + v30; | |
5247 } | |
5248 else | |
5249 { | |
5250 v59 = 0; | |
5251 v57 = &player->pEquipment; | |
5252 do | |
5253 { | |
5254 if ( player->HasItemEquipped((ITEM_EQUIP_TYPE)v59) ) | |
5255 { | |
1384
b51332ab228f
changed a few member variables in Player to slightly less confusing names
Grumpy7
parents:
1362
diff
changeset
|
5256 auto _s = (ItemGen *)&player->pInventoryItemList[v57->uShield - 1]; |
1297 | 5257 a4 = _s->_439DF3_get_additional_damage(&a2, &v62); |
5258 if ( v62 && pMonster->sCurrentHP > 0 ) | |
5259 { | |
5260 player->sHealth += v61 / 5; | |
5261 if ( player->sHealth > player->GetMaxHealth() ) | |
5262 player->sHealth = player->GetMaxHealth(); | |
5263 v62 = 0; | |
5264 } | |
5265 v31 = stru_50C198.CalcMagicalDamageToActor(pMonster, a2, a4); | |
5266 uDamageAmount += v31; | |
5267 } | |
5268 ++v59; | |
5269 v57 = (PlayerEquipment *)((char *)v57 + 4); | |
5270 } | |
5271 while ( v59 <= 1 ); | |
5272 } | |
5273 } | |
5274 v32 = uDamageAmount; | |
5275 pMonster->sCurrentHP -= uDamageAmount; | |
5276 if ( !v32 && !hit_will_stun ) | |
5277 { | |
5278 player->PlaySound(SPEECH_52, 0); | |
5279 return; | |
5280 } | |
5281 if ( pMonster->sCurrentHP > 0 ) | |
5282 { | |
5283 Actor::AI_Stun(uActorID_Monster_, a1, 0); | |
5284 Actor::AggroSurroundingPeasants(uActorID_Monster_, 1); | |
5285 if ( bShowDamage ) | |
5286 { | |
5287 v50 = uDamageAmount; | |
5288 pMonsterName = (char *)pMonster; | |
5289 pPlayerName = player->pName; | |
5290 if ( v4 ) | |
5291 v47 = pGlobalTXT_LocalizationStrings[189];// "%s shoots %s for %lu points" | |
5292 else | |
5293 v47 = pGlobalTXT_LocalizationStrings[164];// "%s hits %s for %lu damage" | |
5294 sprintfex(pTmpBuf.data(), v47, pPlayerName, pMonsterName, v50); | |
5295 ShowStatusBarString(pTmpBuf.data(), 2u); | |
5296 } | |
5297 v41 = 0; | |
5298 } | |
5299 else | |
5300 { | |
5301 if ( pMonsterStats->pInfos[pMonster->pMonsterInfo.uID].bQuestMonster & 1 ) | |
5302 { | |
5303 v33 = byte_4D864C && BYTE2(pGame->uFlags) & 8 ? 10 * pMonster->uActorRadius : pMonster->uActorRadius; | |
5304 //v55 = v33; | |
5305 if ( pRenderer->pRenderD3D ) | |
5306 { | |
5307 if ( pGame->uFlags2 & GAME_FLAGS_2_DRAW_BLOODSPLATS ) | |
5308 { | |
5309 v50 = 0; | |
5310 pMonsterName = 0; | |
5311 v34 = pMonster->vPosition.z; | |
5312 *(float *)&pPlayerName = (double)v33; | |
5313 //v51 = (unsigned __int64 *)v34; | |
5314 *(float *)&v47 = 0.0; | |
5315 v35 = pMonster->vPosition.y; | |
5316 *((float *)&v46 + 1) = 0.0; | |
5317 *(float *)&v46 = 1.0; | |
5318 v36 = (double)(signed int)pMonster->vPosition.z; | |
5319 //v51 = (unsigned __int64 *)v35; | |
5320 v37 = v36; | |
5321 //v51 = (unsigned __int64 *)pMonster->vPosition.x; | |
5322 v38 = (double)v35; | |
5323 v39 = (double)(signed int)pMonster->vPosition.x; | |
5324 pDecalBuilder->AddBloodsplat(v39, v38, v37, 1.0, 0.0, 0.0, *(float *)&pPlayerName, 0, 0); | |
5325 } | |
5326 } | |
5327 } | |
5328 Actor::Die(uActorID_Monster_); | |
5329 Actor::ApplyFineForKillingPeasant(uActorID_Monster_); | |
5330 Actor::AggroSurroundingPeasants(uActorID_Monster_, 1); | |
5331 if ( pMonster->pMonsterInfo.uExp ) | |
5332 GivePartyExp(pMonsterStats->pInfos[pMonster->pMonsterInfo.uID].uExp); | |
5333 v40 = SPEECH_51; | |
5334 if ( rand() % 100 < 20 ) | |
5335 v40 = ((signed int)pMonster->pMonsterInfo.uHP >= 100) + 1; | |
5336 player->PlaySound((PlayerSpeech)v40, 0); | |
5337 v41 = 0; | |
5338 if ( bShowDamage ) | |
5339 { | |
5340 v50 = (int)pMonster; | |
5341 pMonsterName = (char *)uDamageAmount; | |
5342 pPlayerName = player->pName; // "%s inflicts %lu points killing %s" | |
5343 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[175], player->pName, uDamageAmount, pMonster); | |
5344 ShowStatusBarString(pTmpBuf.data(), 2u); | |
5345 } | |
5346 } | |
5347 if ( SHIDWORD(pMonster->pActorBuffs[20].uExpireTime) >= (signed int)v41 | |
5348 && (SHIDWORD(pMonster->pActorBuffs[20].uExpireTime) > (signed int)v41 | |
5349 || LODWORD(pMonster->pActorBuffs[20].uExpireTime) > v41) | |
5350 && uDamageAmount != v41 ) | |
5351 player->ReceiveDamage(uDamageAmount, (DAMAGE_TYPE)a2); | |
5352 v50 = 24; | |
5353 v59 = 20 * v61 / (signed int)pMonster->pMonsterInfo.uHP; | |
5354 if ( (player->_48EA46_calc_special_bonus_by_items(24) || hit_will_stun != v41) | |
5355 && stru_50C198.GetMagicalResistance(pMonster, 3u) ) | |
5356 { | |
5357 LODWORD(v42) = 20; | |
5358 v59 = 10; | |
5359 if ( pParty->bTurnBasedModeOn == v41 ) | |
5360 v42 = (signed __int64)(flt_6BE3A8_debug_recmod2 * 42.66666666666666); | |
5361 pMonster->pMonsterInfo.uRecoveryTime += v42; | |
5362 if ( bShowDamage != v41 ) | |
5363 { | |
5364 v50 = (int)pMonster; | |
5365 pMonsterName = player->pName; // "%s stuns %s" | |
5366 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[635], player->pName, pMonster); | |
5367 ShowStatusBarString(pTmpBuf.data(), 2u); | |
5368 } | |
5369 } | |
5370 if ( hit_will_paralyze != v41 ) | |
5371 { | |
5372 if ( pMonster->CanAct() ) | |
5373 { | |
5374 if ( stru_50C198.GetMagicalResistance(pMonster, 3) ) | |
5375 { | |
5376 LOBYTE(v43) = player->GetActualSkillLevel(PLAYER_SKILL_MACE); | |
5377 v44 = v43; | |
5378 v45 = SkillToMastery(v43); | |
5379 //v51 = (unsigned __int64 *)(7680 * (v44 & 0x3F)); | |
5380 v46 = pParty->uTimePlayed + (signed int)(signed __int64)((double)(signed int)(7680 * (v44 & 0x3F)) * 0.033333335); | |
5381 pMonster->pActorBuffs[6].Apply(v46, v45, 0, 0, 0); | |
5382 if ( bShowDamage ) | |
5383 { | |
5384 v50 = (int)pMonster; | |
5385 pMonsterName = player->pName; // "%s paralyzes %s" | |
5386 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[636], player->pName, pMonster); | |
5387 ShowStatusBarString(pTmpBuf.data(), 2u); | |
5388 } | |
5389 } | |
5390 } | |
5391 } | |
5392 if ( v59 > 10 ) | |
5393 v59 = 10; | |
5394 if ( !MonsterStats::BelongsToSupertype(pMonster->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
5395 { | |
5396 pVelocity->x = (unsigned __int64)(v59 * (signed __int64)pVelocity->x) >> 16; | |
5397 pVelocity->y = (unsigned __int64)(v59 * (signed __int64)pVelocity->y) >> 16; | |
5398 pVelocity->z = (unsigned __int64)(v59 * (signed __int64)pVelocity->z) >> 16; | |
5399 pMonster->vVelocity.x = 50 * LOWORD(pVelocity->x); | |
5400 pMonster->vVelocity.y = 50 * LOWORD(pVelocity->y); | |
5401 pMonster->vVelocity.z = 50 * LOWORD(pVelocity->z); | |
5402 } | |
5403 Actor::AddBloodsplatOnDamageOverlay(uActorID_Monster_, 1, v61); | |
5404 } | |
5405 //----- (004BBF61) -------------------------------------------------------- | |
5406 void __fastcall _4BBF61_summon_actor(int a1, __int16 x, int y, int z) | |
5407 { | |
5408 size_t v4; // esi@1 | |
5409 int monster_id; // edi@1 | |
5410 __int16 v6; // ax@4 | |
5411 Actor *v7; // esi@5 | |
5412 int v8; // eax@5 | |
5413 MonsterInfo *v9; // edi@5 | |
5414 MonsterDesc *v10; // ebx@5 | |
5415 unsigned __int16 *v11; // ebx@5 | |
5416 int v12; // ebx@7 | |
5417 int v13; // eax@8 | |
5418 __int16 x_; // [sp+8h] [bp-Ch]@1 | |
5419 __int16 v15; // [sp+Ch] [bp-8h]@1 | |
5420 __int16 v16; // [sp+10h] [bp-4h]@3 | |
5421 signed int ya; // [sp+1Ch] [bp+8h]@5 | |
5422 | |
5423 v4 = uNumActors; | |
5424 monster_id = a1; | |
5425 x_ = x; | |
5426 v15 = a1; | |
5427 if ( (signed int)uNumActors < 500 | |
5428 && ((signed int)pAllocator->uBigBufferSizeAligned >> 10) - ((signed int)pAllocator->uNextFreeOffsetInBigBuffer >> 10) >= 2000 ) | |
5429 { | |
5430 v16 = 0; | |
5431 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
5432 { | |
5433 v6 = pIndoor->GetSector(x, y, z); | |
5434 v4 = uNumActors; | |
5435 v16 = v6; | |
5436 } | |
5437 v7 = &pActors[v4]; | |
5438 v7->Reset(); | |
5439 v8 = monster_id; | |
5440 v9 = &pMonsterStats->pInfos[monster_id]; | |
5441 v10 = &pMonsterList->pMonsters[v8 - 1]; | |
5442 strcpy(v7->pActorName, v9->pName); | |
5443 v7->sCurrentHP = LOWORD(v9->uHP); | |
5444 memcpy(&v7->pMonsterInfo, v9, 0x58u); | |
5445 v7->word_000086_some_monster_id = v15; | |
5446 v7->uActorRadius = v10->uMonsterRadius; | |
5447 v7->uActorHeight = v10->uMonsterHeight; | |
5448 v7->uMovementSpeed = v10->uMovementSpeed; | |
5449 v7->vInitialPosition.x = x_; | |
5450 v7->vPosition.x = x_; | |
5451 BYTE2(v7->uAttributes) |= 8u; | |
5452 v7->pMonsterInfo.uTreasureType = 0; | |
5453 v7->pMonsterInfo.uTreasureLevel = 0; | |
5454 v7->pMonsterInfo.uTreasureDiceSides = 0; | |
5455 v7->pMonsterInfo.uTreasureDiceRolls = 0; | |
5456 v7->pMonsterInfo.uTreasureDropChance = 0; | |
5457 v7->vInitialPosition.y = y; | |
5458 v7->vPosition.y = y; | |
5459 v7->vInitialPosition.z = z; | |
5460 v7->vPosition.z = z; | |
5461 v7->uTetherDistance = 256; | |
5462 v7->uSectorID = v16; | |
5463 v7->uGroup = 1; | |
5464 v7->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
5465 v7->PrepareSprites(0); | |
5466 v11 = v10->pSoundSampleIDs; | |
5467 ya = 4; | |
5468 do | |
5469 { | |
5470 pSoundList->LoadSound((signed __int16)*v11, 0); | |
5471 ++v11; | |
5472 --ya; | |
5473 } | |
5474 while ( ya ); | |
5475 v12 = 0; | |
5476 do | |
5477 LOWORD(v13) = pSoundList->LoadSound(v12++ + word_4EE088_sound_ids[v9->uSpell1ID], 1u); | |
5478 while ( v13 ); | |
5479 ++uNumActors; | |
5480 } | |
1295 | 5481 } |