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