annotate Actor.cpp @ 112:8feb2dfd2f89

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