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