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