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