Mercurial > mm7
annotate Actor.cpp @ 862:f4394e320312
* PID mistake fixed
* Actor::GetDirectionInfo mistake fixed
author | zipi |
---|---|
date | Sun, 31 Mar 2013 13:20:58 +0100 |
parents | fea81e031484 |
children | b7b67485ec43 |
rev | line source |
---|---|
322 | 1 #include <assert.h> |
2 | |
0 | 3 #include "Actor.h" |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
4 #include "SpriteObject.h" |
0 | 5 #include "Math.h" |
6 #include "Party.h" | |
7 #include "Outdoor.h" | |
8 #include "AudioPlayer.h" | |
9 #include "Game.h" | |
10 #include "ObjectList.h" | |
11 #include "Overlays.h" | |
12 #include "Events.h" | |
13 #include "IndoorCamera.h" | |
14 #include "FactionTable.h" | |
15 #include "TurnEngine.h" | |
16 #include "MapInfo.h" | |
17 #include "stru277.h" | |
18 #include "Time.h" | |
19 #include "LOD.h" | |
20 #include "Party.h" | |
21 #include "GUIWindow.h" | |
22 #include "GUIFont.h" | |
23 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
24 #include "MM7.h" |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
25 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
26 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
27 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
28 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
29 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
30 |
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
31 |
0 | 32 Actor pActors[500]; |
760 | 33 int uNumActors; |
0 | 34 |
35 stru319 stru_50C198; // idb | |
36 | |
781 | 37 //----- (00448A40) -------------------------------------------------------- |
38 void Actor::ToggleFlag(signed int uActorID, unsigned int uFlag, int bToggle) | |
39 { | |
40 if ( uActorID >= 0 && uActorID <= (signed int)(uNumActors - 1) ) | |
41 { | |
42 if ( bToggle ) | |
43 { | |
44 pActors[uActorID].uAttributes |= uFlag; | |
45 } | |
46 else | |
47 { | |
48 if ( uFlag == 0x10000 ) | |
49 { | |
50 if (pActors[uActorID].uAIState == Disabled ) | |
51 pActors[uActorID].uAIState = Standing; | |
52 } | |
53 pActors[uActorID].uAttributes &= ~uFlag; | |
54 } | |
55 } | |
56 } | |
0 | 57 |
58 //----- (00448518) -------------------------------------------------------- | |
59 void __fastcall sub_448518_npc_set_item(int npc, unsigned int item, int a3) | |
60 { | |
61 signed int v3; // eax@1 | |
62 int *v4; // edi@2 | |
63 signed int v5; // eax@6 | |
64 char *v6; // ecx@6 | |
65 char *v7; // eax@11 | |
66 ItemGen *v8; // ecx@15 | |
67 | |
68 v3 = 0; | |
69 if ( (signed int)uNumActors > 0 ) | |
70 { | |
602 | 71 v4 = (int *)&pActors[0].sNPC_ID; |
0 | 72 while ( *(short *)v4 != npc ) |
73 { | |
74 ++v3; | |
75 v4 += 209; | |
76 if ( v3 >= (signed int)uNumActors ) | |
77 return; | |
78 } | |
79 v5 = v3; | |
80 v6 = (char *)&pActors[v5].uCarriedItemID; | |
81 if ( a3 ) | |
82 { | |
83 if ( *(short *)v6 ) | |
84 { | |
85 if ( pActors[v5].array_000234[0].uItemID ) | |
86 { | |
87 v7 = (char *)&pActors[v5].array_000234[1]; | |
88 if ( !*(int *)v7 ) | |
89 *(int *)v7 = item; | |
90 } | |
91 else | |
92 { | |
93 pActors[v5].array_000234[0].uItemID = item; | |
94 } | |
95 } | |
96 else | |
97 { | |
98 *(short *)v6 = item; | |
99 } | |
100 } | |
101 else | |
102 { | |
103 if ( *(short *)v6 == item ) | |
104 { | |
105 *(short *)v6 = 0; | |
106 } | |
107 else | |
108 { | |
109 v8 = pActors[v5].array_000234; | |
110 if ( pActors[v5].array_000234[0].uItemID == item | |
111 || (v8 = &pActors[v5].array_000234[1], pActors[v5].array_000234[1].uItemID == item) ) | |
112 v8->Reset(); | |
113 } | |
114 } | |
115 } | |
116 } | |
117 | |
118 //----- (004485A7) -------------------------------------------------------- | |
526 | 119 void Actor::GiveItem(signed int uActorID, unsigned int uItemID, unsigned int bGive) |
0 | 120 { |
121 unsigned int v3; // eax@3 | |
122 char *v4; // ecx@3 | |
526 | 123 int *v5; // eax@8 |
0 | 124 ItemGen *v6; // ecx@12 |
125 | |
526 | 126 if ( (uActorID >= 0) && (signed int)uActorID <= (signed int)(uNumActors - 1) ) |
0 | 127 { |
128 v3 = uActorID; | |
129 v4 = (char *)&pActors[uActorID].uCarriedItemID; | |
130 if ( bGive ) | |
131 { | |
132 if ( *(short *)v4 ) | |
133 { | |
134 if ( pActors[v3].array_000234[0].uItemID ) | |
135 { | |
136 v5 = &pActors[v3].array_000234[1].uItemID; | |
137 if ( !*v5 ) | |
138 *v5 = uItemID; | |
139 } | |
140 else | |
141 { | |
142 pActors[v3].array_000234[0].uItemID = uItemID; | |
143 } | |
144 } | |
145 else | |
146 { | |
147 *(short *)v4 = uItemID; | |
148 } | |
149 } | |
150 else | |
151 { | |
152 if ( *(short *)v4 == uItemID ) | |
153 { | |
154 *(short *)v4 = 0; | |
155 } | |
156 else | |
157 { | |
158 v6 = pActors[v3].array_000234; | |
159 if ( pActors[v3].array_000234[0].uItemID == uItemID | |
160 || (v6 = &pActors[v3].array_000234[1], pActors[v3].array_000234[1].uItemID == uItemID) ) | |
161 v6->Reset(); | |
162 } | |
163 } | |
164 } | |
165 } | |
166 | |
167 //----- (00445D4A) -------------------------------------------------------- | |
168 void Actor::InitializeDialogue(int bPlayerSaysHello) | |
169 { | |
170 Actor *v2; // esi@1 | |
602 | 171 signed int v3; // ecx@1 |
0 | 172 NPCData *v4; // eax@1 |
173 NPCData *v5; // ebp@1 | |
174 unsigned int v6; // eax@1 | |
373 | 175 //signed int v7; // eax@3 |
0 | 176 unsigned int v8; // eax@8 |
177 int v9; // esi@8 | |
178 int v10; // eax@11 | |
179 GUIWindow *v11; // ecx@19 | |
180 signed int v12; // eax@21 | |
187 | 181 //int v13; // [sp-8h] [bp-44h]@34 |
373 | 182 //const char *v14; // [sp-4h] [bp-40h]@4 |
187 | 183 //int v15; // [sp-4h] [bp-40h]@34 |
0 | 184 signed int v16; // [sp-4h] [bp-40h]@35 |
185 int v17; // [sp+10h] [bp-2Ch]@1 | |
186 char pContainer[32]; // [sp+14h] [bp-28h]@3 | |
187 | |
188 auto a1 = this; | |
189 v2 = a1; | |
190 v17 = bPlayerSaysHello; | |
191 dword_A74CDC = -1; | |
192 dword_AE336C = -1; | |
193 pEventTimer->Pause(); | |
194 pMiscTimer->Pause(); | |
195 pAudioPlayer->StopChannels(-1, -1); | |
196 uDialogueType = 0; | |
602 | 197 v3 = v2->sNPC_ID; |
198 sDialogue_SpeakingActorNPC_ID = v2->sNPC_ID; | |
0 | 199 pDialogue_SpeakingActor = v2; |
200 v4 = GetNPCData(v3); | |
201 v5 = v4; | |
202 v6 = v4->uFlags; | |
203 if ( (v6 & 3) != 2 ) | |
204 v5->uFlags = v6 + 1; | |
373 | 205 /*v7 = const_2(); |
0 | 206 sprintf(pContainer, "evt%02d", v7); |
373 | 207 if (pParty->alignment == PartyAlignment_Good) |
0 | 208 { |
209 v14 = "-b"; | |
210 strcat(pContainer, v14); | |
211 } | |
245 | 212 else if ( pParty->uAlignment == 2 ) |
0 | 213 { |
214 v14 = "-c"; | |
245 | 215 strcat(pContainer, v14); |
373 | 216 }*/ |
217 | |
218 switch (pParty->alignment) | |
219 { | |
220 case PartyAlignment_Good: sprintf(pContainer, "evt%02d-b", const_2()); break; | |
221 case PartyAlignment_Neutral: sprintf(pContainer, "evt%02d", const_2()); break; | |
222 case PartyAlignment_Evil: sprintf(pContainer, "evt%02d-c", const_2()); break; | |
0 | 223 } |
373 | 224 |
0 | 225 v8 = pIcons_LOD->LoadTexture(pContainer, TEXTURE_16BIT_PALETTE); |
457 | 226 pDialogueNPCCount = 0; |
0 | 227 uNumDialogueNPCPortraits = 1; |
228 pTexture_Dialogue_Background = &pIcons_LOD->pTextures[v8]; | |
229 sprintf(pContainer, "npc%03u", v5->uPortraitID); | |
230 v9 = 0; | |
231 pDialogueNPCPortraits[0] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture(pContainer, TEXTURE_16BIT_PALETTE)]; | |
232 dword_591084 = areWeLoadingTexture; | |
233 uTextureID_507B04 = uTextureID_right_panel; | |
291 | 234 if ( !v5->Hired() && v5->Location2D >= 0 ) |
0 | 235 { |
236 if ( (signed int)pParty->GetPartyFame() <= v5->fame | |
237 || (v10 = v5->uFlags & 0xFFFFFF7F, (v5->uFlags & 0xFFFFFF7F & 0x80000000u) != 0) ) | |
238 { | |
239 v9 = 1; | |
240 } | |
245 | 241 else |
242 { | |
243 if ( v10 > 1 ) | |
244 { | |
245 if ( v10 == 2 ) | |
246 { | |
247 v16 = 3; | |
248 v9 = v16; | |
249 } | |
250 else | |
251 { | |
252 if ( v10 != 3 ) | |
253 { | |
254 if ( v10 != 4 ) | |
255 v9 = 1; | |
256 } | |
257 else | |
258 { | |
259 v16 = 2; | |
260 v9 = v16; | |
261 } | |
262 } | |
263 } | |
264 else if ( v5->rep ) | |
265 { | |
266 v16 = 2; | |
267 v9 = v16; | |
268 } | |
269 } | |
0 | 270 } |
602 | 271 if ( (sDialogue_SpeakingActorNPC_ID & 0x80000000u) != 0 ) |
0 | 272 v9 = 4; |
273 v11 = GUIWindow::Create(0, 0, 640, 480, (enum WindowType)10, v9, 0); | |
274 pDialogueWindow = v11; | |
248 | 275 if (v5->Hired()) |
0 | 276 { |
277 if ( !v5->bHasUsedTheAbility ) | |
278 { | |
279 v12 = v5->uProfession; | |
280 if ( v12 >= 10 ) | |
281 { | |
282 if ( v12 <= 12 || v12 > 32 && (v12 <= 34 || v12 > 38 && (v12 <= 43 || v12 == 52)) ) | |
283 { | |
284 v11->CreateButton( | |
285 0x1E0u, | |
286 0xFAu, | |
287 0x8Cu, | |
288 LOBYTE(pFontArrus->uFontHeight) - 3, | |
289 1, | |
290 0, | |
832 | 291 UIMSG_SelectNPCDialogueOption, |
0 | 292 9u, |
293 0, | |
294 "", | |
295 0); | |
296 pDialogueWindow->_41D08F(4, 1, 0, 1); | |
297 } | |
298 } | |
299 } | |
300 } | |
832 | 301 pDialogueWindow->CreateButton(61u, 424u, 0x1Fu, 0x28u, 2, 94, UIMSG_SelectCharacter, 1u, 0x31u, "", 0); |
302 pDialogueWindow->CreateButton(177u, 424u, 0x1Fu, 0x28u, 2, 94, UIMSG_SelectCharacter, 2u, 0x32u, "", 0); | |
303 pDialogueWindow->CreateButton(292u, 424u, 0x1Fu, 0x28u, 2, 94, UIMSG_SelectCharacter, 3u, 0x33u, "", 0); | |
304 pDialogueWindow->CreateButton(407u, 424u, 0x1Fu, 0x28u, 2, 94, UIMSG_SelectCharacter, 4u, 0x34u, "", 0); | |
248 | 305 if (v17 && uActiveCharacter && !v5->Hired()) |
0 | 306 { |
187 | 307 if (pParty->uCurrentHour < 5 || pParty->uCurrentHour > 21) |
188 | 308 pPlayers[uActiveCharacter]->PlaySound(SPEECH_GoodEvening, 0); |
0 | 309 else |
188 | 310 pPlayers[uActiveCharacter]->PlaySound(SPEECH_GoodDay, 0); |
0 | 311 } |
312 } | |
188 | 313 |
0 | 314 //----- (0040894B) -------------------------------------------------------- |
315 bool Actor::CanAct() | |
316 { | |
317 signed int v1; // esi@1 | |
318 bool v2; // edi@2 | |
319 unsigned __int16 v3; // ax@6 | |
320 | |
321 v1 = 0; | |
322 v2 = (signed __int64)this->pActorBuffs[5].uExpireTime > 0;// stoned | |
323 if ( (signed __int64)this->pActorBuffs[6].uExpireTime > 0 )// paralyzed | |
324 v1 = 1; | |
325 v3 = this->uAIState; | |
326 return (v2 | v1 | v3 == Dying | v3 == Dead | v3 == Removed | v3 == Summoned | v3 == Disabled) == 0; | |
327 } | |
328 | |
329 //----- (004089C7) -------------------------------------------------------- | |
303 | 330 bool Actor::IsNotAlive() |
0 | 331 { |
332 signed int v1; // esi@1 | |
303 | 333 //unsigned __int16 v2; // ax@3 |
0 | 334 |
335 v1 = 0; | |
303 | 336 if (pActorBuffs[5].uExpireTime) |
0 | 337 v1 = 1; |
303 | 338 //v2 = this->uAIState; |
339 return (v1 | (uAIState == Dying) | (uAIState == Dead) | (uAIState == Removed) | (uAIState == Summoned) | (uAIState == Disabled)) != 0; | |
0 | 340 } |
341 | |
342 //----- (004086E9) -------------------------------------------------------- | |
343 void Actor::SetRandomGoldIfTheresNoItem() | |
344 { | |
345 Actor *v1; // esi@1 | |
346 int v2; // edi@1 | |
347 signed int v3; // ebx@2 | |
348 unsigned __int8 v4; // al@7 | |
349 | |
350 v1 = this; | |
351 v2 = 0; | |
352 if ( !this->array_000234[3].uItemID ) | |
353 { | |
354 v3 = 0; | |
355 if ( this->pMonsterInfo.uTreasureDiceRolls ) | |
356 { | |
357 do | |
358 { | |
359 ++v3; | |
360 v2 += rand() % v1->pMonsterInfo.uTreasureDiceSides + 1; | |
361 } | |
362 while ( v3 < v1->pMonsterInfo.uTreasureDiceRolls ); | |
363 if ( v2 ) | |
364 { | |
365 v1->array_000234[3].uItemID = 197; | |
377 | 366 v1->array_000234[3].uSpecEnchantmentType = v2; |
0 | 367 } |
368 } | |
369 } | |
370 if ( rand() % 100 < v1->pMonsterInfo.uTreasureDropChance ) | |
371 { | |
372 v4 = v1->pMonsterInfo.uTreasureLevel; | |
373 if ( v4 ) | |
374 pItemsTable->GenerateItem(v4, v1->pMonsterInfo.uTreasureType, &v1->array_000234[2]); | |
375 } | |
376 v1->uAttributes |= 0x800000; | |
377 } | |
378 | |
379 //----- (00404AC7) -------------------------------------------------------- | |
860 | 380 void __fastcall Actor::SpellAttack(unsigned int uActorID, AIDirection *pDir, int spellnum, int a4, unsigned int uSkillLevel) |
0 | 381 { |
382 Actor *v5; // esi@1 | |
383 unsigned int v6; // edi@1 | |
384 unsigned int v7; // eax@1 | |
385 int v8; // edi@16 | |
386 int v9; // edi@17 | |
387 signed int v10; // ecx@22 | |
388 signed int v11; // eax@29 | |
389 __int16 *v12; // edi@30 | |
390 int v13; // ecx@34 | |
391 int v14; // edx@34 | |
392 int v15; // eax@34 | |
393 AIDirection *v16; // esi@34 | |
394 unsigned __int16 v17; // di@34 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
395 //int v18; // eax@34 |
0 | 396 int v19; // edi@34 |
397 int v20; // eax@35 | |
398 int v21; // eax@39 | |
399 SoundID v22; // eax@39 | |
400 signed int v23; // eax@41 | |
401 double v24; // st7@49 | |
402 float v25; // ST5C_4@50 | |
403 int v26; // eax@50 | |
404 double v27; // st7@50 | |
405 double v28; // st6@50 | |
406 float v29; // ST4C_4@51 | |
407 int v30; // esi@50 | |
408 int v31; // ST3C_4@51 | |
409 unsigned int v32; // edi@51 | |
410 char *v33; // eax@54 | |
411 unsigned __int16 v34; // ax@57 | |
412 signed int v35; // ecx@58 | |
413 signed int v36; // eax@67 | |
414 signed int v37; // eax@68 | |
415 signed __int64 v38; // qtt@69 | |
416 int v39; // ecx@75 | |
417 int v40; // eax@79 | |
418 int v41; // ecx@90 | |
419 int v42; // ecx@91 | |
420 int v43; // eax@95 | |
421 int v44; // ecx@100 | |
422 int v45; // ecx@101 | |
423 int v46; // eax@105 | |
424 unsigned int v47; // ebx@106 | |
425 int v48; // ecx@110 | |
426 char v49; // zf@123 | |
427 int v50; // eax@127 | |
428 int v51; // ecx@130 | |
429 int v52; // eax@132 | |
430 int v53; // ecx@137 | |
431 int v54; // ecx@138 | |
432 int v55; // eax@142 | |
433 SpellBuff *v56; // esi@143 | |
434 Player **v57; // esi@145 | |
435 int v58; // eax@146 | |
436 int v59; // edi@146 | |
437 int v60; // eax@146 | |
438 int v61; // edi@146 | |
439 int v62; // eax@146 | |
440 signed int v63; // edi@146 | |
441 signed int v64; // edi@147 | |
442 int v65; // eax@151 | |
443 char *v66; // eax@160 | |
444 int v67; // edi@167 | |
445 int v68; // edi@168 | |
446 int v69; // eax@171 | |
447 signed int v70; // ecx@172 | |
448 signed int v71; // eax@179 | |
449 __int16 *v72; // edi@180 | |
450 int v73; // ecx@184 | |
451 int v74; // edx@184 | |
452 int v75; // eax@184 | |
453 AIDirection *v76; // esi@184 | |
454 unsigned __int16 v77; // di@184 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
455 //int v78; // eax@184 |
0 | 456 int v79; // edx@185 |
457 int v80; // eax@185 | |
458 int v81; // eax@189 | |
459 unsigned __int16 v82; // ax@190 | |
460 int v83; // ecx@192 | |
461 int v84; // edx@192 | |
462 int v85; // eax@192 | |
463 AIDirection *v86; // esi@192 | |
464 unsigned __int16 v87; // di@192 | |
465 __int16 v88; // ax@192 | |
466 signed int v89; // ecx@192 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
467 //int v90; // eax@192 |
0 | 468 signed int v91; // eax@200 |
469 int v92; // eax@201 | |
470 int v93; // ecx@207 | |
471 int v94; // ecx@208 | |
472 int v95; // eax@212 | |
473 int v96; // ecx@217 | |
474 int v97; // eax@221 | |
475 SoundID v98; // [sp-18h] [bp-E8h]@79 | |
476 signed int v99; // [sp-14h] [bp-E4h]@39 | |
477 unsigned int v100; // [sp-10h] [bp-E0h]@39 | |
478 signed int v101; // [sp-Ch] [bp-DCh]@39 | |
479 signed int v102; // [sp-8h] [bp-D8h]@39 | |
480 int v103; // [sp-4h] [bp-D4h]@39 | |
481 unsigned int v104; // [sp+0h] [bp-D0h]@39 | |
482 signed int v105; // [sp+4h] [bp-CCh]@23 | |
483 int v106; // [sp+4h] [bp-CCh]@39 | |
484 signed int v107; // [sp+4h] [bp-CCh]@42 | |
485 signed int v108; // [sp+4h] [bp-CCh]@173 | |
486 int pitch; // [sp+2Ch] [bp-A4h]@51 | |
487 float v110; // [sp+30h] [bp-A0h]@50 | |
488 int v111; // [sp+38h] [bp-98h]@41 | |
489 float v112; // [sp+3Ch] [bp-94h]@49 | |
490 int v113; // [sp+40h] [bp-90h]@41 | |
491 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
|
492 SpriteObject a1; // [sp+4Ch] [bp-84h]@1 |
0 | 493 int v116; // [sp+BCh] [bp-14h]@49 |
494 AIDirection *v117; // [sp+C0h] [bp-10h]@1 | |
495 int v118; // [sp+C4h] [bp-Ch]@29 | |
496 float v119; // [sp+C8h] [bp-8h]@48 | |
497 float v120; // [sp+CCh] [bp-4h]@1 | |
498 int spellnuma; // [sp+D8h] [bp+8h]@29 | |
499 int spellnumb; // [sp+D8h] [bp+8h]@48 | |
500 float spellnumc; // [sp+D8h] [bp+8h]@50 | |
501 signed int spellnumd; // [sp+D8h] [bp+8h]@53 | |
502 int spellnume; // [sp+D8h] [bp+8h]@179 | |
503 int a1a; // [sp+E0h] [bp+10h]@34 | |
504 signed int a1b; // [sp+E0h] [bp+10h]@145 | |
505 int a1c; // [sp+E0h] [bp+10h]@184 | |
506 | |
507 LODWORD(v120) = uActorID; | |
508 v5 = &pActors[uActorID]; | |
509 v117 = pDir; | |
510 v6 = uSkillLevel & 0x3F; | |
511 v7 = SkillToMastery(uSkillLevel); | |
512 if ( spellnum <= 47 ) | |
513 { | |
514 if ( spellnum != 47 ) | |
515 { | |
516 if ( spellnum <= 18 ) | |
517 { | |
518 if ( spellnum == 18 || spellnum == 2 ) | |
519 goto LABEL_159; | |
520 if ( spellnum != 5 ) | |
521 { | |
522 if ( spellnum == 6 ) | |
523 goto LABEL_159; | |
524 if ( spellnum != 9 ) | |
525 { | |
526 if ( spellnum != 11 ) | |
527 { | |
528 if ( spellnum != 15 ) | |
529 { | |
530 if ( spellnum != 17 ) | |
531 return; | |
532 if ( (signed int)v7 <= 0 ) | |
533 goto LABEL_20; | |
534 if ( (signed int)v7 <= 2 ) | |
535 { | |
536 v9 = 300 * v6; | |
537 } | |
538 else | |
539 { | |
540 if ( v7 != 3 ) | |
541 { | |
542 if ( v7 == 4 ) | |
543 { | |
544 v8 = 3600 * (v6 + 64); | |
545 LABEL_21: | |
546 v5->pActorBuffs[15].Apply( | |
547 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v8 << 7) * 0.033333335), | |
548 v7, | |
549 0, | |
550 0, | |
551 0); | |
552 return; | |
553 } | |
554 LABEL_20: | |
555 v8 = 0; | |
556 goto LABEL_21; | |
557 } | |
558 v9 = 900 * v6; | |
559 } | |
560 v8 = v9 + 3840; | |
561 goto LABEL_21; | |
562 } | |
563 v10 = 3; | |
564 if ( uSkillLevel & 0x0100 ) | |
565 { | |
566 v105 = 9; | |
567 } | |
568 else | |
569 { | |
570 if ( (uSkillLevel & 0x80u) == 0 ) | |
571 { | |
572 if ( !(uSkillLevel & 0x40) ) | |
573 goto LABEL_29; | |
574 v105 = 5; | |
575 } | |
576 else | |
577 { | |
578 v105 = 7; | |
579 } | |
580 } | |
581 v10 = v105; | |
582 LABEL_29: | |
583 spellnuma = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
584 a1.uType = stru_4E3ACC[15].field_0; |
0 | 585 v118 = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360 / (v10 - 1); |
586 v11 = 0; | |
587 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
588 { | |
589 LABEL_33: | |
590 LOWORD(v11) = 0; | |
591 } | |
592 else | |
593 { | |
594 v12 = &pObjectList->pObjects->uObjectID; | |
488 | 595 while ( stru_4E3ACC[15].field_0 != *v12 ) |
0 | 596 { |
597 ++v11; | |
598 v12 += 28; | |
599 if ( v11 >= (signed int)pObjectList->uNumObjects ) | |
600 goto LABEL_33; | |
601 } | |
602 } | |
603 a1.uObjectDescID = v11; | |
604 a1.stru_24.Reset(); | |
822 | 605 a1.spell_id = SPELL_AIR_SPARKS; |
0 | 606 v13 = v5->vPosition.x; |
607 v14 = v5->vPosition.y; | |
822 | 608 a1.spell_level = uSkillLevel; |
0 | 609 a1.vPosition.x = v13; |
610 v15 = v5->vPosition.z + ((signed int)v5->uActorHeight >> 1); | |
611 v16 = v117; | |
612 v17 = LOWORD(v117->uYawAngle); | |
822 | 613 a1.spell_skill = 0; |
0 | 614 a1.vPosition.y = v14; |
615 a1.vPosition.z = v15; | |
616 a1.uFacing = v17; | |
617 a1.uSoundID = 0; | |
618 a1.uAttributes = 0; | |
619 a1.uSectorID = pIndoor->GetSector(v13, v14, v15); | |
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)); |
0 | 621 a1.uSpriteFrameID = 0; |
823 | 622 a1.spell_target_pid = 0; |
0 | 623 a1.field_60_distance_related_prolly_lod = 3; |
624 v19 = spellnuma / -2; | |
625 a1a = spellnuma / 2; | |
626 if ( spellnuma / -2 > spellnuma / 2 ) | |
627 { | |
628 v20 = spellnuma / 2; | |
629 } | |
630 else | |
631 { | |
632 do | |
633 { | |
634 a1.uFacing = v19 + LOWORD(v16->uYawAngle); | |
635 v20 = a1.Create( | |
636 (signed __int16)a1.uFacing, | |
637 v16->uPitchAngle, | |
638 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
639 0); | |
640 v19 += v118; | |
641 } | |
642 while ( v19 <= a1a ); | |
643 } | |
644 if ( v20 != -1 ) | |
645 { | |
646 v106 = 0; | |
647 v104 = 0; | |
648 v103 = 0; | |
649 v102 = 0; | |
650 v21 = 8 * v20; | |
651 v101 = -1; | |
652 LOBYTE(v21) = v21 | 2; | |
653 v100 = 0; | |
654 v99 = v21; | |
655 v22 = (SoundID)word_4EE088_sound_ids[15]; | |
656 LABEL_202: | |
657 v98 = v22; | |
658 goto LABEL_222; | |
659 } | |
660 return; | |
661 } | |
662 LABEL_159: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
663 a1.uType = stru_4E3ACC[spellnum].field_0; |
0 | 664 v119 = 0.0; |
665 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
666 { | |
667 LABEL_191: | |
668 v82 = 0; | |
669 } | |
670 else | |
671 { | |
672 v66 = (char *)&pObjectList->pObjects->uObjectID; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
673 while ( (short)a1.uType != *(short *)v66 ) |
0 | 674 { |
675 ++LODWORD(v119); | |
676 v66 += 56; | |
677 if ( SLODWORD(v119) >= (signed int)pObjectList->uNumObjects ) | |
678 goto LABEL_191; | |
679 } | |
680 v82 = LOWORD(v119); | |
681 } | |
682 a1.uObjectDescID = v82; | |
683 a1.stru_24.Reset(); | |
822 | 684 a1.spell_id = spellnum; |
0 | 685 v83 = v5->vPosition.x; |
686 v84 = v5->vPosition.y; | |
822 | 687 a1.spell_level = uSkillLevel; |
0 | 688 a1.vPosition.x = v83; |
689 v85 = v5->vPosition.z + ((signed int)v5->uActorHeight >> 1); | |
690 v86 = v117; | |
691 v87 = LOWORD(v117->uYawAngle); | |
822 | 692 a1.spell_skill = 0; |
0 | 693 a1.vPosition.y = v84; |
694 a1.vPosition.z = v85; | |
695 a1.uFacing = v87; | |
696 a1.uSoundID = 0; | |
697 a1.uAttributes = 0; | |
698 v88 = pIndoor->GetSector(v83, v84, v85); | |
699 v89 = v86->uDistance; | |
700 a1.uSectorID = v88; | |
701 LODWORD(v119) = v89; | |
702 a1.uSpriteFrameID = 0; | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
703 a1.spell_caster_pid = PID(OBJECT_Actor, LODWORD(v120)); |
823 | 704 a1.spell_target_pid = 0; |
0 | 705 a1.field_60_distance_related_prolly_lod = 3; |
706 if ( (double)v89 >= 307.2 ) | |
707 { | |
708 if ( v89 >= 1024 ) | |
709 { | |
710 if ( v89 >= 2560 ) | |
711 { | |
712 if ( v89 < 5120 ) | |
713 a1.field_60_distance_related_prolly_lod = 3; | |
714 } | |
715 else | |
716 { | |
717 a1.field_60_distance_related_prolly_lod = 2; | |
718 } | |
719 } | |
720 else | |
721 { | |
722 a1.field_60_distance_related_prolly_lod = 1; | |
723 } | |
724 } | |
725 else | |
726 { | |
727 a1.field_60_distance_related_prolly_lod = 0; | |
728 } | |
729 a1.field_61 = 2; | |
730 v91 = a1.Create( | |
731 v86->uYawAngle, | |
732 v86->uPitchAngle, | |
733 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
734 0); | |
735 if ( v91 != -1 ) | |
736 { | |
737 v106 = 0; | |
738 v104 = 0; | |
739 v103 = 0; | |
740 v102 = 0; | |
741 v92 = 8 * v91; | |
742 v101 = -1; | |
743 LOBYTE(v92) = v92 | 2; | |
744 v100 = 0; | |
745 v99 = v92; | |
746 v22 = (SoundID)word_4EE088_sound_ids[spellnum]; | |
747 goto LABEL_202; | |
748 } | |
749 return; | |
750 } | |
751 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
752 return; | |
753 v118 = pParty->vPosition.z; | |
754 v111 = pParty->vPosition.x; | |
755 v114 = pParty->vPosition.z + 2500; | |
756 v113 = pParty->vPosition.y; | |
757 v23 = 8; | |
758 if ( uSkillLevel & 0x0100 ) | |
759 { | |
760 v107 = 14; | |
761 } | |
762 else | |
763 { | |
764 if ( (uSkillLevel & 0x80u) == 0 ) | |
765 { | |
766 if ( !(uSkillLevel & 0x40) ) | |
767 goto LABEL_48; | |
768 v107 = 10; | |
769 } | |
770 else | |
771 { | |
772 v107 = 12; | |
773 } | |
774 } | |
775 v23 = v107; | |
776 LABEL_48: | |
777 v119 = 0.0; | |
778 spellnumb = 0; | |
779 if ( v23 > 0 ) | |
780 { | |
781 v24 = (double)v118; | |
782 v118 = v23; | |
783 v112 = v24; | |
862 | 784 v116 = PID(OBJECT_Actor,LODWORD(v120)); |
0 | 785 do |
786 { | |
787 v26 = rand(); | |
788 v27 = (double)spellnumb; | |
789 v110 = v27; | |
790 v28 = (double)SLODWORD(v119); | |
791 v30 = v26 % 1000; | |
792 v25 = (double)v114; | |
793 spellnumc = (double)(v26 % 1000) + v112 - v25; | |
794 v120 = v28 * v28; | |
795 v119 = v27 * v27; | |
796 if ( sqrt(spellnumc * spellnumc + v119 + v120) <= 1.0 ) | |
797 { | |
798 v32 = 0; | |
799 pitch = 0; | |
800 } | |
801 else | |
802 { | |
803 v31 = (signed __int64)sqrt(v119 + v120); | |
804 v29 = v28; | |
805 v32 = stru_5C6E00->Atan2((signed __int64)v110, (signed __int64)v29); | |
806 pitch = stru_5C6E00->Atan2(v31, (signed __int64)spellnumc); | |
807 } | |
808 a1.stru_24.Reset(); | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
809 a1.uType = stru_4E3ACC[9].field_0; |
0 | 810 spellnumd = 0; |
811 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
812 { | |
813 LABEL_57: | |
814 v34 = 0; | |
815 } | |
816 else | |
817 { | |
818 v33 = (char *)&pObjectList->pObjects->uObjectID; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
819 while ( (short)a1.uType != *(short *)v33 ) |
0 | 820 { |
821 ++spellnumd; | |
822 v33 += 56; | |
823 if ( spellnumd >= (signed int)pObjectList->uNumObjects ) | |
824 goto LABEL_57; | |
825 } | |
826 v34 = spellnumd; | |
827 } | |
828 a1.uObjectDescID = v34; | |
822 | 829 a1.spell_level = uSkillLevel; |
0 | 830 a1.vPosition.x = v111; |
831 a1.vPosition.y = v113; | |
832 a1.vPosition.z = v30 + v114; | |
822 | 833 a1.spell_id = SPELL_FIRE_METEOR_SHOWER; |
834 a1.spell_skill = 0; | |
0 | 835 a1.uAttributes = 0; |
836 a1.uSectorID = 0; | |
837 a1.uSpriteFrameID = 0; | |
822 | 838 a1.spell_caster_pid = v116; |
823 | 839 a1.spell_target_pid = 0; |
0 | 840 a1.field_60_distance_related_prolly_lod = stru_50C198._427546(v30 + 2500); |
841 a1.uFacing = v32; | |
842 a1.uSoundID = 0; | |
843 v35 = v117->uDistance; | |
844 LODWORD(v119) = v117->uDistance; | |
845 if ( (double)SLODWORD(v119) >= 307.2 ) | |
846 { | |
847 if ( v35 >= 1024 ) | |
848 { | |
849 if ( v35 >= 2560 ) | |
850 { | |
851 if ( v35 < 5120 ) | |
852 a1.field_60_distance_related_prolly_lod = 3; | |
853 } | |
854 else | |
855 { | |
856 a1.field_60_distance_related_prolly_lod = 2; | |
857 } | |
858 } | |
859 else | |
860 { | |
861 a1.field_60_distance_related_prolly_lod = 1; | |
862 } | |
863 } | |
864 else | |
865 { | |
866 a1.field_60_distance_related_prolly_lod = 0; | |
867 } | |
868 a1.field_61 = 2; | |
869 v36 = a1.Create( | |
870 v32, | |
871 pitch, | |
872 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
873 0); | |
874 if ( v36 != -1 ) | |
875 { | |
876 v37 = 8 * v36; | |
877 LOBYTE(v37) = v37 | 2; | |
878 pAudioPlayer->PlaySound((SoundID)word_4EE088_sound_ids[9], v37, 0, -1, 0, 0, 0, 0); | |
879 } | |
880 spellnumb = rand() % 1024 - 512; | |
881 v38 = rand(); | |
882 v49 = v118-- == 1; | |
883 LODWORD(v119) = (unsigned __int64)(v38 % 1024) - 512; | |
884 } | |
885 while ( !v49 ); | |
886 } | |
887 return; | |
888 } | |
889 if ( (signed int)v7 > 0 ) | |
890 { | |
891 if ( (signed int)v7 <= 2 ) | |
892 { | |
893 v39 = 60 * (v6 + 60); | |
894 goto LABEL_79; | |
895 } | |
896 if ( v7 == 3 ) | |
897 { | |
898 v39 = 180 * (v6 + 20); | |
899 goto LABEL_79; | |
900 } | |
901 if ( v7 == 4 ) | |
902 { | |
903 v39 = 240 * (v6 + 15); | |
904 LABEL_79: | |
905 v5->pActorBuffs[19].Apply( | |
906 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v39 << 7) * 0.033333335), | |
907 v7, | |
908 0, | |
909 0, | |
910 0); | |
911 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xFF3C1Eu); | |
912 v106 = 0; | |
913 v104 = 0; | |
914 v103 = 0; | |
915 v102 = 0; | |
916 v40 = 8 * LODWORD(v120); | |
917 v101 = -1; | |
862 | 918 LOBYTE(v40) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 919 v100 = 0; |
920 v99 = v40; | |
921 v98 = (SoundID)10040; | |
922 LABEL_222: | |
923 pAudioPlayer->PlaySound(v98, v99, v100, v101, v102, v103, v104, v106); | |
924 return; | |
925 } | |
926 } | |
927 v39 = 0; | |
928 goto LABEL_79; | |
929 } | |
930 if ( spellnum == 26 || spellnum == 29 ) | |
931 goto LABEL_159; | |
932 if ( spellnum != 38 ) | |
933 { | |
934 if ( spellnum == 39 || spellnum == 41 ) | |
935 goto LABEL_159; | |
936 if ( spellnum != 46 ) | |
937 return; | |
938 if ( (signed int)v7 > 0 ) | |
939 { | |
940 if ( (signed int)v7 <= 2 ) | |
941 { | |
942 v41 = 300 * v6; | |
943 goto LABEL_91; | |
944 } | |
945 if ( v7 == 3 ) | |
946 { | |
947 v41 = 900 * v6; | |
948 goto LABEL_91; | |
949 } | |
950 if ( v7 == 4 ) | |
951 { | |
952 v41 = 1200 * v6; | |
953 LABEL_91: | |
954 v42 = v41 + 3840; | |
955 LABEL_95: | |
956 v5->pActorBuffs[17].Apply( | |
957 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v42 << 7) * 0.033333335), | |
958 v7, | |
959 v6 + 5, | |
960 0, | |
961 0); | |
962 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff( | |
963 v5, | |
964 (unsigned int)((char *)&pDecalBuilder->std__vector_pDecals[557].pVertices[57].vWorldPosition.x + 1)); | |
965 v106 = 0; | |
966 v104 = 0; | |
967 v103 = 0; | |
968 v102 = 0; | |
969 v43 = 8 * LODWORD(v120); | |
970 v101 = -1; | |
862 | 971 LOBYTE(v43) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 972 v100 = 0; |
973 v99 = v43; | |
974 v98 = (SoundID)14010; | |
975 goto LABEL_222; | |
976 } | |
977 } | |
978 v42 = 0; | |
979 goto LABEL_95; | |
980 } | |
981 if ( (signed int)v7 <= 0 ) | |
982 goto LABEL_104; | |
983 if ( (signed int)v7 <= 2 ) | |
984 { | |
985 v45 = 300 * v6; | |
986 } | |
987 else | |
988 { | |
989 if ( v7 != 3 ) | |
990 { | |
991 if ( v7 == 4 ) | |
992 { | |
993 v44 = 3600 * (v6 + 64); | |
994 LABEL_105: | |
995 v5->pActorBuffs[16].Apply( | |
996 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v44 << 7) * 0.033333335), | |
997 v7, | |
998 v6 + 5, | |
999 0, | |
1000 0); | |
1001 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff( | |
1002 v5, | |
307 | 1003 (unsigned int)((char *)&pLevelEVT_Index[4335].uEventID + 2)); |
0 | 1004 v106 = 0; |
1005 v104 = 0; | |
1006 v103 = 0; | |
1007 v102 = 0; | |
1008 v46 = 8 * LODWORD(v120); | |
1009 v101 = -1; | |
862 | 1010 LOBYTE(v46) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1011 v100 = 0; |
1012 v99 = v46; | |
1013 v98 = (SoundID)13040; | |
1014 goto LABEL_222; | |
1015 } | |
1016 LABEL_104: | |
1017 v44 = 0; | |
1018 goto LABEL_105; | |
1019 } | |
1020 v45 = 900 * v6; | |
1021 } | |
1022 v44 = v45 + 3840; | |
1023 goto LABEL_105; | |
1024 } | |
1025 v47 = 0; | |
1026 if ( (signed int)v7 > 0 ) | |
1027 { | |
1028 if ( (signed int)v7 <= 2 ) | |
1029 { | |
1030 v48 = 2 * v6 + 40; | |
1031 goto LABEL_114; | |
1032 } | |
1033 if ( v7 == 3 ) | |
1034 { | |
1035 v48 = 3 * v6 + 60; | |
1036 goto LABEL_114; | |
1037 } | |
1038 if ( v7 == 4 ) | |
1039 { | |
1040 LOWORD(v48) = 2 * (3 * v6 + 60); | |
1041 LABEL_114: | |
1042 v5->pActorBuffs[11].Apply(pParty->uTimePlayed + 1280, v7, v48, 0, 0); | |
1043 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff( | |
1044 v5, | |
1045 (unsigned int)((char *)&pDecalBuilder->std__vector_pDecals[557].pVertices[57].vWorldPosition.x + 1)); | |
1046 LABEL_127: | |
1047 v106 = v47; | |
1048 v104 = v47; | |
1049 v103 = v47; | |
1050 v50 = 8 * LODWORD(v120); | |
1051 v102 = v47; | |
1052 v101 = -1; | |
862 | 1053 LOBYTE(v50) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1054 v100 = v47; |
1055 v99 = v50; | |
1056 v98 = (SoundID)14020; | |
1057 goto LABEL_222; | |
1058 } | |
1059 } | |
1060 LOWORD(v48) = 0; | |
1061 goto LABEL_114; | |
1062 } | |
1063 if ( spellnum <= 80 ) | |
1064 { | |
1065 if ( spellnum == 80 ) | |
1066 { | |
1067 v56 = pParty->pPartyBuffs; | |
1068 do | |
1069 { | |
1070 v56->Reset(); | |
1071 ++v56; | |
1072 } | |
1073 while ( (signed int)v56 < (signed int)pParty->pPlayers ); | |
1074 a1b = 1; | |
1075 v57 = &pPlayers[1]; | |
1076 do | |
1077 { | |
1078 v58 = (*v57)->GetActualWillpower(); | |
1079 v59 = (*v57)->_48EA1B_get_static_effect(v58); | |
1080 v60 = (*v57)->GetActualIntelligence(); | |
1081 v61 = ((*v57)->_48EA1B_get_static_effect(v60) + v59) >> 1; | |
1082 v62 = (*v57)->GetActualLuck(); | |
1083 v63 = v61 + (*v57)->_48EA1B_get_static_effect(v62) + 30; | |
1084 if ( rand() % v63 < 30 ) | |
1085 { | |
1086 v64 = 6048; | |
1087 do | |
1088 { | |
1089 ((SpellBuff *)((char *)*v57 + v64))->Reset(); | |
1090 v64 += 16; | |
1091 } | |
1092 while ( v64 < 6432 ); | |
1093 pOtherOverlayList->_4418B1(11210, a1b + 99, 0, 65536); | |
1094 } | |
1095 ++a1b; | |
1096 ++v57; | |
1097 } | |
1098 while ( (signed int)v57 <= (signed int)&pPlayers[4] ); | |
1099 v106 = 0; | |
1100 v104 = 0; | |
1101 v103 = 0; | |
1102 v65 = 8 * LODWORD(v120); | |
1103 v102 = 0; | |
1104 v101 = -1; | |
862 | 1105 LOBYTE(v65) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1106 v100 = 0; |
1107 v99 = v65; | |
1108 v22 = (SoundID)word_4EE088_sound_ids[80]; | |
1109 goto LABEL_202; | |
1110 } | |
1111 if ( spellnum != 51 ) | |
1112 { | |
1113 if ( spellnum == 57 || spellnum == 65 || spellnum == 70 ) | |
1114 goto LABEL_159; | |
1115 if ( spellnum == 73 ) | |
1116 { | |
1117 if ( (signed int)v7 <= 0 || (signed int)v7 > 4 ) | |
1118 v51 = 0; | |
1119 else | |
1120 v51 = 3600 * v6; | |
1121 v5->pActorBuffs[21].Apply( | |
1122 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v51 << 7) * 0.033333335), | |
1123 v7, | |
1124 v6, | |
1125 0, | |
1126 0); | |
1127 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xA81376u); | |
1128 v106 = 0; | |
1129 v104 = 0; | |
1130 v103 = 0; | |
1131 v102 = 0; | |
1132 v52 = 8 * LODWORD(v120); | |
1133 v101 = -1; | |
862 | 1134 LOBYTE(v52) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1135 v100 = 0; |
1136 v99 = v52; | |
1137 v98 = (SoundID)16060; | |
1138 goto LABEL_222; | |
1139 } | |
1140 if ( spellnum == 77 ) | |
1141 { | |
1142 v5->sCurrentHP += 5 * v6 + 10; | |
1143 if ( v5->sCurrentHP >= (signed int)v5->pMonsterInfo.uHP ) | |
1144 v5->sCurrentHP = LOWORD(v5->pMonsterInfo.uHP); | |
1145 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xA81376u); | |
1146 v47 = 0; | |
1147 goto LABEL_127; | |
1148 } | |
1149 v49 = spellnum == 78; | |
1150 LABEL_158: | |
1151 if ( !v49 ) | |
1152 return; | |
1153 goto LABEL_159; | |
1154 } | |
1155 if ( (signed int)v7 > 0 ) | |
1156 { | |
1157 if ( (signed int)v7 <= 2 ) | |
1158 { | |
1159 v53 = 300 * v6; | |
1160 goto LABEL_138; | |
1161 } | |
1162 if ( v7 == 3 ) | |
1163 { | |
1164 v53 = 900 * v6; | |
1165 goto LABEL_138; | |
1166 } | |
1167 if ( v7 == 4 ) | |
1168 { | |
1169 v53 = 1200 * v6; | |
1170 LABEL_138: | |
1171 v54 = v53 + 3840; | |
1172 LABEL_142: | |
1173 v5->pActorBuffs[18].Apply( | |
1174 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v54 << 7) * 0.033333335), | |
1175 v7, | |
1176 v6 + 5, | |
1177 0, | |
1178 0); | |
1179 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff( | |
1180 v5, | |
1181 (unsigned int)((char *)&pDecalBuilder->std__vector_pDecals[557].pVertices[57].vWorldPosition.x + 1)); | |
1182 v106 = 0; | |
1183 v104 = 0; | |
1184 v103 = 0; | |
1185 v102 = 0; | |
1186 v55 = 8 * LODWORD(v120); | |
1187 v101 = -1; | |
862 | 1188 LOBYTE(v55) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1189 v100 = 0; |
1190 v99 = v55; | |
1191 v98 = (SoundID)14060; | |
1192 goto LABEL_222; | |
1193 } | |
1194 } | |
1195 v54 = 0; | |
1196 goto LABEL_142; | |
1197 } | |
1198 if ( spellnum == 85 ) | |
1199 { | |
1200 if ( (signed int)v7 > 0 ) | |
1201 { | |
1202 if ( (signed int)v7 <= 2 ) | |
1203 { | |
1204 v96 = 300 * v6 + 3840; | |
1205 goto LABEL_221; | |
1206 } | |
1207 if ( v7 == 3 ) | |
1208 { | |
1209 LOWORD(v6) = 3 * v6; | |
1210 v96 = 900 * (uSkillLevel & 0x3F) + 3840; | |
1211 goto LABEL_221; | |
1212 } | |
1213 if ( v7 == 4 ) | |
1214 { | |
1215 v96 = 1200 * v6 + 3840; | |
1216 LOWORD(v6) = 4 * v6; | |
1217 LABEL_221: | |
1218 v5->pActorBuffs[13].Apply( | |
1219 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v96 << 7) * 0.033333335), | |
1220 v7, | |
1221 v6, | |
1222 0, | |
1223 0); | |
1224 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xFFFFFFu); | |
1225 v106 = 0; | |
1226 v104 = 0; | |
1227 v103 = 0; | |
1228 v102 = 0; | |
1229 v97 = 8 * LODWORD(v120); | |
1230 v101 = -1; | |
862 | 1231 LOBYTE(v97) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1232 v100 = 0; |
1233 v99 = v97; | |
1234 v98 = (SoundID)17070; | |
1235 goto LABEL_222; | |
1236 } | |
1237 } | |
1238 LOWORD(v6) = uSkillLevel; | |
1239 v96 = 0; | |
1240 goto LABEL_221; | |
1241 } | |
1242 if ( spellnum == 86 ) | |
1243 { | |
1244 if ( (signed int)v7 > 0 ) | |
1245 { | |
1246 if ( (signed int)v7 <= 2 ) | |
1247 { | |
1248 v93 = 300 * v6; | |
1249 goto LABEL_208; | |
1250 } | |
1251 if ( v7 == 3 ) | |
1252 { | |
1253 v93 = 900 * v6; | |
1254 goto LABEL_208; | |
1255 } | |
1256 if ( v7 == 4 ) | |
1257 { | |
1258 v93 = 1200 * v6; | |
1259 LABEL_208: | |
1260 v94 = v93 + 3840; | |
1261 LABEL_212: | |
1262 v5->pActorBuffs[14].Apply( | |
1263 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v94 << 7) * 0.033333335), | |
1264 v7, | |
1265 v6 + 5, | |
1266 0, | |
1267 0); | |
1268 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff(v5, 0xFFFFFFu); | |
1269 v106 = 0; | |
1270 v104 = 0; | |
1271 v103 = 0; | |
1272 v102 = 0; | |
1273 v95 = 8 * LODWORD(v120); | |
1274 v101 = -1; | |
862 | 1275 LOBYTE(v95) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1276 v100 = 0; |
1277 v99 = v95; | |
1278 v98 = (SoundID)17080; | |
1279 goto LABEL_222; | |
1280 } | |
1281 } | |
1282 v94 = 0; | |
1283 goto LABEL_212; | |
1284 } | |
1285 if ( spellnum == 90 ) | |
1286 goto LABEL_159; | |
1287 if ( spellnum != 93 ) | |
1288 { | |
1289 if ( spellnum != 95 ) | |
1290 { | |
1291 v49 = spellnum == 97; | |
1292 goto LABEL_158; | |
1293 } | |
1294 if ( (signed int)v7 > 0 ) | |
1295 { | |
1296 if ( (signed int)v7 <= 3 ) | |
1297 { | |
1298 v67 = 300 * v6; | |
1299 goto LABEL_168; | |
1300 } | |
1301 if ( v7 == 4 ) | |
1302 { | |
1303 v67 = 900 * v6; | |
1304 LABEL_168: | |
1305 v68 = v67 + 3840; | |
1306 LABEL_171: | |
1307 v5->pActorBuffs[20].Apply( | |
1308 pParty->uTimePlayed + (signed int)(signed __int64)((double)(v68 << 7) * 0.033333335), | |
1309 v7, | |
1310 0, | |
1311 0, | |
1312 0); | |
1313 pGame->pStru6Instance->_4A7E89_sparkles_on_actor_after_it_casts_buff( | |
1314 v5, | |
1315 (unsigned int)((char *)&array_77EC08[1607].v_18.z + 2)); | |
1316 v106 = 0; | |
1317 v104 = 0; | |
1318 v103 = 0; | |
1319 v102 = 0; | |
1320 v69 = 8 * LODWORD(v120); | |
1321 v101 = -1; | |
862 | 1322 LOBYTE(v69) = PID(OBJECT_Actor,LOBYTE(v120)); |
0 | 1323 v100 = 0; |
1324 v99 = v69; | |
1325 v98 = (SoundID)18060; | |
1326 goto LABEL_222; | |
1327 } | |
1328 } | |
1329 v68 = 0; | |
1330 goto LABEL_171; | |
1331 } | |
1332 v70 = 3; | |
1333 if ( uSkillLevel & 0x100 ) | |
1334 { | |
1335 v108 = 9; | |
1336 } | |
1337 else | |
1338 { | |
1339 if ( (uSkillLevel & 0x80u) == 0 ) | |
1340 { | |
1341 if ( !(uSkillLevel & 0x40) ) | |
1342 goto LABEL_179; | |
1343 v108 = 5; | |
1344 } | |
1345 else | |
1346 { | |
1347 v108 = 7; | |
1348 } | |
1349 } | |
1350 v70 = v108; | |
1351 LABEL_179: | |
1352 spellnume = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1353 a1.uType = stru_4E3ACC[SPELL_DARK_SHARPMETAL].field_0; |
0 | 1354 v116 = (signed int)(60 * stru_5C6E00->uIntegerDoublePi) / 360 / (v70 - 1); |
1355 v71 = 0; | |
1356 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
1357 { | |
1358 LABEL_183: | |
1359 LOWORD(v71) = 0; | |
1360 } | |
1361 else | |
1362 { | |
1363 v72 = &pObjectList->pObjects->uObjectID; | |
488 | 1364 while ( stru_4E3ACC[SPELL_DARK_SHARPMETAL].field_0 != *v72 ) |
0 | 1365 { |
1366 ++v71; | |
1367 v72 += 28; | |
1368 if ( v71 >= (signed int)pObjectList->uNumObjects ) | |
1369 goto LABEL_183; | |
1370 } | |
1371 } | |
1372 a1.uObjectDescID = v71; | |
1373 a1.stru_24.Reset(); | |
822 | 1374 a1.spell_id = SPELL_DARK_SHARPMETAL; |
0 | 1375 v73 = v5->vPosition.x; |
1376 v74 = v5->vPosition.y; | |
822 | 1377 a1.spell_level = uSkillLevel; |
0 | 1378 a1.vPosition.x = v73; |
1379 v75 = v5->vPosition.z + ((signed int)v5->uActorHeight >> 1); | |
1380 v76 = v117; | |
1381 v77 = LOWORD(v117->uYawAngle); | |
822 | 1382 a1.spell_skill = 0; |
0 | 1383 a1.vPosition.y = v74; |
1384 a1.vPosition.z = v75; | |
1385 a1.uFacing = v77; | |
1386 a1.uSoundID = 0; | |
1387 a1.uAttributes = 0; | |
1388 a1.uSectorID = pIndoor->GetSector(v73, v74, v75); | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1389 a1.spell_caster_pid = PID(OBJECT_Actor, LODWORD(v120)); |
0 | 1390 a1.uSpriteFrameID = 0; |
823 | 1391 a1.spell_target_pid = 0; |
0 | 1392 a1.field_60_distance_related_prolly_lod = 3; |
1393 a1c = spellnume / -2; | |
1394 if ( spellnume / -2 > spellnume / 2 ) | |
1395 { | |
1396 v80 = spellnume / -2; | |
1397 } | |
1398 else | |
1399 { | |
1400 do | |
1401 { | |
1402 v79 = v76->uYawAngle; | |
1403 a1.uFacing = a1c + LOWORD(v76->uYawAngle); | |
1404 v80 = a1.Create( | |
1405 v79, | |
1406 v76->uPitchAngle, | |
1407 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1408 0); | |
1409 a1c += v116; | |
1410 } | |
1411 while ( a1c <= spellnume / 2 ); | |
1412 } | |
1413 if ( v80 != -1 ) | |
1414 { | |
1415 v106 = 0; | |
1416 v104 = 0; | |
1417 v103 = 0; | |
1418 v102 = 0; | |
1419 v81 = 8 * v80; | |
1420 v101 = -1; | |
1421 LOBYTE(v81) = v81 | 2; | |
1422 v100 = 0; | |
1423 v99 = v81; | |
1424 v22 = (SoundID)word_4EE088_sound_ids[93]; | |
1425 goto LABEL_202; | |
1426 } | |
1427 } | |
1428 | |
1429 //----- (0043ABB0) -------------------------------------------------------- | |
322 | 1430 bool Actor::ArePeasantsOfSameFaction(Actor *a1, Actor *a2) |
0 | 1431 { |
1432 unsigned int v2; // esi@1 | |
1433 unsigned int v3; // edi@1 | |
1434 bool result; // eax@9 | |
1435 | |
1436 v2 = a1->uAlly; | |
1437 v3 = a2->uAlly; | |
1438 if ( !v2 ) | |
1439 v2 = (a1->pMonsterInfo.uID - 1) / 3 + 1; | |
1440 if ( !v3 ) | |
1441 v3 = (a2->pMonsterInfo.uID - 1) / 3 + 1; | |
1442 if ( (signed int)v2 >= 39 && (signed int)v2 <= 44 && (signed int)v3 >= 39 && (signed int)v3 <= 44 | |
1443 || (signed int)v2 >= 45 && (signed int)v2 <= 50 && (signed int)v3 >= 45 && (signed int)v3 <= 50 | |
1444 || (signed int)v2 >= 51 && (signed int)v2 <= 62 && (signed int)v3 >= 51 && (signed int)v3 <= 62 | |
1445 || (signed int)v2 >= 78 && (signed int)v2 <= 83 && (signed int)v3 >= 78 && (signed int)v3 <= 83 ) | |
1446 result = 1; | |
1447 else | |
1448 result = v2 == v3; | |
1449 return result; | |
1450 } | |
1451 | |
1452 //----- (0043AC45) -------------------------------------------------------- | |
322 | 1453 void Actor::AggroSurroundingPeasants(unsigned int uActorID, int a2) |
0 | 1454 { |
1455 int v4; // ebx@8 | |
1456 int v5; // ST1C_4@8 | |
1457 int v6; // eax@8 | |
1458 | |
322 | 1459 auto victim = pActors + uActorID; |
0 | 1460 if ( a2 == 1 ) |
322 | 1461 BYTE2(victim->uAttributes) |= 8u; |
1462 | |
1463 for (uint i = 0; i < uNumActors; ++i) | |
0 | 1464 { |
322 | 1465 auto actor = pActors + i; |
1466 if (!actor->CanAct() || i == uActorID) | |
1467 continue; | |
1468 | |
1469 if (Actor::ArePeasantsOfSameFaction(victim, actor)) | |
0 | 1470 { |
322 | 1471 v4 = abs(actor->vPosition.x - victim->vPosition.x); |
1472 v5 = abs(actor->vPosition.y - victim->vPosition.y); | |
1473 v6 = abs(actor->vPosition.z - victim->vPosition.z); | |
1474 if (int_get_vector_length(v4, v5, v6) < 4096) | |
0 | 1475 { |
322 | 1476 actor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; |
1477 if ( a2 == 1 ) | |
1478 BYTE2(actor->uAttributes) |= 8u; | |
0 | 1479 } |
1480 } | |
1481 } | |
1482 } | |
1483 | |
1484 //----- (00404874) -------------------------------------------------------- | |
860 | 1485 char __fastcall Actor::RangedAttack(unsigned int uActorID, AIDirection *a2, int a3, char a4) |
0 | 1486 { |
1487 AIDirection *v4; // edi@1 | |
1488 Actor *v5; // esi@1 | |
1489 char result; // al@1 | |
1490 char *v7; // eax@15 | |
1491 unsigned __int16 v8; // ax@18 | |
1492 unsigned __int16 v9; // ax@19 | |
1493 __int16 v10; // ax@19 | |
1494 signed int v11; // ecx@19 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1495 //int v12; // eax@19 |
0 | 1496 int v13; // edx@28 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1497 //SpriteObject a1; // [sp+Ch] [bp-74h]@1 |
0 | 1498 unsigned int v15; // [sp+7Ch] [bp-4h]@1 |
1499 signed int v16; // [sp+88h] [bp+8h]@14 | |
1500 signed int v17; // [sp+88h] [bp+8h]@19 | |
1501 | |
1502 v15 = uActorID; | |
1503 v4 = a2; | |
1504 v5 = &pActors[uActorID]; | |
1505 | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1506 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
|
1507 //SpriteObject::SpriteObject(&a1); |
0 | 1508 |
1509 result = a3 - 1; | |
1510 switch ( a3 ) | |
1511 { | |
1512 case 1: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1513 a1.uType = 545; |
0 | 1514 goto LABEL_14; |
1515 case 2: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1516 a1.uType = 550; |
0 | 1517 goto LABEL_14; |
1518 case 3: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1519 a1.uType = 510; |
0 | 1520 goto LABEL_14; |
1521 case 4: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1522 a1.uType = 500; |
0 | 1523 goto LABEL_14; |
1524 case 5: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1525 a1.uType = 515; |
0 | 1526 goto LABEL_14; |
1527 case 6: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1528 a1.uType = 505; |
0 | 1529 goto LABEL_14; |
1530 case 7: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1531 a1.uType = 530; |
0 | 1532 goto LABEL_14; |
1533 case 8: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1534 a1.uType = 525; |
0 | 1535 goto LABEL_14; |
1536 case 9: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1537 a1.uType = 520; |
0 | 1538 goto LABEL_14; |
1539 case 10: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1540 a1.uType = 535; |
0 | 1541 goto LABEL_14; |
1542 case 11: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1543 a1.uType = 540; |
0 | 1544 goto LABEL_14; |
1545 case 13: | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1546 a1.uType = 555; |
0 | 1547 LABEL_14: |
1548 v16 = 0; | |
1549 if ( (signed int)pObjectList->uNumObjects <= 0 ) | |
1550 goto LABEL_18; | |
1551 v7 = (char *)&pObjectList->pObjects->uObjectID; | |
1552 break; | |
1553 default: | |
1554 return result; | |
1555 } | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1556 while ( (short)a1.uType != *(short *)v7 ) |
0 | 1557 { |
1558 ++v16; | |
1559 v7 += 56; | |
1560 if ( v16 >= (signed int)pObjectList->uNumObjects ) | |
1561 { | |
1562 LABEL_18: | |
1563 v8 = 0; | |
1564 goto LABEL_19; | |
1565 } | |
1566 } | |
1567 v8 = v16; | |
1568 LABEL_19: | |
1569 a1.uObjectDescID = v8; | |
1570 a1.stru_24.Reset(); | |
1571 a1.vPosition.x = v5->vPosition.x; | |
822 | 1572 a1.spell_id = 0; |
0 | 1573 a1.vPosition.y = v5->vPosition.y; |
822 | 1574 a1.spell_level = 0; |
0 | 1575 v17 = v5->uActorHeight; |
822 | 1576 a1.spell_skill = 0; |
0 | 1577 v9 = LOWORD(v4->uYawAngle); |
1578 a1.vPosition.z = v5->vPosition.z - (unsigned int)(signed __int64)((double)v17 * -0.75); | |
1579 a1.uFacing = v9; | |
1580 a1.uSoundID = 0; | |
1581 a1.uAttributes = 0; | |
1582 v10 = pIndoor->GetSector(a1.vPosition.x, a1.vPosition.y, a1.vPosition.z); | |
1583 v11 = v4->uDistance; | |
1584 a1.uSectorID = v10; | |
1585 a1.uSpriteFrameID = 0; | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1586 a1.spell_caster_pid = PID(OBJECT_Actor, v15); |
823 | 1587 a1.spell_target_pid = 0; |
0 | 1588 if ( (double)v11 >= 307.2 ) |
1589 { | |
1590 if ( v11 >= 1024 ) | |
1591 { | |
1592 a1.field_60_distance_related_prolly_lod = 2; | |
1593 if ( v11 >= 2560 ) | |
1594 a1.field_60_distance_related_prolly_lod = 3; | |
1595 } | |
1596 else | |
1597 { | |
1598 a1.field_60_distance_related_prolly_lod = 1; | |
1599 } | |
1600 } | |
1601 else | |
1602 { | |
1603 a1.field_60_distance_related_prolly_lod = 0; | |
1604 } | |
1605 a1.field_61 = a4; | |
1606 result = a1.Create( | |
1607 v4->uYawAngle, | |
1608 v4->uPitchAngle, | |
1609 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1610 0); | |
1611 if ( v5->pMonsterInfo.uSpecialAbilityType == 1 ) | |
1612 { | |
1613 result = v5->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
1614 if ( result == 2 ) | |
1615 { | |
1616 a1.vPosition.z += 40; | |
1617 v13 = v4->uYawAngle; | |
1618 } | |
1619 else | |
1620 { | |
1621 if ( result != 3 ) | |
1622 return result; | |
1623 a1.Create( | |
1624 v4->uYawAngle + 30, | |
1625 v4->uPitchAngle, | |
1626 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1627 0); | |
1628 v13 = v4->uYawAngle - 30; | |
1629 } | |
1630 result = a1.Create( | |
1631 v13, | |
1632 v4->uPitchAngle, | |
1633 pObjectList->pObjects[(signed __int16)a1.uObjectDescID].uSpeed, | |
1634 0); | |
1635 } | |
1636 return result; | |
1637 } | |
1638 | |
1639 //----- (00404736) -------------------------------------------------------- | |
1640 signed int __fastcall Actor::Explode(unsigned int uActorID) | |
1641 { | |
1642 Actor *v1; // esi@1 | |
1643 signed int v2; // edx@1 | |
1644 char *v3; // ecx@2 | |
1645 unsigned __int16 v4; // ax@5 | |
1646 int v5; // ebx@6 | |
1647 int v6; // ecx@6 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1648 //int v7; // eax@6 |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1649 SpriteObject a1; // [sp+Ch] [bp-78h]@1 |
0 | 1650 unsigned int v10; // [sp+7Ch] [bp-8h]@1 |
1651 int v11; // [sp+80h] [bp-4h]@6 | |
1652 | |
1653 v10 = uActorID; | |
1654 v1 = &pActors[uActorID]; | |
1655 v2 = 0; | |
515
cb0ad52d6a26
LayingItem -> SpriteObject (long-waited rename, old name was inaccurate and confused people)
Nomad
parents:
488
diff
changeset
|
1656 a1.uType = 600; |
0 | 1657 if ( (signed int)pObjectList->uNumObjects <= 0 ) |
1658 { | |
1659 LABEL_5: | |
1660 v4 = 0; | |
1661 } | |
1662 else | |
1663 { | |
1664 v3 = (char *)&pObjectList->pObjects->uObjectID; | |
1665 while ( *(short *)v3 != 600 ) | |
1666 { | |
1667 ++v2; | |
1668 v3 += 56; | |
1669 if ( v2 >= (signed int)pObjectList->uNumObjects ) | |
1670 goto LABEL_5; | |
1671 } | |
1672 v4 = v2; | |
1673 } | |
1674 a1.uObjectDescID = v4; | |
1675 a1.stru_24.Reset(); | |
1676 a1.vPosition.y = v1->vPosition.y; | |
822 | 1677 a1.spell_id = 0; |
0 | 1678 v5 = v1->vPosition.x; |
1679 v11 = v1->uActorHeight; | |
822 | 1680 a1.spell_level = 0; |
1681 a1.spell_skill = 0; | |
0 | 1682 a1.vPosition.x = v5; |
1683 v6 = v1->vPosition.z - (unsigned int)(signed __int64)((double)v11 * -0.75); | |
1684 a1.uFacing = 0; | |
1685 a1.vPosition.z = v6; | |
1686 a1.uSoundID = 0; | |
1687 a1.uAttributes = 0; | |
1688 a1.uSectorID = pIndoor->GetSector(v5, a1.vPosition.y, v6); | |
1689 a1.uSpriteFrameID = 0; | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1690 a1.spell_caster_pid = PID(OBJECT_Actor, v10); |
823 | 1691 a1.spell_target_pid = 0; |
0 | 1692 a1.field_60_distance_related_prolly_lod = 3; |
1693 a1.field_61 = 4; | |
1694 return a1.Create(0, 0, 0, 0); | |
1695 } | |
1696 | |
1697 //----- (004040E9) -------------------------------------------------------- | |
1698 // // Get direction vector from object1 to object2, | |
1699 // // distance from object1 to object2 and Euler angles of the direction vector | |
1700 // // | |
1701 // // | |
1702 // // 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
|
1703 // // objectType == 2 - SpriteObject |
0 | 1704 // // objectType == 3 - Actor |
1705 // // objectType == 4 - Party | |
1706 // // objectType == 5 - Decoration | |
1707 // // | |
1708 // // originally this function had following prototype: | |
1709 // // struct DirectionInfo GetDirectionInfo(signed int object1, signed int object2, signed int a4) | |
1710 // // but compiler converts functions returning structures by value in the such way | |
1711 AIDirection *__fastcall Actor::GetDirectionInfo(unsigned int uObj1ID, unsigned int uObj2ID, AIDirection *pOut, int a4) | |
1712 { | |
1713 signed int v4; // eax@1 | |
1714 unsigned int v5; // ecx@1 | |
1715 unsigned int v6; // ebx@1 | |
1716 int v7; // ecx@2 | |
1717 int v8; // ecx@3 | |
1718 int v9; // ecx@4 | |
1719 BLVFace *v10; // eax@8 | |
1720 unsigned int v11; // ecx@8 | |
1721 signed int v12; // eax@9 | |
1722 int v13; // ecx@9 | |
1723 int v14; // eax@9 | |
1724 int v15; // eax@11 | |
1725 int v16; // eax@12 | |
1726 int v17; // eax@13 | |
1727 int v18; // edx@15 | |
1728 signed int v19; // eax@25 | |
1729 signed int v20; // eax@28 | |
1730 int v21; // ebx@28 | |
1731 signed int v22; // eax@28 | |
1732 BLVFace *v23; // eax@35 | |
1733 int v24; // edx@35 | |
1734 unsigned int v25; // ecx@35 | |
1735 signed int v26; // eax@36 | |
1736 int v27; // ecx@36 | |
1737 int v28; // eax@36 | |
1738 int v29; // eax@37 | |
1739 signed int v30; // eax@42 | |
1740 double v31; // st7@45 | |
1741 double v32; // st6@45 | |
1742 double v33; // st7@45 | |
1743 AIDirection *result; // eax@48 | |
1744 int v35; // [sp-18h] [bp-64h]@17 | |
1745 int v36; // [sp-14h] [bp-60h]@17 | |
1746 Vec3_int_ v37; // [sp-10h] [bp-5Ch]@15 | |
1747 int *v38; // [sp-4h] [bp-50h]@15 | |
1748 int *v39; // [sp+0h] [bp-4Ch]@15 | |
1749 int *v40; // [sp+4h] [bp-48h]@15 | |
1750 AIDirection v41; // [sp+14h] [bp-38h]@46 | |
1751 float v42; // [sp+30h] [bp-1Ch]@23 | |
1752 float v43; // [sp+34h] [bp-18h]@45 | |
1753 float v44; // [sp+38h] [bp-14h]@33 | |
1754 float v45; // [sp+3Ch] [bp-10h]@33 | |
1755 int outz; // [sp+40h] [bp-Ch]@6 | |
1756 int outy; // [sp+44h] [bp-8h]@6 | |
1757 int outx; // [sp+48h] [bp-4h]@6 | |
1758 float a4a; // [sp+58h] [bp+Ch]@45 | |
1759 | |
848 | 1760 v4 = PID_ID(uObj1ID); |
849 | 1761 v5 = PID_TYPE(uObj1ID); |
0 | 1762 v6 = uObj2ID; |
849 | 1763 switch(v5) |
0 | 1764 { |
849 | 1765 case OBJECT_Item: |
1766 { | |
1767 v19 = v4; | |
1768 outx = pSpriteObjects[v19].vPosition.x; | |
1769 v13 = pSpriteObjects[v19].vPosition.y; | |
1770 v14 = pSpriteObjects[v19].vPosition.z; | |
1771 outy = v13; | |
1772 outz = v14; | |
1773 break; | |
1774 } | |
1775 case OBJECT_Actor: | |
1776 { | |
1777 outx = pActors[v4].vPosition.x; | |
1778 outy = pActors[v4].vPosition.y; | |
1779 LODWORD(v42) = pActors[v4].uActorHeight; | |
1780 v11 = pActors[v4].vPosition.z - (unsigned int)(signed __int64)((double)SLODWORD(v42) * -0.75); | |
1781 outz = v11; | |
1782 break; | |
1783 } | |
1784 case OBJECT_Player: | |
1785 { | |
1786 if ( !v4 ) | |
1787 { | |
1788 outx = pParty->vPosition.x; | |
1789 outy = pParty->vPosition.y; | |
1790 v14 = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1791 outz = v14; | |
1792 break;; | |
1793 } | |
1794 if ( v4 == 4 ) | |
1795 { | |
1796 v40 = &outz; | |
1797 v39 = &outy; | |
1798 v38 = &outx; | |
1799 v18 = pParty->sRotationY - stru_5C6E00->uIntegerHalfPi; | |
1800 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1801 *(_QWORD *)&v37 = *(_QWORD *)&pParty->vPosition.x; | |
1802 v36 = 0; | |
1803 v35 = 24; | |
1804 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1805 break; | |
1806 } | |
1807 if ( v4 == 3 ) | |
1808 { | |
1809 v40 = &outz; | |
1810 v39 = &outy; | |
1811 v38 = &outx; | |
1812 v18 = pParty->sRotationY - stru_5C6E00->uIntegerHalfPi; | |
1813 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1814 *(_QWORD *)&v37.x = *(_QWORD *)&pParty->vPosition.x; | |
1815 v36 = 0; | |
1816 v35 = 8; | |
1817 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1818 break; | |
1819 } | |
1820 if ( v4 == 2 ) | |
1821 { | |
1822 v40 = &outz; | |
1823 v39 = &outy; | |
1824 v38 = &outx; | |
1825 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1826 v18 = stru_5C6E00->uIntegerHalfPi + pParty->sRotationY; | |
1827 *(_QWORD *)&v37.x = *(_QWORD *)&pParty->vPosition.x; | |
1828 v36 = 0; | |
1829 v35 = 8; | |
1830 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1831 break; | |
1832 } | |
1833 if ( v4 == 1 ) | |
1834 { | |
1835 v40 = &outz; | |
1836 v39 = &outy; | |
1837 v38 = &outx; | |
1838 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1839 v18 = stru_5C6E00->uIntegerHalfPi + pParty->sRotationY; | |
1840 *(_QWORD *)&v37 = *(_QWORD *)&pParty->vPosition.x; | |
1841 v36 = 0; | |
1842 v35 = 24; | |
1843 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1844 break; | |
1845 } | |
1846 } | |
1847 case OBJECT_Decoration: | |
1848 { | |
1849 v12 = v4; | |
1850 outx = pLevelDecorations[v12].vPosition.x; | |
1851 v13 = pLevelDecorations[v12].vPosition.y; | |
1852 v14 = pLevelDecorations[v12].vPosition.z; | |
1853 outy = v13; | |
1854 outz = v14; | |
1855 break; | |
1856 } | |
1857 default: | |
1858 { | |
1859 outz = 0; | |
1860 outy = 0; | |
1861 outx = 0; | |
1862 break; | |
1863 } | |
1864 case OBJECT_BModel: | |
1865 { | |
1866 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1867 { | |
1868 v10 = &pIndoor->pFaces[v4]; | |
1869 outx = (v10->pBounding.x1 + v10->pBounding.x2) >> 1; | |
1870 outy = (v10->pBounding.y1 + v10->pBounding.y2) >> 1; | |
1871 v11 = (v10->pBounding.z1 + v10->pBounding.z2) >> 1; | |
1872 outz = v11; | |
862 | 1873 } |
1874 break; | |
1875 } | |
1876 } | |
1877 v20 = v6; | |
1878 v21 = PID_TYPE(v6); | |
1879 v22 = PID_ID(v20); | |
1880 switch(v6) | |
1881 { | |
1882 case OBJECT_Item: | |
1883 { | |
1884 v30 = v22; | |
1885 LODWORD(v45) = pSpriteObjects[v30].vPosition.x; | |
1886 v27 = pSpriteObjects[v30].vPosition.y; | |
1887 v28 = pSpriteObjects[v30].vPosition.z; | |
1888 LODWORD(v44) = v27; | |
1889 a4 = v28; | |
1890 break; | |
1891 } | |
1892 case OBJECT_Actor: | |
1893 { | |
1894 LODWORD(v45) = pActors[v22].vPosition.x; | |
1895 LODWORD(v44) = pActors[v22].vPosition.y; | |
1896 v25 = pActors[v22].vPosition.z - (unsigned int)(signed __int64)((double)pActors[v22].uActorHeight * -0.75); | |
1897 a4 = v25; | |
1898 break; | |
1899 } | |
1900 case OBJECT_Player: | |
1901 { | |
1902 LODWORD(v45) = pParty->vPosition.x; | |
1903 LODWORD(v44) = pParty->vPosition.y; | |
1904 v29 = a4; | |
1905 if ( !a4 ) | |
1906 v29 = pParty->sEyelevel; | |
1907 v28 = pParty->vPosition.z + v29; | |
1908 a4 = v28; | |
1909 } | |
1910 case OBJECT_Decoration: | |
1911 { | |
1912 v26 = v22; | |
1913 LODWORD(v45) = pLevelDecorations[v26].vPosition.x; | |
1914 v27 = pLevelDecorations[v26].vPosition.y; | |
1915 v28 = pLevelDecorations[v26].vPosition.z; | |
1916 LODWORD(v44) = v27; | |
1917 a4 = v28; | |
1918 break; | |
1919 } | |
1920 default: | |
1921 { | |
1922 a4 = 0; | |
1923 v44 = 0.0; | |
1924 v45 = 0.0; | |
1925 break; | |
1926 } | |
1927 case OBJECT_BModel: | |
1928 { | |
1929 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1930 { | |
849 | 1931 v23 = &pIndoor->pFaces[v22]; |
1932 v24 = v23->pBounding.y1; | |
1933 LODWORD(v45) = (v23->pBounding.x1 + v23->pBounding.x2) >> 1; | |
1934 LODWORD(v44) = (v24 + v23->pBounding.y2) >> 1; | |
1935 v25 = (v23->pBounding.z1 + v23->pBounding.z2) >> 1; | |
1936 a4 = v25; | |
1937 } | |
1938 break; | |
1939 } | |
0 | 1940 } |
862 | 1941 |
0 | 1942 v31 = (double)SLODWORD(v45) - (double)outx; |
1943 v42 = v31; | |
1944 v32 = (double)SLODWORD(v44) - (double)outy; | |
1945 v43 = v32; | |
1946 a4a = (double)a4 - (double)outz; | |
1947 v45 = v32 * v32; | |
1948 v44 = v31 * v31; | |
1949 v33 = sqrt(a4a * a4a + v44 + v45); | |
1950 if ( v33 <= 1.0 ) | |
1951 { | |
1952 v41.vDirection.x = 65536; | |
1953 v41.vDirection.y = 0; | |
1954 v41.vDirection.z = 0; | |
1955 v41.uDistance = 1; | |
1956 v41.uDistanceXZ = 1; | |
1957 v41.uYawAngle = 0; | |
1958 v41.uPitchAngle = 0; | |
1959 } | |
1960 else | |
1961 { | |
1962 v41.vDirection.x = (signed __int64)(1.0 / v33 * v42 * 65536.0); | |
1963 v41.vDirection.y = (signed __int64)(1.0 / v33 * v43 * 65536.0); | |
1964 v41.vDirection.z = (signed __int64)(1.0 / v33 * a4a * 65536.0); | |
1965 v41.uDistance = (signed __int64)v33; | |
1966 v41.uDistanceXZ = (signed __int64)sqrt(v44 + v45); | |
1967 v41.uYawAngle = stru_5C6E00->Atan2((signed __int64)v42, (signed __int64)v43); | |
1968 v41.uPitchAngle = stru_5C6E00->Atan2(v41.uDistanceXZ, (signed __int64)a4a); | |
1969 } | |
1970 result = pOut; | |
1971 memcpy(pOut, &v41, 0x1Cu); | |
1972 return result; | |
1973 } | |
1974 | |
1975 //----- (00404030) -------------------------------------------------------- | |
322 | 1976 void Actor::FaceObject(unsigned int uActorID, unsigned int uObjID, int _48, AIDirection *a4) |
0 | 1977 { |
1978 unsigned int v4; // edi@1 | |
1979 unsigned int v5; // esi@1 | |
322 | 1980 //unsigned int result; // eax@2 |
0 | 1981 AIDirection *v7; // eax@3 |
1982 unsigned int v8; // ecx@3 | |
1983 Actor *v9; // ebx@3 | |
1984 AIDirection *v10; // esi@4 | |
1985 unsigned __int16 v11; // ax@5 | |
1986 AIDirection a3; // [sp+8h] [bp-38h]@4 | |
1987 AIDirection v13; // [sp+24h] [bp-1Ch]@4 | |
1988 | |
1989 v4 = uObjID; | |
1990 v5 = uActorID; | |
1991 if ( rand() % 100 >= 5 ) | |
1992 { | |
1993 v7 = a4; | |
1994 v8 = 0; | |
1995 v9 = &pActors[v5]; | |
1996 if ( !a4 ) | |
1997 { | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1998 v10 = Actor::GetDirectionInfo(PID(OBJECT_Actor, v5), v4, &a3, 0); |
0 | 1999 v7 = &v13; |
2000 memcpy(&v13, v10, sizeof(v13)); | |
2001 v8 = 0; | |
2002 } | |
2003 v9->uYawAngle = LOWORD(v7->uYawAngle); | |
2004 v11 = LOWORD(v7->uPitchAngle); | |
2005 v9->uCurrentActionTime = v8; | |
2006 v9->vVelocity.z = v8; | |
2007 v9->vVelocity.y = v8; | |
2008 v9->vVelocity.x = v8; | |
2009 v9->uPitchAngle = v11; | |
2010 v9->uCurrentActionLength = 256; | |
2011 v9->uAIState = Interacting; | |
322 | 2012 v9->UpdateAnimation(); |
0 | 2013 } |
2014 else | |
414 | 2015 Actor::AI_Bored(v5, v4, a4); |
0 | 2016 } |
2017 | |
2018 //----- (00403F58) -------------------------------------------------------- | |
414 | 2019 void Actor::AI_StandOrBored(unsigned int uActorID, signed int uObjID, int uActionLength, AIDirection *a4) |
0 | 2020 { |
413 | 2021 if (rand() % 2) |
414 | 2022 AI_Bored(uActorID, uObjID, a4); |
413 | 2023 else |
414 | 2024 AI_Stand(uActorID, uObjID, uActionLength, a4); |
0 | 2025 } |
2026 | |
2027 //----- (00403EB6) -------------------------------------------------------- | |
413 | 2028 void Actor::AI_Stand(unsigned int uActorID, unsigned int object_to_face_pid, unsigned int uActionLength, AIDirection *a4) |
0 | 2029 { |
413 | 2030 assert(uActorID < uNumActors); |
2031 auto actor = pActors + uActorID; | |
2032 | |
2033 AIDirection a3; | |
2034 if (!a4) | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
2035 a4 = Actor::GetDirectionInfo(PID(OBJECT_Actor, uActorID), object_to_face_pid, &a3, 0); |
0 | 2036 |
413 | 2037 actor->uAIState = Standing; |
2038 if (!uActionLength) | |
2039 actor->uCurrentActionLength = rand() % 256 + 256; | |
0 | 2040 else |
413 | 2041 actor->uCurrentActionLength = uActionLength; |
2042 actor->uCurrentActionTime = 0; | |
2043 actor->uYawAngle = a4->uYawAngle; | |
2044 actor->uPitchAngle = a4->uPitchAngle; | |
2045 actor->vVelocity.z = 0; | |
2046 actor->vVelocity.y = 0; | |
2047 actor->vVelocity.x = 0; | |
2048 actor->UpdateAnimation(); | |
0 | 2049 } |
2050 | |
2051 //----- (00403E61) -------------------------------------------------------- | |
2052 void __fastcall Actor::StandAwhile(unsigned int uActorID) | |
2053 { | |
2054 Actor *v1; // esi@1 | |
2055 | |
2056 v1 = &pActors[uActorID]; | |
2057 v1->uCurrentActionLength = rand() % 128 + 128; | |
2058 v1->uCurrentActionTime = 0; | |
2059 v1->uAIState = Standing; | |
2060 v1->vVelocity.z = 0; | |
2061 v1->vVelocity.y = 0; | |
2062 v1->vVelocity.x = 0; | |
2063 v1->UpdateAnimation(); | |
2064 } | |
2065 | |
2066 //----- (00403C6C) -------------------------------------------------------- | |
861 | 2067 void Actor::MeleeAttack(unsigned int uActorID, signed int sTargetPid, struct AIDirection *arg0) |
0 | 2068 { |
2069 Actor *v3; // ebx@1 | |
2070 char v4; // zf@1 | |
322 | 2071 //unsigned int result; // eax@3 |
0 | 2072 AIDirection *v6; // esi@6 |
2073 AIDirection *v7; // edi@6 | |
2074 signed int v8; // eax@7 | |
2075 double v9; // st7@9 | |
2076 Vec3_int_ v10; // ST04_12@9 | |
322 | 2077 //int v11; // eax@10 |
0 | 2078 AIDirection *v12; // eax@11 |
2079 unsigned int v13; // esi@11 | |
2080 AIDirection *v14; // esi@12 | |
2081 SpriteFrame *v15; // ecx@13 | |
2082 __int16 v16; // ax@13 | |
2083 unsigned int v17; // ecx@13 | |
2084 signed __int64 v18; // qax@13 | |
2085 AIDirection a3; // [sp+Ch] [bp-48h]@12 | |
2086 AIDirection v20; // [sp+28h] [bp-2Ch]@12 | |
2087 unsigned int v21; // [sp+44h] [bp-10h]@9 | |
848 | 2088 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2089 int v23; // [sp+4Ch] [bp-8h]@6 |
2090 unsigned int v24; // [sp+50h] [bp-4h]@1 | |
2091 unsigned int v25; // [sp+5Ch] [bp+8h]@13 | |
2092 | |
2093 v3 = &pActors[uActorID]; | |
848 | 2094 //a2 = edx0; |
0 | 2095 v4 = v3->pMonsterInfo.uMovementType == 5; |
2096 v24 = uActorID; | |
2097 if ( v4 && v3->pMonsterInfo.uAIType == 1 ) | |
2098 { | |
848 | 2099 Actor::AI_Stand(uActorID, sTargetPid, 0, arg0); |
322 | 2100 return; |
0 | 2101 } |
322 | 2102 |
848 | 2103 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) |
849 | 2104 { |
2105 v8 = PID_ID(sTargetPid); | |
2106 v6 = (AIDirection *)pActors[v8].vPosition.x; | |
2107 v7 = (AIDirection *)pActors[v8].vPosition.y; | |
2108 v23 = (signed __int64)((double)pActors[v8].uActorHeight * 0.75 + (double)pActors[v8].vPosition.z); | |
2109 } | |
2110 else if ( PID_TYPE(sTargetPid) == OBJECT_Player) | |
2111 { | |
2112 v6 = (AIDirection *)pParty->vPosition.x; | |
2113 v7 = (AIDirection *)pParty->vPosition.y; | |
2114 v23 = pParty->vPosition.z + pParty->sEyelevel; | |
2115 } | |
2116 else | |
2117 { | |
2118 v6 = arg0; | |
2119 v7 = arg0; | |
2120 } | |
2121 v21 = v3->uActorHeight; | |
2122 v9 = (double)(signed int)v21 * 0.75; | |
2123 v21 = v3->vPosition.z; | |
2124 v10.z = (signed __int64)(v9 + (double)(signed int)v21); | |
2125 v10.y = v3->vPosition.y; | |
2126 v10.x = v3->vPosition.x; | |
2127 if ( sub_407A1C((int)v6, (int)v7, v23, v10) ) | |
2128 { | |
2129 v12 = arg0; | |
2130 v13 = 0; | |
2131 if ( !arg0 ) | |
0 | 2132 { |
849 | 2133 v14 = Actor::GetDirectionInfo(PID(OBJECT_Actor, v24), sTargetPid, &a3, 0); |
0 | 2134 v12 = &v20; |
2135 memcpy(&v20, v14, sizeof(v20)); | |
2136 v13 = 0; | |
849 | 2137 } |
2138 v15 = pSpriteFrameTable->pSpriteSFrames; | |
2139 v3->uYawAngle = LOWORD(v12->uYawAngle); | |
2140 v16 = v15[v3->pSpriteIDs[ANIM_AtkMelee]].uAnimLength; | |
2141 v17 = v24; | |
2142 v3->uCurrentActionLength = 8 * v16; | |
2143 v3->uCurrentActionTime = v13; | |
2144 v3->uAIState = AttackingMelee; | |
2145 Actor::PlaySound(v17, 0); | |
2146 LODWORD(v18) = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2147 v25 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2148 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v13 | |
2149 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v13 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v13) ) | |
2150 { | |
2151 LODWORD(v18) = 2 * v18; | |
0 | 2152 v25 = v18; |
849 | 2153 } |
2154 if ( pParty->bTurnBasedModeOn != 1 ) | |
0 | 2155 v18 = (signed __int64)(flt_6BE3A8_debug_recmod2 * (double)(signed int)v25 * 2.133333333333333); |
849 | 2156 v3->pMonsterInfo.uRecoveryTime = v18; |
2157 v3->vVelocity.z = v13; | |
2158 v3->vVelocity.y = v13; | |
2159 v3->vVelocity.x = v13; | |
2160 v3->UpdateAnimation(); | |
2161 } | |
2162 else | |
860 | 2163 Actor::Pursue1(v24, sTargetPid, rand() % 2, 64, arg0); |
0 | 2164 } |
2165 | |
2166 //----- (00438CF3) -------------------------------------------------------- | |
322 | 2167 void Actor::ApplyFineForKillingPeasant(unsigned int uActorID) |
0 | 2168 { |
2169 unsigned int v1; // esi@1 | |
2170 unsigned int v2; // edi@2 | |
2171 char v3; // bl@3 | |
322 | 2172 //char *v4; // ecx@16 |
2173 //signed int v5; // eax@18 | |
0 | 2174 Player **ppPlayers; // esi@20 |
2175 | |
2176 v1 = uLevelMapStatsID; | |
322 | 2177 if ( !uLevelMapStatsID || !pActors[uActorID].IsPeasant()) |
0 | 2178 return; |
322 | 2179 |
2180 v2 = uActorID; | |
0 | 2181 v3 = 1; |
2182 if ( v1 != 5 ) | |
2183 { | |
2184 if ( v1 == 6 || v1 == 7 ) | |
2185 { | |
484 | 2186 _449B57_test_bit(pParty->_quest_bits, 99); |
2187 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 100) ) | |
0 | 2188 return; |
2189 goto LABEL_12; | |
2190 } | |
2191 if ( v1 != 8 ) | |
2192 goto LABEL_12; | |
2193 } | |
484 | 2194 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 99) ) |
0 | 2195 v3 = 0; |
484 | 2196 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 100) ) |
0 | 2197 v3 = 1; |
2198 if ( v3 ) | |
2199 { | |
2200 LABEL_12: | |
322 | 2201 pParty->uFine += 100 * (pMapStats->pInfos[uLevelMapStatsID]._steal_perm + pActors[v2].pMonsterInfo.uLevel + GetPartyReputation()); |
0 | 2202 if ( pParty->uFine < 0 ) |
2203 pParty->uFine = 0; | |
2204 if ( pParty->uFine > 4000000 ) | |
2205 pParty->uFine = 4000000; | |
322 | 2206 |
2207 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
2208 { | |
2209 if (pOutdoor->ddm.uReputation < 10000) | |
2210 pOutdoor->ddm.uReputation++; | |
2211 } | |
2212 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
2213 { | |
2214 if (pIndoor->dlv.uReputation < 10000) | |
2215 pIndoor->dlv.uReputation++; | |
2216 } | |
2217 else assert(false); | |
2218 | |
0 | 2219 ppPlayers = &pPlayers[1]; |
2220 do | |
2221 { | |
2222 if ( pParty->uFine ) | |
2223 { | |
484 | 2224 if ( !(unsigned __int16)_449B57_test_bit((unsigned __int8 *)(*ppPlayers)->_guilds_member_bits, 1) ) |
2225 _449B7E_toggle_bit((unsigned char *)(*ppPlayers)->_guilds_member_bits, 1, 1u); | |
0 | 2226 } |
2227 ++ppPlayers; | |
2228 } | |
2229 while ( (signed int)ppPlayers <= (signed int)&pPlayers[4] ); | |
2230 } | |
2231 } | |
2232 | |
2233 //----- (0043AE80) -------------------------------------------------------- | |
322 | 2234 void Actor::AddBloodsplatOnDamageOverlay(unsigned int uActorID, int a2, signed int a3) |
0 | 2235 { |
2236 int result; // eax@1 | |
2237 unsigned int v4; // esi@1 | |
2238 int v5; // [sp-14h] [bp-18h]@3 | |
2239 unsigned int v6; // [sp-10h] [bp-14h]@3 | |
2240 int v7; // [sp-Ch] [bp-10h]@3 | |
2241 int v8; // [sp-8h] [bp-Ch]@3 | |
2242 __int16 v9; // [sp-4h] [bp-8h]@3 | |
2243 | |
2244 result = a2 - 1; | |
862 | 2245 v4 = PID(OBJECT_Actor,uActorID); |
0 | 2246 switch ( a2 ) |
2247 { | |
2248 case 1: | |
2249 if ( a3 ) | |
2250 { | |
2251 v9 = 0; | |
2252 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2253 v7 = 0; | |
2254 LOWORD(v6) = v4; | |
2255 v5 = 904; | |
2256 goto LABEL_16; | |
2257 } | |
322 | 2258 return; |
0 | 2259 case 2: |
2260 if ( a3 ) | |
2261 { | |
2262 v9 = 0; | |
2263 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2264 v7 = 0; | |
2265 LOWORD(v6) = v4; | |
2266 v5 = 905; | |
2267 goto LABEL_16; | |
2268 } | |
322 | 2269 return; |
0 | 2270 case 3: |
2271 if ( a3 ) | |
2272 { | |
2273 v9 = 0; | |
2274 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2275 v7 = 0; | |
2276 LOWORD(v6) = v4; | |
2277 v5 = 906; | |
2278 goto LABEL_16; | |
2279 } | |
322 | 2280 return; |
0 | 2281 case 4: |
2282 if ( a3 ) | |
2283 { | |
2284 v9 = 0; | |
2285 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2286 v7 = 0; | |
2287 LOWORD(v6) = v4; | |
2288 v5 = 907; | |
2289 goto LABEL_16; | |
2290 } | |
322 | 2291 return; |
0 | 2292 case 5: |
2293 v9 = 4; | |
2294 v8 = 65536; | |
2295 v7 = 0; | |
862 | 2296 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2297 v5 = 901; |
2298 goto LABEL_16; | |
2299 case 6: | |
2300 v9 = 4; | |
2301 v8 = 65536; | |
2302 v7 = 0; | |
862 | 2303 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2304 v5 = 902; |
2305 goto LABEL_16; | |
2306 case 7: | |
2307 v9 = 4; | |
2308 v8 = 65536; | |
2309 v7 = 0; | |
862 | 2310 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2311 v5 = 903; |
2312 goto LABEL_16; | |
2313 case 8: | |
2314 v9 = 4; | |
2315 v8 = 65536; | |
2316 v7 = 0; | |
862 | 2317 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2318 v5 = 900; |
2319 goto LABEL_16; | |
2320 case 9: | |
2321 v9 = 4; | |
2322 v8 = 65536; | |
2323 v7 = 0; | |
862 | 2324 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2325 v5 = 909; |
2326 goto LABEL_16; | |
2327 case 10: | |
2328 v9 = 4; | |
2329 v8 = 65536; | |
2330 v7 = 0; | |
862 | 2331 v6 = PID(OBJECT_Actor,uActorID); |
0 | 2332 v5 = 908; |
2333 LABEL_16: | |
2334 result = pOtherOverlayList->_4418B6(v5, v6, v7, v8, v9); | |
2335 break; | |
2336 default: | |
322 | 2337 return; |
0 | 2338 } |
322 | 2339 return; |
0 | 2340 } |
2341 | |
2342 //----- (0043B3E0) -------------------------------------------------------- | |
2343 int Actor::_43B3E0_CalcDamage(Actor *a1, signed int a2) | |
2344 { | |
2345 signed int v2; // ebp@1 | |
2346 int v3; // eax@9 | |
2347 signed int v4; // edi@9 | |
2348 int v5; // esi@9 | |
2349 int v6; // ebx@11 | |
2350 unsigned __int16 v8; // si@21 | |
2351 int v9; // edi@21 | |
2352 signed int v10; // eax@23 | |
2353 int v11; // [sp+10h] [bp-4h]@1 | |
2354 | |
2355 v2 = 0; | |
2356 v11 = 0; | |
2357 if ( a2 ) | |
2358 { | |
2359 if ( a2 == 1 ) | |
2360 { | |
2361 v3 = a1->pMonsterInfo.uAttack2DamageDiceRolls; | |
2362 v4 = a1->pMonsterInfo.uAttack2DamageDiceSides; | |
2363 v5 = a1->pMonsterInfo.uAttack2DamageBonus; | |
2364 } | |
2365 else | |
2366 { | |
2367 if ( a2 <= 1 ) | |
2368 return 0; | |
2369 if ( a2 <= 3 ) | |
2370 { | |
2371 if ( a2 == 2 ) | |
2372 { | |
2373 v8 = a1->pMonsterInfo.uSpellSkillAndMastery1; | |
2374 v9 = a1->pMonsterInfo.uSpell1ID; | |
2375 } | |
2376 else | |
2377 { | |
2378 v8 = a1->pMonsterInfo.uSpellSkillAndMastery2; | |
2379 v9 = a1->pMonsterInfo.uSpell2ID; | |
2380 } | |
2381 v10 = SkillToMastery(v8); | |
2382 return _43AFE3_calc_spell_damage(v9, v8 & 0x3F, v10, 0); | |
2383 } | |
2384 if ( a2 != 4 ) | |
2385 return 0; | |
2386 v3 = a1->pMonsterInfo.uSpecialAbilityDamageDiceRolls; | |
2387 v4 = a1->pMonsterInfo.uSpecialAbilityDamageDiceSides; | |
2388 v5 = a1->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
2389 } | |
2390 } | |
2391 else | |
2392 { | |
2393 if ( (signed __int64)a1->pActorBuffs[14].uExpireTime > 0 ) | |
2394 v2 = a1->pActorBuffs[14].uPower; | |
2395 if ( (signed __int64)a1->pActorBuffs[18].uExpireTime > 0 && a1->pActorBuffs[18].uPower > v2 ) | |
2396 v2 = a1->pActorBuffs[18].uPower; | |
2397 if ( (signed __int64)a1->pActorBuffs[21].uExpireTime > 0 ) | |
2398 v2 += a1->pActorBuffs[21].uPower; | |
2399 v3 = a1->pMonsterInfo.uAttack1DamageDiceRolls; | |
2400 v4 = a1->pMonsterInfo.uAttack1DamageDiceSides; | |
2401 v5 = a1->pMonsterInfo.uAttack1DamageBonus; | |
2402 } | |
2403 if ( v3 > 0 ) | |
2404 { | |
2405 v6 = v3; | |
2406 do | |
2407 { | |
2408 --v6; | |
2409 v11 += rand() % v4 + 1; | |
2410 } | |
2411 while ( v6 ); | |
2412 } | |
2413 return v11 + v5 + v2; | |
2414 } | |
2415 | |
2416 //----- (00438B9B) -------------------------------------------------------- | |
322 | 2417 bool Actor::IsPeasant() |
0 | 2418 { |
2419 unsigned int v1; // eax@1 | |
2420 | |
2421 v1 = this->uAlly; | |
2422 if ( !v1 ) | |
2423 v1 = (this->pMonsterInfo.uID - 1) / 3 + 1; | |
2424 return (signed int)v1 >= 39 && (signed int)v1 <= 44 | |
2425 || (signed int)v1 >= 45 && (signed int)v1 <= 50 | |
2426 || (signed int)v1 >= 51 && (signed int)v1 <= 62 | |
2427 || (signed int)v1 >= 78 && (signed int)v1 <= 83; | |
2428 } | |
2429 | |
2430 //----- (0042EBEE) -------------------------------------------------------- | |
2431 bool Actor::StealFrom(unsigned int uActorID) | |
2432 { | |
2433 unsigned int v1; // esi@1 | |
2434 Player *pPlayer; // edi@1 | |
2435 bool result; // eax@1 | |
2436 int v4; // ebx@2 | |
2437 unsigned int v5; // eax@2 | |
2438 DDM_DLV_Header *v6; // esi@4 | |
2439 unsigned int v7; // [sp+8h] [bp-4h]@1 | |
2440 int v8; // [sp+8h] [bp-4h]@6 | |
2441 | |
2442 v1 = uActiveCharacter; | |
2443 v7 = uActorID; | |
243 | 2444 pPlayer = &pParty->pPlayers[uActiveCharacter-1]; |
0 | 2445 result = pPlayer->CanAct(); |
2446 if ( result ) | |
2447 { | |
2448 pStru277->_427D48(v1); | |
2449 v4 = 0; | |
2450 v5 = pMapStats->GetMapInfo(pCurrentMapName); | |
2451 if ( v5 ) | |
2452 v4 = pMapStats->pInfos[v5]._steal_perm; | |
2453 v6 = &pOutdoor->ddm; | |
2454 if ( uCurrentlyLoadedLevelType != LEVEL_Outdoor) | |
2455 v6 = &pIndoor->dlv; | |
2456 pPlayer->StealFromActor(v7, v4, v6->uReputation++); | |
2457 v8 = pPlayer->GetAttackRecoveryTime(0); | |
2458 if ( v8 < 30 ) | |
2459 v8 = 30; | |
2460 if ( !pParty->bTurnBasedModeOn ) | |
2461 pPlayer->SetRecoveryTime((signed __int64)(flt_6BE3A4_debug_recmod1 * (double)v8 * 2.133333333333333)); | |
2462 pTurnEngine->_40471C(); | |
2463 result = 1; | |
2464 } | |
2465 return result; | |
2466 } | |
2467 | |
2468 //----- (00403A60) -------------------------------------------------------- | |
861 | 2469 void Actor::SpellAttack2(unsigned int uActorID, signed int edx0, AIDirection *pDir) |
0 | 2470 { |
2471 Actor *v3; // ebx@1 | |
2472 AIDirection *v4; // esi@3 | |
2473 AIDirection *v5; // edi@3 | |
2474 signed int v6; // eax@4 | |
2475 Vec3_int_ v7; // ST04_12@6 | |
322 | 2476 //unsigned int result; // eax@7 |
0 | 2477 AIDirection *v9; // eax@8 |
2478 unsigned int v10; // esi@8 | |
2479 AIDirection *v11; // esi@9 | |
2480 SpriteFrame *v12; // ecx@10 | |
2481 __int16 v13; // ax@10 | |
2482 unsigned int v14; // ecx@10 | |
2483 unsigned int v15; // eax@10 | |
2484 signed int v16; // ecx@17 | |
2485 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2486 AIDirection v18; // [sp+28h] [bp-2Ch]@9 | |
2487 int v19; // [sp+44h] [bp-10h]@6 | |
2488 signed int a2; // [sp+48h] [bp-Ch]@1 | |
2489 int v21; // [sp+4Ch] [bp-8h]@3 | |
2490 unsigned int v22; // [sp+50h] [bp-4h]@1 | |
2491 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2492 | |
2493 v22 = uActorID; | |
2494 v3 = &pActors[uActorID]; | |
2495 a2 = edx0; | |
848 | 2496 if ( PID_TYPE(edx0) == OBJECT_Actor) |
0 | 2497 { |
848 | 2498 v6 = PID_ID(edx0); |
0 | 2499 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2500 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2501 v21 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2502 } | |
2503 else | |
2504 { | |
848 | 2505 if ( PID_TYPE(edx0) == OBJECT_Player) |
0 | 2506 { |
2507 v4 = (AIDirection *)pParty->vPosition.x; | |
2508 v5 = (AIDirection *)pParty->vPosition.y; | |
2509 v21 = pParty->vPosition.z + pParty->sEyelevel; | |
2510 } | |
2511 else | |
2512 { | |
2513 v4 = pDir; | |
2514 v5 = pDir; | |
2515 } | |
2516 } | |
2517 v19 = v3->uActorHeight; | |
2518 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2519 v7.y = v3->vPosition.y; | |
2520 v7.x = v3->vPosition.x; | |
2521 if ( sub_407A1C((int)v4, (int)v5, v21, v7) ) | |
2522 { | |
2523 v9 = pDir; | |
2524 v10 = 0; | |
2525 if ( !pDir ) | |
2526 { | |
862 | 2527 v11 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v22), a2, &a3, 0); |
0 | 2528 v9 = &v18; |
2529 memcpy(&v18, v11, sizeof(v18)); | |
2530 v10 = 0; | |
2531 } | |
2532 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2533 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2534 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2535 v14 = v22; |
2536 v3->uCurrentActionLength = 8 * v13; | |
2537 v3->uCurrentActionTime = v10; | |
2538 v3->uAIState = AttackingRanged4; | |
2539 Actor::PlaySound(v14, 0); | |
2540 v15 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2541 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2542 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2543 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2544 { | |
2545 v15 *= 2; | |
2546 pDira = v15; | |
2547 } | |
2548 if ( pParty->bTurnBasedModeOn == 1 ) | |
2549 v3->pMonsterInfo.uRecoveryTime = v15; | |
2550 else | |
2551 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2552 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2553 * (double)(signed int)pDira | |
2554 * -2.133333333333333); | |
2555 v16 = v3->pMonsterInfo.uSpell2ID; | |
2556 v3->vVelocity.z = v10; | |
2557 v3->vVelocity.y = v10; | |
2558 v3->vVelocity.x = v10; | |
2559 if ( sub_42FB5C(v16) ) | |
2560 { | |
2561 v3->uCurrentActionLength = 64; | |
2562 v3->uCurrentActionTime = v10; | |
2563 v3->uAIState = Fidgeting; | |
322 | 2564 v3->UpdateAnimation(); |
0 | 2565 v3->uAIState = AttackingRanged4; |
2566 } | |
2567 else | |
322 | 2568 v3->UpdateAnimation(); |
0 | 2569 } |
2570 else | |
860 | 2571 Actor::Pursue1(v22, a2, v22, 64, pDir); |
0 | 2572 } |
2573 | |
2574 //----- (00403854) -------------------------------------------------------- | |
861 | 2575 void Actor::SpellAttack1(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2576 { |
2577 Actor *v3; // ebx@1 | |
2578 AIDirection *v4; // esi@3 | |
2579 AIDirection *v5; // edi@3 | |
2580 signed int v6; // eax@4 | |
2581 Vec3_int_ v7; // ST04_12@6 | |
322 | 2582 //unsigned int result; // eax@7 |
0 | 2583 AIDirection *v9; // eax@8 |
2584 unsigned int v10; // esi@8 | |
2585 AIDirection *v11; // esi@9 | |
2586 SpriteFrame *v12; // ecx@10 | |
2587 __int16 v13; // ax@10 | |
2588 unsigned int v14; // ecx@10 | |
2589 unsigned int v15; // eax@10 | |
2590 signed int v16; // ecx@17 | |
2591 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2592 AIDirection v18; // [sp+28h] [bp-2Ch]@9 | |
2593 int v19; // [sp+44h] [bp-10h]@6 | |
848 | 2594 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2595 int v21; // [sp+4Ch] [bp-8h]@3 |
2596 unsigned int v22; // [sp+50h] [bp-4h]@1 | |
2597 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2598 | |
2599 v22 = uActorID; | |
2600 v3 = &pActors[uActorID]; | |
848 | 2601 //a2 = edx0; |
2602 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2603 { |
848 | 2604 v6 = PID_ID(sTargetPid); |
0 | 2605 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2606 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2607 v21 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2608 } | |
2609 else | |
2610 { | |
848 | 2611 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2612 { |
2613 v4 = (AIDirection *)pParty->vPosition.x; | |
2614 v5 = (AIDirection *)pParty->vPosition.y; | |
2615 v21 = pParty->vPosition.z + pParty->sEyelevel; | |
2616 } | |
2617 else | |
2618 { | |
2619 v4 = pDir; | |
2620 v5 = pDir; | |
2621 } | |
2622 } | |
2623 v19 = v3->uActorHeight; | |
2624 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2625 v7.y = v3->vPosition.y; | |
2626 v7.x = v3->vPosition.x; | |
2627 if ( sub_407A1C((int)v4, (int)v5, v21, v7) ) | |
2628 { | |
2629 v9 = pDir; | |
2630 v10 = 0; | |
2631 if ( !pDir ) | |
2632 { | |
862 | 2633 v11 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v22), sTargetPid, &a3, 0); |
0 | 2634 v9 = &v18; |
2635 memcpy(&v18, v11, sizeof(v18)); | |
2636 v10 = 0; | |
2637 } | |
2638 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2639 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2640 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2641 v14 = v22; |
2642 v3->uCurrentActionLength = 8 * v13; | |
2643 v3->uCurrentActionTime = v10; | |
2644 v3->uAIState = AttackingRanged3; | |
2645 Actor::PlaySound(v14, 0); | |
2646 v15 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2647 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2648 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2649 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2650 { | |
2651 v15 *= 2; | |
2652 pDira = v15; | |
2653 } | |
2654 if ( pParty->bTurnBasedModeOn == 1 ) | |
2655 v3->pMonsterInfo.uRecoveryTime = v15; | |
2656 else | |
2657 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2658 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2659 * (double)(signed int)pDira | |
2660 * -2.133333333333333); | |
2661 v16 = v3->pMonsterInfo.uSpell1ID; | |
2662 v3->vVelocity.z = v10; | |
2663 v3->vVelocity.y = v10; | |
2664 v3->vVelocity.x = v10; | |
2665 if ( sub_42FB5C(v16) ) | |
2666 { | |
2667 v3->uCurrentActionLength = 64; | |
2668 v3->uCurrentActionTime = v10; | |
2669 v3->uAIState = Fidgeting; | |
322 | 2670 v3->UpdateAnimation(); |
0 | 2671 v3->uAIState = AttackingRanged3; |
2672 } | |
2673 else | |
322 | 2674 v3->UpdateAnimation(); |
0 | 2675 } |
2676 else | |
860 | 2677 Actor::Pursue1(v22, sTargetPid, v22, 64, pDir); |
0 | 2678 } |
2679 | |
2680 //----- (0040368B) -------------------------------------------------------- | |
861 | 2681 void Actor::MissileAttack2(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2682 { |
2683 Actor *v3; // ebx@1 | |
2684 AIDirection *v4; // esi@3 | |
2685 AIDirection *v5; // edi@3 | |
2686 signed int v6; // eax@4 | |
2687 Vec3_int_ v7; // ST04_12@6 | |
322 | 2688 //unsigned int result; // eax@7 |
0 | 2689 AIDirection *v9; // eax@8 |
2690 unsigned int v10; // esi@8 | |
2691 AIDirection *v11; // esi@9 | |
2692 SpriteFrame *v12; // ecx@10 | |
2693 __int16 v13; // ax@10 | |
2694 unsigned int v14; // ecx@10 | |
2695 signed __int64 v15; // qax@10 | |
2696 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2697 AIDirection v17; // [sp+28h] [bp-2Ch]@9 | |
2698 int v18; // [sp+44h] [bp-10h]@6 | |
848 | 2699 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2700 int v20; // [sp+4Ch] [bp-8h]@3 |
2701 unsigned int v21; // [sp+50h] [bp-4h]@1 | |
2702 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2703 | |
2704 v21 = uActorID; | |
2705 v3 = &pActors[uActorID]; | |
848 | 2706 //a2 = edx0; |
2707 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2708 { |
848 | 2709 v6 = PID_ID(sTargetPid); |
0 | 2710 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2711 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2712 v20 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2713 } | |
2714 else | |
2715 { | |
848 | 2716 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2717 { |
2718 v4 = (AIDirection *)pParty->vPosition.x; | |
2719 v5 = (AIDirection *)pParty->vPosition.y; | |
2720 v20 = pParty->vPosition.z + pParty->sEyelevel; | |
2721 } | |
2722 else | |
2723 { | |
2724 v4 = pDir; | |
2725 v5 = pDir; | |
2726 } | |
2727 } | |
2728 v18 = v3->uActorHeight; | |
2729 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v18 * -0.75); | |
2730 v7.y = v3->vPosition.y; | |
2731 v7.x = v3->vPosition.x; | |
2732 if ( sub_407A1C((int)v4, (int)v5, v20, v7) ) | |
2733 { | |
2734 v9 = pDir; | |
2735 v10 = 0; | |
2736 if ( !pDir ) | |
2737 { | |
862 | 2738 v11 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v21), sTargetPid, &a3, 0); |
0 | 2739 v9 = &v17; |
2740 memcpy(&v17, v11, sizeof(v17)); | |
2741 v10 = 0; | |
2742 } | |
2743 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2744 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2745 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2746 v14 = v21; |
2747 v3->uCurrentActionLength = 8 * v13; | |
2748 v3->uCurrentActionTime = v10; | |
2749 v3->uAIState = AttackingRanged2; | |
2750 Actor::PlaySound(v14, 0); | |
2751 LODWORD(v15) = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2752 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2753 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2754 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2755 { | |
2756 LODWORD(v15) = 2 * v15; | |
2757 pDira = v15; | |
2758 } | |
2759 if ( pParty->bTurnBasedModeOn != 1 ) | |
2760 v15 = (signed __int64)(flt_6BE3A8_debug_recmod2 * (double)(signed int)pDira * 2.133333333333333); | |
2761 v3->pMonsterInfo.uRecoveryTime = v15; | |
2762 v3->vVelocity.z = v10; | |
2763 v3->vVelocity.y = v10; | |
2764 v3->vVelocity.x = v10; | |
322 | 2765 v3->UpdateAnimation(); |
0 | 2766 } |
2767 else | |
860 | 2768 Actor::Pursue1(v21, sTargetPid, v21, 64, pDir); |
0 | 2769 } |
2770 | |
2771 //----- (00403476) -------------------------------------------------------- | |
861 | 2772 void Actor::MissileAttack1(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2773 { |
2774 Actor *v3; // ebx@1 | |
2775 int v4; // esi@3 | |
2776 int v5; // edi@3 | |
2777 signed int v6; // eax@4 | |
2778 Vec3_int_ v7; // ST04_12@6 | |
2779 unsigned char v8[12]; // ST04_12@7 | |
322 | 2780 //unsigned int result; // eax@8 |
0 | 2781 AIDirection *v10; // eax@9 |
2782 unsigned int v11; // esi@9 | |
2783 AIDirection *v12; // esi@10 | |
2784 SpriteFrame *v13; // ecx@11 | |
2785 __int16 v14; // ax@11 | |
2786 unsigned int v15; // ecx@11 | |
2787 unsigned int v16; // eax@11 | |
2788 AIDirection a3; // [sp+Ch] [bp-48h]@10 | |
2789 AIDirection v18; // [sp+28h] [bp-2Ch]@10 | |
2790 int v19; // [sp+44h] [bp-10h]@6 | |
848 | 2791 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2792 unsigned int v21; // [sp+4Ch] [bp-8h]@1 |
2793 int v22; // [sp+50h] [bp-4h]@3 | |
2794 unsigned int pDira; // [sp+5Ch] [bp+8h]@11 | |
2795 | |
2796 v21 = uActorID; | |
2797 v3 = &pActors[uActorID]; | |
848 | 2798 //a2 = edx0; |
2799 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2800 { |
848 | 2801 v6 = PID_ID(sTargetPid); |
0 | 2802 v4 = pActors[v6].vPosition.x; |
2803 v5 = pActors[v6].vPosition.y; | |
2804 v22 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2805 } | |
2806 else | |
2807 { | |
848 | 2808 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2809 { |
2810 v4 = pParty->vPosition.x; | |
2811 v5 = pParty->vPosition.y; | |
2812 v22 = pParty->vPosition.z + pParty->sEyelevel; | |
2813 } | |
2814 else | |
2815 { | |
2816 v4 = (int)pDir; | |
2817 v5 = (int)pDir; | |
2818 } | |
2819 } | |
2820 v19 = v3->uActorHeight; | |
2821 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2822 v7.y = v3->vPosition.y; | |
2823 v7.x = v3->vPosition.x; | |
2824 if ( sub_407A1C(v4, v5, v22, v7) | |
2825 || (*(unsigned int *)&v8[8] = v22, | |
2826 v19 = v3->uActorHeight, | |
2827 *(_QWORD *)v8 = __PAIR__(v5, v4), | |
2828 sub_407A1C( | |
2829 v3->vPosition.x, | |
2830 v3->vPosition.y, | |
2831 v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75), | |
2832 *(Vec3_int_ *)v8)) ) | |
2833 { | |
2834 v10 = pDir; | |
2835 v11 = 0; | |
2836 if ( !pDir ) | |
2837 { | |
862 | 2838 v12 = Actor::GetDirectionInfo(PID(OBJECT_Actor,v21), sTargetPid, &a3, 0); |
0 | 2839 v10 = &v18; |
2840 memcpy(&v18, v12, sizeof(v18)); | |
2841 v11 = 0; | |
2842 } | |
2843 v13 = pSpriteFrameTable->pSpriteSFrames; | |
2844 v3->uYawAngle = LOWORD(v10->uYawAngle); | |
319 | 2845 v14 = v13[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2846 v15 = v21; |
2847 v3->uCurrentActionLength = 8 * v14; | |
2848 v3->uCurrentActionTime = v11; | |
2849 v3->uAIState = AttackingRanged1; | |
2850 Actor::PlaySound(v15, 0); | |
2851 v16 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2852 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2853 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v11 | |
2854 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v11 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v11) ) | |
2855 { | |
2856 v16 *= 2; | |
2857 pDira = v16; | |
2858 } | |
2859 if ( pParty->bTurnBasedModeOn == 1 ) | |
2860 v3->pMonsterInfo.uRecoveryTime = v16; | |
2861 else | |
2862 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2863 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2864 * (double)(signed int)pDira | |
2865 * -2.133333333333333); | |
2866 v3->vVelocity.z = v11; | |
2867 v3->vVelocity.y = v11; | |
2868 v3->vVelocity.x = v11; | |
322 | 2869 v3->UpdateAnimation(); |
0 | 2870 } |
2871 else | |
860 | 2872 Actor::Pursue1(v21, sTargetPid, v21, 64, pDir); |
0 | 2873 } |
2874 | |
2875 //----- (004032B2) -------------------------------------------------------- | |
322 | 2876 void Actor::_4032B2(unsigned int a1, unsigned int a2, int a3, int uActionLength) |
0 | 2877 { |
2878 unsigned int v4; // edi@1 | |
2879 Actor *v5; // esi@1 | |
2880 int v6; // ebx@1 | |
2881 int v7; // ST08_4@1 | |
2882 int v8; // eax@1 | |
2883 unsigned int v9; // ebx@11 | |
2884 int v10; // ebx@13 | |
2885 signed __int16 v11; // cx@17 | |
2886 unsigned int v12; // [sp-8h] [bp-44h]@10 | |
2887 AIDirection *v13; // [sp-4h] [bp-40h]@10 | |
2888 AIDirection v14; // [sp+Ch] [bp-30h]@7 | |
2889 int v15; // [sp+28h] [bp-14h]@11 | |
2890 unsigned int v16; // [sp+2Ch] [bp-10h]@1 | |
2891 int y; // [sp+30h] [bp-Ch]@1 | |
2892 unsigned int uActorID; // [sp+34h] [bp-8h]@1 | |
2893 int v19; // [sp+38h] [bp-4h]@1 | |
2894 | |
414 | 2895 //v14 never filled, maybe it is passed to function but optimized away as local variable |
2896 | |
0 | 2897 uActorID = a1; |
2898 v4 = a1; | |
2899 v5 = &pActors[a1]; | |
2900 v16 = a2; | |
2901 v6 = v5->vInitialPosition.x - v5->vPosition.x; | |
2902 v7 = v5->vInitialPosition.x - v5->vPosition.x; | |
2903 y = v5->vInitialPosition.y - v5->vPosition.y; | |
2904 v19 = abs(v7); | |
2905 v8 = abs(y); | |
2906 if ( v19 <= v8 ) | |
2907 v19 = v8 + (v19 >> 1); | |
2908 else | |
2909 v19 += v8 >> 1; | |
2910 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
2911 { | |
2912 if ( !uActionLength ) | |
2913 uActionLength = 256; | |
414 | 2914 Actor::AI_StandOrBored(uActorID, OBJECT_Player, uActionLength, &v14); |
0 | 2915 return; |
2916 } | |
2917 if ( pActors[v4].pMonsterInfo.uMovementType == 3 && v19 < 128 ) | |
2918 { | |
2919 v13 = &v14; | |
2920 v12 = 256; | |
413 | 2921 Actor::AI_Stand(uActorID, v16, v12, v13); |
0 | 2922 return; |
2923 } | |
2924 v15 = (rand() & 0xF) << 12; | |
2925 v19 += (unsigned __int64)(v15 * (signed __int64)a3) >> 16; | |
2926 v9 = (stru_5C6E00->uIntegerDoublePi - 1) & stru_5C6E00->Atan2(v6, y); | |
2927 if ( rand() % 100 < 25 ) | |
2928 { | |
2929 Actor::StandAwhile(uActorID); | |
2930 return; | |
2931 } | |
2932 v10 = v9 + rand() % 256 - 128; | |
2933 if ( abs(v10 - v5->uYawAngle) > 256 && !(BYTE2(v5->uAttributes) & 0x20) ) | |
2934 { | |
2935 v13 = &v14; | |
2936 v12 = 256; | |
413 | 2937 Actor::AI_Stand(uActorID, v16, v12, v13); |
245 | 2938 return; |
0 | 2939 } |
2940 v11 = v5->uMovementSpeed; | |
2941 v5->uYawAngle = v10; | |
2942 if ( v11 ) | |
2943 v5->uCurrentActionLength = 32 * v19 / v11; | |
2944 else | |
2945 v5->uCurrentActionLength = 0; | |
2946 v5->uCurrentActionTime = 0; | |
2947 v5->uAIState = Tethered; | |
2948 if ( rand() % 100 < 2 ) | |
2949 Actor::PlaySound(uActorID, 3u); | |
2950 v5->UpdateAnimation(); | |
2951 } | |
2952 | |
2953 //----- (004031C1) -------------------------------------------------------- | |
2954 char __fastcall Actor::_4031C1_update_job(unsigned int uActorID, signed int a2, int a3) | |
2955 { | |
2956 unsigned int v3; // edi@1 | |
2957 Actor *v4; // esi@1 | |
2958 ActorJob *v5; // eax@1 | |
2959 signed int v6; // edx@2 | |
2960 ActorJob *v7; // eax@2 | |
2961 signed int v8; // edi@2 | |
82 | 2962 ActorJob *v9; // ecx@2 |
0 | 2963 __int16 v10; // cx@15 |
2964 signed int v12; // [sp+8h] [bp-4h]@1 | |
2965 | |
2966 v3 = uActorID; | |
2967 v12 = a2; | |
2968 v4 = &pActors[uActorID]; | |
2969 v5 = (ActorJob *)pActors[uActorID].CanAct(); | |
2970 if ( v5 ) | |
2971 { | |
2972 v6 = 65535; | |
2973 v7 = &v4->pScheduledJobs[v3]; | |
2974 v8 = 7; | |
82 | 2975 v9 = &v7[7];//(char *)&v7[7].uHour; |
2976 while ( !(v9->uAttributes & 1) || v9->uHour > v12 ) | |
0 | 2977 { |
2978 --v8; | |
82 | 2979 --v9; |
0 | 2980 if ( v8 < 0 ) |
82 | 2981 break; |
0 | 2982 } |
82 | 2983 if( v8 >= 0 ) |
2984 v6 = v8; | |
0 | 2985 if ( !v8 && v6 == 65535 ) |
2986 v6 = 7; | |
2987 v5 = &v7[v6]; | |
2988 if ( v4->vInitialPosition.x != v5->vPos.x | |
2989 || v4->vInitialPosition.y != v5->vPos.y | |
2990 || v4->vInitialPosition.z != v5->vPos.z | |
2991 || v4->pMonsterInfo.uMovementType != v5->uAction ) | |
2992 { | |
2993 v4->vInitialPosition.x = v5->vPos.x; | |
2994 v4->vInitialPosition.y = v5->vPos.y; | |
2995 v10 = v5->vPos.z; | |
2996 v4->vInitialPosition.z = v10; | |
2997 LOBYTE(v5) = v5->uAction; | |
2998 v4->pMonsterInfo.uMovementType = (unsigned __int8)v5; | |
2999 if ( a3 == 1 ) | |
3000 { | |
3001 v4->vPosition.x = v4->vInitialPosition.x; | |
3002 v4->vPosition.y = v4->vInitialPosition.y; | |
3003 LOBYTE(v5) = v10; | |
3004 v4->vPosition.z = v10; | |
3005 } | |
3006 } | |
3007 } | |
3008 return (char)v5; | |
3009 } | |
3010 | |
3011 //----- (004030AD) -------------------------------------------------------- | |
861 | 3012 void Actor::Stun(unsigned int uActorID, signed int edx0, int arg0) |
0 | 3013 { |
3014 unsigned int v3; // edi@1 | |
3015 Actor *v4; // ebx@1 | |
322 | 3016 //__int16 result; // ax@10 |
0 | 3017 SpriteFrame *v6; // ecx@16 |
3018 __int16 v7; // ax@16 | |
3019 unsigned int v8; // ecx@16 | |
3020 AIDirection a3; // [sp+Ch] [bp-40h]@16 | |
3021 AIDirection v10; // [sp+28h] [bp-24h]@16 | |
3022 unsigned int v11; // [sp+44h] [bp-8h]@1 | |
3023 signed int a2; // [sp+48h] [bp-4h]@1 | |
3024 | |
3025 v3 = uActorID; | |
3026 a2 = edx0; | |
3027 v4 = &pActors[uActorID]; | |
3028 v11 = uActorID; | |
3029 if ( v4->uAIState == 7 ) | |
3030 BYTE2(v4->uAttributes) |= 2u; | |
3031 if ( v4->pMonsterInfo.uHostilityType != 4 ) | |
3032 { | |
3033 v4->uAttributes &= 0xFFFFFFFBu; | |
3034 v4->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
3035 } | |
3036 if ( (signed __int64)v4->pActorBuffs[1].uExpireTime > 0 ) | |
3037 v4->pActorBuffs[1].Reset(); | |
3038 if ( (signed __int64)v4->pActorBuffs[4].uExpireTime > 0 ) | |
3039 v4->pActorBuffs[4].Reset(); | |
3040 if ( arg0 | |
322 | 3041 || (v4->uAIState != 8 |
3042 && v4->uAIState != 3 | |
3043 && v4->uAIState != 12 | |
3044 && v4->uAIState != 13 | |
3045 && v4->uAIState != 18 | |
3046 && v4->uAIState != 2)) | |
0 | 3047 { |
862 | 3048 memcpy(&v10, Actor::GetDirectionInfo(PID(OBJECT_Actor,v3), a2, &a3, 0), sizeof(v10)); |
0 | 3049 v6 = pSpriteFrameTable->pSpriteSFrames; |
3050 v4->uYawAngle = LOWORD(v10.uYawAngle); | |
319 | 3051 v7 = v6[v4->pSpriteIDs[ANIM_GotHit]].uAnimLength; |
0 | 3052 v8 = v11; |
3053 v4->uCurrentActionTime = 0; | |
3054 v4->uAIState = Stunned; | |
3055 v4->uCurrentActionLength = 8 * v7; | |
3056 Actor::PlaySound(v8, 2u); | |
322 | 3057 v4->UpdateAnimation(); |
0 | 3058 } |
3059 } | |
3060 | |
3061 //----- (00402F87) -------------------------------------------------------- | |
414 | 3062 void Actor::AI_Bored(unsigned int uActorID, unsigned int uObjID, AIDirection *a4) |
0 | 3063 { |
3064 unsigned int v7; // eax@3 | |
3065 unsigned int v9; // eax@3 | |
414 | 3066 |
3067 assert(uActorID < uNumActors); | |
3068 auto actor = pActors + uActorID; | |
417 | 3069 |
3070 AIDirection a3; // [sp+Ch] [bp-5Ch]@2 | |
414 | 3071 if (!a4) |
862 | 3072 a4 = Actor::GetDirectionInfo(PID(OBJECT_Actor,uActorID), uObjID, &a3, 0); |
414 | 3073 |
3074 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Bored]].uAnimLength; | |
3075 | |
3076 v7 = stru_5C6E00->Atan2(actor->vPosition.x - pIndoorCamera->pos.x, actor->vPosition.y - pIndoorCamera->pos.y); | |
3077 v9 = stru_5C6E00->uIntegerPi + actor->uYawAngle + ((signed int)stru_5C6E00->uIntegerPi >> 3) - v7; | |
3078 | |
3079 if ( BYTE1(v9) & 7 ) // turned away - just stand | |
3080 Actor::AI_Stand(uActorID, uObjID, actor->uCurrentActionLength, a4); | |
3081 else // facing player - play bored anim | |
0 | 3082 { |
414 | 3083 actor->uAIState = Fidgeting; |
3084 actor->uCurrentActionTime = 0; | |
3085 actor->uYawAngle = a4->uYawAngle; | |
3086 actor->vVelocity.z = 0; | |
3087 actor->vVelocity.y = 0; | |
3088 actor->vVelocity.x = 0; | |
0 | 3089 if ( rand() % 100 < 5 ) |
414 | 3090 Actor::PlaySound(uActorID, 3); |
3091 actor->UpdateAnimation(); | |
0 | 3092 } |
3093 } | |
3094 | |
3095 //----- (00402F27) -------------------------------------------------------- | |
322 | 3096 void Actor::Resurrect(unsigned int uActorID) |
0 | 3097 { |
3098 Actor *pActor; // esi@1 | |
3099 SpriteFrame *v2; // edx@1 | |
3100 int v3; // eax@1 | |
3101 | |
3102 pActor = &pActors[uActorID]; | |
3103 v2 = pSpriteFrameTable->pSpriteSFrames; | |
319 | 3104 v3 = pActor->pSpriteIDs[ANIM_Dying]; |
0 | 3105 pActor->uCurrentActionTime = 0; |
3106 pActor->uAIState = Resurrected; | |
3107 pActor->uCurrentActionAnimation = ANIM_Dying; | |
3108 pActor->uCurrentActionLength = 8 * v2[v3].uAnimLength; | |
3109 pActor->sCurrentHP = LOWORD(pActor->pMonsterInfo.uHP); | |
3110 Actor::PlaySound(uActorID, 1u); | |
322 | 3111 pActor->UpdateAnimation(); |
0 | 3112 } |
3113 | |
3114 //----- (00402D6E) -------------------------------------------------------- | |
319 | 3115 void Actor::Die(unsigned int uActorID) |
0 | 3116 { |
319 | 3117 auto actor = &pActors[uActorID]; |
0 | 3118 |
319 | 3119 actor->uCurrentActionTime = 0; |
3120 actor->uAIState = Dying; | |
3121 actor->uCurrentActionAnimation = ANIM_Dying; | |
3122 actor->sCurrentHP = 0; | |
3123 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Dying]].uAnimLength; | |
3124 actor->pActorBuffs[6].Reset(); | |
3125 actor->pActorBuffs[5].Reset(); | |
3126 Actor::PlaySound(uActorID, 1); | |
3127 actor->UpdateAnimation(); | |
3128 | |
3129 for (uint i = 0; i < 5; ++i) | |
3130 if (pParty->field_750[i] == actor->pMonsterInfo.uID) | |
3131 pParty->field_75A[i] = true; | |
3132 | |
3133 for (uint i = 0; i < 22; ++i) | |
3134 actor->pActorBuffs[i].Reset(); | |
3135 | |
3136 ItemGen drop; | |
3137 switch (actor->pMonsterInfo.uID) | |
0 | 3138 { |
319 | 3139 case MONSTER_HARPY_1: case MONSTER_HARPY_2: case MONSTER_HARPY_3: |
3140 drop.uItemID = ITEM_HARPY_FEATHER; | |
3141 break; | |
3142 | |
3143 case MONSTER_OOZE_1: case MONSTER_OOZE_2: case MONSTER_OOZE_3: | |
3144 drop.uItemID = ITEM_OOZE_ECTOPLASM_BOTTLE; | |
3145 break; | |
3146 | |
3147 case MONSTER_TROLL_1: case MONSTER_TROLL_2: case MONSTER_TROLL_3: | |
3148 drop.uItemID = ITEM_TROLL_BLOOD; | |
3149 break; | |
3150 | |
3151 case MONSTER_DEVIL_1: case MONSTER_DEVIL_2: case MONSTER_DEVIL_3: | |
3152 drop.uItemID = ITEM_DEVIL_ICHOR; | |
3153 break; | |
3154 | |
3155 case MONSTER_DRAGON_1: case MONSTER_DRAGON_2: case MONSTER_DRAGON_3: | |
3156 drop.uItemID = ITEM_DRAGON_EYE; | |
321 | 3157 break; |
0 | 3158 } |
319 | 3159 |
3160 if (rand() % 100 < 20) | |
0 | 3161 { |
319 | 3162 sub_42F7EB_DropItemAt(pItemsTable->pItems[drop.uItemID].uSpriteID, |
3163 actor->vPosition.x, | |
3164 actor->vPosition.y, | |
3165 actor->vPosition.z + 16, | |
3166 rand() % 200 + 200, | |
0 | 3167 1, |
3168 1, | |
3169 0, | |
319 | 3170 &drop); |
0 | 3171 } |
319 | 3172 |
3173 if (actor->pMonsterInfo.uSpecialAbilityType == MONSTER_SPECIAL_ABILITY_EXPLODE) | |
3174 Actor::Explode(uActorID); | |
0 | 3175 } |
3176 | |
3177 //----- (00402CED) -------------------------------------------------------- | |
322 | 3178 void Actor::PlaySound(unsigned int uActorID, unsigned int uSoundID) |
0 | 3179 { |
3180 Actor *v2; // eax@1 | |
3181 unsigned __int16 v3; // dx@1 | |
3182 int v4; // eax@3 | |
3183 int v5; // eax@4 | |
3184 unsigned int v6; // eax@6 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3185 //signed int v7; // eax@12 |
0 | 3186 signed int v8; // [sp-18h] [bp-1Ch]@10 |
3187 signed int v9; // [sp-14h] [bp-18h]@10 | |
3188 int v10; // [sp-10h] [bp-14h]@10 | |
3189 unsigned int v11; // [sp-Ch] [bp-10h]@10 | |
3190 int v12; // [sp-8h] [bp-Ch]@10 | |
3191 | |
3192 v2 = &pActors[uActorID]; | |
3193 v3 = v2->pSoundSampleIDs[uSoundID]; | |
3194 if ( v3 ) | |
3195 { | |
3196 if ( (signed __int64)v2->pActorBuffs[3].uExpireTime <= 0 ) | |
3197 { | |
3198 v12 = 0; | |
3199 v11 = 0; | |
3200 v10 = 0; | |
3201 v9 = 0; | |
3202 v8 = -1; | |
3203 } | |
3204 else | |
3205 { | |
3206 v4 = v2->pActorBuffs[3].uPower - 2; | |
3207 if ( v4 ) | |
3208 { | |
3209 v5 = v4 - 1; | |
3210 if ( v5 ) | |
3211 { | |
3212 if ( v5 == 1 ) | |
3213 v6 = 55125; | |
3214 else | |
3215 v6 = uActorID; | |
3216 } | |
3217 else | |
3218 { | |
3219 v6 = 44100; | |
3220 } | |
3221 } | |
3222 else | |
3223 { | |
3224 v6 = 33075; | |
3225 } | |
3226 v12 = v6; | |
3227 v11 = 0; | |
3228 v10 = 0; | |
3229 v9 = 0; | |
3230 v8 = 0; | |
3231 } | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3232 pAudioPlayer->PlaySound((SoundID)(signed __int16)v3, PID(OBJECT_Actor, uActorID), 0, v8, v9, v10, v11, v12); |
0 | 3233 } |
3234 } | |
3235 | |
3236 //----- (00402AD7) -------------------------------------------------------- | |
860 | 3237 void Actor::Pursue1(unsigned int uActorID, unsigned int a2, signed int arg0, signed int uActionLength, AIDirection *pDir) |
0 | 3238 { |
3239 unsigned int v5; // edi@1 | |
3240 int v6; // eax@1 | |
3241 Actor *v7; // ebx@1 | |
3242 unsigned int v8; // ecx@1 | |
3243 char v9; // zf@1 | |
3244 AIDirection *v10; // esi@6 | |
3245 int v12; // ecx@19 | |
3246 unsigned int v13; // eax@19 | |
3247 AIDirection a3; // [sp+Ch] [bp-5Ch]@7 | |
3248 AIDirection v15; // [sp+28h] [bp-40h]@7 | |
3249 AIDirection v16; // [sp+44h] [bp-24h]@7 | |
3250 unsigned int v17; // [sp+60h] [bp-8h]@1 | |
3251 unsigned int v18; // [sp+64h] [bp-4h]@1 | |
3252 int v19; // [sp+70h] [bp+8h]@19 | |
3253 | |
3254 v5 = uActorID; | |
3255 v6 = 0; | |
3256 v7 = &pActors[uActorID]; | |
3257 v18 = a2; | |
862 | 3258 v8 = PID(OBJECT_Actor,uActorID); |
0 | 3259 v9 = v7->pMonsterInfo.uFlying == 0; |
3260 v17 = v5; | |
3261 if ( !v9 && !pParty->bFlying ) | |
3262 { | |
3263 if ( v7->pMonsterInfo.uMissleAttack1Type ) | |
3264 v6 = v7->uActorRadius + 512; | |
3265 else | |
3266 v6 = pParty->uPartyHeight; | |
3267 } | |
3268 v10 = pDir; | |
3269 if ( !pDir ) | |
3270 { | |
3271 memcpy(&v15, Actor::GetDirectionInfo(v8, a2, &a3, v6), sizeof(v15)); | |
3272 memcpy(&v16, &v15, sizeof(v16)); | |
3273 v5 = v17; | |
3274 v10 = &v16; | |
3275 } | |
3276 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3277 { | |
3278 if ( !uActionLength ) | |
3279 uActionLength = 256; | |
414 | 3280 Actor::AI_StandOrBored(v5, 4, uActionLength, v10); |
322 | 3281 return; |
0 | 3282 } |
3283 if ( (double)(signed int)v10->uDistance < 307.2 ) | |
3284 { | |
3285 if ( !uActionLength ) | |
3286 uActionLength = 256; | |
413 | 3287 Actor::AI_Stand(v5, v18, uActionLength, v10); |
322 | 3288 return; |
0 | 3289 } |
3290 if ( !v7->uMovementSpeed ) | |
322 | 3291 { |
413 | 3292 Actor::AI_Stand(v5, v18, uActionLength, v10); |
322 | 3293 return; |
3294 } | |
0 | 3295 v18 = 16; |
3296 if ( arg0 % 2 ) | |
3297 v18 = -16; | |
323 | 3298 v12 = ((unsigned __int64)(stru_5C6E00->Cos(v18 + stru_5C6E00->uIntegerPi + v10->uYawAngle) * (signed __int64)v10->uDistanceXZ) >> 16) |
0 | 3299 + pParty->vPosition.x; |
3300 v13 = stru_5C6E00->uIntegerPi + v10->uYawAngle; | |
3301 v17 = v12; | |
323 | 3302 v19 = stru_5C6E00->Sin(v18 + v13); |
0 | 3303 v7->uYawAngle = stru_5C6E00->Atan2( |
3304 v17 - v7->vPosition.x, | |
3305 pParty->vPosition.y | |
3306 + ((unsigned __int64)(v19 * (signed __int64)v10->uDistanceXZ) >> 16) | |
3307 - v7->vPosition.y); | |
3308 if ( uActionLength ) | |
3309 v7->uCurrentActionLength = uActionLength; | |
3310 else | |
3311 v7->uCurrentActionLength = 128; | |
3312 v7->uPitchAngle = LOWORD(v10->uPitchAngle); | |
3313 v7->uAIState = Pursuing; | |
322 | 3314 v7->UpdateAnimation(); |
0 | 3315 } |
3316 | |
3317 //----- (00402968) -------------------------------------------------------- | |
860 | 3318 void Actor::Flee(unsigned int uActorID, signed int sTargetPid, int uActionLength, AIDirection *a4) |
0 | 3319 { |
3320 unsigned int v4; // esi@1 | |
3321 Actor *v5; // ebx@1 | |
322 | 3322 //unsigned int result; // eax@1 |
0 | 3323 int v7; // ecx@2 |
3324 signed __int16 v8; // cx@10 | |
3325 unsigned __int16 v9; // ax@15 | |
3326 AIDirection v10; // [sp+8h] [bp-7Ch]@4 | |
3327 AIDirection a3; // [sp+24h] [bp-60h]@3 | |
3328 AIDirection v12; // [sp+40h] [bp-44h]@3 | |
3329 AIDirection v13; // [sp+5Ch] [bp-28h]@4 | |
3330 signed int a1; // [sp+78h] [bp-Ch]@2 | |
3331 unsigned int v15; // [sp+7Ch] [bp-8h]@1 | |
848 | 3332 //signed int a2; // [sp+80h] [bp-4h]@1 |
0 | 3333 |
3334 v4 = uActorID; | |
848 | 3335 //a2 = edx0; |
0 | 3336 v15 = uActorID; |
3337 v5 = &pActors[uActorID]; | |
322 | 3338 //result = pActors[uActorID].CanAct(); |
3339 if ( pActors[uActorID].CanAct() ) | |
0 | 3340 { |
862 | 3341 v7 = PID(OBJECT_Actor,v4); |
3342 a1 = PID(OBJECT_Actor,v4); | |
0 | 3343 if ( !a4 ) |
3344 { | |
3345 a4 = &v12; | |
848 | 3346 memcpy(&v12, Actor::GetDirectionInfo(v7, sTargetPid, &a3, v5->pMonsterInfo.uFlying), sizeof(v12)); |
0 | 3347 v7 = a1; |
3348 } | |
3349 memcpy(&a3, Actor::GetDirectionInfo(v7, 4u, &v10, 0), sizeof(a3)); | |
3350 memcpy(&v13, &a3, sizeof(v13)); | |
3351 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) | |
848 | 3352 || PID_TYPE(sTargetPid) == OBJECT_Actor && (double)(signed int)v13.uDistance < 307.2 ) |
0 | 3353 { |
3354 if ( !uActionLength ) | |
3355 uActionLength = 256; | |
414 | 3356 Actor::AI_StandOrBored(v15, 4, uActionLength, &v13); |
0 | 3357 } |
3358 else | |
3359 { | |
3360 v8 = v5->uMovementSpeed; | |
3361 if ( v8 ) | |
3362 v5->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v8; | |
3363 else | |
3364 v5->uCurrentActionLength = 0; | |
3365 if ( v5->uCurrentActionLength > 256 ) | |
3366 v5->uCurrentActionLength = 256; | |
3367 v5->uYawAngle = LOWORD(stru_5C6E00->uIntegerHalfPi) + LOWORD(a4->uYawAngle); | |
3368 v5->uYawAngle = LOWORD(stru_5C6E00->uDoublePiMask) & (v5->uYawAngle + rand() % (signed int)stru_5C6E00->uIntegerPi); | |
3369 v9 = LOWORD(a4->uPitchAngle); | |
3370 v5->uCurrentActionTime = 0; | |
3371 v5->uPitchAngle = v9; | |
3372 v5->uAIState = Fleeing; | |
322 | 3373 v5->UpdateAnimation(); |
0 | 3374 } |
3375 } | |
3376 } | |
3377 | |
3378 //----- (0040281C) -------------------------------------------------------- | |
860 | 3379 void Actor::Pursue2(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *pDir, int a5) |
0 | 3380 { |
3381 unsigned int v5; // edi@1 | |
3382 int v6; // eax@1 | |
3383 Actor *v7; // ebx@1 | |
3384 unsigned int v8; // ecx@1 | |
3385 char v9; // zf@1 | |
3386 AIDirection *v10; // esi@7 | |
3387 signed int v11; // edx@12 | |
3388 signed __int16 v13; // cx@19 | |
3389 unsigned __int16 v14; // ax@25 | |
3390 int v15; // [sp-8h] [bp-54h]@12 | |
3391 AIDirection *v16; // [sp-4h] [bp-50h]@12 | |
3392 AIDirection a3; // [sp+Ch] [bp-40h]@8 | |
3393 AIDirection v18; // [sp+28h] [bp-24h]@8 | |
3394 unsigned int v19; // [sp+44h] [bp-8h]@1 | |
3395 unsigned int v20; // [sp+48h] [bp-4h]@1 | |
3396 | |
3397 v5 = uActorID; | |
3398 v6 = 0; | |
3399 v7 = &pActors[uActorID]; | |
3400 v19 = a2; | |
862 | 3401 v8 = PID(OBJECT_Actor,uActorID); |
0 | 3402 v9 = v7->pMonsterInfo.uFlying == 0; |
3403 v20 = v5; | |
3404 if ( !v9 && !pParty->bFlying ) | |
3405 { | |
3406 if ( v7->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
3407 v6 = v7->uActorRadius + 512; | |
3408 else | |
3409 v6 = pParty->uPartyHeight; | |
3410 } | |
3411 v10 = pDir; | |
3412 if ( !pDir ) | |
3413 { | |
3414 memcpy(&v18, Actor::GetDirectionInfo(v8, a2, &a3, v6), sizeof(v18)); | |
3415 memcpy(0, &v18, 0x1Cu); | |
3416 v10 = 0; | |
3417 v5 = v20; | |
3418 } | |
3419 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3420 { | |
3421 if ( !uActionLength ) | |
3422 uActionLength = 256; | |
3423 v16 = v10; | |
3424 v15 = uActionLength; | |
3425 v11 = 4; | |
414 | 3426 Actor::AI_StandOrBored(v5, v11, v15, v16); |
322 | 3427 return; |
0 | 3428 } |
3429 if ( (signed int)v10->uDistance < a5 ) | |
3430 { | |
3431 if ( !uActionLength ) | |
3432 uActionLength = 256; | |
3433 v11 = v19; | |
3434 v16 = v10; | |
3435 v15 = uActionLength; | |
414 | 3436 Actor::AI_StandOrBored(v5, v11, v15, v16); |
322 | 3437 return; |
0 | 3438 } |
3439 if ( uActionLength ) | |
3440 { | |
3441 v7->uCurrentActionLength = uActionLength; | |
3442 } | |
3443 else | |
3444 { | |
3445 v13 = v7->uMovementSpeed; | |
3446 if ( v13 ) | |
3447 v7->uCurrentActionLength = (signed int)(v10->uDistanceXZ << 7) / v13; | |
3448 else | |
3449 v7->uCurrentActionLength = 0; | |
3450 if ( v7->uCurrentActionLength > 32 ) | |
3451 v7->uCurrentActionLength = 32; | |
3452 } | |
3453 v7->uYawAngle = LOWORD(v10->uYawAngle); | |
3454 v14 = LOWORD(v10->uPitchAngle); | |
3455 v7->uCurrentActionTime = 0; | |
3456 v7->uPitchAngle = v14; | |
3457 v7->uAIState = Pursuing; | |
322 | 3458 v7->UpdateAnimation(); |
0 | 3459 } |
3460 | |
3461 //----- (00402686) -------------------------------------------------------- | |
860 | 3462 void Actor::Pursue3(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *a4) |
0 | 3463 { |
860 | 3464 //unsigned int v4; // edi@1 |
0 | 3465 int v5; // eax@1 |
3466 Actor *v6; // ebx@1 | |
3467 int v7; // ecx@1 | |
3468 char v8; // zf@1 | |
860 | 3469 //AIDirection *v9; // esi@7 |
0 | 3470 signed int v10; // edx@12 |
3471 signed __int16 v12; // cx@19 | |
3472 int v13; // edx@25 | |
3473 __int16 v14; // ax@25 | |
3474 unsigned __int16 v15; // ax@26 | |
3475 unsigned __int16 v16; // ax@28 | |
3476 int v17; // [sp-8h] [bp-54h]@12 | |
860 | 3477 //AIDirection *v18; // [sp-4h] [bp-50h]@12 |
0 | 3478 AIDirection a3; // [sp+Ch] [bp-40h]@8 |
3479 AIDirection v20; // [sp+28h] [bp-24h]@8 | |
3480 int v21; // [sp+44h] [bp-8h]@1 | |
860 | 3481 //unsigned int v22; // [sp+48h] [bp-4h]@1 |
0 | 3482 |
3483 v5 = 0; | |
3484 v6 = &pActors[uActorID]; | |
3485 v21 = a2; | |
862 | 3486 v7 = PID(OBJECT_Actor,uActorID); |
0 | 3487 v8 = v6->pMonsterInfo.uFlying == 0; |
3488 if ( !v8 && !pParty->bFlying ) | |
3489 { | |
3490 if ( v6->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
3491 v5 = v6->uActorRadius + 512; | |
3492 else | |
3493 v5 = pParty->uPartyHeight; | |
3494 } | |
3495 if ( !a4 ) | |
3496 { | |
3497 memcpy(&v20, Actor::GetDirectionInfo(v7, a2, &a3, v5), sizeof(v20)); | |
3498 } | |
3499 if ( MonsterStats::BelongsToSupertype(v6->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3500 { | |
3501 if ( !uActionLength ) | |
3502 uActionLength = 256; | |
860 | 3503 return Actor::AI_StandOrBored(uActorID, 4, uActionLength, a4); |
0 | 3504 } |
860 | 3505 if ( (double)(signed int)a4->uDistance < 307.2 ) |
0 | 3506 { |
3507 if ( !uActionLength ) | |
3508 uActionLength = 256; | |
860 | 3509 return Actor::AI_StandOrBored(uActorID, v21, uActionLength, a4); |
0 | 3510 } |
3511 if ( uActionLength ) | |
3512 { | |
3513 v6->uCurrentActionLength = uActionLength + rand() % uActionLength; | |
3514 } | |
3515 else | |
3516 { | |
3517 v12 = v6->uMovementSpeed; | |
3518 if ( v12 ) | |
860 | 3519 v6->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v12; |
0 | 3520 else |
3521 v6->uCurrentActionLength = 0; | |
3522 if ( v6->uCurrentActionLength > 128 ) | |
3523 v6->uCurrentActionLength = 128; | |
3524 } | |
3525 v13 = rand() % 2; | |
860 | 3526 v14 = LOWORD(a4->uYawAngle); |
0 | 3527 if ( v13 ) |
3528 v15 = v14 + 256; | |
3529 else | |
3530 v15 = v14 - 256; | |
3531 v6->uYawAngle = v15; | |
860 | 3532 v16 = LOWORD(a4->uPitchAngle); |
0 | 3533 v6->uCurrentActionTime = 0; |
3534 v6->uPitchAngle = v16; | |
3535 v6->uAIState = Pursuing; | |
3536 if ( rand() % 100 < 2 ) | |
860 | 3537 Actor::PlaySound(uActorID, 2u); |
322 | 3538 v6->UpdateAnimation(); |
0 | 3539 } |
3540 | |
417 | 3541 //----- (00SelectTarget) -------------------------------------------------------- |
3542 void Actor::_SelectTarget(unsigned int uActorID, int *a2, bool can_target_party) | |
0 | 3543 { |
417 | 3544 //Actor *v3; // esi@1 |
3545 //unsigned int v4; // ebx@1 | |
0 | 3546 int v5; // ecx@1 |
417 | 3547 //unsigned int v6; // eax@1 |
3548 //Actor *v7; // edi@2 | |
3549 //__int16 v8; // ax@3 | |
0 | 3550 int v9; // eax@10 |
3551 signed int v10; // eax@13 | |
3552 int v11; // ebx@16 | |
3553 int v12; // eax@16 | |
417 | 3554 //int v13; // eax@25 |
0 | 3555 signed int v14; // eax@31 |
3556 int v15; // edi@43 | |
3557 int v16; // ebx@45 | |
3558 int v17; // eax@45 | |
417 | 3559 //int v18; // eax@51 |
0 | 3560 int v19; // [sp+Ch] [bp-24h]@16 |
417 | 3561 //int *v20; // [sp+10h] [bp-20h]@1 |
0 | 3562 signed int v21; // [sp+14h] [bp-1Ch]@1 |
417 | 3563 //unsigned int v22; // [sp+18h] [bp-18h]@1 |
0 | 3564 int v23; // [sp+1Ch] [bp-14h]@16 |
417 | 3565 //unsigned int v24; // [sp+20h] [bp-10h]@1 |
0 | 3566 int v25; // [sp+24h] [bp-Ch]@1 |
417 | 3567 //signed int v26; // [sp+28h] [bp-8h]@1 |
0 | 3568 int v27; // [sp+2Ch] [bp-4h]@16 |
3569 int v28; // [sp+2Ch] [bp-4h]@45 | |
3570 | |
3571 v25 = -1; | |
417 | 3572 //v22 = uActorID; |
3573 //v3 = &pActors[uActorID]; | |
3574 //v4 = 0; | |
0 | 3575 v5 = 0; |
417 | 3576 //v6 = v3->uLastCharacterIDToHit; |
0 | 3577 *a2 = 0; |
417 | 3578 //v20 = a2; |
0 | 3579 v21 = 0; |
417 | 3580 //v24 = v3->uLastCharacterIDToHit; |
3581 //v26 = 0; | |
3582 assert(uActorID < uNumActors); | |
3583 auto _this = pActors + uActorID; | |
3584 | |
3585 for (uint i = 0; i < uNumActors; ++i) | |
0 | 3586 { |
417 | 3587 auto actor = pActors + i; |
3588 //v7 = pActors; | |
3589 //do | |
3590 //{ | |
3591 //v8 = v7->uAIState; | |
3592 if (actor->uAIState == Dead || actor->uAIState == Dying || | |
3593 actor->uAIState == Removed || actor->uAIState == Summoned || actor->uAIState == Disabled || uActorID == i ) | |
3594 continue; | |
3595 | |
862 | 3596 if (_this->uLastCharacterIDToHit == 0 || (v9 = 8 * v5, LOBYTE(v9) = PID(OBJECT_Actor,v5), _this->uLastCharacterIDToHit != v9) ) |
245 | 3597 { |
417 | 3598 v10 = _this->GetActorsRelation(actor); |
3599 if ( v10 == 0 ) | |
245 | 3600 continue; |
3601 } | |
417 | 3602 else if (_this->IsNotAlive()) |
245 | 3603 { |
417 | 3604 _this->uLastCharacterIDToHit = 0; |
3605 v10 = _this->GetActorsRelation(actor); | |
3606 if ( v10 == 0 ) | |
245 | 3607 continue; |
3608 } | |
3609 else | |
3610 { | |
417 | 3611 //v18 = actor->uGroup; |
3612 if ( (actor->uGroup != 0 || _this->uGroup != 0) && actor->uGroup == _this->uGroup ) | |
245 | 3613 continue; |
3614 v10 = 4; | |
3615 } | |
417 | 3616 if ( _this->pMonsterInfo.uHostilityType ) |
3617 v10 = pMonsterStats->pInfos[_this->pMonsterInfo.uID].uHostilityType; | |
245 | 3618 v11 = dword_4DF380[v10]; |
417 | 3619 v23 = abs(_this->vPosition.x - actor->vPosition.x); |
3620 v27 = abs(_this->vPosition.y - actor->vPosition.y); | |
3621 v12 = abs(_this->vPosition.z - actor->vPosition.z); | |
245 | 3622 v19 = v12; |
3623 if ( v23 <= v11 | |
3624 && v27 <= v11 | |
3625 && v12 <= v11 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3626 && sub_4070EF_prolly_collide_objects(PID(OBJECT_Actor, i), PID(OBJECT_Actor, uActorID)) |
245 | 3627 && v23 * v23 + v27 * v27 + v19 * v19 < (unsigned int)v25 ) |
3628 { | |
3629 v25 = v23 * v23 + v27 * v27 + v19 * v19; | |
417 | 3630 v21 = i; |
245 | 3631 } |
417 | 3632 //v4 = 0; |
3633 //++v7; | |
3634 //v5 = v26++ + 1; | |
3635 //} | |
3636 //while ( v26 < (signed int)uNumActors ); | |
3637 | |
0 | 3638 } |
417 | 3639 if ( v25 != -1 ) |
3640 { | |
3641 //v13 = 8 * v21; | |
862 | 3642 //LOBYTE(v13) = PID(OBJECT_Actor,v21); |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3643 *a2 = PID(OBJECT_Actor, v21); |
417 | 3644 } |
3645 | |
3646 if (pParty->Invisible()) | |
3647 can_target_party = false; | |
3648 | |
3649 if (can_target_party) | |
0 | 3650 { |
417 | 3651 v14 = _this->GetActorsRelation(0); |
3652 if ( BYTE2(_this->uAttributes) & 8 | |
3653 && SHIDWORD(_this->pActorBuffs[12].uExpireTime) <= (signed int)0 | |
3654 && (SHIDWORD(_this->pActorBuffs[12].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[12].uExpireTime) <= 0) | |
3655 && SHIDWORD(_this->pActorBuffs[1].uExpireTime) <= (signed int)0 | |
3656 && (SHIDWORD(_this->pActorBuffs[1].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[1].uExpireTime) <= 0) | |
3657 && SHIDWORD(_this->pActorBuffs[2].uExpireTime) <= (signed int)0 | |
3658 && (SHIDWORD(_this->pActorBuffs[2].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[2].uExpireTime) <= 0) ) | |
0 | 3659 v14 = 4; |
417 | 3660 if ( v14 != 0 ) |
0 | 3661 { |
848 | 3662 v15 = dword_4DF380[4]; |
417 | 3663 if ( !_this->pMonsterInfo.uHostilityType ) |
0 | 3664 v15 = dword_4DF380[v14]; |
417 | 3665 v16 = abs(_this->vPosition.x - pParty->vPosition.x); |
3666 v28 = abs(_this->vPosition.y - pParty->vPosition.y); | |
3667 v17 = abs(_this->vPosition.z - pParty->vPosition.z); | |
0 | 3668 if ( v16 <= v15 && v28 <= v15 && v17 <= v15 ) |
3669 { | |
3670 if ( v16 * v16 + v28 * v28 + v17 * v17 < (unsigned int)v25 ) | |
417 | 3671 *a2 = OBJECT_Player; |
0 | 3672 } |
3673 } | |
3674 } | |
3675 } | |
3676 // 4DF380: using guessed type int dword_4DF380[]; | |
3677 // 4DF390: using guessed type int dword_4DF390; | |
3678 | |
3679 //----- (0040104C) -------------------------------------------------------- | |
3680 signed int Actor::GetActorsRelation(Actor *a2) | |
3681 { | |
3682 Actor *v2; // esi@1 | |
3683 int v3; // ebp@5 | |
3684 int v4; // edi@11 | |
3685 unsigned int v5; // edx@15 | |
3686 unsigned int v6; // eax@16 | |
3687 unsigned int v7; // ebp@19 | |
3688 int v8; // eax@22 | |
3689 unsigned int v9; // edx@25 | |
3690 unsigned int v10; // edx@33 | |
3691 | |
3692 auto a1 = this; | |
3693 v2 = a2; | |
3694 if ( a1 ) | |
3695 { | |
3696 if ( SHIDWORD(a1->pActorBuffs[9].uExpireTime) >= 0 | |
3697 && (SHIDWORD(a1->pActorBuffs[9].uExpireTime) > 0 || LODWORD(a1->pActorBuffs[9].uExpireTime) > 0) ) | |
3698 return 4; | |
3699 v3 = a1->pMonsterInfo.uID; | |
3700 } | |
3701 else | |
3702 { | |
3703 v3 = 0; | |
3704 } | |
3705 if ( a2 ) | |
3706 { | |
3707 if ( SHIDWORD(a2->pActorBuffs[9].uExpireTime) >= 0 | |
3708 && (SHIDWORD(a2->pActorBuffs[9].uExpireTime) > 0 || LODWORD(a2->pActorBuffs[9].uExpireTime) > 0) ) | |
3709 return 4; | |
3710 v4 = a2->pMonsterInfo.uID; | |
3711 } | |
3712 else | |
3713 { | |
3714 v4 = 0; | |
3715 } | |
3716 if ( a2 ) | |
3717 { | |
3718 if ( a1 ) | |
3719 { | |
3720 v5 = a2->uGroup; | |
3721 if ( v5 ) | |
3722 { | |
3723 v6 = a1->uGroup; | |
3724 if ( v6 ) | |
3725 { | |
3726 if ( v5 == v6 ) | |
3727 return 0; | |
3728 } | |
3729 } | |
3730 } | |
3731 } | |
3732 if ( v3 ) | |
3733 v7 = (v3 - 1) / 3 + 1; | |
3734 else | |
3735 v7 = 0; | |
3736 if ( v4 ) | |
3737 v8 = (v4 - 1) / 3 + 1; | |
3738 else | |
3739 v8 = 0; | |
3740 if ( a1 ) | |
3741 { | |
3742 v9 = a1->uAlly; | |
245 | 3743 if ( (signed int)v9 > 0 ) |
0 | 3744 { |
3745 if ( v9 != 9999 ) | |
3746 { | |
3747 v7 = a1->uAlly; | |
3748 } | |
3749 } | |
245 | 3750 if(v9==9999) |
3751 v7 = 0; | |
0 | 3752 if ( (signed __int64)a1->pActorBuffs[12].uExpireTime > 0 ) |
3753 v7 = 0; | |
3754 } | |
245 | 3755 if ( v2 ) |
0 | 3756 { |
245 | 3757 v10 = v2->uAlly; |
3758 if ( (signed int)v10 > 0 ) | |
3759 { | |
3760 if ( v10 != 9999 ) | |
3761 { | |
3762 v8 = v2->uAlly; | |
3763 } | |
3764 } | |
3765 if(v10==9999) | |
3766 v8 = 0; | |
3767 if ( (signed __int64)v2->pActorBuffs[12].uExpireTime > 0 ) | |
3768 v8 = 0; | |
0 | 3769 } |
3770 if ( a1 && (signed __int64)a1->pActorBuffs[1].uExpireTime > 0 && !v8 | |
3771 || v2 && (signed __int64)v2->pActorBuffs[1].uExpireTime > 0 && !v7 ) | |
3772 return 0; | |
3773 if ( a1 && (signed __int64)a1->pActorBuffs[12].uExpireTime <= 0 && a1->uAttributes & 0x80000 && !v8 ) | |
3774 return 4; | |
3775 if ( v2 && a1 && (signed __int64)a1->pActorBuffs[12].uExpireTime <= 0 && v2->uAttributes & 0x80000 ) | |
3776 { | |
3777 if ( v7 ) | |
245 | 3778 { |
3779 if ( (signed int)v7 < 89 ) | |
3780 { | |
3781 if ( v8 < 89 ) | |
3782 return pFactionTable->relations[v7][v8]; | |
3783 return 0; | |
3784 } | |
3785 return 0; | |
3786 } | |
0 | 3787 return 4; |
3788 } | |
3789 if ( !v7 ) | |
3790 { | |
3791 if ( (!v2 || (signed __int64)v2->pActorBuffs[12].uExpireTime > 0 || !(v2->uAttributes & 0x80000)) | |
100 | 3792 && !pFactionTable->relations[v8][0]) |
0 | 3793 { |
3794 if ( v8 < 89 ) | |
100 | 3795 return pFactionTable->relations[v7][v8]; |
0 | 3796 return 0; |
3797 } | |
3798 return 4; | |
3799 } | |
3800 if ( (signed int)v7 < 89 ) | |
245 | 3801 { |
3802 if ( v8 < 89 ) | |
3803 return pFactionTable->relations[v7][v8]; | |
3804 return 0; | |
3805 } | |
0 | 3806 return 0; |
3807 } | |
3808 | |
3809 //----- (0045976D) -------------------------------------------------------- | |
322 | 3810 void Actor::UpdateAnimation() |
0 | 3811 { |
322 | 3812 //AIState state; // edx@1 |
3813 //unsigned int result; // eax@1 | |
0 | 3814 |
322 | 3815 //state = (AIState)this->; |
3816 uAttributes &= 0xFFDFFFFF; | |
3817 //result = this->uAttributes; | |
3818 switch (uAIState) | |
0 | 3819 { |
3820 case Tethered: | |
322 | 3821 uCurrentActionAnimation = ANIM_Walking; |
3822 break; | |
3823 | |
0 | 3824 case AttackingMelee: |
322 | 3825 uCurrentActionAnimation = ANIM_AtkMelee; |
3826 uAttributes |= 0x200000u; | |
3827 break; | |
3828 | |
0 | 3829 case AttackingRanged1: |
3830 case AttackingRanged2: | |
3831 case AttackingRanged3: | |
3832 case AttackingRanged4: | |
322 | 3833 uCurrentActionAnimation = ANIM_AtkRanged; |
3834 uAttributes |= 0x200000u; | |
3835 break; | |
3836 | |
0 | 3837 case Dying: |
3838 case Resurrected: | |
322 | 3839 uCurrentActionAnimation = ANIM_Dying; |
3840 uAttributes |= 0x200000u; | |
3841 break; | |
3842 | |
0 | 3843 case Pursuing: |
3844 case Fleeing: | |
322 | 3845 uCurrentActionAnimation = ANIM_Walking; |
3846 uAttributes |= 0x200000u; | |
3847 break; | |
3848 | |
0 | 3849 case Stunned: |
322 | 3850 uCurrentActionAnimation = ANIM_GotHit; |
3851 uAttributes |= 0x200000u; | |
3852 break; | |
3853 | |
0 | 3854 case Fidgeting: |
322 | 3855 uCurrentActionAnimation = ANIM_Bored; |
3856 uAttributes |= 0x200000u; | |
3857 break; | |
3858 | |
0 | 3859 case Standing: |
3860 case Interacting: | |
3861 case Summoned: | |
322 | 3862 uCurrentActionAnimation = ANIM_Standing; |
3863 uAttributes |= 0x200000u; | |
3864 break; | |
3865 | |
0 | 3866 case Dead: |
322 | 3867 if (pSpriteFrameTable->pSpriteSFrames[pSpriteIDs[ANIM_Dead]].pHwSpriteIDs[0] <= 0) |
3868 uAIState = Removed; | |
0 | 3869 else |
322 | 3870 uCurrentActionAnimation = ANIM_Dead; |
3871 break; | |
3872 | |
551 | 3873 case Removed: |
652 | 3874 case Disabled: |
551 | 3875 return; |
3876 | |
0 | 3877 default: |
322 | 3878 assert(false); |
0 | 3879 } |
3880 } | |
3881 | |
3882 //----- (00459671) -------------------------------------------------------- | |
3883 void Actor::Reset() | |
3884 { | |
3885 this->pActorName[0] = 0; | |
3886 this->word_000086_some_monster_id = 0; | |
602 | 3887 this->sNPC_ID = 0; |
0 | 3888 this->vPosition.z = 0; |
3889 this->vPosition.y = 0; | |
3890 this->vPosition.x = 0; | |
3891 this->vVelocity.z = 0; | |
3892 this->vVelocity.y = 0; | |
3893 this->vVelocity.x = 0; | |
3894 this->uYawAngle = 0; | |
3895 this->uPitchAngle = 0; | |
3896 this->uAttributes = 0; | |
3897 this->uSectorID = 0; | |
3898 this->uCurrentActionTime = 0; | |
3899 this->vInitialPosition.z = 0; | |
3900 this->vInitialPosition.y = 0; | |
3901 this->vInitialPosition.x = 0; | |
3902 this->vGuardingPosition.z = 0; | |
3903 this->vGuardingPosition.y = 0; | |
3904 this->vGuardingPosition.x = 0; | |
3905 this->uTetherDistance = 256; | |
3906 this->uActorRadius = 32; | |
3907 this->uActorHeight = 128; | |
3908 this->uAIState = Standing; | |
305 | 3909 this->uCurrentActionAnimation = ANIM_Standing; |
0 | 3910 this->uMovementSpeed = 200; |
3911 this->uCarriedItemID = 0; | |
3912 this->uGroup = 0; | |
3913 this->uAlly = 0; | |
3914 this->uSummonerID = 0; | |
3915 this->uLastCharacterIDToHit = 0; | |
3916 this->dword_000334_unique_name = 0; | |
3917 memset(this->pSpriteIDs, 0, sizeof(pSpriteIDs)); | |
3918 memset(this->pActorBuffs, 0, 0x160u); | |
3919 } | |
3920 | |
3921 //----- (0045959A) -------------------------------------------------------- | |
3922 void Actor::PrepareSprites(char load_sounds_if_bit1_set) | |
3923 { | |
694 | 3924 |
3925 MonsterDesc *v3; // esi@1 | |
0 | 3926 MonsterInfo *v9; // [sp+84h] [bp-10h]@1 |
694 | 3927 |
0 | 3928 v3 = &pMonsterList->pMonsters[pMonsterInfo.uID - 1]; |
3929 v9 = &pMonsterStats->pInfos[pMonsterInfo.uID - 1 + 1]; | |
3930 //v12 = pSpriteIDs; | |
3931 //Source = (char *)v3->pSpriteNames; | |
3932 //do | |
3933 for (uint i = 0; i < 8; ++i) | |
3934 { | |
3935 //strcpy(pSpriteName, v3->pSpriteNames[i]); | |
3936 pSpriteIDs[i] = pSpriteFrameTable->FastFindSprite(v3->pSpriteNames[i]); | |
3937 pSpriteFrameTable->InitializeSprite(pSpriteIDs[i]); | |
3938 } | |
3939 uActorHeight = v3->uMonsterHeight; | |
3940 uActorRadius = v3->uMonsterRadius; | |
33 | 3941 uMovementSpeed = v9->uBaseSpeed; |
0 | 3942 if ( !(load_sounds_if_bit1_set & 1) ) |
3943 { | |
694 | 3944 for (int i=0;i<4;++i ) |
3945 pSoundSampleIDs[i]=v3->pSoundSampleIDs[i]; | |
0 | 3946 } |
3947 } | |
3948 | |
3949 //----- (00459667) -------------------------------------------------------- | |
3950 void Actor::Remove() | |
3951 { | |
3952 this->uAIState = Removed; | |
3953 } | |
3954 | |
3955 //----- (0044FD29) -------------------------------------------------------- | |
3956 int Actor::_44FD29(int a2) | |
3957 { | |
3958 Actor *v2; // edi@1 | |
3959 unsigned __int8 v3; // al@1 | |
3960 int v4; // esi@1 | |
3961 int v5; // edx@2 | |
3962 int v6; // eax@8 | |
3963 int v7; // edi@10 | |
3964 Actor *v8; // esi@10 | |
3965 MonsterInfo *v9; // ebx@10 | |
3966 MonsterDesc *v10; // edi@10 | |
3967 unsigned __int16 v11; // ax@10 | |
3968 int v12; // eax@10 | |
3969 int v13; // ebx@10 | |
3970 int v14; // eax@10 | |
3971 int v15; // edi@10 | |
3972 int v16; // eax@10 | |
3973 int v17; // ebx@10 | |
3974 Actor *v18; // ecx@10 | |
3975 signed __int64 v19; // qax@10 | |
3976 unsigned int v20; // eax@12 | |
3977 int v21; // eax@13 | |
3978 int result; // eax@13 | |
3979 Actor *v23; // eax@16 | |
3980 int v24; // [sp+Ch] [bp-1Ch]@1 | |
3981 unsigned int uFaceID; // [sp+10h] [bp-18h]@8 | |
3982 int v26; // [sp+14h] [bp-14h]@10 | |
3983 int v27; // [sp+18h] [bp-10h]@10 | |
3984 int v28; // [sp+1Ch] [bp-Ch]@8 | |
3985 int v29; // [sp+20h] [bp-8h]@10 | |
3986 Actor *v30; // [sp+24h] [bp-4h]@1 | |
3987 | |
3988 v2 = this; | |
3989 v24 = a2; | |
3990 v30 = this; | |
3991 v3 = this->pMonsterInfo.uSpecialAbilityDamageDiceRolls; | |
3992 v4 = this->pMonsterInfo.field_3C_some_special_attack; | |
3993 if ( v3 ) | |
3994 { | |
3995 if ( v3 >= 1u && v3 <= 3u ) | |
3996 v4 = v4 + v3 - 1; | |
3997 } | |
3998 else | |
3999 { | |
4000 v5 = rand() % 100; | |
4001 if ( v5 >= 60 ) | |
4002 { | |
4003 ++v4; | |
4004 if ( v5 >= 90 ) | |
4005 ++v4; | |
4006 } | |
4007 } | |
4008 v6 = v2->vPosition.z; | |
4009 v28 = 0; | |
4010 uFaceID = v6; | |
4011 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
4012 v28 = pIndoor->GetSector(v2->vPosition.x, v2->vPosition.y, v6); | |
4013 v7 = v4 - 1; | |
4014 v8 = &pActors[uNumActors]; | |
4015 v27 = (((uCurrentlyLoadedLevelType != LEVEL_Outdoor) - 1) & 0x40) + 64; | |
4016 v29 = v7; | |
4017 v9 = &pMonsterStats->pInfos[v7 + 1]; | |
4018 pActors[uNumActors].Reset(); | |
4019 v10 = &pMonsterList->pMonsters[v7]; | |
4020 strcpy(v8->pActorName, v9->pName); | |
4021 v8->sCurrentHP = LOWORD(v9->uHP); | |
4022 memcpy(&v8->pMonsterInfo, v9, 0x58u); | |
4023 v8->word_000086_some_monster_id = v29 + 1; | |
4024 v8->uActorRadius = v10->uMonsterRadius; | |
4025 v8->uActorHeight = v10->uMonsterHeight; | |
4026 v11 = v10->uMovementSpeed; | |
4027 v8->pMonsterInfo.uTreasureDiceRolls = 0; | |
4028 v8->pMonsterInfo.uTreasureType = 0; | |
4029 v8->pMonsterInfo.uExp = 0; | |
4030 v8->uMovementSpeed = v11; | |
4031 v12 = rand(); | |
4032 v13 = v12 % 2048; | |
323 | 4033 v14 = stru_5C6E00->Cos(v12 % 2048); |
0 | 4034 v26 = v14; |
4035 v15 = ((unsigned __int64)(v14 * (signed __int64)v27) >> 16) + v30->vPosition.x; | |
323 | 4036 v16 = stru_5C6E00->Sin(v13); |
0 | 4037 v26 = v16; |
4038 v29 = (unsigned __int64)(v16 * (signed __int64)v27) >> 16; | |
4039 LOWORD(v16) = uFaceID; | |
4040 v17 = v29 + v30->vPosition.y; | |
4041 v8->vInitialPosition.z = uFaceID; | |
4042 v8->vPosition.z = v16; | |
4043 LOWORD(v16) = v28; | |
4044 v8->vInitialPosition.x = v15; | |
4045 v8->vPosition.x = v15; | |
4046 v8->vInitialPosition.y = v17; | |
4047 v8->vPosition.y = v17; | |
4048 v8->uTetherDistance = 256; | |
4049 v8->uSectorID = v16; | |
4050 v8->PrepareSprites(0); | |
4051 v18 = v30; | |
4052 v8->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4053 LODWORD(v19) = v18->uAlly; | |
4054 if ( !(uint)v19 ) | |
4055 { | |
4056 uFaceID = v18->pMonsterInfo.uID - 1; | |
4057 v19 = (signed __int64)((double)uFaceID * 0.33333334); | |
4058 v18 = v30; | |
4059 } | |
4060 v8->uAlly = v19; | |
4061 v20 = v18->uGroup; | |
4062 v8->uCurrentActionTime = 0; | |
4063 v8->uGroup = v20; | |
4064 v8->uAIState = Summoned; | |
4065 v8->uCurrentActionLength = 256; | |
4066 v8->UpdateAnimation(); | |
4067 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor | |
4068 || (v21 = v30->vPosition.z, | |
4069 v27 = v30->vPosition.z, | |
4070 result = pIndoor->GetSector(v15, v17, v21), | |
4071 result == v28) | |
723 | 4072 && (result = BLV_GetFloorLevel(v15, v17, v27, result, &uFaceID), result != -30000) |
0 | 4073 && (result = abs(result - v27), result <= 1024) ) |
4074 { | |
4075 v23 = v30; | |
4076 ++uNumActors; | |
4077 ++v23->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
4078 if ( v23->uAttributes & 0x80000 ) | |
4079 v8->uAttributes |= 0x80000u; | |
4080 result = 8 * v24; | |
862 | 4081 LOBYTE(result) = PID(OBJECT_Actor,v24); |
0 | 4082 v8->uSummonerID = result; |
4083 } | |
4084 return result; | |
781 | 4085 } |