Mercurial > mm7
annotate Actor.cpp @ 860:8fc2f035abc0
* AI function renames
* more PID replaces
author | zipi |
---|---|
date | Sun, 31 Mar 2013 12:39:29 +0100 |
parents | 48c230c37d74 |
children | fea81e031484 |
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; | |
849 | 784 v116 = PID(LODWORD(v120),OBJECT_Actor); |
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; | |
849 | 918 LOBYTE(v40) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 971 LOBYTE(v43) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1010 LOBYTE(v46) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1053 LOBYTE(v50) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1105 LOBYTE(v65) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1134 LOBYTE(v52) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1188 LOBYTE(v55) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1231 LOBYTE(v97) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1275 LOBYTE(v95) = PID(LOBYTE(v120),OBJECT_Actor); |
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; | |
849 | 1322 LOBYTE(v69) = PID(LOBYTE(v120),OBJECT_Actor); |
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; |
1763 v20 = v6; | |
848 | 1764 v21 = PID_TYPE(v6); |
1765 v22 = PID_ID(v20); | |
849 | 1766 switch(v5) |
0 | 1767 { |
849 | 1768 case OBJECT_Item: |
1769 { | |
1770 v19 = v4; | |
1771 outx = pSpriteObjects[v19].vPosition.x; | |
1772 v13 = pSpriteObjects[v19].vPosition.y; | |
1773 v14 = pSpriteObjects[v19].vPosition.z; | |
1774 outy = v13; | |
1775 outz = v14; | |
1776 v30 = v22; | |
1777 LODWORD(v45) = pSpriteObjects[v30].vPosition.x; | |
1778 v27 = pSpriteObjects[v30].vPosition.y; | |
1779 v28 = pSpriteObjects[v30].vPosition.z; | |
1780 LODWORD(v44) = v27; | |
1781 a4 = v28; | |
1782 break; | |
1783 } | |
1784 case OBJECT_Actor: | |
1785 { | |
1786 outx = pActors[v4].vPosition.x; | |
1787 outy = pActors[v4].vPosition.y; | |
1788 LODWORD(v42) = pActors[v4].uActorHeight; | |
1789 v11 = pActors[v4].vPosition.z - (unsigned int)(signed __int64)((double)SLODWORD(v42) * -0.75); | |
1790 outz = v11; | |
1791 LODWORD(v45) = pActors[v22].vPosition.x; | |
1792 LODWORD(v44) = pActors[v22].vPosition.y; | |
1793 v25 = pActors[v22].vPosition.z - (unsigned int)(signed __int64)((double)pActors[v22].uActorHeight * -0.75); | |
1794 a4 = v25; | |
1795 break; | |
1796 } | |
1797 case OBJECT_Player: | |
1798 { | |
1799 if ( !v4 ) | |
1800 { | |
1801 outx = pParty->vPosition.x; | |
1802 outy = pParty->vPosition.y; | |
1803 v14 = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1804 outz = v14; | |
1805 break;; | |
1806 } | |
1807 if ( v4 == 4 ) | |
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 = *(_QWORD *)&pParty->vPosition.x; | |
1815 v36 = 0; | |
1816 v35 = 24; | |
1817 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1818 break; | |
1819 } | |
1820 if ( v4 == 3 ) | |
1821 { | |
1822 v40 = &outz; | |
1823 v39 = &outy; | |
1824 v38 = &outx; | |
1825 v18 = pParty->sRotationY - stru_5C6E00->uIntegerHalfPi; | |
1826 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
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 == 2 ) | |
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.x = *(_QWORD *)&pParty->vPosition.x; | |
1841 v36 = 0; | |
1842 v35 = 8; | |
1843 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1844 break; | |
1845 } | |
1846 if ( v4 == 1 ) | |
1847 { | |
1848 v40 = &outz; | |
1849 v39 = &outy; | |
1850 v38 = &outx; | |
1851 v37.z = pParty->vPosition.z + (signed int)pParty->uPartyHeight / 3; | |
1852 v18 = stru_5C6E00->uIntegerHalfPi + pParty->sRotationY; | |
1853 *(_QWORD *)&v37 = *(_QWORD *)&pParty->vPosition.x; | |
1854 v36 = 0; | |
1855 v35 = 24; | |
1856 Vec3_int_::Rotate(v35, v18, v36, v37, v38, v39, v40); | |
1857 break; | |
1858 } | |
1859 LODWORD(v45) = pParty->vPosition.x; | |
1860 LODWORD(v44) = pParty->vPosition.y; | |
1861 v29 = a4; | |
1862 if ( !a4 ) | |
1863 v29 = pParty->sEyelevel; | |
1864 v28 = pParty->vPosition.z + v29; | |
1865 a4 = v28; | |
1866 } | |
1867 case OBJECT_Decoration: | |
1868 { | |
1869 v12 = v4; | |
1870 outx = pLevelDecorations[v12].vPosition.x; | |
1871 v13 = pLevelDecorations[v12].vPosition.y; | |
1872 v14 = pLevelDecorations[v12].vPosition.z; | |
1873 outy = v13; | |
1874 outz = v14; | |
1875 v26 = v22; | |
1876 LODWORD(v45) = pLevelDecorations[v26].vPosition.x; | |
1877 v27 = pLevelDecorations[v26].vPosition.y; | |
1878 v28 = pLevelDecorations[v26].vPosition.z; | |
1879 LODWORD(v44) = v27; | |
1880 a4 = v28; | |
1881 break; | |
1882 } | |
1883 default: | |
1884 { | |
1885 outz = 0; | |
1886 outy = 0; | |
1887 outx = 0; | |
1888 a4 = 0; | |
1889 v44 = 0.0; | |
1890 v45 = 0.0; | |
1891 break; | |
1892 } | |
1893 case OBJECT_BModel: | |
1894 { | |
1895 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1896 { | |
1897 v10 = &pIndoor->pFaces[v4]; | |
1898 outx = (v10->pBounding.x1 + v10->pBounding.x2) >> 1; | |
1899 outy = (v10->pBounding.y1 + v10->pBounding.y2) >> 1; | |
1900 v11 = (v10->pBounding.z1 + v10->pBounding.z2) >> 1; | |
1901 outz = v11; | |
1902 v23 = &pIndoor->pFaces[v22]; | |
1903 v24 = v23->pBounding.y1; | |
1904 LODWORD(v45) = (v23->pBounding.x1 + v23->pBounding.x2) >> 1; | |
1905 LODWORD(v44) = (v24 + v23->pBounding.y2) >> 1; | |
1906 v25 = (v23->pBounding.z1 + v23->pBounding.z2) >> 1; | |
1907 a4 = v25; | |
1908 } | |
1909 break; | |
1910 } | |
0 | 1911 } |
1912 v31 = (double)SLODWORD(v45) - (double)outx; | |
1913 v42 = v31; | |
1914 v32 = (double)SLODWORD(v44) - (double)outy; | |
1915 v43 = v32; | |
1916 a4a = (double)a4 - (double)outz; | |
1917 v45 = v32 * v32; | |
1918 v44 = v31 * v31; | |
1919 v33 = sqrt(a4a * a4a + v44 + v45); | |
1920 if ( v33 <= 1.0 ) | |
1921 { | |
1922 v41.vDirection.x = 65536; | |
1923 v41.vDirection.y = 0; | |
1924 v41.vDirection.z = 0; | |
1925 v41.uDistance = 1; | |
1926 v41.uDistanceXZ = 1; | |
1927 v41.uYawAngle = 0; | |
1928 v41.uPitchAngle = 0; | |
1929 } | |
1930 else | |
1931 { | |
1932 v41.vDirection.x = (signed __int64)(1.0 / v33 * v42 * 65536.0); | |
1933 v41.vDirection.y = (signed __int64)(1.0 / v33 * v43 * 65536.0); | |
1934 v41.vDirection.z = (signed __int64)(1.0 / v33 * a4a * 65536.0); | |
1935 v41.uDistance = (signed __int64)v33; | |
1936 v41.uDistanceXZ = (signed __int64)sqrt(v44 + v45); | |
1937 v41.uYawAngle = stru_5C6E00->Atan2((signed __int64)v42, (signed __int64)v43); | |
1938 v41.uPitchAngle = stru_5C6E00->Atan2(v41.uDistanceXZ, (signed __int64)a4a); | |
1939 } | |
1940 result = pOut; | |
1941 memcpy(pOut, &v41, 0x1Cu); | |
1942 return result; | |
1943 } | |
1944 | |
1945 //----- (00404030) -------------------------------------------------------- | |
322 | 1946 void Actor::FaceObject(unsigned int uActorID, unsigned int uObjID, int _48, AIDirection *a4) |
0 | 1947 { |
1948 unsigned int v4; // edi@1 | |
1949 unsigned int v5; // esi@1 | |
322 | 1950 //unsigned int result; // eax@2 |
0 | 1951 AIDirection *v7; // eax@3 |
1952 unsigned int v8; // ecx@3 | |
1953 Actor *v9; // ebx@3 | |
1954 AIDirection *v10; // esi@4 | |
1955 unsigned __int16 v11; // ax@5 | |
1956 AIDirection a3; // [sp+8h] [bp-38h]@4 | |
1957 AIDirection v13; // [sp+24h] [bp-1Ch]@4 | |
1958 | |
1959 v4 = uObjID; | |
1960 v5 = uActorID; | |
1961 if ( rand() % 100 >= 5 ) | |
1962 { | |
1963 v7 = a4; | |
1964 v8 = 0; | |
1965 v9 = &pActors[v5]; | |
1966 if ( !a4 ) | |
1967 { | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
1968 v10 = Actor::GetDirectionInfo(PID(OBJECT_Actor, v5), v4, &a3, 0); |
0 | 1969 v7 = &v13; |
1970 memcpy(&v13, v10, sizeof(v13)); | |
1971 v8 = 0; | |
1972 } | |
1973 v9->uYawAngle = LOWORD(v7->uYawAngle); | |
1974 v11 = LOWORD(v7->uPitchAngle); | |
1975 v9->uCurrentActionTime = v8; | |
1976 v9->vVelocity.z = v8; | |
1977 v9->vVelocity.y = v8; | |
1978 v9->vVelocity.x = v8; | |
1979 v9->uPitchAngle = v11; | |
1980 v9->uCurrentActionLength = 256; | |
1981 v9->uAIState = Interacting; | |
322 | 1982 v9->UpdateAnimation(); |
0 | 1983 } |
1984 else | |
414 | 1985 Actor::AI_Bored(v5, v4, a4); |
0 | 1986 } |
1987 | |
1988 //----- (00403F58) -------------------------------------------------------- | |
414 | 1989 void Actor::AI_StandOrBored(unsigned int uActorID, signed int uObjID, int uActionLength, AIDirection *a4) |
0 | 1990 { |
413 | 1991 if (rand() % 2) |
414 | 1992 AI_Bored(uActorID, uObjID, a4); |
413 | 1993 else |
414 | 1994 AI_Stand(uActorID, uObjID, uActionLength, a4); |
0 | 1995 } |
1996 | |
1997 //----- (00403EB6) -------------------------------------------------------- | |
413 | 1998 void Actor::AI_Stand(unsigned int uActorID, unsigned int object_to_face_pid, unsigned int uActionLength, AIDirection *a4) |
0 | 1999 { |
413 | 2000 assert(uActorID < uNumActors); |
2001 auto actor = pActors + uActorID; | |
2002 | |
2003 AIDirection a3; | |
2004 if (!a4) | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
2005 a4 = Actor::GetDirectionInfo(PID(OBJECT_Actor, uActorID), object_to_face_pid, &a3, 0); |
0 | 2006 |
413 | 2007 actor->uAIState = Standing; |
2008 if (!uActionLength) | |
2009 actor->uCurrentActionLength = rand() % 256 + 256; | |
0 | 2010 else |
413 | 2011 actor->uCurrentActionLength = uActionLength; |
2012 actor->uCurrentActionTime = 0; | |
2013 actor->uYawAngle = a4->uYawAngle; | |
2014 actor->uPitchAngle = a4->uPitchAngle; | |
2015 actor->vVelocity.z = 0; | |
2016 actor->vVelocity.y = 0; | |
2017 actor->vVelocity.x = 0; | |
2018 actor->UpdateAnimation(); | |
0 | 2019 } |
2020 | |
2021 //----- (00403E61) -------------------------------------------------------- | |
2022 void __fastcall Actor::StandAwhile(unsigned int uActorID) | |
2023 { | |
2024 Actor *v1; // esi@1 | |
2025 | |
2026 v1 = &pActors[uActorID]; | |
2027 v1->uCurrentActionLength = rand() % 128 + 128; | |
2028 v1->uCurrentActionTime = 0; | |
2029 v1->uAIState = Standing; | |
2030 v1->vVelocity.z = 0; | |
2031 v1->vVelocity.y = 0; | |
2032 v1->vVelocity.x = 0; | |
2033 v1->UpdateAnimation(); | |
2034 } | |
2035 | |
2036 //----- (00403C6C) -------------------------------------------------------- | |
848 | 2037 void Actor::_403C6C(unsigned int uActorID, signed int sTargetPid, struct AIDirection *arg0) |
0 | 2038 { |
2039 Actor *v3; // ebx@1 | |
2040 char v4; // zf@1 | |
322 | 2041 //unsigned int result; // eax@3 |
0 | 2042 AIDirection *v6; // esi@6 |
2043 AIDirection *v7; // edi@6 | |
2044 signed int v8; // eax@7 | |
2045 double v9; // st7@9 | |
2046 Vec3_int_ v10; // ST04_12@9 | |
322 | 2047 //int v11; // eax@10 |
0 | 2048 AIDirection *v12; // eax@11 |
2049 unsigned int v13; // esi@11 | |
2050 AIDirection *v14; // esi@12 | |
2051 SpriteFrame *v15; // ecx@13 | |
2052 __int16 v16; // ax@13 | |
2053 unsigned int v17; // ecx@13 | |
2054 signed __int64 v18; // qax@13 | |
2055 AIDirection a3; // [sp+Ch] [bp-48h]@12 | |
2056 AIDirection v20; // [sp+28h] [bp-2Ch]@12 | |
2057 unsigned int v21; // [sp+44h] [bp-10h]@9 | |
848 | 2058 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2059 int v23; // [sp+4Ch] [bp-8h]@6 |
2060 unsigned int v24; // [sp+50h] [bp-4h]@1 | |
2061 unsigned int v25; // [sp+5Ch] [bp+8h]@13 | |
2062 | |
2063 v3 = &pActors[uActorID]; | |
848 | 2064 //a2 = edx0; |
0 | 2065 v4 = v3->pMonsterInfo.uMovementType == 5; |
2066 v24 = uActorID; | |
2067 if ( v4 && v3->pMonsterInfo.uAIType == 1 ) | |
2068 { | |
848 | 2069 Actor::AI_Stand(uActorID, sTargetPid, 0, arg0); |
322 | 2070 return; |
0 | 2071 } |
322 | 2072 |
848 | 2073 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) |
849 | 2074 { |
2075 v8 = PID_ID(sTargetPid); | |
2076 v6 = (AIDirection *)pActors[v8].vPosition.x; | |
2077 v7 = (AIDirection *)pActors[v8].vPosition.y; | |
2078 v23 = (signed __int64)((double)pActors[v8].uActorHeight * 0.75 + (double)pActors[v8].vPosition.z); | |
2079 } | |
2080 else if ( PID_TYPE(sTargetPid) == OBJECT_Player) | |
2081 { | |
2082 v6 = (AIDirection *)pParty->vPosition.x; | |
2083 v7 = (AIDirection *)pParty->vPosition.y; | |
2084 v23 = pParty->vPosition.z + pParty->sEyelevel; | |
2085 } | |
2086 else | |
2087 { | |
2088 v6 = arg0; | |
2089 v7 = arg0; | |
2090 } | |
2091 v21 = v3->uActorHeight; | |
2092 v9 = (double)(signed int)v21 * 0.75; | |
2093 v21 = v3->vPosition.z; | |
2094 v10.z = (signed __int64)(v9 + (double)(signed int)v21); | |
2095 v10.y = v3->vPosition.y; | |
2096 v10.x = v3->vPosition.x; | |
2097 if ( sub_407A1C((int)v6, (int)v7, v23, v10) ) | |
2098 { | |
2099 v12 = arg0; | |
2100 v13 = 0; | |
2101 if ( !arg0 ) | |
0 | 2102 { |
849 | 2103 v14 = Actor::GetDirectionInfo(PID(OBJECT_Actor, v24), sTargetPid, &a3, 0); |
0 | 2104 v12 = &v20; |
2105 memcpy(&v20, v14, sizeof(v20)); | |
2106 v13 = 0; | |
849 | 2107 } |
2108 v15 = pSpriteFrameTable->pSpriteSFrames; | |
2109 v3->uYawAngle = LOWORD(v12->uYawAngle); | |
2110 v16 = v15[v3->pSpriteIDs[ANIM_AtkMelee]].uAnimLength; | |
2111 v17 = v24; | |
2112 v3->uCurrentActionLength = 8 * v16; | |
2113 v3->uCurrentActionTime = v13; | |
2114 v3->uAIState = AttackingMelee; | |
2115 Actor::PlaySound(v17, 0); | |
2116 LODWORD(v18) = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2117 v25 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2118 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v13 | |
2119 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v13 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v13) ) | |
2120 { | |
2121 LODWORD(v18) = 2 * v18; | |
0 | 2122 v25 = v18; |
849 | 2123 } |
2124 if ( pParty->bTurnBasedModeOn != 1 ) | |
0 | 2125 v18 = (signed __int64)(flt_6BE3A8_debug_recmod2 * (double)(signed int)v25 * 2.133333333333333); |
849 | 2126 v3->pMonsterInfo.uRecoveryTime = v18; |
2127 v3->vVelocity.z = v13; | |
2128 v3->vVelocity.y = v13; | |
2129 v3->vVelocity.x = v13; | |
2130 v3->UpdateAnimation(); | |
2131 } | |
2132 else | |
860 | 2133 Actor::Pursue1(v24, sTargetPid, rand() % 2, 64, arg0); |
0 | 2134 } |
2135 | |
2136 //----- (00438CF3) -------------------------------------------------------- | |
322 | 2137 void Actor::ApplyFineForKillingPeasant(unsigned int uActorID) |
0 | 2138 { |
2139 unsigned int v1; // esi@1 | |
2140 unsigned int v2; // edi@2 | |
2141 char v3; // bl@3 | |
322 | 2142 //char *v4; // ecx@16 |
2143 //signed int v5; // eax@18 | |
0 | 2144 Player **ppPlayers; // esi@20 |
2145 | |
2146 v1 = uLevelMapStatsID; | |
322 | 2147 if ( !uLevelMapStatsID || !pActors[uActorID].IsPeasant()) |
0 | 2148 return; |
322 | 2149 |
2150 v2 = uActorID; | |
0 | 2151 v3 = 1; |
2152 if ( v1 != 5 ) | |
2153 { | |
2154 if ( v1 == 6 || v1 == 7 ) | |
2155 { | |
484 | 2156 _449B57_test_bit(pParty->_quest_bits, 99); |
2157 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 100) ) | |
0 | 2158 return; |
2159 goto LABEL_12; | |
2160 } | |
2161 if ( v1 != 8 ) | |
2162 goto LABEL_12; | |
2163 } | |
484 | 2164 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 99) ) |
0 | 2165 v3 = 0; |
484 | 2166 if ( (unsigned __int16)_449B57_test_bit(pParty->_quest_bits, 100) ) |
0 | 2167 v3 = 1; |
2168 if ( v3 ) | |
2169 { | |
2170 LABEL_12: | |
322 | 2171 pParty->uFine += 100 * (pMapStats->pInfos[uLevelMapStatsID]._steal_perm + pActors[v2].pMonsterInfo.uLevel + GetPartyReputation()); |
0 | 2172 if ( pParty->uFine < 0 ) |
2173 pParty->uFine = 0; | |
2174 if ( pParty->uFine > 4000000 ) | |
2175 pParty->uFine = 4000000; | |
322 | 2176 |
2177 if (uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
2178 { | |
2179 if (pOutdoor->ddm.uReputation < 10000) | |
2180 pOutdoor->ddm.uReputation++; | |
2181 } | |
2182 else if (uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
2183 { | |
2184 if (pIndoor->dlv.uReputation < 10000) | |
2185 pIndoor->dlv.uReputation++; | |
2186 } | |
2187 else assert(false); | |
2188 | |
0 | 2189 ppPlayers = &pPlayers[1]; |
2190 do | |
2191 { | |
2192 if ( pParty->uFine ) | |
2193 { | |
484 | 2194 if ( !(unsigned __int16)_449B57_test_bit((unsigned __int8 *)(*ppPlayers)->_guilds_member_bits, 1) ) |
2195 _449B7E_toggle_bit((unsigned char *)(*ppPlayers)->_guilds_member_bits, 1, 1u); | |
0 | 2196 } |
2197 ++ppPlayers; | |
2198 } | |
2199 while ( (signed int)ppPlayers <= (signed int)&pPlayers[4] ); | |
2200 } | |
2201 } | |
2202 | |
2203 //----- (0043AE80) -------------------------------------------------------- | |
322 | 2204 void Actor::AddBloodsplatOnDamageOverlay(unsigned int uActorID, int a2, signed int a3) |
0 | 2205 { |
2206 int result; // eax@1 | |
2207 unsigned int v4; // esi@1 | |
2208 int v5; // [sp-14h] [bp-18h]@3 | |
2209 unsigned int v6; // [sp-10h] [bp-14h]@3 | |
2210 int v7; // [sp-Ch] [bp-10h]@3 | |
2211 int v8; // [sp-8h] [bp-Ch]@3 | |
2212 __int16 v9; // [sp-4h] [bp-8h]@3 | |
2213 | |
2214 result = a2 - 1; | |
849 | 2215 v4 = PID(uActorID,OBJECT_Actor); |
0 | 2216 switch ( a2 ) |
2217 { | |
2218 case 1: | |
2219 if ( a3 ) | |
2220 { | |
2221 v9 = 0; | |
2222 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2223 v7 = 0; | |
2224 LOWORD(v6) = v4; | |
2225 v5 = 904; | |
2226 goto LABEL_16; | |
2227 } | |
322 | 2228 return; |
0 | 2229 case 2: |
2230 if ( a3 ) | |
2231 { | |
2232 v9 = 0; | |
2233 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2234 v7 = 0; | |
2235 LOWORD(v6) = v4; | |
2236 v5 = 905; | |
2237 goto LABEL_16; | |
2238 } | |
322 | 2239 return; |
0 | 2240 case 3: |
2241 if ( a3 ) | |
2242 { | |
2243 v9 = 0; | |
2244 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2245 v7 = 0; | |
2246 LOWORD(v6) = v4; | |
2247 v5 = 906; | |
2248 goto LABEL_16; | |
2249 } | |
322 | 2250 return; |
0 | 2251 case 4: |
2252 if ( a3 ) | |
2253 { | |
2254 v9 = 0; | |
2255 v8 = (signed __int64)(sub_43AE12(a3) * 65536.0); | |
2256 v7 = 0; | |
2257 LOWORD(v6) = v4; | |
2258 v5 = 907; | |
2259 goto LABEL_16; | |
2260 } | |
322 | 2261 return; |
0 | 2262 case 5: |
2263 v9 = 4; | |
2264 v8 = 65536; | |
2265 v7 = 0; | |
849 | 2266 v6 = PID(uActorID,OBJECT_Actor); |
0 | 2267 v5 = 901; |
2268 goto LABEL_16; | |
2269 case 6: | |
2270 v9 = 4; | |
2271 v8 = 65536; | |
2272 v7 = 0; | |
849 | 2273 v6 = PID(uActorID,OBJECT_Actor); |
0 | 2274 v5 = 902; |
2275 goto LABEL_16; | |
2276 case 7: | |
2277 v9 = 4; | |
2278 v8 = 65536; | |
2279 v7 = 0; | |
849 | 2280 v6 = PID(uActorID,OBJECT_Actor); |
0 | 2281 v5 = 903; |
2282 goto LABEL_16; | |
2283 case 8: | |
2284 v9 = 4; | |
2285 v8 = 65536; | |
2286 v7 = 0; | |
849 | 2287 v6 = PID(uActorID,OBJECT_Actor); |
0 | 2288 v5 = 900; |
2289 goto LABEL_16; | |
2290 case 9: | |
2291 v9 = 4; | |
2292 v8 = 65536; | |
2293 v7 = 0; | |
849 | 2294 v6 = PID(uActorID,OBJECT_Actor); |
0 | 2295 v5 = 909; |
2296 goto LABEL_16; | |
2297 case 10: | |
2298 v9 = 4; | |
2299 v8 = 65536; | |
2300 v7 = 0; | |
849 | 2301 v6 = PID(uActorID,OBJECT_Actor); |
0 | 2302 v5 = 908; |
2303 LABEL_16: | |
2304 result = pOtherOverlayList->_4418B6(v5, v6, v7, v8, v9); | |
2305 break; | |
2306 default: | |
322 | 2307 return; |
0 | 2308 } |
322 | 2309 return; |
0 | 2310 } |
2311 | |
2312 //----- (0043B3E0) -------------------------------------------------------- | |
2313 int Actor::_43B3E0_CalcDamage(Actor *a1, signed int a2) | |
2314 { | |
2315 signed int v2; // ebp@1 | |
2316 int v3; // eax@9 | |
2317 signed int v4; // edi@9 | |
2318 int v5; // esi@9 | |
2319 int v6; // ebx@11 | |
2320 unsigned __int16 v8; // si@21 | |
2321 int v9; // edi@21 | |
2322 signed int v10; // eax@23 | |
2323 int v11; // [sp+10h] [bp-4h]@1 | |
2324 | |
2325 v2 = 0; | |
2326 v11 = 0; | |
2327 if ( a2 ) | |
2328 { | |
2329 if ( a2 == 1 ) | |
2330 { | |
2331 v3 = a1->pMonsterInfo.uAttack2DamageDiceRolls; | |
2332 v4 = a1->pMonsterInfo.uAttack2DamageDiceSides; | |
2333 v5 = a1->pMonsterInfo.uAttack2DamageBonus; | |
2334 } | |
2335 else | |
2336 { | |
2337 if ( a2 <= 1 ) | |
2338 return 0; | |
2339 if ( a2 <= 3 ) | |
2340 { | |
2341 if ( a2 == 2 ) | |
2342 { | |
2343 v8 = a1->pMonsterInfo.uSpellSkillAndMastery1; | |
2344 v9 = a1->pMonsterInfo.uSpell1ID; | |
2345 } | |
2346 else | |
2347 { | |
2348 v8 = a1->pMonsterInfo.uSpellSkillAndMastery2; | |
2349 v9 = a1->pMonsterInfo.uSpell2ID; | |
2350 } | |
2351 v10 = SkillToMastery(v8); | |
2352 return _43AFE3_calc_spell_damage(v9, v8 & 0x3F, v10, 0); | |
2353 } | |
2354 if ( a2 != 4 ) | |
2355 return 0; | |
2356 v3 = a1->pMonsterInfo.uSpecialAbilityDamageDiceRolls; | |
2357 v4 = a1->pMonsterInfo.uSpecialAbilityDamageDiceSides; | |
2358 v5 = a1->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
2359 } | |
2360 } | |
2361 else | |
2362 { | |
2363 if ( (signed __int64)a1->pActorBuffs[14].uExpireTime > 0 ) | |
2364 v2 = a1->pActorBuffs[14].uPower; | |
2365 if ( (signed __int64)a1->pActorBuffs[18].uExpireTime > 0 && a1->pActorBuffs[18].uPower > v2 ) | |
2366 v2 = a1->pActorBuffs[18].uPower; | |
2367 if ( (signed __int64)a1->pActorBuffs[21].uExpireTime > 0 ) | |
2368 v2 += a1->pActorBuffs[21].uPower; | |
2369 v3 = a1->pMonsterInfo.uAttack1DamageDiceRolls; | |
2370 v4 = a1->pMonsterInfo.uAttack1DamageDiceSides; | |
2371 v5 = a1->pMonsterInfo.uAttack1DamageBonus; | |
2372 } | |
2373 if ( v3 > 0 ) | |
2374 { | |
2375 v6 = v3; | |
2376 do | |
2377 { | |
2378 --v6; | |
2379 v11 += rand() % v4 + 1; | |
2380 } | |
2381 while ( v6 ); | |
2382 } | |
2383 return v11 + v5 + v2; | |
2384 } | |
2385 | |
2386 //----- (00438B9B) -------------------------------------------------------- | |
322 | 2387 bool Actor::IsPeasant() |
0 | 2388 { |
2389 unsigned int v1; // eax@1 | |
2390 | |
2391 v1 = this->uAlly; | |
2392 if ( !v1 ) | |
2393 v1 = (this->pMonsterInfo.uID - 1) / 3 + 1; | |
2394 return (signed int)v1 >= 39 && (signed int)v1 <= 44 | |
2395 || (signed int)v1 >= 45 && (signed int)v1 <= 50 | |
2396 || (signed int)v1 >= 51 && (signed int)v1 <= 62 | |
2397 || (signed int)v1 >= 78 && (signed int)v1 <= 83; | |
2398 } | |
2399 | |
2400 //----- (0042EBEE) -------------------------------------------------------- | |
2401 bool Actor::StealFrom(unsigned int uActorID) | |
2402 { | |
2403 unsigned int v1; // esi@1 | |
2404 Player *pPlayer; // edi@1 | |
2405 bool result; // eax@1 | |
2406 int v4; // ebx@2 | |
2407 unsigned int v5; // eax@2 | |
2408 DDM_DLV_Header *v6; // esi@4 | |
2409 unsigned int v7; // [sp+8h] [bp-4h]@1 | |
2410 int v8; // [sp+8h] [bp-4h]@6 | |
2411 | |
2412 v1 = uActiveCharacter; | |
2413 v7 = uActorID; | |
243 | 2414 pPlayer = &pParty->pPlayers[uActiveCharacter-1]; |
0 | 2415 result = pPlayer->CanAct(); |
2416 if ( result ) | |
2417 { | |
2418 pStru277->_427D48(v1); | |
2419 v4 = 0; | |
2420 v5 = pMapStats->GetMapInfo(pCurrentMapName); | |
2421 if ( v5 ) | |
2422 v4 = pMapStats->pInfos[v5]._steal_perm; | |
2423 v6 = &pOutdoor->ddm; | |
2424 if ( uCurrentlyLoadedLevelType != LEVEL_Outdoor) | |
2425 v6 = &pIndoor->dlv; | |
2426 pPlayer->StealFromActor(v7, v4, v6->uReputation++); | |
2427 v8 = pPlayer->GetAttackRecoveryTime(0); | |
2428 if ( v8 < 30 ) | |
2429 v8 = 30; | |
2430 if ( !pParty->bTurnBasedModeOn ) | |
2431 pPlayer->SetRecoveryTime((signed __int64)(flt_6BE3A4_debug_recmod1 * (double)v8 * 2.133333333333333)); | |
2432 pTurnEngine->_40471C(); | |
2433 result = 1; | |
2434 } | |
2435 return result; | |
2436 } | |
2437 | |
2438 //----- (00403A60) -------------------------------------------------------- | |
322 | 2439 void Actor::_403A60(unsigned int uActorID, signed int edx0, AIDirection *pDir) |
0 | 2440 { |
2441 Actor *v3; // ebx@1 | |
2442 AIDirection *v4; // esi@3 | |
2443 AIDirection *v5; // edi@3 | |
2444 signed int v6; // eax@4 | |
2445 Vec3_int_ v7; // ST04_12@6 | |
322 | 2446 //unsigned int result; // eax@7 |
0 | 2447 AIDirection *v9; // eax@8 |
2448 unsigned int v10; // esi@8 | |
2449 AIDirection *v11; // esi@9 | |
2450 SpriteFrame *v12; // ecx@10 | |
2451 __int16 v13; // ax@10 | |
2452 unsigned int v14; // ecx@10 | |
2453 unsigned int v15; // eax@10 | |
2454 signed int v16; // ecx@17 | |
2455 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2456 AIDirection v18; // [sp+28h] [bp-2Ch]@9 | |
2457 int v19; // [sp+44h] [bp-10h]@6 | |
2458 signed int a2; // [sp+48h] [bp-Ch]@1 | |
2459 int v21; // [sp+4Ch] [bp-8h]@3 | |
2460 unsigned int v22; // [sp+50h] [bp-4h]@1 | |
2461 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2462 | |
2463 v22 = uActorID; | |
2464 v3 = &pActors[uActorID]; | |
2465 a2 = edx0; | |
848 | 2466 if ( PID_TYPE(edx0) == OBJECT_Actor) |
0 | 2467 { |
848 | 2468 v6 = PID_ID(edx0); |
0 | 2469 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2470 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2471 v21 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2472 } | |
2473 else | |
2474 { | |
848 | 2475 if ( PID_TYPE(edx0) == OBJECT_Player) |
0 | 2476 { |
2477 v4 = (AIDirection *)pParty->vPosition.x; | |
2478 v5 = (AIDirection *)pParty->vPosition.y; | |
2479 v21 = pParty->vPosition.z + pParty->sEyelevel; | |
2480 } | |
2481 else | |
2482 { | |
2483 v4 = pDir; | |
2484 v5 = pDir; | |
2485 } | |
2486 } | |
2487 v19 = v3->uActorHeight; | |
2488 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2489 v7.y = v3->vPosition.y; | |
2490 v7.x = v3->vPosition.x; | |
2491 if ( sub_407A1C((int)v4, (int)v5, v21, v7) ) | |
2492 { | |
2493 v9 = pDir; | |
2494 v10 = 0; | |
2495 if ( !pDir ) | |
2496 { | |
860 | 2497 v11 = Actor::GetDirectionInfo(PID(v22,OBJECT_Actor), a2, &a3, 0); |
0 | 2498 v9 = &v18; |
2499 memcpy(&v18, v11, sizeof(v18)); | |
2500 v10 = 0; | |
2501 } | |
2502 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2503 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2504 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2505 v14 = v22; |
2506 v3->uCurrentActionLength = 8 * v13; | |
2507 v3->uCurrentActionTime = v10; | |
2508 v3->uAIState = AttackingRanged4; | |
2509 Actor::PlaySound(v14, 0); | |
2510 v15 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2511 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2512 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2513 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2514 { | |
2515 v15 *= 2; | |
2516 pDira = v15; | |
2517 } | |
2518 if ( pParty->bTurnBasedModeOn == 1 ) | |
2519 v3->pMonsterInfo.uRecoveryTime = v15; | |
2520 else | |
2521 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2522 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2523 * (double)(signed int)pDira | |
2524 * -2.133333333333333); | |
2525 v16 = v3->pMonsterInfo.uSpell2ID; | |
2526 v3->vVelocity.z = v10; | |
2527 v3->vVelocity.y = v10; | |
2528 v3->vVelocity.x = v10; | |
2529 if ( sub_42FB5C(v16) ) | |
2530 { | |
2531 v3->uCurrentActionLength = 64; | |
2532 v3->uCurrentActionTime = v10; | |
2533 v3->uAIState = Fidgeting; | |
322 | 2534 v3->UpdateAnimation(); |
0 | 2535 v3->uAIState = AttackingRanged4; |
2536 } | |
2537 else | |
322 | 2538 v3->UpdateAnimation(); |
0 | 2539 } |
2540 else | |
860 | 2541 Actor::Pursue1(v22, a2, v22, 64, pDir); |
0 | 2542 } |
2543 | |
2544 //----- (00403854) -------------------------------------------------------- | |
848 | 2545 void Actor::_403854(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2546 { |
2547 Actor *v3; // ebx@1 | |
2548 AIDirection *v4; // esi@3 | |
2549 AIDirection *v5; // edi@3 | |
2550 signed int v6; // eax@4 | |
2551 Vec3_int_ v7; // ST04_12@6 | |
322 | 2552 //unsigned int result; // eax@7 |
0 | 2553 AIDirection *v9; // eax@8 |
2554 unsigned int v10; // esi@8 | |
2555 AIDirection *v11; // esi@9 | |
2556 SpriteFrame *v12; // ecx@10 | |
2557 __int16 v13; // ax@10 | |
2558 unsigned int v14; // ecx@10 | |
2559 unsigned int v15; // eax@10 | |
2560 signed int v16; // ecx@17 | |
2561 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2562 AIDirection v18; // [sp+28h] [bp-2Ch]@9 | |
2563 int v19; // [sp+44h] [bp-10h]@6 | |
848 | 2564 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2565 int v21; // [sp+4Ch] [bp-8h]@3 |
2566 unsigned int v22; // [sp+50h] [bp-4h]@1 | |
2567 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2568 | |
2569 v22 = uActorID; | |
2570 v3 = &pActors[uActorID]; | |
848 | 2571 //a2 = edx0; |
2572 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2573 { |
848 | 2574 v6 = PID_ID(sTargetPid); |
0 | 2575 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2576 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2577 v21 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2578 } | |
2579 else | |
2580 { | |
848 | 2581 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2582 { |
2583 v4 = (AIDirection *)pParty->vPosition.x; | |
2584 v5 = (AIDirection *)pParty->vPosition.y; | |
2585 v21 = pParty->vPosition.z + pParty->sEyelevel; | |
2586 } | |
2587 else | |
2588 { | |
2589 v4 = pDir; | |
2590 v5 = pDir; | |
2591 } | |
2592 } | |
2593 v19 = v3->uActorHeight; | |
2594 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2595 v7.y = v3->vPosition.y; | |
2596 v7.x = v3->vPosition.x; | |
2597 if ( sub_407A1C((int)v4, (int)v5, v21, v7) ) | |
2598 { | |
2599 v9 = pDir; | |
2600 v10 = 0; | |
2601 if ( !pDir ) | |
2602 { | |
860 | 2603 v11 = Actor::GetDirectionInfo(PID(v22,OBJECT_Actor), sTargetPid, &a3, 0); |
0 | 2604 v9 = &v18; |
2605 memcpy(&v18, v11, sizeof(v18)); | |
2606 v10 = 0; | |
2607 } | |
2608 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2609 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2610 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2611 v14 = v22; |
2612 v3->uCurrentActionLength = 8 * v13; | |
2613 v3->uCurrentActionTime = v10; | |
2614 v3->uAIState = AttackingRanged3; | |
2615 Actor::PlaySound(v14, 0); | |
2616 v15 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2617 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2618 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2619 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2620 { | |
2621 v15 *= 2; | |
2622 pDira = v15; | |
2623 } | |
2624 if ( pParty->bTurnBasedModeOn == 1 ) | |
2625 v3->pMonsterInfo.uRecoveryTime = v15; | |
2626 else | |
2627 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2628 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2629 * (double)(signed int)pDira | |
2630 * -2.133333333333333); | |
2631 v16 = v3->pMonsterInfo.uSpell1ID; | |
2632 v3->vVelocity.z = v10; | |
2633 v3->vVelocity.y = v10; | |
2634 v3->vVelocity.x = v10; | |
2635 if ( sub_42FB5C(v16) ) | |
2636 { | |
2637 v3->uCurrentActionLength = 64; | |
2638 v3->uCurrentActionTime = v10; | |
2639 v3->uAIState = Fidgeting; | |
322 | 2640 v3->UpdateAnimation(); |
0 | 2641 v3->uAIState = AttackingRanged3; |
2642 } | |
2643 else | |
322 | 2644 v3->UpdateAnimation(); |
0 | 2645 } |
2646 else | |
860 | 2647 Actor::Pursue1(v22, sTargetPid, v22, 64, pDir); |
0 | 2648 } |
2649 | |
2650 //----- (0040368B) -------------------------------------------------------- | |
848 | 2651 void Actor::_40368B(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2652 { |
2653 Actor *v3; // ebx@1 | |
2654 AIDirection *v4; // esi@3 | |
2655 AIDirection *v5; // edi@3 | |
2656 signed int v6; // eax@4 | |
2657 Vec3_int_ v7; // ST04_12@6 | |
322 | 2658 //unsigned int result; // eax@7 |
0 | 2659 AIDirection *v9; // eax@8 |
2660 unsigned int v10; // esi@8 | |
2661 AIDirection *v11; // esi@9 | |
2662 SpriteFrame *v12; // ecx@10 | |
2663 __int16 v13; // ax@10 | |
2664 unsigned int v14; // ecx@10 | |
2665 signed __int64 v15; // qax@10 | |
2666 AIDirection a3; // [sp+Ch] [bp-48h]@9 | |
2667 AIDirection v17; // [sp+28h] [bp-2Ch]@9 | |
2668 int v18; // [sp+44h] [bp-10h]@6 | |
848 | 2669 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2670 int v20; // [sp+4Ch] [bp-8h]@3 |
2671 unsigned int v21; // [sp+50h] [bp-4h]@1 | |
2672 unsigned int pDira; // [sp+5Ch] [bp+8h]@10 | |
2673 | |
2674 v21 = uActorID; | |
2675 v3 = &pActors[uActorID]; | |
848 | 2676 //a2 = edx0; |
2677 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2678 { |
848 | 2679 v6 = PID_ID(sTargetPid); |
0 | 2680 v4 = (AIDirection *)pActors[v6].vPosition.x; |
2681 v5 = (AIDirection *)pActors[v6].vPosition.y; | |
2682 v20 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2683 } | |
2684 else | |
2685 { | |
848 | 2686 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2687 { |
2688 v4 = (AIDirection *)pParty->vPosition.x; | |
2689 v5 = (AIDirection *)pParty->vPosition.y; | |
2690 v20 = pParty->vPosition.z + pParty->sEyelevel; | |
2691 } | |
2692 else | |
2693 { | |
2694 v4 = pDir; | |
2695 v5 = pDir; | |
2696 } | |
2697 } | |
2698 v18 = v3->uActorHeight; | |
2699 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v18 * -0.75); | |
2700 v7.y = v3->vPosition.y; | |
2701 v7.x = v3->vPosition.x; | |
2702 if ( sub_407A1C((int)v4, (int)v5, v20, v7) ) | |
2703 { | |
2704 v9 = pDir; | |
2705 v10 = 0; | |
2706 if ( !pDir ) | |
2707 { | |
860 | 2708 v11 = Actor::GetDirectionInfo(PID(v21,OBJECT_Actor), sTargetPid, &a3, 0); |
0 | 2709 v9 = &v17; |
2710 memcpy(&v17, v11, sizeof(v17)); | |
2711 v10 = 0; | |
2712 } | |
2713 v12 = pSpriteFrameTable->pSpriteSFrames; | |
2714 v3->uYawAngle = LOWORD(v9->uYawAngle); | |
319 | 2715 v13 = v12[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2716 v14 = v21; |
2717 v3->uCurrentActionLength = 8 * v13; | |
2718 v3->uCurrentActionTime = v10; | |
2719 v3->uAIState = AttackingRanged2; | |
2720 Actor::PlaySound(v14, 0); | |
2721 LODWORD(v15) = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2722 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2723 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v10 | |
2724 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v10 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v10) ) | |
2725 { | |
2726 LODWORD(v15) = 2 * v15; | |
2727 pDira = v15; | |
2728 } | |
2729 if ( pParty->bTurnBasedModeOn != 1 ) | |
2730 v15 = (signed __int64)(flt_6BE3A8_debug_recmod2 * (double)(signed int)pDira * 2.133333333333333); | |
2731 v3->pMonsterInfo.uRecoveryTime = v15; | |
2732 v3->vVelocity.z = v10; | |
2733 v3->vVelocity.y = v10; | |
2734 v3->vVelocity.x = v10; | |
322 | 2735 v3->UpdateAnimation(); |
0 | 2736 } |
2737 else | |
860 | 2738 Actor::Pursue1(v21, sTargetPid, v21, 64, pDir); |
0 | 2739 } |
2740 | |
2741 //----- (00403476) -------------------------------------------------------- | |
848 | 2742 void Actor::_403476(unsigned int uActorID, signed int sTargetPid, AIDirection *pDir) |
0 | 2743 { |
2744 Actor *v3; // ebx@1 | |
2745 int v4; // esi@3 | |
2746 int v5; // edi@3 | |
2747 signed int v6; // eax@4 | |
2748 Vec3_int_ v7; // ST04_12@6 | |
2749 unsigned char v8[12]; // ST04_12@7 | |
322 | 2750 //unsigned int result; // eax@8 |
0 | 2751 AIDirection *v10; // eax@9 |
2752 unsigned int v11; // esi@9 | |
2753 AIDirection *v12; // esi@10 | |
2754 SpriteFrame *v13; // ecx@11 | |
2755 __int16 v14; // ax@11 | |
2756 unsigned int v15; // ecx@11 | |
2757 unsigned int v16; // eax@11 | |
2758 AIDirection a3; // [sp+Ch] [bp-48h]@10 | |
2759 AIDirection v18; // [sp+28h] [bp-2Ch]@10 | |
2760 int v19; // [sp+44h] [bp-10h]@6 | |
848 | 2761 //signed int a2; // [sp+48h] [bp-Ch]@1 |
0 | 2762 unsigned int v21; // [sp+4Ch] [bp-8h]@1 |
2763 int v22; // [sp+50h] [bp-4h]@3 | |
2764 unsigned int pDira; // [sp+5Ch] [bp+8h]@11 | |
2765 | |
2766 v21 = uActorID; | |
2767 v3 = &pActors[uActorID]; | |
848 | 2768 //a2 = edx0; |
2769 if ( PID_TYPE(sTargetPid) == OBJECT_Actor) | |
0 | 2770 { |
848 | 2771 v6 = PID_ID(sTargetPid); |
0 | 2772 v4 = pActors[v6].vPosition.x; |
2773 v5 = pActors[v6].vPosition.y; | |
2774 v22 = (signed __int64)((double)pActors[v6].uActorHeight * 0.75 + (double)pActors[v6].vPosition.z); | |
2775 } | |
2776 else | |
2777 { | |
848 | 2778 if ( PID_TYPE(sTargetPid) == OBJECT_Player) |
0 | 2779 { |
2780 v4 = pParty->vPosition.x; | |
2781 v5 = pParty->vPosition.y; | |
2782 v22 = pParty->vPosition.z + pParty->sEyelevel; | |
2783 } | |
2784 else | |
2785 { | |
2786 v4 = (int)pDir; | |
2787 v5 = (int)pDir; | |
2788 } | |
2789 } | |
2790 v19 = v3->uActorHeight; | |
2791 v7.z = v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75); | |
2792 v7.y = v3->vPosition.y; | |
2793 v7.x = v3->vPosition.x; | |
2794 if ( sub_407A1C(v4, v5, v22, v7) | |
2795 || (*(unsigned int *)&v8[8] = v22, | |
2796 v19 = v3->uActorHeight, | |
2797 *(_QWORD *)v8 = __PAIR__(v5, v4), | |
2798 sub_407A1C( | |
2799 v3->vPosition.x, | |
2800 v3->vPosition.y, | |
2801 v3->vPosition.z - (unsigned int)(signed __int64)((double)v19 * -0.75), | |
2802 *(Vec3_int_ *)v8)) ) | |
2803 { | |
2804 v10 = pDir; | |
2805 v11 = 0; | |
2806 if ( !pDir ) | |
2807 { | |
860 | 2808 v12 = Actor::GetDirectionInfo(PID(v21,OBJECT_Actor), sTargetPid, &a3, 0); |
0 | 2809 v10 = &v18; |
2810 memcpy(&v18, v12, sizeof(v18)); | |
2811 v11 = 0; | |
2812 } | |
2813 v13 = pSpriteFrameTable->pSpriteSFrames; | |
2814 v3->uYawAngle = LOWORD(v10->uYawAngle); | |
319 | 2815 v14 = v13[v3->pSpriteIDs[ANIM_AtkRanged]].uAnimLength; |
0 | 2816 v15 = v21; |
2817 v3->uCurrentActionLength = 8 * v14; | |
2818 v3->uCurrentActionTime = v11; | |
2819 v3->uAIState = AttackingRanged1; | |
2820 Actor::PlaySound(v15, 0); | |
2821 v16 = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2822 pDira = pMonsterStats->pInfos[v3->pMonsterInfo.uID].uRecoveryTime; | |
2823 if ( SHIDWORD(v3->pActorBuffs[7].uExpireTime) >= (signed int)v11 | |
2824 && (SHIDWORD(v3->pActorBuffs[7].uExpireTime) > (signed int)v11 || LODWORD(v3->pActorBuffs[7].uExpireTime) > v11) ) | |
2825 { | |
2826 v16 *= 2; | |
2827 pDira = v16; | |
2828 } | |
2829 if ( pParty->bTurnBasedModeOn == 1 ) | |
2830 v3->pMonsterInfo.uRecoveryTime = v16; | |
2831 else | |
2832 v3->pMonsterInfo.uRecoveryTime = v3->uCurrentActionLength | |
2833 - (unsigned int)(signed __int64)(flt_6BE3A8_debug_recmod2 | |
2834 * (double)(signed int)pDira | |
2835 * -2.133333333333333); | |
2836 v3->vVelocity.z = v11; | |
2837 v3->vVelocity.y = v11; | |
2838 v3->vVelocity.x = v11; | |
322 | 2839 v3->UpdateAnimation(); |
0 | 2840 } |
2841 else | |
860 | 2842 Actor::Pursue1(v21, sTargetPid, v21, 64, pDir); |
0 | 2843 } |
2844 | |
2845 //----- (004032B2) -------------------------------------------------------- | |
322 | 2846 void Actor::_4032B2(unsigned int a1, unsigned int a2, int a3, int uActionLength) |
0 | 2847 { |
2848 unsigned int v4; // edi@1 | |
2849 Actor *v5; // esi@1 | |
2850 int v6; // ebx@1 | |
2851 int v7; // ST08_4@1 | |
2852 int v8; // eax@1 | |
2853 unsigned int v9; // ebx@11 | |
2854 int v10; // ebx@13 | |
2855 signed __int16 v11; // cx@17 | |
2856 unsigned int v12; // [sp-8h] [bp-44h]@10 | |
2857 AIDirection *v13; // [sp-4h] [bp-40h]@10 | |
2858 AIDirection v14; // [sp+Ch] [bp-30h]@7 | |
2859 int v15; // [sp+28h] [bp-14h]@11 | |
2860 unsigned int v16; // [sp+2Ch] [bp-10h]@1 | |
2861 int y; // [sp+30h] [bp-Ch]@1 | |
2862 unsigned int uActorID; // [sp+34h] [bp-8h]@1 | |
2863 int v19; // [sp+38h] [bp-4h]@1 | |
2864 | |
414 | 2865 //v14 never filled, maybe it is passed to function but optimized away as local variable |
2866 | |
0 | 2867 uActorID = a1; |
2868 v4 = a1; | |
2869 v5 = &pActors[a1]; | |
2870 v16 = a2; | |
2871 v6 = v5->vInitialPosition.x - v5->vPosition.x; | |
2872 v7 = v5->vInitialPosition.x - v5->vPosition.x; | |
2873 y = v5->vInitialPosition.y - v5->vPosition.y; | |
2874 v19 = abs(v7); | |
2875 v8 = abs(y); | |
2876 if ( v19 <= v8 ) | |
2877 v19 = v8 + (v19 >> 1); | |
2878 else | |
2879 v19 += v8 >> 1; | |
2880 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
2881 { | |
2882 if ( !uActionLength ) | |
2883 uActionLength = 256; | |
414 | 2884 Actor::AI_StandOrBored(uActorID, OBJECT_Player, uActionLength, &v14); |
0 | 2885 return; |
2886 } | |
2887 if ( pActors[v4].pMonsterInfo.uMovementType == 3 && v19 < 128 ) | |
2888 { | |
2889 v13 = &v14; | |
2890 v12 = 256; | |
413 | 2891 Actor::AI_Stand(uActorID, v16, v12, v13); |
0 | 2892 return; |
2893 } | |
2894 v15 = (rand() & 0xF) << 12; | |
2895 v19 += (unsigned __int64)(v15 * (signed __int64)a3) >> 16; | |
2896 v9 = (stru_5C6E00->uIntegerDoublePi - 1) & stru_5C6E00->Atan2(v6, y); | |
2897 if ( rand() % 100 < 25 ) | |
2898 { | |
2899 Actor::StandAwhile(uActorID); | |
2900 return; | |
2901 } | |
2902 v10 = v9 + rand() % 256 - 128; | |
2903 if ( abs(v10 - v5->uYawAngle) > 256 && !(BYTE2(v5->uAttributes) & 0x20) ) | |
2904 { | |
2905 v13 = &v14; | |
2906 v12 = 256; | |
413 | 2907 Actor::AI_Stand(uActorID, v16, v12, v13); |
245 | 2908 return; |
0 | 2909 } |
2910 v11 = v5->uMovementSpeed; | |
2911 v5->uYawAngle = v10; | |
2912 if ( v11 ) | |
2913 v5->uCurrentActionLength = 32 * v19 / v11; | |
2914 else | |
2915 v5->uCurrentActionLength = 0; | |
2916 v5->uCurrentActionTime = 0; | |
2917 v5->uAIState = Tethered; | |
2918 if ( rand() % 100 < 2 ) | |
2919 Actor::PlaySound(uActorID, 3u); | |
2920 v5->UpdateAnimation(); | |
2921 } | |
2922 | |
2923 //----- (004031C1) -------------------------------------------------------- | |
2924 char __fastcall Actor::_4031C1_update_job(unsigned int uActorID, signed int a2, int a3) | |
2925 { | |
2926 unsigned int v3; // edi@1 | |
2927 Actor *v4; // esi@1 | |
2928 ActorJob *v5; // eax@1 | |
2929 signed int v6; // edx@2 | |
2930 ActorJob *v7; // eax@2 | |
2931 signed int v8; // edi@2 | |
82 | 2932 ActorJob *v9; // ecx@2 |
0 | 2933 __int16 v10; // cx@15 |
2934 signed int v12; // [sp+8h] [bp-4h]@1 | |
2935 | |
2936 v3 = uActorID; | |
2937 v12 = a2; | |
2938 v4 = &pActors[uActorID]; | |
2939 v5 = (ActorJob *)pActors[uActorID].CanAct(); | |
2940 if ( v5 ) | |
2941 { | |
2942 v6 = 65535; | |
2943 v7 = &v4->pScheduledJobs[v3]; | |
2944 v8 = 7; | |
82 | 2945 v9 = &v7[7];//(char *)&v7[7].uHour; |
2946 while ( !(v9->uAttributes & 1) || v9->uHour > v12 ) | |
0 | 2947 { |
2948 --v8; | |
82 | 2949 --v9; |
0 | 2950 if ( v8 < 0 ) |
82 | 2951 break; |
0 | 2952 } |
82 | 2953 if( v8 >= 0 ) |
2954 v6 = v8; | |
0 | 2955 if ( !v8 && v6 == 65535 ) |
2956 v6 = 7; | |
2957 v5 = &v7[v6]; | |
2958 if ( v4->vInitialPosition.x != v5->vPos.x | |
2959 || v4->vInitialPosition.y != v5->vPos.y | |
2960 || v4->vInitialPosition.z != v5->vPos.z | |
2961 || v4->pMonsterInfo.uMovementType != v5->uAction ) | |
2962 { | |
2963 v4->vInitialPosition.x = v5->vPos.x; | |
2964 v4->vInitialPosition.y = v5->vPos.y; | |
2965 v10 = v5->vPos.z; | |
2966 v4->vInitialPosition.z = v10; | |
2967 LOBYTE(v5) = v5->uAction; | |
2968 v4->pMonsterInfo.uMovementType = (unsigned __int8)v5; | |
2969 if ( a3 == 1 ) | |
2970 { | |
2971 v4->vPosition.x = v4->vInitialPosition.x; | |
2972 v4->vPosition.y = v4->vInitialPosition.y; | |
2973 LOBYTE(v5) = v10; | |
2974 v4->vPosition.z = v10; | |
2975 } | |
2976 } | |
2977 } | |
2978 return (char)v5; | |
2979 } | |
2980 | |
2981 //----- (004030AD) -------------------------------------------------------- | |
322 | 2982 void Actor::_4030AD(unsigned int uActorID, signed int edx0, int arg0) |
0 | 2983 { |
2984 unsigned int v3; // edi@1 | |
2985 Actor *v4; // ebx@1 | |
322 | 2986 //__int16 result; // ax@10 |
0 | 2987 SpriteFrame *v6; // ecx@16 |
2988 __int16 v7; // ax@16 | |
2989 unsigned int v8; // ecx@16 | |
2990 AIDirection a3; // [sp+Ch] [bp-40h]@16 | |
2991 AIDirection v10; // [sp+28h] [bp-24h]@16 | |
2992 unsigned int v11; // [sp+44h] [bp-8h]@1 | |
2993 signed int a2; // [sp+48h] [bp-4h]@1 | |
2994 | |
2995 v3 = uActorID; | |
2996 a2 = edx0; | |
2997 v4 = &pActors[uActorID]; | |
2998 v11 = uActorID; | |
2999 if ( v4->uAIState == 7 ) | |
3000 BYTE2(v4->uAttributes) |= 2u; | |
3001 if ( v4->pMonsterInfo.uHostilityType != 4 ) | |
3002 { | |
3003 v4->uAttributes &= 0xFFFFFFFBu; | |
3004 v4->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
3005 } | |
3006 if ( (signed __int64)v4->pActorBuffs[1].uExpireTime > 0 ) | |
3007 v4->pActorBuffs[1].Reset(); | |
3008 if ( (signed __int64)v4->pActorBuffs[4].uExpireTime > 0 ) | |
3009 v4->pActorBuffs[4].Reset(); | |
3010 if ( arg0 | |
322 | 3011 || (v4->uAIState != 8 |
3012 && v4->uAIState != 3 | |
3013 && v4->uAIState != 12 | |
3014 && v4->uAIState != 13 | |
3015 && v4->uAIState != 18 | |
3016 && v4->uAIState != 2)) | |
0 | 3017 { |
849 | 3018 memcpy(&v10, Actor::GetDirectionInfo(PID(v3,OBJECT_Actor), a2, &a3, 0), sizeof(v10)); |
0 | 3019 v6 = pSpriteFrameTable->pSpriteSFrames; |
3020 v4->uYawAngle = LOWORD(v10.uYawAngle); | |
319 | 3021 v7 = v6[v4->pSpriteIDs[ANIM_GotHit]].uAnimLength; |
0 | 3022 v8 = v11; |
3023 v4->uCurrentActionTime = 0; | |
3024 v4->uAIState = Stunned; | |
3025 v4->uCurrentActionLength = 8 * v7; | |
3026 Actor::PlaySound(v8, 2u); | |
322 | 3027 v4->UpdateAnimation(); |
0 | 3028 } |
3029 } | |
3030 | |
3031 //----- (00402F87) -------------------------------------------------------- | |
414 | 3032 void Actor::AI_Bored(unsigned int uActorID, unsigned int uObjID, AIDirection *a4) |
0 | 3033 { |
3034 unsigned int v7; // eax@3 | |
3035 unsigned int v9; // eax@3 | |
414 | 3036 |
3037 assert(uActorID < uNumActors); | |
3038 auto actor = pActors + uActorID; | |
417 | 3039 |
3040 AIDirection a3; // [sp+Ch] [bp-5Ch]@2 | |
414 | 3041 if (!a4) |
860 | 3042 a4 = Actor::GetDirectionInfo(PID(uActorID,OBJECT_Actor), uObjID, &a3, 0); |
414 | 3043 |
3044 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Bored]].uAnimLength; | |
3045 | |
3046 v7 = stru_5C6E00->Atan2(actor->vPosition.x - pIndoorCamera->pos.x, actor->vPosition.y - pIndoorCamera->pos.y); | |
3047 v9 = stru_5C6E00->uIntegerPi + actor->uYawAngle + ((signed int)stru_5C6E00->uIntegerPi >> 3) - v7; | |
3048 | |
3049 if ( BYTE1(v9) & 7 ) // turned away - just stand | |
3050 Actor::AI_Stand(uActorID, uObjID, actor->uCurrentActionLength, a4); | |
3051 else // facing player - play bored anim | |
0 | 3052 { |
414 | 3053 actor->uAIState = Fidgeting; |
3054 actor->uCurrentActionTime = 0; | |
3055 actor->uYawAngle = a4->uYawAngle; | |
3056 actor->vVelocity.z = 0; | |
3057 actor->vVelocity.y = 0; | |
3058 actor->vVelocity.x = 0; | |
0 | 3059 if ( rand() % 100 < 5 ) |
414 | 3060 Actor::PlaySound(uActorID, 3); |
3061 actor->UpdateAnimation(); | |
0 | 3062 } |
3063 } | |
3064 | |
3065 //----- (00402F27) -------------------------------------------------------- | |
322 | 3066 void Actor::Resurrect(unsigned int uActorID) |
0 | 3067 { |
3068 Actor *pActor; // esi@1 | |
3069 SpriteFrame *v2; // edx@1 | |
3070 int v3; // eax@1 | |
3071 | |
3072 pActor = &pActors[uActorID]; | |
3073 v2 = pSpriteFrameTable->pSpriteSFrames; | |
319 | 3074 v3 = pActor->pSpriteIDs[ANIM_Dying]; |
0 | 3075 pActor->uCurrentActionTime = 0; |
3076 pActor->uAIState = Resurrected; | |
3077 pActor->uCurrentActionAnimation = ANIM_Dying; | |
3078 pActor->uCurrentActionLength = 8 * v2[v3].uAnimLength; | |
3079 pActor->sCurrentHP = LOWORD(pActor->pMonsterInfo.uHP); | |
3080 Actor::PlaySound(uActorID, 1u); | |
322 | 3081 pActor->UpdateAnimation(); |
0 | 3082 } |
3083 | |
3084 //----- (00402D6E) -------------------------------------------------------- | |
319 | 3085 void Actor::Die(unsigned int uActorID) |
0 | 3086 { |
319 | 3087 auto actor = &pActors[uActorID]; |
0 | 3088 |
319 | 3089 actor->uCurrentActionTime = 0; |
3090 actor->uAIState = Dying; | |
3091 actor->uCurrentActionAnimation = ANIM_Dying; | |
3092 actor->sCurrentHP = 0; | |
3093 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Dying]].uAnimLength; | |
3094 actor->pActorBuffs[6].Reset(); | |
3095 actor->pActorBuffs[5].Reset(); | |
3096 Actor::PlaySound(uActorID, 1); | |
3097 actor->UpdateAnimation(); | |
3098 | |
3099 for (uint i = 0; i < 5; ++i) | |
3100 if (pParty->field_750[i] == actor->pMonsterInfo.uID) | |
3101 pParty->field_75A[i] = true; | |
3102 | |
3103 for (uint i = 0; i < 22; ++i) | |
3104 actor->pActorBuffs[i].Reset(); | |
3105 | |
3106 ItemGen drop; | |
3107 switch (actor->pMonsterInfo.uID) | |
0 | 3108 { |
319 | 3109 case MONSTER_HARPY_1: case MONSTER_HARPY_2: case MONSTER_HARPY_3: |
3110 drop.uItemID = ITEM_HARPY_FEATHER; | |
3111 break; | |
3112 | |
3113 case MONSTER_OOZE_1: case MONSTER_OOZE_2: case MONSTER_OOZE_3: | |
3114 drop.uItemID = ITEM_OOZE_ECTOPLASM_BOTTLE; | |
3115 break; | |
3116 | |
3117 case MONSTER_TROLL_1: case MONSTER_TROLL_2: case MONSTER_TROLL_3: | |
3118 drop.uItemID = ITEM_TROLL_BLOOD; | |
3119 break; | |
3120 | |
3121 case MONSTER_DEVIL_1: case MONSTER_DEVIL_2: case MONSTER_DEVIL_3: | |
3122 drop.uItemID = ITEM_DEVIL_ICHOR; | |
3123 break; | |
3124 | |
3125 case MONSTER_DRAGON_1: case MONSTER_DRAGON_2: case MONSTER_DRAGON_3: | |
3126 drop.uItemID = ITEM_DRAGON_EYE; | |
321 | 3127 break; |
0 | 3128 } |
319 | 3129 |
3130 if (rand() % 100 < 20) | |
0 | 3131 { |
319 | 3132 sub_42F7EB_DropItemAt(pItemsTable->pItems[drop.uItemID].uSpriteID, |
3133 actor->vPosition.x, | |
3134 actor->vPosition.y, | |
3135 actor->vPosition.z + 16, | |
3136 rand() % 200 + 200, | |
0 | 3137 1, |
3138 1, | |
3139 0, | |
319 | 3140 &drop); |
0 | 3141 } |
319 | 3142 |
3143 if (actor->pMonsterInfo.uSpecialAbilityType == MONSTER_SPECIAL_ABILITY_EXPLODE) | |
3144 Actor::Explode(uActorID); | |
0 | 3145 } |
3146 | |
3147 //----- (00402CED) -------------------------------------------------------- | |
322 | 3148 void Actor::PlaySound(unsigned int uActorID, unsigned int uSoundID) |
0 | 3149 { |
3150 Actor *v2; // eax@1 | |
3151 unsigned __int16 v3; // dx@1 | |
3152 int v4; // eax@3 | |
3153 int v5; // eax@4 | |
3154 unsigned int v6; // eax@6 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3155 //signed int v7; // eax@12 |
0 | 3156 signed int v8; // [sp-18h] [bp-1Ch]@10 |
3157 signed int v9; // [sp-14h] [bp-18h]@10 | |
3158 int v10; // [sp-10h] [bp-14h]@10 | |
3159 unsigned int v11; // [sp-Ch] [bp-10h]@10 | |
3160 int v12; // [sp-8h] [bp-Ch]@10 | |
3161 | |
3162 v2 = &pActors[uActorID]; | |
3163 v3 = v2->pSoundSampleIDs[uSoundID]; | |
3164 if ( v3 ) | |
3165 { | |
3166 if ( (signed __int64)v2->pActorBuffs[3].uExpireTime <= 0 ) | |
3167 { | |
3168 v12 = 0; | |
3169 v11 = 0; | |
3170 v10 = 0; | |
3171 v9 = 0; | |
3172 v8 = -1; | |
3173 } | |
3174 else | |
3175 { | |
3176 v4 = v2->pActorBuffs[3].uPower - 2; | |
3177 if ( v4 ) | |
3178 { | |
3179 v5 = v4 - 1; | |
3180 if ( v5 ) | |
3181 { | |
3182 if ( v5 == 1 ) | |
3183 v6 = 55125; | |
3184 else | |
3185 v6 = uActorID; | |
3186 } | |
3187 else | |
3188 { | |
3189 v6 = 44100; | |
3190 } | |
3191 } | |
3192 else | |
3193 { | |
3194 v6 = 33075; | |
3195 } | |
3196 v12 = v6; | |
3197 v11 = 0; | |
3198 v10 = 0; | |
3199 v9 = 0; | |
3200 v8 = 0; | |
3201 } | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3202 pAudioPlayer->PlaySound((SoundID)(signed __int16)v3, PID(OBJECT_Actor, uActorID), 0, v8, v9, v10, v11, v12); |
0 | 3203 } |
3204 } | |
3205 | |
3206 //----- (00402AD7) -------------------------------------------------------- | |
860 | 3207 void Actor::Pursue1(unsigned int uActorID, unsigned int a2, signed int arg0, signed int uActionLength, AIDirection *pDir) |
0 | 3208 { |
3209 unsigned int v5; // edi@1 | |
3210 int v6; // eax@1 | |
3211 Actor *v7; // ebx@1 | |
3212 unsigned int v8; // ecx@1 | |
3213 char v9; // zf@1 | |
3214 AIDirection *v10; // esi@6 | |
3215 int v12; // ecx@19 | |
3216 unsigned int v13; // eax@19 | |
3217 AIDirection a3; // [sp+Ch] [bp-5Ch]@7 | |
3218 AIDirection v15; // [sp+28h] [bp-40h]@7 | |
3219 AIDirection v16; // [sp+44h] [bp-24h]@7 | |
3220 unsigned int v17; // [sp+60h] [bp-8h]@1 | |
3221 unsigned int v18; // [sp+64h] [bp-4h]@1 | |
3222 int v19; // [sp+70h] [bp+8h]@19 | |
3223 | |
3224 v5 = uActorID; | |
3225 v6 = 0; | |
3226 v7 = &pActors[uActorID]; | |
3227 v18 = a2; | |
849 | 3228 v8 = PID(uActorID,OBJECT_Actor); |
0 | 3229 v9 = v7->pMonsterInfo.uFlying == 0; |
3230 v17 = v5; | |
3231 if ( !v9 && !pParty->bFlying ) | |
3232 { | |
3233 if ( v7->pMonsterInfo.uMissleAttack1Type ) | |
3234 v6 = v7->uActorRadius + 512; | |
3235 else | |
3236 v6 = pParty->uPartyHeight; | |
3237 } | |
3238 v10 = pDir; | |
3239 if ( !pDir ) | |
3240 { | |
3241 memcpy(&v15, Actor::GetDirectionInfo(v8, a2, &a3, v6), sizeof(v15)); | |
3242 memcpy(&v16, &v15, sizeof(v16)); | |
3243 v5 = v17; | |
3244 v10 = &v16; | |
3245 } | |
3246 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3247 { | |
3248 if ( !uActionLength ) | |
3249 uActionLength = 256; | |
414 | 3250 Actor::AI_StandOrBored(v5, 4, uActionLength, v10); |
322 | 3251 return; |
0 | 3252 } |
3253 if ( (double)(signed int)v10->uDistance < 307.2 ) | |
3254 { | |
3255 if ( !uActionLength ) | |
3256 uActionLength = 256; | |
413 | 3257 Actor::AI_Stand(v5, v18, uActionLength, v10); |
322 | 3258 return; |
0 | 3259 } |
3260 if ( !v7->uMovementSpeed ) | |
322 | 3261 { |
413 | 3262 Actor::AI_Stand(v5, v18, uActionLength, v10); |
322 | 3263 return; |
3264 } | |
0 | 3265 v18 = 16; |
3266 if ( arg0 % 2 ) | |
3267 v18 = -16; | |
323 | 3268 v12 = ((unsigned __int64)(stru_5C6E00->Cos(v18 + stru_5C6E00->uIntegerPi + v10->uYawAngle) * (signed __int64)v10->uDistanceXZ) >> 16) |
0 | 3269 + pParty->vPosition.x; |
3270 v13 = stru_5C6E00->uIntegerPi + v10->uYawAngle; | |
3271 v17 = v12; | |
323 | 3272 v19 = stru_5C6E00->Sin(v18 + v13); |
0 | 3273 v7->uYawAngle = stru_5C6E00->Atan2( |
3274 v17 - v7->vPosition.x, | |
3275 pParty->vPosition.y | |
3276 + ((unsigned __int64)(v19 * (signed __int64)v10->uDistanceXZ) >> 16) | |
3277 - v7->vPosition.y); | |
3278 if ( uActionLength ) | |
3279 v7->uCurrentActionLength = uActionLength; | |
3280 else | |
3281 v7->uCurrentActionLength = 128; | |
3282 v7->uPitchAngle = LOWORD(v10->uPitchAngle); | |
3283 v7->uAIState = Pursuing; | |
322 | 3284 v7->UpdateAnimation(); |
0 | 3285 } |
3286 | |
3287 //----- (00402968) -------------------------------------------------------- | |
860 | 3288 void Actor::Flee(unsigned int uActorID, signed int sTargetPid, int uActionLength, AIDirection *a4) |
0 | 3289 { |
3290 unsigned int v4; // esi@1 | |
3291 Actor *v5; // ebx@1 | |
322 | 3292 //unsigned int result; // eax@1 |
0 | 3293 int v7; // ecx@2 |
3294 signed __int16 v8; // cx@10 | |
3295 unsigned __int16 v9; // ax@15 | |
3296 AIDirection v10; // [sp+8h] [bp-7Ch]@4 | |
3297 AIDirection a3; // [sp+24h] [bp-60h]@3 | |
3298 AIDirection v12; // [sp+40h] [bp-44h]@3 | |
3299 AIDirection v13; // [sp+5Ch] [bp-28h]@4 | |
3300 signed int a1; // [sp+78h] [bp-Ch]@2 | |
3301 unsigned int v15; // [sp+7Ch] [bp-8h]@1 | |
848 | 3302 //signed int a2; // [sp+80h] [bp-4h]@1 |
0 | 3303 |
3304 v4 = uActorID; | |
848 | 3305 //a2 = edx0; |
0 | 3306 v15 = uActorID; |
3307 v5 = &pActors[uActorID]; | |
322 | 3308 //result = pActors[uActorID].CanAct(); |
3309 if ( pActors[uActorID].CanAct() ) | |
0 | 3310 { |
849 | 3311 v7 = PID(v4,OBJECT_Actor); |
3312 a1 = PID(v4,OBJECT_Actor); | |
0 | 3313 if ( !a4 ) |
3314 { | |
3315 a4 = &v12; | |
848 | 3316 memcpy(&v12, Actor::GetDirectionInfo(v7, sTargetPid, &a3, v5->pMonsterInfo.uFlying), sizeof(v12)); |
0 | 3317 v7 = a1; |
3318 } | |
3319 memcpy(&a3, Actor::GetDirectionInfo(v7, 4u, &v10, 0), sizeof(a3)); | |
3320 memcpy(&v13, &a3, sizeof(v13)); | |
3321 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) | |
848 | 3322 || PID_TYPE(sTargetPid) == OBJECT_Actor && (double)(signed int)v13.uDistance < 307.2 ) |
0 | 3323 { |
3324 if ( !uActionLength ) | |
3325 uActionLength = 256; | |
414 | 3326 Actor::AI_StandOrBored(v15, 4, uActionLength, &v13); |
0 | 3327 } |
3328 else | |
3329 { | |
3330 v8 = v5->uMovementSpeed; | |
3331 if ( v8 ) | |
3332 v5->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v8; | |
3333 else | |
3334 v5->uCurrentActionLength = 0; | |
3335 if ( v5->uCurrentActionLength > 256 ) | |
3336 v5->uCurrentActionLength = 256; | |
3337 v5->uYawAngle = LOWORD(stru_5C6E00->uIntegerHalfPi) + LOWORD(a4->uYawAngle); | |
3338 v5->uYawAngle = LOWORD(stru_5C6E00->uDoublePiMask) & (v5->uYawAngle + rand() % (signed int)stru_5C6E00->uIntegerPi); | |
3339 v9 = LOWORD(a4->uPitchAngle); | |
3340 v5->uCurrentActionTime = 0; | |
3341 v5->uPitchAngle = v9; | |
3342 v5->uAIState = Fleeing; | |
322 | 3343 v5->UpdateAnimation(); |
0 | 3344 } |
3345 } | |
3346 } | |
3347 | |
3348 //----- (0040281C) -------------------------------------------------------- | |
860 | 3349 void Actor::Pursue2(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *pDir, int a5) |
0 | 3350 { |
3351 unsigned int v5; // edi@1 | |
3352 int v6; // eax@1 | |
3353 Actor *v7; // ebx@1 | |
3354 unsigned int v8; // ecx@1 | |
3355 char v9; // zf@1 | |
3356 AIDirection *v10; // esi@7 | |
3357 signed int v11; // edx@12 | |
3358 signed __int16 v13; // cx@19 | |
3359 unsigned __int16 v14; // ax@25 | |
3360 int v15; // [sp-8h] [bp-54h]@12 | |
3361 AIDirection *v16; // [sp-4h] [bp-50h]@12 | |
3362 AIDirection a3; // [sp+Ch] [bp-40h]@8 | |
3363 AIDirection v18; // [sp+28h] [bp-24h]@8 | |
3364 unsigned int v19; // [sp+44h] [bp-8h]@1 | |
3365 unsigned int v20; // [sp+48h] [bp-4h]@1 | |
3366 | |
3367 v5 = uActorID; | |
3368 v6 = 0; | |
3369 v7 = &pActors[uActorID]; | |
3370 v19 = a2; | |
849 | 3371 v8 = PID(uActorID,OBJECT_Actor); |
0 | 3372 v9 = v7->pMonsterInfo.uFlying == 0; |
3373 v20 = v5; | |
3374 if ( !v9 && !pParty->bFlying ) | |
3375 { | |
3376 if ( v7->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
3377 v6 = v7->uActorRadius + 512; | |
3378 else | |
3379 v6 = pParty->uPartyHeight; | |
3380 } | |
3381 v10 = pDir; | |
3382 if ( !pDir ) | |
3383 { | |
3384 memcpy(&v18, Actor::GetDirectionInfo(v8, a2, &a3, v6), sizeof(v18)); | |
3385 memcpy(0, &v18, 0x1Cu); | |
3386 v10 = 0; | |
3387 v5 = v20; | |
3388 } | |
3389 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3390 { | |
3391 if ( !uActionLength ) | |
3392 uActionLength = 256; | |
3393 v16 = v10; | |
3394 v15 = uActionLength; | |
3395 v11 = 4; | |
414 | 3396 Actor::AI_StandOrBored(v5, v11, v15, v16); |
322 | 3397 return; |
0 | 3398 } |
3399 if ( (signed int)v10->uDistance < a5 ) | |
3400 { | |
3401 if ( !uActionLength ) | |
3402 uActionLength = 256; | |
3403 v11 = v19; | |
3404 v16 = v10; | |
3405 v15 = uActionLength; | |
414 | 3406 Actor::AI_StandOrBored(v5, v11, v15, v16); |
322 | 3407 return; |
0 | 3408 } |
3409 if ( uActionLength ) | |
3410 { | |
3411 v7->uCurrentActionLength = uActionLength; | |
3412 } | |
3413 else | |
3414 { | |
3415 v13 = v7->uMovementSpeed; | |
3416 if ( v13 ) | |
3417 v7->uCurrentActionLength = (signed int)(v10->uDistanceXZ << 7) / v13; | |
3418 else | |
3419 v7->uCurrentActionLength = 0; | |
3420 if ( v7->uCurrentActionLength > 32 ) | |
3421 v7->uCurrentActionLength = 32; | |
3422 } | |
3423 v7->uYawAngle = LOWORD(v10->uYawAngle); | |
3424 v14 = LOWORD(v10->uPitchAngle); | |
3425 v7->uCurrentActionTime = 0; | |
3426 v7->uPitchAngle = v14; | |
3427 v7->uAIState = Pursuing; | |
322 | 3428 v7->UpdateAnimation(); |
0 | 3429 } |
3430 | |
3431 //----- (00402686) -------------------------------------------------------- | |
860 | 3432 void Actor::Pursue3(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *a4) |
0 | 3433 { |
860 | 3434 //unsigned int v4; // edi@1 |
0 | 3435 int v5; // eax@1 |
3436 Actor *v6; // ebx@1 | |
3437 int v7; // ecx@1 | |
3438 char v8; // zf@1 | |
860 | 3439 //AIDirection *v9; // esi@7 |
0 | 3440 signed int v10; // edx@12 |
3441 signed __int16 v12; // cx@19 | |
3442 int v13; // edx@25 | |
3443 __int16 v14; // ax@25 | |
3444 unsigned __int16 v15; // ax@26 | |
3445 unsigned __int16 v16; // ax@28 | |
3446 int v17; // [sp-8h] [bp-54h]@12 | |
860 | 3447 //AIDirection *v18; // [sp-4h] [bp-50h]@12 |
0 | 3448 AIDirection a3; // [sp+Ch] [bp-40h]@8 |
3449 AIDirection v20; // [sp+28h] [bp-24h]@8 | |
3450 int v21; // [sp+44h] [bp-8h]@1 | |
860 | 3451 //unsigned int v22; // [sp+48h] [bp-4h]@1 |
0 | 3452 |
3453 v5 = 0; | |
3454 v6 = &pActors[uActorID]; | |
3455 v21 = a2; | |
849 | 3456 v7 = PID(uActorID,OBJECT_Actor); |
0 | 3457 v8 = v6->pMonsterInfo.uFlying == 0; |
3458 if ( !v8 && !pParty->bFlying ) | |
3459 { | |
3460 if ( v6->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
3461 v5 = v6->uActorRadius + 512; | |
3462 else | |
3463 v5 = pParty->uPartyHeight; | |
3464 } | |
3465 if ( !a4 ) | |
3466 { | |
3467 memcpy(&v20, Actor::GetDirectionInfo(v7, a2, &a3, v5), sizeof(v20)); | |
3468 } | |
3469 if ( MonsterStats::BelongsToSupertype(v6->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
3470 { | |
3471 if ( !uActionLength ) | |
3472 uActionLength = 256; | |
860 | 3473 return Actor::AI_StandOrBored(uActorID, 4, uActionLength, a4); |
0 | 3474 } |
860 | 3475 if ( (double)(signed int)a4->uDistance < 307.2 ) |
0 | 3476 { |
3477 if ( !uActionLength ) | |
3478 uActionLength = 256; | |
860 | 3479 return Actor::AI_StandOrBored(uActorID, v21, uActionLength, a4); |
0 | 3480 } |
3481 if ( uActionLength ) | |
3482 { | |
3483 v6->uCurrentActionLength = uActionLength + rand() % uActionLength; | |
3484 } | |
3485 else | |
3486 { | |
3487 v12 = v6->uMovementSpeed; | |
3488 if ( v12 ) | |
860 | 3489 v6->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v12; |
0 | 3490 else |
3491 v6->uCurrentActionLength = 0; | |
3492 if ( v6->uCurrentActionLength > 128 ) | |
3493 v6->uCurrentActionLength = 128; | |
3494 } | |
3495 v13 = rand() % 2; | |
860 | 3496 v14 = LOWORD(a4->uYawAngle); |
0 | 3497 if ( v13 ) |
3498 v15 = v14 + 256; | |
3499 else | |
3500 v15 = v14 - 256; | |
3501 v6->uYawAngle = v15; | |
860 | 3502 v16 = LOWORD(a4->uPitchAngle); |
0 | 3503 v6->uCurrentActionTime = 0; |
3504 v6->uPitchAngle = v16; | |
3505 v6->uAIState = Pursuing; | |
3506 if ( rand() % 100 < 2 ) | |
860 | 3507 Actor::PlaySound(uActorID, 2u); |
322 | 3508 v6->UpdateAnimation(); |
0 | 3509 } |
3510 | |
417 | 3511 //----- (00SelectTarget) -------------------------------------------------------- |
3512 void Actor::_SelectTarget(unsigned int uActorID, int *a2, bool can_target_party) | |
0 | 3513 { |
417 | 3514 //Actor *v3; // esi@1 |
3515 //unsigned int v4; // ebx@1 | |
0 | 3516 int v5; // ecx@1 |
417 | 3517 //unsigned int v6; // eax@1 |
3518 //Actor *v7; // edi@2 | |
3519 //__int16 v8; // ax@3 | |
0 | 3520 int v9; // eax@10 |
3521 signed int v10; // eax@13 | |
3522 int v11; // ebx@16 | |
3523 int v12; // eax@16 | |
417 | 3524 //int v13; // eax@25 |
0 | 3525 signed int v14; // eax@31 |
3526 int v15; // edi@43 | |
3527 int v16; // ebx@45 | |
3528 int v17; // eax@45 | |
417 | 3529 //int v18; // eax@51 |
0 | 3530 int v19; // [sp+Ch] [bp-24h]@16 |
417 | 3531 //int *v20; // [sp+10h] [bp-20h]@1 |
0 | 3532 signed int v21; // [sp+14h] [bp-1Ch]@1 |
417 | 3533 //unsigned int v22; // [sp+18h] [bp-18h]@1 |
0 | 3534 int v23; // [sp+1Ch] [bp-14h]@16 |
417 | 3535 //unsigned int v24; // [sp+20h] [bp-10h]@1 |
0 | 3536 int v25; // [sp+24h] [bp-Ch]@1 |
417 | 3537 //signed int v26; // [sp+28h] [bp-8h]@1 |
0 | 3538 int v27; // [sp+2Ch] [bp-4h]@16 |
3539 int v28; // [sp+2Ch] [bp-4h]@45 | |
3540 | |
3541 v25 = -1; | |
417 | 3542 //v22 = uActorID; |
3543 //v3 = &pActors[uActorID]; | |
3544 //v4 = 0; | |
0 | 3545 v5 = 0; |
417 | 3546 //v6 = v3->uLastCharacterIDToHit; |
0 | 3547 *a2 = 0; |
417 | 3548 //v20 = a2; |
0 | 3549 v21 = 0; |
417 | 3550 //v24 = v3->uLastCharacterIDToHit; |
3551 //v26 = 0; | |
3552 assert(uActorID < uNumActors); | |
3553 auto _this = pActors + uActorID; | |
3554 | |
3555 for (uint i = 0; i < uNumActors; ++i) | |
0 | 3556 { |
417 | 3557 auto actor = pActors + i; |
3558 //v7 = pActors; | |
3559 //do | |
3560 //{ | |
3561 //v8 = v7->uAIState; | |
3562 if (actor->uAIState == Dead || actor->uAIState == Dying || | |
3563 actor->uAIState == Removed || actor->uAIState == Summoned || actor->uAIState == Disabled || uActorID == i ) | |
3564 continue; | |
3565 | |
849 | 3566 if (_this->uLastCharacterIDToHit == 0 || (v9 = 8 * v5, LOBYTE(v9) = PID(v5,OBJECT_Actor), _this->uLastCharacterIDToHit != v9) ) |
245 | 3567 { |
417 | 3568 v10 = _this->GetActorsRelation(actor); |
3569 if ( v10 == 0 ) | |
245 | 3570 continue; |
3571 } | |
417 | 3572 else if (_this->IsNotAlive()) |
245 | 3573 { |
417 | 3574 _this->uLastCharacterIDToHit = 0; |
3575 v10 = _this->GetActorsRelation(actor); | |
3576 if ( v10 == 0 ) | |
245 | 3577 continue; |
3578 } | |
3579 else | |
3580 { | |
417 | 3581 //v18 = actor->uGroup; |
3582 if ( (actor->uGroup != 0 || _this->uGroup != 0) && actor->uGroup == _this->uGroup ) | |
245 | 3583 continue; |
3584 v10 = 4; | |
3585 } | |
417 | 3586 if ( _this->pMonsterInfo.uHostilityType ) |
3587 v10 = pMonsterStats->pInfos[_this->pMonsterInfo.uID].uHostilityType; | |
245 | 3588 v11 = dword_4DF380[v10]; |
417 | 3589 v23 = abs(_this->vPosition.x - actor->vPosition.x); |
3590 v27 = abs(_this->vPosition.y - actor->vPosition.y); | |
3591 v12 = abs(_this->vPosition.z - actor->vPosition.z); | |
245 | 3592 v19 = v12; |
3593 if ( v23 <= v11 | |
3594 && v27 <= v11 | |
3595 && v12 <= v11 | |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3596 && sub_4070EF_prolly_collide_objects(PID(OBJECT_Actor, i), PID(OBJECT_Actor, uActorID)) |
245 | 3597 && v23 * v23 + v27 * v27 + v19 * v19 < (unsigned int)v25 ) |
3598 { | |
3599 v25 = v23 * v23 + v27 * v27 + v19 * v19; | |
417 | 3600 v21 = i; |
245 | 3601 } |
417 | 3602 //v4 = 0; |
3603 //++v7; | |
3604 //v5 = v26++ + 1; | |
3605 //} | |
3606 //while ( v26 < (signed int)uNumActors ); | |
3607 | |
0 | 3608 } |
417 | 3609 if ( v25 != -1 ) |
3610 { | |
3611 //v13 = 8 * v21; | |
860 | 3612 //LOBYTE(v13) = PID(v21,OBJECT_Actor); |
828
0f56abdcce94
Massive refactors of spells + PID (packed id) macros introduced.
Nomad
parents:
823
diff
changeset
|
3613 *a2 = PID(OBJECT_Actor, v21); |
417 | 3614 } |
3615 | |
3616 if (pParty->Invisible()) | |
3617 can_target_party = false; | |
3618 | |
3619 if (can_target_party) | |
0 | 3620 { |
417 | 3621 v14 = _this->GetActorsRelation(0); |
3622 if ( BYTE2(_this->uAttributes) & 8 | |
3623 && SHIDWORD(_this->pActorBuffs[12].uExpireTime) <= (signed int)0 | |
3624 && (SHIDWORD(_this->pActorBuffs[12].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[12].uExpireTime) <= 0) | |
3625 && SHIDWORD(_this->pActorBuffs[1].uExpireTime) <= (signed int)0 | |
3626 && (SHIDWORD(_this->pActorBuffs[1].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[1].uExpireTime) <= 0) | |
3627 && SHIDWORD(_this->pActorBuffs[2].uExpireTime) <= (signed int)0 | |
3628 && (SHIDWORD(_this->pActorBuffs[2].uExpireTime) < (signed int)0 || LODWORD(_this->pActorBuffs[2].uExpireTime) <= 0) ) | |
0 | 3629 v14 = 4; |
417 | 3630 if ( v14 != 0 ) |
0 | 3631 { |
848 | 3632 v15 = dword_4DF380[4]; |
417 | 3633 if ( !_this->pMonsterInfo.uHostilityType ) |
0 | 3634 v15 = dword_4DF380[v14]; |
417 | 3635 v16 = abs(_this->vPosition.x - pParty->vPosition.x); |
3636 v28 = abs(_this->vPosition.y - pParty->vPosition.y); | |
3637 v17 = abs(_this->vPosition.z - pParty->vPosition.z); | |
0 | 3638 if ( v16 <= v15 && v28 <= v15 && v17 <= v15 ) |
3639 { | |
3640 if ( v16 * v16 + v28 * v28 + v17 * v17 < (unsigned int)v25 ) | |
417 | 3641 *a2 = OBJECT_Player; |
0 | 3642 } |
3643 } | |
3644 } | |
3645 } | |
3646 // 4DF380: using guessed type int dword_4DF380[]; | |
3647 // 4DF390: using guessed type int dword_4DF390; | |
3648 | |
3649 //----- (0040104C) -------------------------------------------------------- | |
3650 signed int Actor::GetActorsRelation(Actor *a2) | |
3651 { | |
3652 Actor *v2; // esi@1 | |
3653 int v3; // ebp@5 | |
3654 int v4; // edi@11 | |
3655 unsigned int v5; // edx@15 | |
3656 unsigned int v6; // eax@16 | |
3657 unsigned int v7; // ebp@19 | |
3658 int v8; // eax@22 | |
3659 unsigned int v9; // edx@25 | |
3660 unsigned int v10; // edx@33 | |
3661 | |
3662 auto a1 = this; | |
3663 v2 = a2; | |
3664 if ( a1 ) | |
3665 { | |
3666 if ( SHIDWORD(a1->pActorBuffs[9].uExpireTime) >= 0 | |
3667 && (SHIDWORD(a1->pActorBuffs[9].uExpireTime) > 0 || LODWORD(a1->pActorBuffs[9].uExpireTime) > 0) ) | |
3668 return 4; | |
3669 v3 = a1->pMonsterInfo.uID; | |
3670 } | |
3671 else | |
3672 { | |
3673 v3 = 0; | |
3674 } | |
3675 if ( a2 ) | |
3676 { | |
3677 if ( SHIDWORD(a2->pActorBuffs[9].uExpireTime) >= 0 | |
3678 && (SHIDWORD(a2->pActorBuffs[9].uExpireTime) > 0 || LODWORD(a2->pActorBuffs[9].uExpireTime) > 0) ) | |
3679 return 4; | |
3680 v4 = a2->pMonsterInfo.uID; | |
3681 } | |
3682 else | |
3683 { | |
3684 v4 = 0; | |
3685 } | |
3686 if ( a2 ) | |
3687 { | |
3688 if ( a1 ) | |
3689 { | |
3690 v5 = a2->uGroup; | |
3691 if ( v5 ) | |
3692 { | |
3693 v6 = a1->uGroup; | |
3694 if ( v6 ) | |
3695 { | |
3696 if ( v5 == v6 ) | |
3697 return 0; | |
3698 } | |
3699 } | |
3700 } | |
3701 } | |
3702 if ( v3 ) | |
3703 v7 = (v3 - 1) / 3 + 1; | |
3704 else | |
3705 v7 = 0; | |
3706 if ( v4 ) | |
3707 v8 = (v4 - 1) / 3 + 1; | |
3708 else | |
3709 v8 = 0; | |
3710 if ( a1 ) | |
3711 { | |
3712 v9 = a1->uAlly; | |
245 | 3713 if ( (signed int)v9 > 0 ) |
0 | 3714 { |
3715 if ( v9 != 9999 ) | |
3716 { | |
3717 v7 = a1->uAlly; | |
3718 } | |
3719 } | |
245 | 3720 if(v9==9999) |
3721 v7 = 0; | |
0 | 3722 if ( (signed __int64)a1->pActorBuffs[12].uExpireTime > 0 ) |
3723 v7 = 0; | |
3724 } | |
245 | 3725 if ( v2 ) |
0 | 3726 { |
245 | 3727 v10 = v2->uAlly; |
3728 if ( (signed int)v10 > 0 ) | |
3729 { | |
3730 if ( v10 != 9999 ) | |
3731 { | |
3732 v8 = v2->uAlly; | |
3733 } | |
3734 } | |
3735 if(v10==9999) | |
3736 v8 = 0; | |
3737 if ( (signed __int64)v2->pActorBuffs[12].uExpireTime > 0 ) | |
3738 v8 = 0; | |
0 | 3739 } |
3740 if ( a1 && (signed __int64)a1->pActorBuffs[1].uExpireTime > 0 && !v8 | |
3741 || v2 && (signed __int64)v2->pActorBuffs[1].uExpireTime > 0 && !v7 ) | |
3742 return 0; | |
3743 if ( a1 && (signed __int64)a1->pActorBuffs[12].uExpireTime <= 0 && a1->uAttributes & 0x80000 && !v8 ) | |
3744 return 4; | |
3745 if ( v2 && a1 && (signed __int64)a1->pActorBuffs[12].uExpireTime <= 0 && v2->uAttributes & 0x80000 ) | |
3746 { | |
3747 if ( v7 ) | |
245 | 3748 { |
3749 if ( (signed int)v7 < 89 ) | |
3750 { | |
3751 if ( v8 < 89 ) | |
3752 return pFactionTable->relations[v7][v8]; | |
3753 return 0; | |
3754 } | |
3755 return 0; | |
3756 } | |
0 | 3757 return 4; |
3758 } | |
3759 if ( !v7 ) | |
3760 { | |
3761 if ( (!v2 || (signed __int64)v2->pActorBuffs[12].uExpireTime > 0 || !(v2->uAttributes & 0x80000)) | |
100 | 3762 && !pFactionTable->relations[v8][0]) |
0 | 3763 { |
3764 if ( v8 < 89 ) | |
100 | 3765 return pFactionTable->relations[v7][v8]; |
0 | 3766 return 0; |
3767 } | |
3768 return 4; | |
3769 } | |
3770 if ( (signed int)v7 < 89 ) | |
245 | 3771 { |
3772 if ( v8 < 89 ) | |
3773 return pFactionTable->relations[v7][v8]; | |
3774 return 0; | |
3775 } | |
0 | 3776 return 0; |
3777 } | |
3778 | |
3779 //----- (0045976D) -------------------------------------------------------- | |
322 | 3780 void Actor::UpdateAnimation() |
0 | 3781 { |
322 | 3782 //AIState state; // edx@1 |
3783 //unsigned int result; // eax@1 | |
0 | 3784 |
322 | 3785 //state = (AIState)this->; |
3786 uAttributes &= 0xFFDFFFFF; | |
3787 //result = this->uAttributes; | |
3788 switch (uAIState) | |
0 | 3789 { |
3790 case Tethered: | |
322 | 3791 uCurrentActionAnimation = ANIM_Walking; |
3792 break; | |
3793 | |
0 | 3794 case AttackingMelee: |
322 | 3795 uCurrentActionAnimation = ANIM_AtkMelee; |
3796 uAttributes |= 0x200000u; | |
3797 break; | |
3798 | |
0 | 3799 case AttackingRanged1: |
3800 case AttackingRanged2: | |
3801 case AttackingRanged3: | |
3802 case AttackingRanged4: | |
322 | 3803 uCurrentActionAnimation = ANIM_AtkRanged; |
3804 uAttributes |= 0x200000u; | |
3805 break; | |
3806 | |
0 | 3807 case Dying: |
3808 case Resurrected: | |
322 | 3809 uCurrentActionAnimation = ANIM_Dying; |
3810 uAttributes |= 0x200000u; | |
3811 break; | |
3812 | |
0 | 3813 case Pursuing: |
3814 case Fleeing: | |
322 | 3815 uCurrentActionAnimation = ANIM_Walking; |
3816 uAttributes |= 0x200000u; | |
3817 break; | |
3818 | |
0 | 3819 case Stunned: |
322 | 3820 uCurrentActionAnimation = ANIM_GotHit; |
3821 uAttributes |= 0x200000u; | |
3822 break; | |
3823 | |
0 | 3824 case Fidgeting: |
322 | 3825 uCurrentActionAnimation = ANIM_Bored; |
3826 uAttributes |= 0x200000u; | |
3827 break; | |
3828 | |
0 | 3829 case Standing: |
3830 case Interacting: | |
3831 case Summoned: | |
322 | 3832 uCurrentActionAnimation = ANIM_Standing; |
3833 uAttributes |= 0x200000u; | |
3834 break; | |
3835 | |
0 | 3836 case Dead: |
322 | 3837 if (pSpriteFrameTable->pSpriteSFrames[pSpriteIDs[ANIM_Dead]].pHwSpriteIDs[0] <= 0) |
3838 uAIState = Removed; | |
0 | 3839 else |
322 | 3840 uCurrentActionAnimation = ANIM_Dead; |
3841 break; | |
3842 | |
551 | 3843 case Removed: |
652 | 3844 case Disabled: |
551 | 3845 return; |
3846 | |
0 | 3847 default: |
322 | 3848 assert(false); |
0 | 3849 } |
3850 } | |
3851 | |
3852 //----- (00459671) -------------------------------------------------------- | |
3853 void Actor::Reset() | |
3854 { | |
3855 this->pActorName[0] = 0; | |
3856 this->word_000086_some_monster_id = 0; | |
602 | 3857 this->sNPC_ID = 0; |
0 | 3858 this->vPosition.z = 0; |
3859 this->vPosition.y = 0; | |
3860 this->vPosition.x = 0; | |
3861 this->vVelocity.z = 0; | |
3862 this->vVelocity.y = 0; | |
3863 this->vVelocity.x = 0; | |
3864 this->uYawAngle = 0; | |
3865 this->uPitchAngle = 0; | |
3866 this->uAttributes = 0; | |
3867 this->uSectorID = 0; | |
3868 this->uCurrentActionTime = 0; | |
3869 this->vInitialPosition.z = 0; | |
3870 this->vInitialPosition.y = 0; | |
3871 this->vInitialPosition.x = 0; | |
3872 this->vGuardingPosition.z = 0; | |
3873 this->vGuardingPosition.y = 0; | |
3874 this->vGuardingPosition.x = 0; | |
3875 this->uTetherDistance = 256; | |
3876 this->uActorRadius = 32; | |
3877 this->uActorHeight = 128; | |
3878 this->uAIState = Standing; | |
305 | 3879 this->uCurrentActionAnimation = ANIM_Standing; |
0 | 3880 this->uMovementSpeed = 200; |
3881 this->uCarriedItemID = 0; | |
3882 this->uGroup = 0; | |
3883 this->uAlly = 0; | |
3884 this->uSummonerID = 0; | |
3885 this->uLastCharacterIDToHit = 0; | |
3886 this->dword_000334_unique_name = 0; | |
3887 memset(this->pSpriteIDs, 0, sizeof(pSpriteIDs)); | |
3888 memset(this->pActorBuffs, 0, 0x160u); | |
3889 } | |
3890 | |
3891 //----- (0045959A) -------------------------------------------------------- | |
3892 void Actor::PrepareSprites(char load_sounds_if_bit1_set) | |
3893 { | |
694 | 3894 |
3895 MonsterDesc *v3; // esi@1 | |
0 | 3896 MonsterInfo *v9; // [sp+84h] [bp-10h]@1 |
694 | 3897 |
0 | 3898 v3 = &pMonsterList->pMonsters[pMonsterInfo.uID - 1]; |
3899 v9 = &pMonsterStats->pInfos[pMonsterInfo.uID - 1 + 1]; | |
3900 //v12 = pSpriteIDs; | |
3901 //Source = (char *)v3->pSpriteNames; | |
3902 //do | |
3903 for (uint i = 0; i < 8; ++i) | |
3904 { | |
3905 //strcpy(pSpriteName, v3->pSpriteNames[i]); | |
3906 pSpriteIDs[i] = pSpriteFrameTable->FastFindSprite(v3->pSpriteNames[i]); | |
3907 pSpriteFrameTable->InitializeSprite(pSpriteIDs[i]); | |
3908 } | |
3909 uActorHeight = v3->uMonsterHeight; | |
3910 uActorRadius = v3->uMonsterRadius; | |
33 | 3911 uMovementSpeed = v9->uBaseSpeed; |
0 | 3912 if ( !(load_sounds_if_bit1_set & 1) ) |
3913 { | |
694 | 3914 for (int i=0;i<4;++i ) |
3915 pSoundSampleIDs[i]=v3->pSoundSampleIDs[i]; | |
0 | 3916 } |
3917 } | |
3918 | |
3919 //----- (00459667) -------------------------------------------------------- | |
3920 void Actor::Remove() | |
3921 { | |
3922 this->uAIState = Removed; | |
3923 } | |
3924 | |
3925 //----- (0044FD29) -------------------------------------------------------- | |
3926 int Actor::_44FD29(int a2) | |
3927 { | |
3928 Actor *v2; // edi@1 | |
3929 unsigned __int8 v3; // al@1 | |
3930 int v4; // esi@1 | |
3931 int v5; // edx@2 | |
3932 int v6; // eax@8 | |
3933 int v7; // edi@10 | |
3934 Actor *v8; // esi@10 | |
3935 MonsterInfo *v9; // ebx@10 | |
3936 MonsterDesc *v10; // edi@10 | |
3937 unsigned __int16 v11; // ax@10 | |
3938 int v12; // eax@10 | |
3939 int v13; // ebx@10 | |
3940 int v14; // eax@10 | |
3941 int v15; // edi@10 | |
3942 int v16; // eax@10 | |
3943 int v17; // ebx@10 | |
3944 Actor *v18; // ecx@10 | |
3945 signed __int64 v19; // qax@10 | |
3946 unsigned int v20; // eax@12 | |
3947 int v21; // eax@13 | |
3948 int result; // eax@13 | |
3949 Actor *v23; // eax@16 | |
3950 int v24; // [sp+Ch] [bp-1Ch]@1 | |
3951 unsigned int uFaceID; // [sp+10h] [bp-18h]@8 | |
3952 int v26; // [sp+14h] [bp-14h]@10 | |
3953 int v27; // [sp+18h] [bp-10h]@10 | |
3954 int v28; // [sp+1Ch] [bp-Ch]@8 | |
3955 int v29; // [sp+20h] [bp-8h]@10 | |
3956 Actor *v30; // [sp+24h] [bp-4h]@1 | |
3957 | |
3958 v2 = this; | |
3959 v24 = a2; | |
3960 v30 = this; | |
3961 v3 = this->pMonsterInfo.uSpecialAbilityDamageDiceRolls; | |
3962 v4 = this->pMonsterInfo.field_3C_some_special_attack; | |
3963 if ( v3 ) | |
3964 { | |
3965 if ( v3 >= 1u && v3 <= 3u ) | |
3966 v4 = v4 + v3 - 1; | |
3967 } | |
3968 else | |
3969 { | |
3970 v5 = rand() % 100; | |
3971 if ( v5 >= 60 ) | |
3972 { | |
3973 ++v4; | |
3974 if ( v5 >= 90 ) | |
3975 ++v4; | |
3976 } | |
3977 } | |
3978 v6 = v2->vPosition.z; | |
3979 v28 = 0; | |
3980 uFaceID = v6; | |
3981 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
3982 v28 = pIndoor->GetSector(v2->vPosition.x, v2->vPosition.y, v6); | |
3983 v7 = v4 - 1; | |
3984 v8 = &pActors[uNumActors]; | |
3985 v27 = (((uCurrentlyLoadedLevelType != LEVEL_Outdoor) - 1) & 0x40) + 64; | |
3986 v29 = v7; | |
3987 v9 = &pMonsterStats->pInfos[v7 + 1]; | |
3988 pActors[uNumActors].Reset(); | |
3989 v10 = &pMonsterList->pMonsters[v7]; | |
3990 strcpy(v8->pActorName, v9->pName); | |
3991 v8->sCurrentHP = LOWORD(v9->uHP); | |
3992 memcpy(&v8->pMonsterInfo, v9, 0x58u); | |
3993 v8->word_000086_some_monster_id = v29 + 1; | |
3994 v8->uActorRadius = v10->uMonsterRadius; | |
3995 v8->uActorHeight = v10->uMonsterHeight; | |
3996 v11 = v10->uMovementSpeed; | |
3997 v8->pMonsterInfo.uTreasureDiceRolls = 0; | |
3998 v8->pMonsterInfo.uTreasureType = 0; | |
3999 v8->pMonsterInfo.uExp = 0; | |
4000 v8->uMovementSpeed = v11; | |
4001 v12 = rand(); | |
4002 v13 = v12 % 2048; | |
323 | 4003 v14 = stru_5C6E00->Cos(v12 % 2048); |
0 | 4004 v26 = v14; |
4005 v15 = ((unsigned __int64)(v14 * (signed __int64)v27) >> 16) + v30->vPosition.x; | |
323 | 4006 v16 = stru_5C6E00->Sin(v13); |
0 | 4007 v26 = v16; |
4008 v29 = (unsigned __int64)(v16 * (signed __int64)v27) >> 16; | |
4009 LOWORD(v16) = uFaceID; | |
4010 v17 = v29 + v30->vPosition.y; | |
4011 v8->vInitialPosition.z = uFaceID; | |
4012 v8->vPosition.z = v16; | |
4013 LOWORD(v16) = v28; | |
4014 v8->vInitialPosition.x = v15; | |
4015 v8->vPosition.x = v15; | |
4016 v8->vInitialPosition.y = v17; | |
4017 v8->vPosition.y = v17; | |
4018 v8->uTetherDistance = 256; | |
4019 v8->uSectorID = v16; | |
4020 v8->PrepareSprites(0); | |
4021 v18 = v30; | |
4022 v8->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
4023 LODWORD(v19) = v18->uAlly; | |
4024 if ( !(uint)v19 ) | |
4025 { | |
4026 uFaceID = v18->pMonsterInfo.uID - 1; | |
4027 v19 = (signed __int64)((double)uFaceID * 0.33333334); | |
4028 v18 = v30; | |
4029 } | |
4030 v8->uAlly = v19; | |
4031 v20 = v18->uGroup; | |
4032 v8->uCurrentActionTime = 0; | |
4033 v8->uGroup = v20; | |
4034 v8->uAIState = Summoned; | |
4035 v8->uCurrentActionLength = 256; | |
4036 v8->UpdateAnimation(); | |
4037 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor | |
4038 || (v21 = v30->vPosition.z, | |
4039 v27 = v30->vPosition.z, | |
4040 result = pIndoor->GetSector(v15, v17, v21), | |
4041 result == v28) | |
723 | 4042 && (result = BLV_GetFloorLevel(v15, v17, v27, result, &uFaceID), result != -30000) |
0 | 4043 && (result = abs(result - v27), result <= 1024) ) |
4044 { | |
4045 v23 = v30; | |
4046 ++uNumActors; | |
4047 ++v23->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
4048 if ( v23->uAttributes & 0x80000 ) | |
4049 v8->uAttributes |= 0x80000u; | |
4050 result = 8 * v24; | |
849 | 4051 LOBYTE(result) = PID(v24,OBJECT_Actor); |
0 | 4052 v8->uSummonerID = result; |
4053 } | |
4054 return result; | |
781 | 4055 } |