Mercurial > mm7
annotate Actor.cpp @ 2317:345b1ff000bb
add stuff.h
author | Ritor1 |
---|---|
date | Thu, 20 Mar 2014 09:13:42 +0600 |
parents | 43af6c819e88 |
children | 9551756f46c4 |
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 { |
1750 int x; // ebx@1 | |
1751 int absy; // eax@1 | |
0 | 1752 unsigned int v9; // ebx@11 |
1753 int v10; // ebx@13 | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1754 AIDirection doNotInitializeBecauseShouldBeRandom; // [sp+Ch] [bp-30h]@7 |
0 | 1755 int y; // [sp+30h] [bp-Ch]@1 |
1881 | 1756 int absx; // [sp+38h] [bp-4h]@1 |
2281 | 1757 |
1758 x = pActors[uActor_id].vInitialPosition.x - pActors[uActor_id].vPosition.x; | |
1759 y = pActors[uActor_id].vInitialPosition.y - pActors[uActor_id].vPosition.y; | |
1881 | 1760 absx = abs(x); |
1761 absy = abs(y); | |
1762 if ( absx <= absy ) | |
1763 absx = absy + (absx / 2 ); | |
0 | 1764 else |
1881 | 1765 absx = absx + absy / 2; |
2281 | 1766 if ( MonsterStats::BelongsToSupertype(pActors[uActor_id].pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) |
0 | 1767 { |
1768 if ( !uActionLength ) | |
1769 uActionLength = 256; | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1770 Actor::AI_StandOrBored(uActor_id, OBJECT_Player, uActionLength, &doNotInitializeBecauseShouldBeRandom); |
0 | 1771 return; |
1772 } | |
1881 | 1773 if ( pActors[uActor_id].pMonsterInfo.uMovementType == 3 && absx < 128 ) |
0 | 1774 { |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1775 Actor::AI_Stand(uActor_id, uTarget_id, 256, &doNotInitializeBecauseShouldBeRandom); |
0 | 1776 return; |
1777 } | |
1881 | 1778 absx += ((rand() & 0xF) * radius) / 16; |
1779 v9 = (stru_5C6E00->uIntegerDoublePi - 1) & stru_5C6E00->Atan2(x, y); | |
0 | 1780 if ( rand() % 100 < 25 ) |
1781 { | |
1881 | 1782 Actor::StandAwhile(uActor_id); |
0 | 1783 return; |
1784 } | |
1785 v10 = v9 + rand() % 256 - 128; | |
2281 | 1786 if ( abs(v10 - pActors[uActor_id].uYawAngle) > 256 && !(pActors[uActor_id].uAttributes & 0x200000) ) |
0 | 1787 { |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1788 Actor::AI_Stand(uActor_id, uTarget_id, 256, &doNotInitializeBecauseShouldBeRandom); |
245 | 1789 return; |
0 | 1790 } |
2281 | 1791 pActors[uActor_id].uYawAngle = v10; |
1792 if ( pActors[uActor_id].uMovementSpeed) | |
1793 pActors[uActor_id].uCurrentActionLength = 32 * absx / pActors[uActor_id].uMovementSpeed; | |
0 | 1794 else |
2281 | 1795 pActors[uActor_id].uCurrentActionLength = 0; |
1796 pActors[uActor_id].uCurrentActionTime = 0; | |
1797 pActors[uActor_id].uAIState = Tethered; | |
0 | 1798 if ( rand() % 100 < 2 ) |
2251 | 1799 Actor::PlaySound(uActor_id, 3); |
2281 | 1800 pActors[uActor_id].UpdateAnimation(); |
0 | 1801 } |
1802 | |
1803 //----- (004031C1) -------------------------------------------------------- | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1804 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 | 1805 { |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1806 return 0; |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1807 /*unsigned int v3; // edi@1 |
0 | 1808 Actor *v4; // esi@1 |
1809 ActorJob *v5; // eax@1 | |
1810 signed int v6; // edx@2 | |
1811 ActorJob *v7; // eax@2 | |
1812 signed int v8; // edi@2 | |
82 | 1813 ActorJob *v9; // ecx@2 |
0 | 1814 __int16 v10; // cx@15 |
1815 signed int v12; // [sp+8h] [bp-4h]@1 | |
1816 | |
1817 v3 = uActorID; | |
1818 v12 = a2; | |
1819 v4 = &pActors[uActorID]; | |
1820 v5 = (ActorJob *)pActors[uActorID].CanAct(); | |
1821 if ( v5 ) | |
1822 { | |
1823 v6 = 65535; | |
1824 v7 = &v4->pScheduledJobs[v3]; | |
1825 v8 = 7; | |
82 | 1826 v9 = &v7[7];//(char *)&v7[7].uHour; |
1827 while ( !(v9->uAttributes & 1) || v9->uHour > v12 ) | |
0 | 1828 { |
1829 --v8; | |
82 | 1830 --v9; |
0 | 1831 if ( v8 < 0 ) |
82 | 1832 break; |
0 | 1833 } |
82 | 1834 if( v8 >= 0 ) |
1835 v6 = v8; | |
0 | 1836 if ( !v8 && v6 == 65535 ) |
1837 v6 = 7; | |
1838 v5 = &v7[v6]; | |
1839 if ( v4->vInitialPosition.x != v5->vPos.x | |
1840 || v4->vInitialPosition.y != v5->vPos.y | |
1841 || v4->vInitialPosition.z != v5->vPos.z | |
1842 || v4->pMonsterInfo.uMovementType != v5->uAction ) | |
1843 { | |
1844 v4->vInitialPosition.x = v5->vPos.x; | |
1845 v4->vInitialPosition.y = v5->vPos.y; | |
1846 v10 = v5->vPos.z; | |
1847 v4->vInitialPosition.z = v10; | |
1848 LOBYTE(v5) = v5->uAction; | |
1456 | 1849 v4->pMonsterInfo.uMovementType = MONSTER_MOVEMENT_TYPE_STAIONARY; |
0 | 1850 if ( a3 == 1 ) |
1851 { | |
1852 v4->vPosition.x = v4->vInitialPosition.x; | |
1853 v4->vPosition.y = v4->vInitialPosition.y; | |
1854 LOBYTE(v5) = v10; | |
1855 v4->vPosition.z = v10; | |
1856 } | |
1857 } | |
1858 } | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1859 return (char)v5;*/ |
0 | 1860 } |
1861 | |
1862 //----- (004030AD) -------------------------------------------------------- | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1863 void Actor::AI_Stun(unsigned int uActorID, signed int edx0, int stunRegardlessOfState) |
0 | 1864 { |
1865 Actor *v4; // ebx@1 | |
1866 __int16 v7; // ax@16 | |
1867 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
|
1868 AIDirection* v10; // [sp+28h] [bp-24h]@16 |
0 | 1869 |
1870 v4 = &pActors[uActorID]; | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1871 if ( v4->uAIState == Fleeing ) |
0 | 1872 BYTE2(v4->uAttributes) |= 2u; |
1873 if ( v4->pMonsterInfo.uHostilityType != 4 ) | |
1874 { | |
1875 v4->uAttributes &= 0xFFFFFFFBu; | |
1876 v4->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
1877 } | |
1947 | 1878 if ( v4->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0 ) |
1879 v4->pActorBuffs[ACTOR_BUFF_CHARM].Reset(); | |
1950 | 1880 if ( v4->pActorBuffs[ACTOR_BUFF_AFRAID].uExpireTime > 0 ) |
1881 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
|
1882 if ( stunRegardlessOfState |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1883 || (v4->uAIState != Stunned |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1884 && v4->uAIState != AttackingRanged1 |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1885 && v4->uAIState != AttackingRanged2 |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1886 && v4->uAIState != AttackingRanged3 |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1887 && v4->uAIState != AttackingRanged4 |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1888 && v4->uAIState != AttackingMelee)) |
0 | 1889 { |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
1890 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
|
1891 v10 = &a3; |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1892 v4->uYawAngle = LOWORD(v10->uYawAngle); |
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1893 v7 = pSpriteFrameTable->pSpriteSFrames[v4->pSpriteIDs[ANIM_GotHit]].uAnimLength; |
0 | 1894 v4->uCurrentActionTime = 0; |
1895 v4->uAIState = Stunned; | |
1896 v4->uCurrentActionLength = 8 * v7; | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
1897 Actor::PlaySound(uActorID, 2u); |
322 | 1898 v4->UpdateAnimation(); |
0 | 1899 } |
1900 } | |
1901 | |
1902 //----- (00402F87) -------------------------------------------------------- | |
414 | 1903 void Actor::AI_Bored(unsigned int uActorID, unsigned int uObjID, AIDirection *a4) |
0 | 1904 { |
1905 unsigned int v7; // eax@3 | |
1906 unsigned int v9; // eax@3 | |
1060 | 1907 |
1883 | 1908 Actor* actor = &pActors[uActorID]; |
417 | 1909 |
1910 AIDirection a3; // [sp+Ch] [bp-5Ch]@2 | |
414 | 1911 if (!a4) |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
1912 { |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
1913 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
|
1914 a4 = &a3; |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
1915 } |
414 | 1916 |
1917 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Bored]].uAnimLength; | |
1918 | |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1638
diff
changeset
|
1919 v7 = stru_5C6E00->Atan2(actor->vPosition.x - pGame->pIndoorCameraD3D->vPartyPos.x, actor->vPosition.y - pGame->pIndoorCameraD3D->vPartyPos.y); |
414 | 1920 v9 = stru_5C6E00->uIntegerPi + actor->uYawAngle + ((signed int)stru_5C6E00->uIntegerPi >> 3) - v7; |
1921 | |
2212 | 1922 if ( v9 & 0x700 ) // turned away - just stand |
414 | 1923 Actor::AI_Stand(uActorID, uObjID, actor->uCurrentActionLength, a4); |
1924 else // facing player - play bored anim | |
0 | 1925 { |
414 | 1926 actor->uAIState = Fidgeting; |
1927 actor->uCurrentActionTime = 0; | |
1928 actor->uYawAngle = a4->uYawAngle; | |
1929 actor->vVelocity.z = 0; | |
1930 actor->vVelocity.y = 0; | |
1931 actor->vVelocity.x = 0; | |
0 | 1932 if ( rand() % 100 < 5 ) |
414 | 1933 Actor::PlaySound(uActorID, 3); |
1934 actor->UpdateAnimation(); | |
0 | 1935 } |
1936 } | |
1937 | |
1938 //----- (00402F27) -------------------------------------------------------- | |
322 | 1939 void Actor::Resurrect(unsigned int uActorID) |
0 | 1940 { |
1941 Actor *pActor; // esi@1 | |
1942 | |
1943 pActor = &pActors[uActorID]; | |
1944 pActor->uCurrentActionTime = 0; | |
1945 pActor->uAIState = Resurrected; | |
1946 pActor->uCurrentActionAnimation = ANIM_Dying; | |
1883 | 1947 pActor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[pActor->pSpriteIDs[ANIM_Dying]].uAnimLength; |
0 | 1948 pActor->sCurrentHP = LOWORD(pActor->pMonsterInfo.uHP); |
2276 | 1949 Actor::PlaySound(uActorID, 1); |
322 | 1950 pActor->UpdateAnimation(); |
0 | 1951 } |
1952 | |
1953 //----- (00402D6E) -------------------------------------------------------- | |
319 | 1954 void Actor::Die(unsigned int uActorID) |
0 | 1955 { |
1980 | 1956 Actor* actor = &pActors[uActorID]; |
0 | 1957 |
319 | 1958 actor->uCurrentActionTime = 0; |
1959 actor->uAIState = Dying; | |
1960 actor->uCurrentActionAnimation = ANIM_Dying; | |
1961 actor->sCurrentHP = 0; | |
1962 actor->uCurrentActionLength = 8 * pSpriteFrameTable->pSpriteSFrames[actor->pSpriteIDs[ANIM_Dying]].uAnimLength; | |
1946
aa3ca49a10f5
pActorBuffs[6] to pActorBuffs[ACTOR_BUFF_PARALYZED]
Grumpy7
parents:
1945
diff
changeset
|
1963 actor->pActorBuffs[ACTOR_BUFF_PARALYZED].Reset(); |
1945 | 1964 actor->pActorBuffs[ACTOR_BUFF_STONED].Reset(); |
319 | 1965 Actor::PlaySound(uActorID, 1); |
1966 actor->UpdateAnimation(); | |
1967 | |
1968 for (uint i = 0; i < 5; ++i) | |
1529 | 1969 if (pParty->monster_id_for_hunting[i] == actor->pMonsterInfo.uID) |
1970 pParty->monster_for_hunting_killed[i] = true; | |
319 | 1971 |
1972 for (uint i = 0; i < 22; ++i) | |
1973 actor->pActorBuffs[i].Reset(); | |
1974 | |
1975 ItemGen drop; | |
1012 | 1976 drop.Reset(); |
319 | 1977 switch (actor->pMonsterInfo.uID) |
0 | 1978 { |
319 | 1979 case MONSTER_HARPY_1: case MONSTER_HARPY_2: case MONSTER_HARPY_3: |
1980 drop.uItemID = ITEM_HARPY_FEATHER; | |
1981 break; | |
1982 | |
1983 case MONSTER_OOZE_1: case MONSTER_OOZE_2: case MONSTER_OOZE_3: | |
1984 drop.uItemID = ITEM_OOZE_ECTOPLASM_BOTTLE; | |
1985 break; | |
1986 | |
1987 case MONSTER_TROLL_1: case MONSTER_TROLL_2: case MONSTER_TROLL_3: | |
1988 drop.uItemID = ITEM_TROLL_BLOOD; | |
1989 break; | |
1990 | |
1991 case MONSTER_DEVIL_1: case MONSTER_DEVIL_2: case MONSTER_DEVIL_3: | |
1992 drop.uItemID = ITEM_DEVIL_ICHOR; | |
1993 break; | |
1994 | |
1995 case MONSTER_DRAGON_1: case MONSTER_DRAGON_2: case MONSTER_DRAGON_3: | |
1996 drop.uItemID = ITEM_DRAGON_EYE; | |
321 | 1997 break; |
0 | 1998 } |
319 | 1999 |
1759 | 2000 if (rand() % 100 < 20 && drop.uItemID != 0) |
0 | 2001 { |
319 | 2002 sub_42F7EB_DropItemAt(pItemsTable->pItems[drop.uItemID].uSpriteID, |
2003 actor->vPosition.x, | |
2004 actor->vPosition.y, | |
2005 actor->vPosition.z + 16, | |
2006 rand() % 200 + 200, | |
0 | 2007 1, |
2008 1, | |
2009 0, | |
319 | 2010 &drop); |
0 | 2011 } |
319 | 2012 |
2013 if (actor->pMonsterInfo.uSpecialAbilityType == MONSTER_SPECIAL_ABILITY_EXPLODE) | |
2014 Actor::Explode(uActorID); | |
0 | 2015 } |
2016 | |
2017 //----- (00402CED) -------------------------------------------------------- | |
322 | 2018 void Actor::PlaySound(unsigned int uActorID, unsigned int uSoundID) |
0 | 2019 { |
2020 unsigned __int16 v3; // dx@1 | |
2021 | |
1408 | 2022 v3 = pActors[uActorID].pSoundSampleIDs[uSoundID]; |
0 | 2023 if ( v3 ) |
2024 { | |
1949 | 2025 if ( pActors[uActorID].pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime <= 0 ) |
1883 | 2026 pAudioPlayer->PlaySound((SoundID)v3, PID(OBJECT_Actor, uActorID), 0, -1, 0, 0, 0, 0); |
0 | 2027 else |
2028 { | |
1949 | 2029 switch(pActors[uActorID].pActorBuffs[ACTOR_BUFF_SHRINK].uPower) |
0 | 2030 { |
1883 | 2031 case 1: |
2032 pAudioPlayer->PlaySound((SoundID)v3, PID(OBJECT_Actor, uActorID), 0, 0, 0, 0, 0, 33075); | |
2033 break; | |
2034 case 2: | |
2035 pAudioPlayer->PlaySound((SoundID)v3, PID(OBJECT_Actor, uActorID), 0, 0, 0, 0, 0, 33075); | |
2036 break; | |
2037 case 3: | |
2038 case 4: | |
2039 pAudioPlayer->PlaySound((SoundID)v3, PID(OBJECT_Actor, uActorID), 0, 0, 0, 0, 0, 33075); | |
2040 break; | |
2041 default: | |
2042 pAudioPlayer->PlaySound((SoundID)v3, PID(OBJECT_Actor, uActorID), 0, -1, 0, 0, 0, 0); | |
2043 break; | |
0 | 2044 } |
2045 } | |
2046 } | |
2047 } | |
2048 | |
2049 //----- (00402AD7) -------------------------------------------------------- | |
1060 | 2050 void Actor::AI_Pursue1(unsigned int uActorID, unsigned int a2, signed int arg0, signed int uActionLength, AIDirection *pDir) |
0 | 2051 { |
2052 int v6; // eax@1 | |
2053 Actor *v7; // ebx@1 | |
2054 unsigned int v8; // ecx@1 | |
2055 AIDirection *v10; // esi@6 | |
2056 AIDirection a3; // [sp+Ch] [bp-5Ch]@7 | |
2057 unsigned int v18; // [sp+64h] [bp-4h]@1 | |
2058 | |
2059 v6 = 0; | |
2060 v7 = &pActors[uActorID]; | |
862 | 2061 v8 = PID(OBJECT_Actor,uActorID); |
1884 | 2062 if ( v7->pMonsterInfo.uFlying != 0 && !pParty->bFlying ) //TODO: Does v6 have a point? |
0 | 2063 { |
2064 if ( v7->pMonsterInfo.uMissleAttack1Type ) | |
2065 v6 = v7->uActorRadius + 512; | |
2066 else | |
2067 v6 = pParty->uPartyHeight; | |
2068 } | |
1052 | 2069 |
1884 | 2070 if ( pDir == nullptr ) |
0 | 2071 { |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2072 Actor::GetDirectionInfo(v8, a2, &a3, v6); |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2073 v10 = &a3; |
1884 | 2074 } |
2075 else | |
2076 v10 = pDir; | |
0 | 2077 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) |
2078 { | |
2079 if ( !uActionLength ) | |
2080 uActionLength = 256; | |
1884 | 2081 Actor::AI_StandOrBored(uActorID, 4, uActionLength, v10); |
322 | 2082 return; |
0 | 2083 } |
1884 | 2084 if ( v10->uDistance < 307.2 ) |
0 | 2085 { |
2086 if ( !uActionLength ) | |
2087 uActionLength = 256; | |
1884 | 2088 Actor::AI_Stand(uActorID, a2, uActionLength, v10); |
322 | 2089 return; |
0 | 2090 } |
1884 | 2091 if ( v7->uMovementSpeed == 0 ) |
322 | 2092 { |
1884 | 2093 Actor::AI_Stand(uActorID, a2, uActionLength, v10); |
322 | 2094 return; |
2095 } | |
0 | 2096 if ( arg0 % 2 ) |
2097 v18 = -16; | |
1884 | 2098 else |
2099 v18 = 16; | |
1052 | 2100 |
0 | 2101 v7->uYawAngle = stru_5C6E00->Atan2( |
1885 | 2102 pParty->vPosition.x + (int)fixpoint_mul(stru_5C6E00->Cos(v18 + stru_5C6E00->uIntegerPi + v10->uYawAngle), v10->uDistanceXZ) - v7->vPosition.x, |
2059 | 2103 pParty->vPosition.y + (int)fixpoint_mul(stru_5C6E00->Sin(v18 + stru_5C6E00->uIntegerPi + v10->uYawAngle), v10->uDistanceXZ) - v7->vPosition.y); |
0 | 2104 if ( uActionLength ) |
2105 v7->uCurrentActionLength = uActionLength; | |
2106 else | |
2107 v7->uCurrentActionLength = 128; | |
2108 v7->uPitchAngle = LOWORD(v10->uPitchAngle); | |
2109 v7->uAIState = Pursuing; | |
322 | 2110 v7->UpdateAnimation(); |
0 | 2111 } |
2112 | |
2113 //----- (00402968) -------------------------------------------------------- | |
1060 | 2114 void Actor::AI_Flee(unsigned int uActorID, signed int sTargetPid, int uActionLength, AIDirection *a4) |
0 | 2115 { |
2116 Actor *v5; // ebx@1 | |
2117 int v7; // ecx@2 | |
2118 unsigned __int16 v9; // ax@15 | |
1909 | 2119 AIDirection v10; // [sp+8h] [bp-7Ch]@4 |
2120 AIDirection a3; // [sp+24h] [bp-60h]@3 | |
1885 | 2121 AIDirection* v13; // [sp+5Ch] [bp-28h]@4 |
0 | 2122 |
2123 v5 = &pActors[uActorID]; | |
1885 | 2124 if ( v5->CanAct() ) |
0 | 2125 { |
1885 | 2126 v7 = PID(OBJECT_Actor,uActorID); |
0 | 2127 if ( !a4 ) |
2128 { | |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2129 Actor::GetDirectionInfo(v7, sTargetPid, &a3, v5->pMonsterInfo.uFlying); |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2130 a4 = &a3; |
0 | 2131 } |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2132 Actor::GetDirectionInfo(v7, 4u, &v10, 0); |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2133 v13 = &v10; |
0 | 2134 if ( MonsterStats::BelongsToSupertype(v5->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) |
1885 | 2135 || PID_TYPE(sTargetPid) == OBJECT_Actor && v13->uDistance < 307.2 ) |
0 | 2136 { |
2137 if ( !uActionLength ) | |
2138 uActionLength = 256; | |
1885 | 2139 Actor::AI_StandOrBored(uActorID, 4, uActionLength, v13); |
0 | 2140 } |
2141 else | |
2142 { | |
1885 | 2143 if ( v5->uMovementSpeed ) |
2144 v5->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v5->uMovementSpeed; | |
0 | 2145 else |
2146 v5->uCurrentActionLength = 0; | |
2147 if ( v5->uCurrentActionLength > 256 ) | |
2148 v5->uCurrentActionLength = 256; | |
2149 v5->uYawAngle = LOWORD(stru_5C6E00->uIntegerHalfPi) + LOWORD(a4->uYawAngle); | |
2150 v5->uYawAngle = LOWORD(stru_5C6E00->uDoublePiMask) & (v5->uYawAngle + rand() % (signed int)stru_5C6E00->uIntegerPi); | |
2151 v9 = LOWORD(a4->uPitchAngle); | |
2152 v5->uCurrentActionTime = 0; | |
2153 v5->uPitchAngle = v9; | |
2154 v5->uAIState = Fleeing; | |
322 | 2155 v5->UpdateAnimation(); |
0 | 2156 } |
2157 } | |
2158 } | |
2159 | |
2160 //----- (0040281C) -------------------------------------------------------- | |
1060 | 2161 void Actor::AI_Pursue2(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *pDir, int a5) |
0 | 2162 { |
2163 int v6; // eax@1 | |
2164 Actor *v7; // ebx@1 | |
2165 unsigned int v8; // ecx@1 | |
2166 AIDirection *v10; // esi@7 | |
2167 signed __int16 v13; // cx@19 | |
2168 unsigned __int16 v14; // ax@25 | |
2169 AIDirection a3; // [sp+Ch] [bp-40h]@8 | |
2170 AIDirection v18; // [sp+28h] [bp-24h]@8 | |
2171 | |
2172 v6 = 0; | |
2173 v7 = &pActors[uActorID]; | |
862 | 2174 v8 = PID(OBJECT_Actor,uActorID); |
1886 | 2175 if ( v7->pMonsterInfo.uFlying != 0 && !pParty->bFlying ) |
0 | 2176 { |
2177 if ( v7->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
2178 v6 = v7->uActorRadius + 512; | |
2179 else | |
2180 v6 = pParty->uPartyHeight; | |
2181 } | |
2182 v10 = pDir; | |
2183 if ( !pDir ) | |
2184 { | |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2185 Actor::GetDirectionInfo(v8, a2, &a3, v6); |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2186 v10 = &a3; |
0 | 2187 } |
2188 if ( MonsterStats::BelongsToSupertype(v7->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
2189 { | |
2190 if ( !uActionLength ) | |
2191 uActionLength = 256; | |
1886 | 2192 Actor::AI_StandOrBored(uActorID, 4, uActionLength, v10); |
322 | 2193 return; |
0 | 2194 } |
2195 if ( (signed int)v10->uDistance < a5 ) | |
2196 { | |
2197 if ( !uActionLength ) | |
2198 uActionLength = 256; | |
1886 | 2199 Actor::AI_StandOrBored(uActorID, a2, uActionLength, v10); |
322 | 2200 return; |
0 | 2201 } |
2202 if ( uActionLength ) | |
2203 { | |
2204 v7->uCurrentActionLength = uActionLength; | |
2205 } | |
2206 else | |
2207 { | |
2208 v13 = v7->uMovementSpeed; | |
2209 if ( v13 ) | |
2210 v7->uCurrentActionLength = (signed int)(v10->uDistanceXZ << 7) / v13; | |
2211 else | |
2212 v7->uCurrentActionLength = 0; | |
2213 if ( v7->uCurrentActionLength > 32 ) | |
2214 v7->uCurrentActionLength = 32; | |
2215 } | |
2216 v7->uYawAngle = LOWORD(v10->uYawAngle); | |
2217 v14 = LOWORD(v10->uPitchAngle); | |
2218 v7->uCurrentActionTime = 0; | |
2219 v7->uPitchAngle = v14; | |
2220 v7->uAIState = Pursuing; | |
322 | 2221 v7->UpdateAnimation(); |
0 | 2222 } |
2223 | |
2224 //----- (00402686) -------------------------------------------------------- | |
1060 | 2225 void Actor::AI_Pursue3(unsigned int uActorID, unsigned int a2, signed int uActionLength, AIDirection *a4) |
0 | 2226 { |
2227 int v5; // eax@1 | |
2228 Actor *v6; // ebx@1 | |
2229 int v7; // ecx@1 | |
2230 signed __int16 v12; // cx@19 | |
2231 __int16 v14; // ax@25 | |
2232 unsigned __int16 v16; // ax@28 | |
2233 AIDirection a3; // [sp+Ch] [bp-40h]@8 | |
1887 | 2234 AIDirection* v20; // [sp+28h] [bp-24h]@8 |
0 | 2235 |
2236 v5 = 0; | |
2237 v6 = &pActors[uActorID]; | |
862 | 2238 v7 = PID(OBJECT_Actor,uActorID); |
1887 | 2239 if ( v6->pMonsterInfo.uFlying != 0 && !pParty->bFlying ) |
0 | 2240 { |
2241 if ( v6->pMonsterInfo.uMissleAttack1Type && uCurrentlyLoadedLevelType == LEVEL_Outdoor ) | |
2242 v5 = v6->uActorRadius + 512; | |
2243 else | |
2244 v5 = pParty->uPartyHeight; | |
2245 } | |
2246 if ( !a4 ) | |
2247 { | |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2248 Actor::GetDirectionInfo(v7, a2, &a3, v5); |
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
2249 v20 = &a3; |
0 | 2250 } |
2251 if ( MonsterStats::BelongsToSupertype(v6->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
2252 { | |
2253 if ( !uActionLength ) | |
2254 uActionLength = 256; | |
860 | 2255 return Actor::AI_StandOrBored(uActorID, 4, uActionLength, a4); |
0 | 2256 } |
1887 | 2257 if ( a4->uDistance < 307.2 ) |
0 | 2258 { |
2259 if ( !uActionLength ) | |
2260 uActionLength = 256; | |
1887 | 2261 return Actor::AI_StandOrBored(uActorID, a2, uActionLength, a4); |
0 | 2262 } |
2263 if ( uActionLength ) | |
2264 v6->uCurrentActionLength = uActionLength + rand() % uActionLength; | |
2265 else | |
2266 { | |
2267 v12 = v6->uMovementSpeed; | |
2268 if ( v12 ) | |
860 | 2269 v6->uCurrentActionLength = (signed int)(a4->uDistanceXZ << 7) / v12; |
0 | 2270 else |
2271 v6->uCurrentActionLength = 0; | |
2272 if ( v6->uCurrentActionLength > 128 ) | |
2273 v6->uCurrentActionLength = 128; | |
2274 } | |
860 | 2275 v14 = LOWORD(a4->uYawAngle); |
1887 | 2276 if ( rand() % 2 ) |
2277 v14 += 256; | |
0 | 2278 else |
1887 | 2279 v14 -= 256; |
2280 v6->uYawAngle = v14; | |
860 | 2281 v16 = LOWORD(a4->uPitchAngle); |
0 | 2282 v6->uCurrentActionTime = 0; |
2283 v6->uPitchAngle = v16; | |
2284 v6->uAIState = Pursuing; | |
2285 if ( rand() % 100 < 2 ) | |
860 | 2286 Actor::PlaySound(uActorID, 2u); |
322 | 2287 v6->UpdateAnimation(); |
0 | 2288 } |
2289 | |
1893 | 2290 //----- (00401221) -------------------------------------------------------- |
417 | 2291 void Actor::_SelectTarget(unsigned int uActorID, int *a2, bool can_target_party) |
0 | 2292 { |
2293 int v5; // ecx@1 | |
2294 signed int v10; // eax@13 | |
1894 | 2295 uint v11; // ebx@16 |
2296 uint v12; // eax@16 | |
0 | 2297 signed int v14; // eax@31 |
1894 | 2298 uint v15; // edi@43 |
2299 uint v16; // ebx@45 | |
2300 uint v17; // eax@45 | |
1893 | 2301 signed int closestId; // [sp+14h] [bp-1Ch]@1 |
1894 | 2302 uint v23; // [sp+1Ch] [bp-14h]@16 |
1893 | 2303 unsigned int lowestRadius; // [sp+24h] [bp-Ch]@1 |
1894 | 2304 uint v27; // [sp+2Ch] [bp-4h]@16 |
2305 uint v28; // [sp+2Ch] [bp-4h]@45 | |
0 | 2306 |
1893 | 2307 lowestRadius = UINT_MAX; |
0 | 2308 v5 = 0; |
2309 *a2 = 0; | |
1893 | 2310 closestId = 0; |
417 | 2311 assert(uActorID < uNumActors); |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2312 Actor* thisActor = &pActors[uActorID]; |
417 | 2313 |
2314 for (uint i = 0; i < uNumActors; ++i) | |
0 | 2315 { |
1893 | 2316 Actor* actor = &pActors[i]; |
417 | 2317 if (actor->uAIState == Dead || actor->uAIState == Dying || |
2318 actor->uAIState == Removed || actor->uAIState == Summoned || actor->uAIState == Disabled || uActorID == i ) | |
2319 continue; | |
2320 | |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2321 if (thisActor->uLastCharacterIDToHit == 0 || PID(OBJECT_Actor,v5) != thisActor->uLastCharacterIDToHit ) |
245 | 2322 { |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2323 v10 = thisActor->GetActorsRelation(actor); |
417 | 2324 if ( v10 == 0 ) |
245 | 2325 continue; |
2326 } | |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2327 else if (thisActor->IsNotAlive()) |
245 | 2328 { |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2329 thisActor->uLastCharacterIDToHit = 0; |
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2330 v10 = thisActor->GetActorsRelation(actor); |
417 | 2331 if ( v10 == 0 ) |
245 | 2332 continue; |
2333 } | |
2334 else | |
2335 { | |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2336 if ( (actor->uGroup != 0 || thisActor->uGroup != 0) && actor->uGroup == thisActor->uGroup ) |
245 | 2337 continue; |
2338 v10 = 4; | |
2339 } | |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2340 if ( thisActor->pMonsterInfo.uHostilityType ) |
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2341 v10 = pMonsterStats->pInfos[thisActor->pMonsterInfo.uID].uHostilityType; |
2154 | 2342 v11 = _4DF380_hostilityRanges[v10]; |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2343 v23 = abs(thisActor->vPosition.x - actor->vPosition.x); |
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2344 v27 = abs(thisActor->vPosition.y - actor->vPosition.y); |
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2345 v12 = abs(thisActor->vPosition.z - actor->vPosition.z); |
245 | 2346 if ( v23 <= v11 |
2347 && v27 <= v11 | |
2348 && v12 <= v11 | |
1493 | 2349 && sub_4070EF_prolly_detect_player(PID(OBJECT_Actor, i), PID(OBJECT_Actor, uActorID)) |
1893 | 2350 && v23 * v23 + v27 * v27 + v12 * v12 < lowestRadius ) |
245 | 2351 { |
1893 | 2352 lowestRadius = v23 * v23 + v27 * v27 + v12 * v12; |
2353 closestId = i; | |
245 | 2354 } |
0 | 2355 } |
1893 | 2356 |
2357 if ( lowestRadius != UINT_MAX ) | |
2358 { | |
2359 *a2 = PID(OBJECT_Actor, closestId); | |
2360 } | |
1894 | 2361 |
2362 if (can_target_party && !pParty->Invisible()) | |
0 | 2363 { |
1893 | 2364 if ( thisActor->uAttributes & 0x80000 |
1956
542c13cd72e2
pActorBuffs[12] to pActorBuffs[ACTOR_BUFF_ENSLAVED]
Grumpy7
parents:
1955
diff
changeset
|
2365 && thisActor->pActorBuffs[ACTOR_BUFF_ENSLAVED].uExpireTime <= 0 |
1947 | 2366 && thisActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime <= 0 |
1948
7fd4bfa175fd
pActorBuffs[2] to pActorBuffs[ACTOR_BUFF_SUMMONED]
Grumpy7
parents:
1947
diff
changeset
|
2367 && thisActor->pActorBuffs[ACTOR_BUFF_SUMMONED].uExpireTime <= 0 ) |
0 | 2368 v14 = 4; |
1893 | 2369 else |
2370 v14 = thisActor->GetActorsRelation(0); | |
417 | 2371 if ( v14 != 0 ) |
0 | 2372 { |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2373 if ( !thisActor->pMonsterInfo.uHostilityType ) |
2154 | 2374 v15 = _4DF380_hostilityRanges[v14]; |
1893 | 2375 else |
2154 | 2376 v15 = _4DF380_hostilityRanges[4]; |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2377 v16 = abs(thisActor->vPosition.x - pParty->vPosition.x); |
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2378 v28 = abs(thisActor->vPosition.y - pParty->vPosition.y); |
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2379 v17 = abs(thisActor->vPosition.z - pParty->vPosition.z); |
1893 | 2380 if ( v16 <= v15 && v28 <= v15 && v17 <= v15 && (v16 * v16 + v28 * v28 + v17 * v17 < lowestRadius)) |
0 | 2381 { |
1893 | 2382 *a2 = OBJECT_Player; |
0 | 2383 } |
2384 } | |
2385 } | |
2386 } | |
2387 // 4DF380: using guessed type int dword_4DF380[]; | |
2388 // 4DF390: using guessed type int dword_4DF390; | |
2389 | |
2390 //----- (0040104C) -------------------------------------------------------- | |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2391 signed int Actor::GetActorsRelation(Actor *otherActPtr) |
0 | 2392 { |
1892 | 2393 unsigned int thisGroup; // ebp@19 |
2394 int otherGroup; // eax@22 | |
2395 unsigned int thisAlly; // edx@25 | |
2396 unsigned int otherAlly; // edx@33 | |
0 | 2397 |
1892 | 2398 if ( otherActPtr) |
1890 | 2399 { |
2251 | 2400 if ( otherActPtr->uGroup != 0 && this->uGroup != 0 && otherActPtr->uGroup == this->uGroup ) |
1890 | 2401 return 0; |
2402 } | |
2403 | |
1892 | 2404 if (this->pActorBuffs[ACTOR_BUFF_BERSERK].uExpireTime > 0) |
2405 return 4; | |
2406 thisAlly = this->uAlly; | |
2407 if ( this->pActorBuffs[ACTOR_BUFF_ENSLAVED].uExpireTime > 0 || thisAlly == 9999) | |
2408 thisGroup = 0; | |
2409 else if ( thisAlly > 0 ) | |
2410 thisGroup = thisAlly; | |
0 | 2411 else |
1892 | 2412 thisGroup = (this->pMonsterInfo.uID - 1) / 3 + 1; |
2413 | |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2414 if ( otherActPtr ) |
0 | 2415 { |
1889
397059718a9a
Actor::_SelectTarget, Actor::GetActorsRelation some cleanups
Grumpy7
parents:
1887
diff
changeset
|
2416 if (otherActPtr->pActorBuffs[ACTOR_BUFF_BERSERK].uExpireTime > 0) |
0 | 2417 return 4; |
1892 | 2418 otherAlly = otherActPtr->uAlly; |
2419 if ( otherActPtr->pActorBuffs[ACTOR_BUFF_ENSLAVED].uExpireTime > 0 || otherAlly == 9999) | |
2420 otherGroup = 0; | |
2421 else if ( otherAlly > 0 ) | |
2422 otherGroup = otherAlly; | |
1891 | 2423 else |
1892 | 2424 otherGroup = (otherActPtr->pMonsterInfo.uID - 1) / 3 + 1; |
0 | 2425 } |
2426 else | |
1892 | 2427 otherGroup = 0; |
1891 | 2428 |
1892 | 2429 if ( this->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0 && !otherGroup |
2430 || otherActPtr && otherActPtr->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0 && !thisGroup ) | |
0 | 2431 return 0; |
1892 | 2432 if ( this->pActorBuffs[ACTOR_BUFF_ENSLAVED].uExpireTime <= 0 && this->uAttributes & 0x80000 && !otherGroup ) |
0 | 2433 return 4; |
1892 | 2434 if (thisGroup >= 89 || otherGroup >= 89) |
1891 | 2435 return 0; |
2436 | |
1892 | 2437 if ( thisGroup == 0 ) |
0 | 2438 { |
1892 | 2439 if ( (!otherActPtr || this->pActorBuffs[ACTOR_BUFF_ENSLAVED].uExpireTime > 0 && !(otherActPtr->uAttributes & 0x80000)) && !pFactionTable->relations[otherGroup][0]) |
2440 return pFactionTable->relations[0][otherGroup]; | |
1891 | 2441 else |
2442 return 4; | |
0 | 2443 } |
1891 | 2444 else |
1892 | 2445 return pFactionTable->relations[thisGroup][otherGroup]; |
0 | 2446 } |
2447 | |
2448 //----- (0045976D) -------------------------------------------------------- | |
322 | 2449 void Actor::UpdateAnimation() |
0 | 2450 { |
322 | 2451 //AIState state; // edx@1 |
2452 //unsigned int result; // eax@1 | |
0 | 2453 |
322 | 2454 //state = (AIState)this->; |
2455 uAttributes &= 0xFFDFFFFF; | |
2456 //result = this->uAttributes; | |
2457 switch (uAIState) | |
0 | 2458 { |
2459 case Tethered: | |
322 | 2460 uCurrentActionAnimation = ANIM_Walking; |
2461 break; | |
2462 | |
0 | 2463 case AttackingMelee: |
322 | 2464 uCurrentActionAnimation = ANIM_AtkMelee; |
2465 uAttributes |= 0x200000u; | |
2466 break; | |
2467 | |
0 | 2468 case AttackingRanged1: |
2469 case AttackingRanged2: | |
2470 case AttackingRanged3: | |
2471 case AttackingRanged4: | |
322 | 2472 uCurrentActionAnimation = ANIM_AtkRanged; |
2473 uAttributes |= 0x200000u; | |
2474 break; | |
2475 | |
0 | 2476 case Dying: |
2477 case Resurrected: | |
322 | 2478 uCurrentActionAnimation = ANIM_Dying; |
2479 uAttributes |= 0x200000u; | |
2480 break; | |
2481 | |
0 | 2482 case Pursuing: |
2483 case Fleeing: | |
322 | 2484 uCurrentActionAnimation = ANIM_Walking; |
2485 uAttributes |= 0x200000u; | |
2486 break; | |
2487 | |
0 | 2488 case Stunned: |
322 | 2489 uCurrentActionAnimation = ANIM_GotHit; |
2490 uAttributes |= 0x200000u; | |
2491 break; | |
2492 | |
0 | 2493 case Fidgeting: |
322 | 2494 uCurrentActionAnimation = ANIM_Bored; |
2495 uAttributes |= 0x200000u; | |
2496 break; | |
2497 | |
0 | 2498 case Standing: |
2499 case Interacting: | |
2500 case Summoned: | |
322 | 2501 uCurrentActionAnimation = ANIM_Standing; |
2502 uAttributes |= 0x200000u; | |
2503 break; | |
2504 | |
0 | 2505 case Dead: |
322 | 2506 if (pSpriteFrameTable->pSpriteSFrames[pSpriteIDs[ANIM_Dead]].pHwSpriteIDs[0] <= 0) |
2507 uAIState = Removed; | |
0 | 2508 else |
322 | 2509 uCurrentActionAnimation = ANIM_Dead; |
2510 break; | |
2511 | |
551 | 2512 case Removed: |
652 | 2513 case Disabled: |
551 | 2514 return; |
2515 | |
0 | 2516 default: |
322 | 2517 assert(false); |
0 | 2518 } |
2519 } | |
2520 | |
2521 //----- (00459671) -------------------------------------------------------- | |
2522 void Actor::Reset() | |
2523 { | |
2524 this->pActorName[0] = 0; | |
2525 this->word_000086_some_monster_id = 0; | |
602 | 2526 this->sNPC_ID = 0; |
0 | 2527 this->vPosition.z = 0; |
2528 this->vPosition.y = 0; | |
2529 this->vPosition.x = 0; | |
2530 this->vVelocity.z = 0; | |
2531 this->vVelocity.y = 0; | |
2532 this->vVelocity.x = 0; | |
2533 this->uYawAngle = 0; | |
2534 this->uPitchAngle = 0; | |
2535 this->uAttributes = 0; | |
2536 this->uSectorID = 0; | |
2537 this->uCurrentActionTime = 0; | |
2538 this->vInitialPosition.z = 0; | |
2539 this->vInitialPosition.y = 0; | |
2540 this->vInitialPosition.x = 0; | |
2541 this->vGuardingPosition.z = 0; | |
2542 this->vGuardingPosition.y = 0; | |
2543 this->vGuardingPosition.x = 0; | |
2544 this->uTetherDistance = 256; | |
2545 this->uActorRadius = 32; | |
2546 this->uActorHeight = 128; | |
2547 this->uAIState = Standing; | |
305 | 2548 this->uCurrentActionAnimation = ANIM_Standing; |
0 | 2549 this->uMovementSpeed = 200; |
2550 this->uCarriedItemID = 0; | |
2551 this->uGroup = 0; | |
2552 this->uAlly = 0; | |
2553 this->uSummonerID = 0; | |
2554 this->uLastCharacterIDToHit = 0; | |
2555 this->dword_000334_unique_name = 0; | |
2556 memset(this->pSpriteIDs, 0, sizeof(pSpriteIDs)); | |
2557 memset(this->pActorBuffs, 0, 0x160u); | |
2558 } | |
2559 | |
2560 //----- (0045959A) -------------------------------------------------------- | |
2561 void Actor::PrepareSprites(char load_sounds_if_bit1_set) | |
2562 { | |
694 | 2563 |
2564 MonsterDesc *v3; // esi@1 | |
0 | 2565 MonsterInfo *v9; // [sp+84h] [bp-10h]@1 |
694 | 2566 |
0 | 2567 v3 = &pMonsterList->pMonsters[pMonsterInfo.uID - 1]; |
2568 v9 = &pMonsterStats->pInfos[pMonsterInfo.uID - 1 + 1]; | |
2569 //v12 = pSpriteIDs; | |
2570 //Source = (char *)v3->pSpriteNames; | |
2571 //do | |
2572 for (uint i = 0; i < 8; ++i) | |
2573 { | |
2574 //strcpy(pSpriteName, v3->pSpriteNames[i]); | |
2575 pSpriteIDs[i] = pSpriteFrameTable->FastFindSprite(v3->pSpriteNames[i]); | |
2576 pSpriteFrameTable->InitializeSprite(pSpriteIDs[i]); | |
2577 } | |
2578 uActorHeight = v3->uMonsterHeight; | |
2579 uActorRadius = v3->uMonsterRadius; | |
33 | 2580 uMovementSpeed = v9->uBaseSpeed; |
0 | 2581 if ( !(load_sounds_if_bit1_set & 1) ) |
2582 { | |
2251 | 2583 for ( int i = 0; i < 4; ++i ) |
2584 pSoundSampleIDs[i] = v3->pSoundSampleIDs[i]; | |
0 | 2585 } |
2586 } | |
2587 | |
2588 //----- (00459667) -------------------------------------------------------- | |
2589 void Actor::Remove() | |
2590 { | |
2591 this->uAIState = Removed; | |
2592 } | |
2593 | |
2310 | 2594 |
2595 //----- (0043B1B0) -------------------------------------------------------- | |
2596 void Actor::ActorDamageFromMonster(signed int attacker_id, unsigned int actor_id, Vec3_int_ *pVelocity, signed int a4) | |
2597 { | |
2598 int v4; // ebx@1 | |
2599 int dmgToRecv; // qax@8 | |
2600 signed int v12; // ecx@20 | |
2601 int finalDmg; // edi@30 | |
2602 int pushDistance; // [sp+20h] [bp+Ch]@34 | |
2603 | |
2604 v4 = 0; | |
2605 if ( PID_TYPE(attacker_id) == OBJECT_Item) | |
2606 { | |
2607 v4 = pSpriteObjects[PID_ID(attacker_id)].field_60_distance_related_prolly_lod; | |
2608 attacker_id = pSpriteObjects[PID_ID(attacker_id)].spell_caster_pid; | |
2609 } | |
2610 if ( PID_TYPE(attacker_id) == OBJECT_Actor) | |
2611 { | |
2612 if ( !pActors[actor_id].IsNotAlive() ) | |
2613 { | |
2614 pActors[actor_id].uLastCharacterIDToHit = attacker_id; | |
2615 if ( pActors[actor_id].uAIState == Fleeing ) | |
2616 pActors[actor_id].uAttributes |= FACE_UNKNOW7; | |
2617 if ( pActors[PID_ID(attacker_id)]._4273BB_DoesHitOtherActor(&pActors[actor_id], v4, 0) ) | |
2618 { | |
2619 dmgToRecv = pActors[PID_ID(attacker_id)]._43B3E0_CalcDamage(a4); | |
2620 if ( pActors[PID_ID(attacker_id)].pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime > 0 ) | |
2621 { | |
2622 if ( pActors[PID_ID(attacker_id)].pActorBuffs[ACTOR_BUFF_SHRINK].uPower ) | |
2623 dmgToRecv = dmgToRecv / pActors[PID_ID(attacker_id)].pActorBuffs[ACTOR_BUFF_SHRINK].uPower; | |
2624 } | |
2625 if ( pActors[actor_id].pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0 ) | |
2626 dmgToRecv = 0; | |
2627 if ( a4 == 0 ) | |
2628 v12 = pActors[PID_ID(attacker_id)].pMonsterInfo.uAttack1Type; | |
2629 else if ( a4 == 1 ) | |
2630 { | |
2631 v12 = pActors[PID_ID(attacker_id)].pMonsterInfo.uAttack2Type; | |
2632 if ( SHIDWORD(pActors[actor_id].pActorBuffs[ACTOR_BUFF_SHIELD].uExpireTime) > 0 ) | |
2633 dmgToRecv = dmgToRecv / 2; | |
2634 } | |
2635 else if ( a4 == 2 ) | |
2636 v12 = pSpellStats->pInfos[pActors[actor_id].pMonsterInfo.uSpell1ID].uSchool; | |
2637 else if ( a4 == 3 ) | |
2638 v12 = pSpellStats->pInfos[pActors[actor_id].pMonsterInfo.uSpell2ID].uSchool; | |
2639 else if ( a4 == 4 ) | |
2640 v12 = pActors[PID_ID(attacker_id)].pMonsterInfo.field_3C_some_special_attack; | |
2641 else | |
2642 v12 = 4; | |
2643 finalDmg = pActors[actor_id].CalcMagicalDamageToActor((DAMAGE_TYPE)v12, dmgToRecv); | |
2644 pActors[actor_id].sCurrentHP -= finalDmg; | |
2645 if ( finalDmg ) | |
2646 { | |
2647 if ( pActors[actor_id].sCurrentHP > 0 ) | |
2648 Actor::AI_Stun(actor_id, attacker_id, 0); | |
2649 else | |
2650 Actor::Die(actor_id); | |
2651 Actor::AggroSurroundingPeasants(actor_id, 0); | |
2652 pushDistance = 20 * finalDmg / pActors[actor_id].pMonsterInfo.uHP; | |
2653 if ( pushDistance > 10 ) | |
2654 pushDistance = 10; | |
2655 if ( !MonsterStats::BelongsToSupertype(pActors[actor_id].pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) | |
2656 { | |
2657 pVelocity->x = (int32)fixpoint_mul(pushDistance, pVelocity->x); | |
2658 pVelocity->y = (int32)fixpoint_mul(pushDistance, pVelocity->y); | |
2659 pVelocity->z = (int32)fixpoint_mul(pushDistance, pVelocity->z); | |
2660 pActors[actor_id].vVelocity.x = 50 * LOWORD(pVelocity->x); | |
2661 pActors[actor_id].vVelocity.y = 50 * LOWORD(pVelocity->y); | |
2662 pActors[actor_id].vVelocity.z = 50 * LOWORD(pVelocity->z); | |
2663 } | |
2664 Actor::AddBloodsplatOnDamageOverlay(actor_id, 1, finalDmg); | |
2665 } | |
2666 else | |
2667 Actor::AI_Stun(actor_id, attacker_id, 0); | |
2668 return; | |
2669 } | |
2670 } | |
2671 } | |
2672 } | |
2673 | |
0 | 2674 //----- (0044FD29) -------------------------------------------------------- |
1895 | 2675 void Actor::SummonMinion( int summonerId ) |
0 | 2676 { |
1896
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2677 unsigned __int8 extraSummonLevel; // al@1 |
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2678 int summonMonsterBaseType; // esi@1 |
0 | 2679 int v5; // edx@2 |
2680 int v7; // edi@10 | |
2681 Actor *v8; // esi@10 | |
2682 MonsterInfo *v9; // ebx@10 | |
2683 MonsterDesc *v10; // edi@10 | |
2684 int v13; // ebx@10 | |
2685 int v15; // edi@10 | |
2686 int v17; // ebx@10 | |
1894 | 2687 unsigned int v19; // qax@10 |
0 | 2688 int result; // eax@13 |
1894 | 2689 unsigned int monsterId; // [sp+10h] [bp-18h]@8 |
0 | 2690 int v27; // [sp+18h] [bp-10h]@10 |
1894 | 2691 int actorSector; // [sp+1Ch] [bp-Ch]@8 |
0 | 2692 |
1895 | 2693 |
2694 actorSector = 0; | |
2695 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
2696 actorSector = pIndoor->GetSector(this->vPosition.x, this->vPosition.y, this->vPosition.z); | |
2697 | |
2698 v19 = this->uAlly; | |
2699 if ( !v19 ) | |
2700 { | |
2701 monsterId = this->pMonsterInfo.uID - 1; | |
2702 v19 = (uint)(monsterId * 0.33333334); | |
2703 } | |
2704 v27 = uCurrentlyLoadedLevelType == LEVEL_Outdoor ? 128 : 64; | |
2705 v13 = rand() % 2048; | |
2172 | 2706 v15 = fixpoint_mul(stru_5C6E00->Cos(v13), v27) + this->vPosition.x; |
2707 v17 = fixpoint_mul(stru_5C6E00->Sin(v13), v27) + this->vPosition.y; | |
1895 | 2708 |
2709 if (uCurrentlyLoadedLevelType != LEVEL_Outdoor) | |
2710 { | |
2711 result = pIndoor->GetSector(v15, v17, this->vPosition.z); | |
2712 if (result != actorSector) | |
2713 return; | |
2714 result = BLV_GetFloorLevel(v15, v17, v27, result, &monsterId); | |
2715 if (result != -30000) | |
2716 return; | |
2717 if (abs(result - v27) > 1024) | |
2718 return; | |
2719 } | |
2720 | |
1896
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2721 extraSummonLevel = this->pMonsterInfo.uSpecialAbilityDamageDiceRolls; |
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2722 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
|
2723 if ( extraSummonLevel ) |
0 | 2724 { |
1896
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2725 if ( extraSummonLevel >= 1u && extraSummonLevel <= 3u ) |
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2726 summonMonsterBaseType = summonMonsterBaseType + extraSummonLevel - 1; |
0 | 2727 } |
2728 else | |
2729 { | |
2730 v5 = rand() % 100; | |
1894 | 2731 if ( v5 >= 90 ) |
1896
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2732 summonMonsterBaseType += 2; |
1894 | 2733 else if ( v5 >= 60 ) |
1896
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2734 summonMonsterBaseType += 1; |
0 | 2735 } |
1896
b6a7410ff0ef
renaming dword_4DF380 to dword_4DF380_hostilityRanges, moved it to actor.cpp
Grumpy7
parents:
1895
diff
changeset
|
2736 v7 = summonMonsterBaseType - 1; |
0 | 2737 v8 = &pActors[uNumActors]; |
2738 v9 = &pMonsterStats->pInfos[v7 + 1]; | |
2739 pActors[uNumActors].Reset(); | |
2740 v10 = &pMonsterList->pMonsters[v7]; | |
2741 strcpy(v8->pActorName, v9->pName); | |
2742 v8->sCurrentHP = LOWORD(v9->uHP); | |
1894 | 2743 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
|
2744 v8->word_000086_some_monster_id = summonMonsterBaseType; |
0 | 2745 v8->uActorRadius = v10->uMonsterRadius; |
2746 v8->uActorHeight = v10->uMonsterHeight; | |
2747 v8->pMonsterInfo.uTreasureDiceRolls = 0; | |
2748 v8->pMonsterInfo.uTreasureType = 0; | |
2749 v8->pMonsterInfo.uExp = 0; | |
1895 | 2750 v8->uMovementSpeed = v10->uMovementSpeed; |
1894 | 2751 v8->vInitialPosition.z = this->vPosition.z; |
2752 v8->vPosition.z = this->vPosition.z; | |
0 | 2753 v8->vInitialPosition.x = v15; |
2754 v8->vPosition.x = v15; | |
2755 v8->vInitialPosition.y = v17; | |
2756 v8->vPosition.y = v17; | |
2757 v8->uTetherDistance = 256; | |
1894 | 2758 v8->uSectorID = actorSector; |
0 | 2759 v8->PrepareSprites(0); |
2760 v8->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
2761 v8->uAlly = v19; | |
2762 v8->uCurrentActionTime = 0; | |
1894 | 2763 v8->uGroup = this->uGroup; |
0 | 2764 v8->uAIState = Summoned; |
2765 v8->uCurrentActionLength = 256; | |
2766 v8->UpdateAnimation(); | |
1894 | 2767 |
2768 ++uNumActors; | |
2769 ++this->pMonsterInfo.uSpecialAbilityDamageDiceBonus; | |
2770 if ( this->uAttributes & 0x80000 ) | |
2251 | 2771 v8->uAttributes |= 0x80000; |
1895 | 2772 v8->uSummonerID = PID(OBJECT_Actor,summonerId); |
1894 | 2773 |
781 | 2774 } |
1295 | 2775 // 46DF1A: using guessed type int __fastcall 46DF1A_collide_against_actor(int, int); |
2776 //----- (0046DF1A) -------------------------------------------------------- | |
1897
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2777 bool Actor::_46DF1A_collide_against_actor( int a1, int a2 ) |
1295 | 2778 { |
2779 Actor *v2; // edi@1 | |
2780 unsigned __int16 v3; // ax@1 | |
2781 int v4; // esi@6 | |
2782 int v8; // ecx@14 | |
2783 int v9; // eax@14 | |
2784 int v10; // ebx@14 | |
2785 int v11; // esi@14 | |
2786 int v12; // ebx@15 | |
2787 int v13; // ebx@17 | |
2788 | |
2789 v2 = &pActors[a1]; | |
2790 v3 = v2->uAIState; | |
1897
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2791 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
|
2792 return 0; |
1295 | 2793 v4 = v2->uActorRadius; |
2794 if ( a2 ) | |
2795 v4 = a2; | |
1897
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2796 |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2797 if (stru_721530.sMaxX > v2->vPosition.x + v4 || |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2798 stru_721530.sMinX < v2->vPosition.x - v4 || |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2799 stru_721530.sMaxY > v2->vPosition.y + v4 || |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2800 stru_721530.sMinY < v2->vPosition.y - v4 || |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2801 stru_721530.sMaxZ > v2->vPosition.z + v2->uActorHeight || |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2802 stru_721530.sMinZ < v2->vPosition.z) |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2803 { |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2804 return false; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2805 } |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2806 v8 = v2->vPosition.x - stru_721530.normal.x; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2807 v9 = v2->vPosition.y - stru_721530.normal.y; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2808 v10 = stru_721530.prolly_normal_d + v4; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2809 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
|
2810 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
|
2811 if ( abs(v11) > v10 || v12 <= 0) |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2812 return false; |
2172 | 2813 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
|
2814 return false; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2815 |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2816 v13 = v12 - integer_sqrt(v10 * v10 - v11 * v11); |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2817 if ( v13 < 0 ) |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2818 v13 = 0; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2819 if ( v13 < stru_721530.field_7C ) |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2820 { |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2821 stru_721530.field_7C = v13; |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2822 stru_721530.uFaceID = PID(OBJECT_Actor,a1); |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2823 } |
436553b0603c
_46DF1A_collide_against_actor cleaned up, moved to Actor.h
Grumpy7
parents:
1896
diff
changeset
|
2824 return true; |
1295 | 2825 } |
2826 //----- (00401A91) -------------------------------------------------------- | |
1458 | 2827 void UpdateActorAI() |
1295 | 2828 { |
2829 signed int v4; // edi@10 | |
2830 signed int sDmg; // eax@14 | |
2831 Player *pPlayer; // ecx@21 | |
2832 Actor *pActor; // esi@34 | |
2833 unsigned __int16 v22; // ax@86 | |
2834 unsigned int v27; // ecx@123 | |
2835 unsigned int v28; // eax@123 | |
2836 int v33; // eax@144 | |
2837 int v34; // eax@147 | |
2838 char v35; // al@150 | |
2839 unsigned int v36; // edi@152 | |
2840 signed int v37; // eax@154 | |
2841 double v42; // st7@176 | |
2842 double v43; // st6@176 | |
1450 | 2843 int v45; // eax@192 |
1295 | 2844 unsigned __int8 v46; // cl@197 |
1907 | 2845 signed int v47; // st7@206 |
2846 uint v58; // st7@246 | |
1295 | 2847 unsigned int v65; // [sp-10h] [bp-C0h]@144 |
2848 int v70; // [sp-10h] [bp-C0h]@213 | |
2849 AIDirection v72; // [sp+0h] [bp-B0h]@246 | |
2850 AIDirection a3; // [sp+1Ch] [bp-94h]@129 | |
2851 int target_pid_type; // [sp+70h] [bp-40h]@83 | |
2852 signed int a1; // [sp+74h] [bp-3Ch]@129 | |
2853 int v78; // [sp+78h] [bp-38h]@79 | |
1906 | 2854 AIDirection* pDir; // [sp+7Ch] [bp-34h]@129 |
1907 | 2855 float radiusMultiplier; // [sp+98h] [bp-18h]@33 |
1295 | 2856 int v81; // [sp+9Ch] [bp-14h]@100 |
2857 signed int target_pid; // [sp+ACh] [bp-4h]@83 | |
2858 AIState uAIState; | |
1907 | 2859 uint v38; |
1295 | 2860 |
2861 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor) | |
2862 MakeActorAIList_ODM(); | |
2863 else | |
2864 MakeActorAIList_BLV(); | |
2865 | |
2866 if ( uCurrentlyLoadedLevelType != LEVEL_Indoor && pParty->armageddon_timer > 0 ) | |
2867 { | |
2868 if ( pParty->armageddon_timer > 417 ) | |
2869 pParty->armageddon_timer = 0; | |
2870 else | |
2871 { | |
2872 pParty->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (pParty->sRotationY + rand() % 16 - 8); | |
2873 pParty->sRotationX = pParty->sRotationX + rand() % 16 - 8; | |
2874 if ( pParty->sRotationX > 128) | |
2875 pParty->sRotationX = 128; | |
2876 else if ( pParty->sRotationX < -128 ) | |
2877 pParty->sRotationX = -128; | |
2878 | |
2879 pParty->uFlags |= 2u; | |
2880 pParty->armageddon_timer -= pMiscTimer->uTimeElapsed; | |
1906 | 2881 v4 = pParty->armageddonDamage + 50; |
1295 | 2882 if ( pParty->armageddon_timer <= 0 ) |
2883 { | |
2884 pParty->armageddon_timer = 0; | |
1906 | 2885 for(size_t i = 0; i < uNumActors; i++) |
1295 | 2886 { |
2887 pActor=&pActors[i]; | |
2888 if ( pActor->CanAct() ) | |
2889 { | |
2293
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
2890 sDmg = pActor->CalcMagicalDamageToActor((DAMAGE_TYPE)5, v4); |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
2891 pActor->sCurrentHP -= sDmg; |
1295 | 2892 if ( sDmg ) |
2893 { | |
2894 if ( pActor->sCurrentHP >= 0 ) | |
2895 Actor::AI_Stun(i, 4, 0); | |
2896 else | |
2897 { | |
2898 Actor::Die(i); | |
2899 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
|
2900 pParty->GivePartyExp(pMonsterStats->pInfos[pActor->pMonsterInfo.uID].uExp); |
1295 | 2901 } |
2902 } | |
2903 } | |
2904 } | |
2905 for(int i = 1; i <= 4; i++) | |
2906 { | |
2907 pPlayer = pPlayers[i]; | |
1906 | 2908 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
|
2909 pPlayer->ReceiveDamage(v4, DMGT_MAGICAL); |
1295 | 2910 } |
2911 } | |
1450 | 2912 if (pTurnEngine->pending_actions) |
2913 --pTurnEngine->pending_actions; | |
1295 | 2914 } |
2915 } | |
2916 | |
2917 if (pParty->bTurnBasedModeOn) | |
2918 { | |
1448 | 2919 pTurnEngine->AITurnBasedAction(); |
1295 | 2920 return; |
2921 } | |
2922 | |
2923 for (uint i = 0; i < uNumActors; ++i) | |
2924 { | |
2925 pActor = &pActors[i]; | |
2926 ai_near_actors_targets_pid[i] = OBJECT_Player; | |
2927 if (pActor->uAIState == Dead || pActor->uAIState == Removed || pActor->uAIState == Disabled || pActor->uAttributes & 0x0400) | |
2928 continue; | |
2929 | |
2930 if (!pActor->sCurrentHP && pActor->uAIState != Dying) | |
2931 Actor::Die(i); | |
2932 | |
2933 for (uint j = 0; j < 22; ++j) | |
2934 { | |
2935 if (j != 10) | |
1340 | 2936 pActor->pActorBuffs[j].IsBuffExpiredToTime(pParty->uTimePlayed); |
1295 | 2937 } |
1545 | 2938 if (pActor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime < 0) |
1295 | 2939 pActor->uActorHeight = pMonsterList->pMonsters[pActor->pMonsterInfo.uID - 1].uMonsterHeight; |
1545 | 2940 if (pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0) |
1295 | 2941 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; |
1918 | 2942 else if (pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime < 0) |
1295 | 2943 pActor->pMonsterInfo.uHostilityType = pMonsterStats->pInfos[pActor->pMonsterInfo.uID].uHostilityType; |
2944 | |
1545 | 2945 if (pActor->pActorBuffs[ACTOR_BUFF_PARALYZED].uExpireTime > 0 || |
2946 pActor->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0) | |
2947 continue; | |
1295 | 2948 |
1907 | 2949 pActor->pMonsterInfo.uRecoveryTime = max(pActor->pMonsterInfo.uRecoveryTime - pMiscTimer->uTimeElapsed, 0); |
1295 | 2950 |
2951 pActor->uCurrentActionTime += pMiscTimer->uTimeElapsed; | |
2952 if (pActor->uCurrentActionTime < pActor->uCurrentActionLength) | |
2953 continue; | |
2954 | |
2955 if (pActor->uAIState == Dying) | |
2956 pActor->uAIState = Dead; | |
2957 else | |
2958 { | |
2959 if (pActor->uAIState != Summoned) | |
2960 { | |
2961 Actor::AI_StandOrBored(i, OBJECT_Player, 256, nullptr); | |
2962 continue; | |
2963 } | |
2964 pActor->uAIState = Standing; | |
2965 } | |
2966 | |
2967 pActor->uCurrentActionTime = 0; | |
2968 pActor->uCurrentActionLength = 0; | |
2969 pActor->UpdateAnimation(); | |
2970 } | |
2971 | |
2972 | |
1907 | 2973 for(v78 = 0; v78 < ai_arrays_size; ++v78) |
1295 | 2974 { |
1907 | 2975 uint actor_id = ai_near_actors_ids[v78]; |
2976 assert(actor_id < uNumActors); | |
1295 | 2977 |
1907 | 2978 pActor = &pActors[actor_id]; |
2979 | |
2980 v47 = (signed int)(pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333); | |
2981 | |
2982 Actor::_SelectTarget(actor_id, &ai_near_actors_targets_pid[actor_id], true); | |
2983 if (pActor->pMonsterInfo.uHostilityType && !ai_near_actors_targets_pid[actor_id]) | |
2984 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
2985 target_pid = ai_near_actors_targets_pid[actor_id]; | |
2986 target_pid_type = PID_TYPE(target_pid); | |
2987 if ( target_pid_type == OBJECT_Actor) | |
2988 radiusMultiplier = 0.5; | |
2989 else | |
2990 radiusMultiplier = 1.0; | |
2991 v22 = pActor->uAIState; | |
2992 if ( v22 == Dying || v22 == Dead || v22 == Removed || v22 == Disabled || v22 == Summoned) | |
2993 continue; | |
2994 if ( !pActor->sCurrentHP ) | |
2995 Actor::Die(actor_id); | |
2996 for(int i=0;i<22;i++) | |
2997 { | |
2998 if ( i != 10 ) | |
2999 pActor->pActorBuffs[i].IsBuffExpiredToTime(pParty->uTimePlayed); | |
3000 } | |
3001 if ( pActor->pActorBuffs[ACTOR_BUFF_SHRINK].uExpireTime < 0 ) | |
3002 pActor->uActorHeight = pMonsterList->pMonsters[pActor->pMonsterInfo.uID - 1].uMonsterHeight; | |
3003 if ( pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime > 0 ) | |
3004 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
3005 // not sure | |
3006 else if ( pActor->pActorBuffs[ACTOR_BUFF_CHARM].uExpireTime < 0 ) | |
3007 pActor->pMonsterInfo.uHostilityType = pMonsterStats->pInfos[pActor->pMonsterInfo.uID].uHostilityType; | |
1948
7fd4bfa175fd
pActorBuffs[2] to pActorBuffs[ACTOR_BUFF_SUMMONED]
Grumpy7
parents:
1947
diff
changeset
|
3008 if ( pActor->pActorBuffs[ACTOR_BUFF_SUMMONED].uExpireTime < 0 ) |
1907 | 3009 { |
3010 pActor->uAIState = Removed; | |
3011 continue; | |
3012 } | |
1945 | 3013 if ( (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0 |
1946
aa3ca49a10f5
pActorBuffs[6] to pActorBuffs[ACTOR_BUFF_PARALYZED]
Grumpy7
parents:
1945
diff
changeset
|
3014 || (signed __int64)pActor->pActorBuffs[ACTOR_BUFF_PARALYZED].uExpireTime > 0) |
1907 | 3015 { |
3016 continue; | |
3017 } | |
3018 v27 = pMiscTimer->uTimeElapsed; | |
3019 v28 = pActor->pMonsterInfo.uRecoveryTime; | |
3020 pActor->uCurrentActionTime += pMiscTimer->uTimeElapsed; | |
3021 if ( (signed int)v28 > 0 ) | |
3022 pActor->pMonsterInfo.uRecoveryTime = v28 - v27; | |
3023 if ( pActor->pMonsterInfo.uRecoveryTime < 0 ) | |
3024 pActor->pMonsterInfo.uRecoveryTime = 0; | |
3025 if ( !(pActor->uAttributes & 0x8000) ) | |
3026 pActor->uAttributes |= 0x8000; | |
3027 a1 = PID(OBJECT_Actor,actor_id); | |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
3028 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
|
3029 pDir = &a3; |
1907 | 3030 uAIState = pActor->uAIState; |
3031 if ( pActor->pMonsterInfo.uHostilityType == MonsterInfo::Hostility_Friendly | |
3032 || (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 | |
3033 || radiusMultiplier * 307.2 < pDir->uDistance | |
3034 || uAIState != Pursuing && uAIState != Standing && uAIState != Tethered && uAIState != Fidgeting | |
3035 && !pActor->pMonsterInfo.uMissleAttack1Type || uAIState != Stunned ) | |
3036 { | |
3037 if ( (signed int)pActor->uCurrentActionTime < pActor->uCurrentActionLength ) | |
1295 | 3038 continue; |
1907 | 3039 else if ( pActor->uAIState == AttackingMelee ) |
3040 { | |
1972
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
3041 v35 = pActor->special_ability_use_check(actor_id); |
2203 | 3042 AttackerInfo.Add(a1, 5120, pActor->vPosition.x, pActor->vPosition.y, pActor->vPosition.z + ((signed int)pActor->uActorHeight >> 1), v35, 1 ); |
1907 | 3043 } |
3044 else if ( pActor->uAIState == AttackingRanged1 ) | |
3045 { | |
3046 v34 = pActor->pMonsterInfo.uMissleAttack1Type; | |
3047 Actor::AI_RangedAttack(actor_id, pDir, v34, 0); | |
3048 } | |
3049 else if ( pActor->uAIState == AttackingRanged2 ) | |
1295 | 3050 { |
1907 | 3051 v34 = pActor->pMonsterInfo.uMissleAttack2Type; |
3052 Actor::AI_RangedAttack(actor_id, pDir, v34, 1); | |
3053 } | |
3054 else if ( pActor->uAIState == AttackingRanged3 ) | |
3055 { | |
3056 v65 = pActor->pMonsterInfo.uSpellSkillAndMastery1; | |
3057 v33 = pActor->pMonsterInfo.uSpell1ID; | |
3058 Actor::AI_SpellAttack(actor_id, pDir, v33, 2, v65); | |
3059 } | |
3060 else if ( pActor->uAIState == AttackingRanged4 ) | |
3061 { | |
3062 v65 = pActor->pMonsterInfo.uSpellSkillAndMastery2; | |
3063 v33 = pActor->pMonsterInfo.uSpell2ID; | |
3064 Actor::AI_SpellAttack(actor_id, pDir, v33, 3, v65); | |
3065 } | |
3066 } | |
3067 | |
3068 v36 = pDir->uDistance; | |
3069 if ( pActor->pMonsterInfo.uHostilityType == MonsterInfo::Hostility_Friendly) | |
3070 { | |
3071 if ( target_pid_type == OBJECT_Actor ) | |
3072 { | |
3073 v36 = pDir->uDistance; | |
3074 v37 =pFactionTable->relations[(pActor->pMonsterInfo.uID-1) / 3 + 1][(pActors[PID_ID(target_pid)].pMonsterInfo.uID - 1) / 3 + 1]; | |
1295 | 3075 } |
3076 else | |
1907 | 3077 v37 = 4; |
2203 | 3078 v38 = 0; |
1907 | 3079 if ( v37 == 2 ) |
3080 v38 = 1024; | |
3081 else if ( v37 == 3 ) | |
3082 v38 = 2560; | |
3083 else if ( v37 == 4 ) | |
3084 v38 = 5120; | |
3085 if ( v37 >= 1 && v37 <= 4 && v36 < v38 || v37 == 1 ) | |
3086 pActor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
3087 } | |
3088 | |
1950 | 3089 if (pActor->pActorBuffs[ACTOR_BUFF_AFRAID].uExpireTime > 0) |
1907 | 3090 { |
3091 if ( (signed int)v36 >= 10240 ) | |
3092 Actor::AI_RandomMove(actor_id, target_pid, 1024, 0); | |
3093 else | |
3094 { | |
3095 //peasents after attacked | |
3096 //guard after attacked | |
3097 Actor::AI_Flee(actor_id, target_pid, 0, pDir); | |
3098 } | |
3099 continue; | |
3100 } | |
3101 | |
3102 if ( pActor->pMonsterInfo.uHostilityType == MonsterInfo::Hostility_Long && target_pid ) | |
3103 { | |
3104 if ( pActor->pMonsterInfo.uAIType == 1 ) | |
3105 { | |
3106 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) | |
3107 Actor::AI_Stand(actor_id, target_pid, (uint)(pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333), pDir); | |
1295 | 3108 else |
3109 { | |
1907 | 3110 Actor::AI_Flee(actor_id, target_pid, 0, pDir); |
3111 continue; | |
1295 | 3112 } |
1907 | 3113 |
1295 | 3114 } |
1907 | 3115 if ( !(pActor->uAttributes & 0x020000) ) |
1295 | 3116 { |
1907 | 3117 if ( pActor->pMonsterInfo.uAIType == 2 || pActor->pMonsterInfo.uAIType == 3) |
1295 | 3118 { |
1907 | 3119 if ( pActor->pMonsterInfo.uAIType == 2 ) |
3120 v43 = (double)(signed int)pActor->pMonsterInfo.uHP * 0.2; | |
3121 if ( pActor->pMonsterInfo.uAIType == 3 ) | |
3122 v43 = (double)(signed int)pActor->pMonsterInfo.uHP * 0.1; | |
3123 v42 = (double)pActor->sCurrentHP; | |
3124 if ( v43 > v42 && (signed int)v36 < 10240 ) | |
1295 | 3125 { |
1906 | 3126 Actor::AI_Flee(actor_id, target_pid, 0, pDir); |
1295 | 3127 continue; |
3128 } | |
3129 } | |
1907 | 3130 } |
1295 | 3131 |
1907 | 3132 v81 = v36 - pActor->uActorRadius; |
3133 if ( target_pid_type == OBJECT_Actor ) | |
3134 v81 -= pActors[PID_ID(target_pid)].uActorRadius; | |
3135 if ( v81 < 0 ) | |
3136 v81 = 0; | |
3137 rand(); | |
3138 pActor->uAttributes &= 0xFFFBFFFF; | |
3139 if ( v81 < 5120 ) | |
3140 { | |
1972
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
3141 v45 = pActor->special_ability_use_check(actor_id); |
1907 | 3142 if ( v45 == 0 ) |
1295 | 3143 { |
1907 | 3144 if ( pActor->pMonsterInfo.uMissleAttack1Type ) |
1295 | 3145 { |
1907 | 3146 if ( (signed int)pActor->pMonsterInfo.uRecoveryTime <= 0 ) |
3147 Actor::AI_MissileAttack1(actor_id, target_pid, pDir); | |
3148 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) | |
3149 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
1295 | 3150 else |
3151 { | |
1907 | 3152 if ( radiusMultiplier * 307.2 > (double)v81 ) |
1906 | 3153 Actor::AI_Stand(actor_id, target_pid, v47, pDir); |
1295 | 3154 else |
1906 | 3155 Actor::AI_Pursue1(actor_id, target_pid, actor_id, v47, pDir); |
1295 | 3156 } |
1907 | 3157 } |
3158 else | |
3159 { | |
3160 if ( (double)v81 >= radiusMultiplier * 307.2 ) | |
3161 { | |
3162 if (pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY) | |
3163 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
2203 | 3164 else if ( v81 >= 1024 )//monsters |
1907 | 3165 Actor::AI_Pursue3(actor_id, target_pid, 0, pDir); |
3166 else | |
3167 { | |
3168 v70 = (signed int)(radiusMultiplier * 307.2); | |
3169 //monsters | |
3170 //guard after player runs away | |
3171 // follow player | |
3172 Actor::AI_Pursue2(actor_id, target_pid, 0, pDir, v70); | |
3173 } | |
3174 } | |
3175 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) | |
3176 { | |
3177 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
3178 } | |
1295 | 3179 else |
3180 { | |
1907 | 3181 //monsters |
3182 Actor::AI_MeleeAttack(actor_id, target_pid, pDir); | |
1295 | 3183 } |
3184 } | |
1907 | 3185 continue; |
1295 | 3186 } |
1907 | 3187 else if ( v45 == 2 || v45 == 3 ) |
1295 | 3188 { |
1907 | 3189 if ( v45 == 2 ) |
3190 v46 = pActor->pMonsterInfo.uSpell1ID; | |
3191 else | |
3192 v46 = pActor->pMonsterInfo.uSpell2ID; | |
3193 if ( v46 ) | |
1295 | 3194 { |
1907 | 3195 if ( (signed int)pActor->pMonsterInfo.uRecoveryTime <= 0 ) |
1295 | 3196 { |
1907 | 3197 if ( v45 == 2 ) |
3198 Actor::AI_SpellAttack1(actor_id, target_pid, pDir); | |
3199 else | |
3200 Actor::AI_SpellAttack2(actor_id, target_pid, pDir); | |
3201 } | |
3202 else if ( radiusMultiplier * 307.2 > (double)v81 || pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) | |
1906 | 3203 Actor::AI_Stand(actor_id, target_pid, v47, pDir); |
1295 | 3204 else |
1907 | 3205 Actor::AI_Pursue1(actor_id, target_pid, actor_id, v47, pDir); |
1295 | 3206 } |
3207 else | |
1907 | 3208 { |
3209 if ( (double)v81 >= radiusMultiplier * 307.2 ) | |
3210 { | |
3211 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) | |
3212 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
3213 else if ( v81 >= 1024 ) | |
3214 Actor::AI_Pursue3(actor_id, target_pid, 256, pDir); | |
3215 else | |
3216 { | |
3217 v70 = (signed int)(radiusMultiplier * 307.2); | |
3218 Actor::AI_Pursue2(actor_id, target_pid, 0, pDir, v70); | |
3219 } | |
3220 } | |
3221 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) | |
3222 { | |
3223 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
3224 } | |
3225 else | |
3226 { | |
3227 Actor::AI_MeleeAttack(actor_id, target_pid, pDir); | |
3228 } | |
1295 | 3229 } |
1907 | 3230 continue; |
1295 | 3231 } |
1907 | 3232 } |
3233 } | |
3234 | |
3235 if ( pActor->pMonsterInfo.uHostilityType != MonsterInfo::Hostility_Long || !target_pid || v81 >= 5120 || v45 != 1 ) | |
3236 { | |
3237 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_SHORT ) | |
3238 Actor::AI_RandomMove(actor_id, 4, 1024, 0); | |
2281 | 3239 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_MEDIUM ) |
1907 | 3240 Actor::AI_RandomMove(actor_id, 4, 2560, 0); |
2281 | 3241 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_LONG ) |
1907 | 3242 Actor::AI_RandomMove(actor_id, 4, 5120, 0); |
2281 | 3243 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_FREE ) |
1907 | 3244 Actor::AI_RandomMove(actor_id, 4, 10240, 0); |
3245 else if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) | |
3246 { | |
2281 | 3247 Actor::GetDirectionInfo(a1, 4, &v72, 0); |
1907 | 3248 v58 = (uint)(pActor->pMonsterInfo.uRecoveryTime * 2.133333333333333); |
1910
8d3723ca71e6
Actor::GetDirectionInfo changed the signature to a less confusing one
Grumpy7
parents:
1909
diff
changeset
|
3249 Actor::AI_Stand(actor_id, 4, v58, &v72); |
1907 | 3250 } |
3251 } | |
3252 else if ( !pActor->pMonsterInfo.uMissleAttack2Type ) | |
3253 { | |
2203 | 3254 if ( (double)v81 >= radiusMultiplier * 307.2 ) |
3255 { | |
1907 | 3256 if ( pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) |
3257 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
2203 | 3258 else if ( v81 >= 1024 ) |
3259 Actor::AI_Pursue3(actor_id, target_pid, 256, pDir); | |
3260 else | |
3261 { | |
3262 v70 = (int)(radiusMultiplier * 307.2); | |
3263 Actor::AI_Pursue2(actor_id, target_pid, 0, pDir, v70); | |
3264 } | |
3265 } | |
1295 | 3266 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) |
1907 | 3267 Actor::AI_Stand(actor_id, target_pid, v47, pDir); |
1295 | 3268 else |
1907 | 3269 Actor::AI_MeleeAttack(actor_id, target_pid, pDir); |
1295 | 3270 } |
1907 | 3271 else if ( (signed int)pActor->pMonsterInfo.uRecoveryTime > 0 ) |
3272 { | |
3273 if ( radiusMultiplier * 307.2 > (double)v81 || pActor->pMonsterInfo.uMovementType == MONSTER_MOVEMENT_TYPE_STAIONARY ) | |
3274 Actor::AI_Stand(actor_id, target_pid, v47, pDir); | |
3275 else | |
3276 Actor::AI_Pursue1(actor_id, target_pid, actor_id, v47, pDir); | |
3277 } | |
3278 else | |
3279 Actor::AI_MissileAttack2(actor_id, target_pid, pDir); | |
1295 | 3280 } |
3281 } | |
3282 //----- (0044665D) -------------------------------------------------------- | |
3283 // uType: 0 -> any monster | |
3284 // 1 -> uParam is GroupID | |
3285 // 2 -> uParam is MonsterID | |
3286 // 3 -> uParam is ActorID | |
3287 // uNumAlive: 0 -> all must be alive | |
3288 int __fastcall IsActorAlive(unsigned int uType, unsigned int uParam, unsigned int uNumAlive) | |
3289 { | |
3290 unsigned int uAliveActors; // eax@6 | |
3291 unsigned int uTotalActors; // [sp+0h] [bp-4h]@1 | |
3292 | |
3293 uTotalActors = 0; | |
3294 if ( uType ) | |
3295 { | |
3296 if ( uType == 1 ) | |
3297 uAliveActors = SearchActorByGroup(&uTotalActors, uParam); | |
3298 else | |
3299 { | |
3300 if ( uType == 2 ) | |
3301 uAliveActors = SearchActorByMonsterID(&uTotalActors, uParam); | |
3302 else | |
3303 { | |
3304 if ( uType != 3 ) | |
3305 return 0; | |
3306 uAliveActors = SearchActorByID(&uTotalActors, uParam); | |
3307 } | |
3308 } | |
3309 } | |
3310 else | |
3311 uAliveActors = SearchAliveActors(&uTotalActors); | |
1545 | 3312 |
3313 if (uNumAlive) | |
3314 return uAliveActors >= uNumAlive; | |
1295 | 3315 else |
1545 | 3316 return uTotalActors == uAliveActors; |
1297 | 3317 } |
3318 //----- (00408B54) -------------------------------------------------------- | |
1458 | 3319 unsigned int SearchActorByID(unsigned int *pTotalActors, unsigned int a2) |
1297 | 3320 { |
3321 int v4; // eax@1 | |
3322 unsigned int v5; // ebx@1 | |
3323 | |
3324 v4 = GetAlertStatus(); | |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3325 *pTotalActors = 0; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3326 if ( (pActors[a2].uAttributes & 0x100000) == GetAlertStatus() ) |
1297 | 3327 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3328 *pTotalActors = 1; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3329 if ( pActors[a2].IsNotAlive() == 1 ) |
1297 | 3330 v5 = 1; |
3331 } | |
3332 return v5; | |
3333 } | |
3334 //----- (00408AE7) -------------------------------------------------------- | |
1458 | 3335 unsigned int SearchActorByGroup(unsigned int *pTotalActors, unsigned int uGroup) |
1297 | 3336 { |
3337 int v8; // [sp+Ch] [bp-8h]@1 | |
3338 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
|
3339 Actor* v4; |
1297 | 3340 |
3341 v8 = GetAlertStatus(); | |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3342 *pTotalActors = 0; |
1297 | 3343 v9 = 0; |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3344 for ( uint i = 0; i < uNumActors; i++) |
1297 | 3345 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3346 v4 = &pActors[i]; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3347 if ( (v4->uAttributes & 0x100000) == v8 && v4->uGroup == uGroup) |
1297 | 3348 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3349 ++*pTotalActors; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3350 if ( v4->IsNotAlive() == 1 ) |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3351 ++v9; |
1297 | 3352 } |
3353 } | |
3354 return v9; | |
3355 } | |
3356 //----- (00408A7E) -------------------------------------------------------- | |
1458 | 3357 unsigned int SearchActorByMonsterID(unsigned int *pTotalActors, int uMonsterID) |
1297 | 3358 { |
3359 Actor *v4; // edi@2 | |
3360 int v8; // [sp+Ch] [bp-8h]@1 | |
3361 unsigned int v9; // [sp+10h] [bp-4h]@1 | |
3362 | |
3363 v8 = GetAlertStatus(); | |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3364 *pTotalActors = 0; |
1297 | 3365 v9 = 0; |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3366 for ( uint i = 0; i < uNumActors; i++) |
1297 | 3367 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3368 v4 = &pActors[i]; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3369 if ( (v4->uAttributes & 0x100000) == v8 && v4->pMonsterInfo.field_33 == uMonsterID) |
1297 | 3370 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3371 ++*pTotalActors; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3372 if ( v4->IsNotAlive() == 1 ) |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3373 ++v9; |
1297 | 3374 } |
3375 } | |
3376 return v9; | |
3377 } | |
3378 //----- (00408A27) -------------------------------------------------------- | |
1458 | 3379 unsigned int SearchAliveActors(unsigned int *pTotalActors) |
1297 | 3380 { |
3381 int v2; // eax@1 | |
3382 unsigned int v3; // ebp@1 | |
3383 Actor *v5; // edi@2 | |
3384 | |
3385 v2 = GetAlertStatus(); | |
3386 v3 = 0; | |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3387 *pTotalActors = 0; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3388 for ( uint i = 0; i < uNumActors; i++) |
1297 | 3389 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3390 v5 = &pActors[i]; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3391 if ( (v5->uAttributes & 0x100000) == v2 ) |
1297 | 3392 { |
1927
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3393 ++*pTotalActors; |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3394 if ( v5->IsNotAlive() == 1 ) |
50d00b884765
SearchActorByID, SearchActorByGroup, SearchActorByMonsterID, SearchAliveActors changed if-do-whiles to fors
Grumpy7
parents:
1918
diff
changeset
|
3395 ++v3; |
1297 | 3396 } |
3397 } | |
3398 return v3; | |
3399 } | |
3400 //----- (00408768) -------------------------------------------------------- | |
3401 void InitializeActors() | |
3402 { | |
3403 signed int v5; // [sp+Ch] [bp-10h]@1 | |
3404 signed int v6; // [sp+10h] [bp-Ch]@1 | |
3405 signed int v7; // [sp+14h] [bp-8h]@1 | |
3406 signed int v8; // [sp+18h] [bp-4h]@1 | |
3407 | |
3408 v8 = 0; | |
3409 v6 = 0; | |
3410 v7 = 0; | |
3411 v5 = 0; | |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1461
diff
changeset
|
3412 if ( !_stricmp(pCurrentMapName, "d25.blv") ) |
1297 | 3413 v8 = 1; |
1477
7ef4b64f6329
* LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents:
1461
diff
changeset
|
3414 if ( !_stricmp(pCurrentMapName, "d26.blv") ) |
1297 | 3415 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
|
3416 if (pParty->IsPartyGood()) |
1297 | 3417 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
|
3418 if (pParty->IsPartyEvil()) |
1297 | 3419 v5 = 1; |
3420 | |
3421 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 | |
3422 for (uint i = 0; i < uNumActors; ++i) | |
3423 { | |
1980 | 3424 Actor* actor = &pActors[i]; |
1297 | 3425 |
3426 if (actor->CanAct() || actor->uAIState == Disabled) | |
3427 { | |
3428 actor->vPosition.x = actor->vInitialPosition.x; | |
3429 actor->vPosition.y = actor->vInitialPosition.y; | |
3430 actor->vPosition.z = actor->vInitialPosition.z; | |
3431 actor->sCurrentHP = actor->pMonsterInfo.uHP; | |
3432 if (actor->uAIState != Disabled) | |
3433 { | |
3434 Actor::AI_Stand(i, ai_near_actors_targets_pid[i], actor->pMonsterInfo.uRecoveryTime, 0); | |
3435 } | |
3436 } | |
3437 | |
3438 actor->pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Friendly; | |
3439 | |
3440 if (!v8 || v7) | |
3441 if (!v6 || v5) | |
3442 if (actor->IsPeasant()) | |
2203 | 3443 actor->uAttributes &= 0xF70000; |
1297 | 3444 |
2203 | 3445 actor->uAttributes &= 0x7F0000; |
3446 if (actor->uAttributes & 0x400000) | |
1882
b3191dddab9f
Actor::AI_Stun cleaned up, commented out the body of _4031C1_update_job
Grumpy7
parents:
1881
diff
changeset
|
3447 Actor::_4031C1_update_job_never_gets_called(i, pParty->uCurrentHour, 1); |
1297 | 3448 } |
3449 } | |
3450 //----- (00439474) -------------------------------------------------------- | |
3451 void DamageMonsterFromParty(signed int a1, unsigned int uActorID_Monster, Vec3_int_ *pVelocity) | |
3452 { | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3453 SpriteObject *projectileSprite; // ebx@1 |
1297 | 3454 Actor *pMonster; // esi@7 |
3455 unsigned __int16 v16; // cx@25 | |
3456 int v33; // eax@100 | |
3457 int v40; // ebx@107 | |
1935 | 3458 int extraRecoveryTime; // qax@125 |
1297 | 3459 unsigned __int16 v43; // ax@132 |
3460 unsigned __int16 v45; // ax@132 | |
3461 unsigned __int64 v46; // [sp+Ch] [bp-60h]@6 | |
3462 char *pPlayerName; // [sp+18h] [bp-54h]@12 | |
3463 char *pMonsterName; // [sp+1Ch] [bp-50h]@6 | |
3464 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
|
3465 bool IsAdditionalDamagePossible; // [sp+50h] [bp-1Ch]@1 |
1297 | 3466 int v61; // [sp+58h] [bp-14h]@1 |
1934 | 3467 bool isLifeStealing; // [sp+5Ch] [bp-10h]@1 |
1297 | 3468 int uDamageAmount; // [sp+60h] [bp-Ch]@1 |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3469 DAMAGE_TYPE attackElement; // [sp+64h] [bp-8h]@27 |
1297 | 3470 |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3471 projectileSprite = 0; |
1297 | 3472 uDamageAmount = 0; |
3473 a4 = 0; | |
3474 v61 = 0; | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3475 IsAdditionalDamagePossible = false; |
1934 | 3476 isLifeStealing = 0; |
1297 | 3477 if ( PID_TYPE(a1) == OBJECT_Item) |
3478 { | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3479 projectileSprite = &pSpriteObjects[PID_ID(a1)]; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3480 v61 = projectileSprite->field_60_distance_related_prolly_lod; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3481 a1 = projectileSprite->spell_caster_pid; |
1297 | 3482 } |
3483 if (PID_TYPE(a1) != OBJECT_Player) | |
3484 return; | |
3485 | |
3486 assert(PID_ID(abs(a1)) < 4); | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3487 Player* player = &pParty->pPlayers[PID_ID(a1)]; |
1934 | 3488 pMonster = &pActors[uActorID_Monster]; |
1297 | 3489 if (pMonster->IsNotAlive()) |
3490 return; | |
3491 | |
1545 | 3492 pMonster->uAttributes |= 0xC000; |
1297 | 3493 if ( pMonster->uAIState == Fleeing ) |
3494 pMonster->uAttributes |= 0x20000u; | |
3495 bool hit_will_stun = false, | |
3496 hit_will_paralyze = false; | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3497 if ( !projectileSprite ) |
1297 | 3498 { |
3499 int main_hand_idx = player->pEquipment.uMainHand; | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3500 IsAdditionalDamagePossible = true; |
1989 | 3501 if ( player->HasItemEquipped(EQUIP_TWO_HANDED) ) |
1297 | 3502 { |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3503 uint main_hand_skill = player->GetMainHandItem()->GetPlayerSkillType(); |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3504 uint main_hand_mastery = SkillToMastery(player->pActiveSkills[main_hand_skill]); |
1297 | 3505 switch (main_hand_skill) |
3506 { | |
3507 case PLAYER_SKILL_STAFF: | |
3508 if (main_hand_mastery >= 3) | |
3509 { | |
3510 if (rand() % 100 < (player->GetActualSkillLevel(PLAYER_SKILL_STAFF) & 0x3F)) // stun chance when mastery >= 3 | |
3511 hit_will_stun = true; | |
3512 } | |
3513 break; | |
3514 | |
3515 case PLAYER_SKILL_MACE: | |
3516 if (main_hand_mastery >= 3) | |
3517 { | |
3518 if (rand() % 100 < (player->GetActualSkillLevel(PLAYER_SKILL_MACE) & 0x3F)) | |
3519 hit_will_stun = true; | |
3520 } | |
3521 if (main_hand_mastery >= 4) | |
3522 { | |
3523 if (rand() % 100 < (player->GetActualSkillLevel(PLAYER_SKILL_MACE) & 0x3F)) | |
3524 hit_will_paralyze = true; | |
3525 } | |
3526 break; | |
3527 } | |
3528 } | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3529 attackElement = DMGT_PHISYCAL; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3530 uDamageAmount = player->CalculateMeleeDamageTo(false, false, pMonster->pMonsterInfo.uID); |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3531 if ( !player->PlayerHitOrMiss(pMonster, v61, a4) ) |
1928 | 3532 { |
3533 player->PlaySound(SPEECH_52, 0); | |
3534 return; | |
3535 } | |
1297 | 3536 } |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3537 else |
1297 | 3538 { |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3539 v61 = projectileSprite->field_60_distance_related_prolly_lod; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3540 if ( projectileSprite->spell_id != SPELL_DARK_SOULDRINKER ) |
1297 | 3541 { |
2235
6ab7d7c112bb
adding int_get_vector_length calls where the calls were inlined
Grumpy7
parents:
2228
diff
changeset
|
3542 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
|
3543 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
|
3544 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
|
3545 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
|
3546 |
2203 | 3547 if ( v61 >= 5120 && !(pMonster->uAttributes & 0x400) ) |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3548 return; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3549 else if ( v61 >= 2560 ) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3550 v61 = 2; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3551 else |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3552 v61 = 1; |
1297 | 3553 } |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3554 |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3555 switch (projectileSprite->spell_id) |
1297 | 3556 { |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3557 case SPELL_LASER_PROJECTILE: |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3558 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
|
3559 v61 = 1; |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3560 if ( SkillToMastery(v16) >= 3 ) |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3561 a4 = player->pActiveSkills[PLAYER_SKILL_BLASTER] & 0x3F; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3562 attackElement = DMGT_PHISYCAL; |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3563 uDamageAmount = player->CalculateMeleeDamageTo(true, true, 0); |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3564 if ( !player->PlayerHitOrMiss(pMonster, v61, a4) ) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3565 { |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3566 player->PlaySound(SPEECH_52, 0); |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3567 return; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3568 } |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3569 break; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3570 case SPELL_101: |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3571 attackElement = DMGT_FIRE; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3572 uDamageAmount = player->CalculateRangedDamageTo(0); |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3573 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
|
3574 uDamageAmount >>= 1; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3575 IsAdditionalDamagePossible = true; |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3576 if ( !player->PlayerHitOrMiss(pMonster, v61, a4) ) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3577 { |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3578 player->PlaySound(SPEECH_52, 0); |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3579 return; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3580 } |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3581 break; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3582 case SPELL_EARTH_BLADES: |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3583 a4 = 5 * projectileSprite->spell_level; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3584 attackElement = (DAMAGE_TYPE)player->GetSpellSchool(SPELL_EARTH_BLADES); |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3585 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
|
3586 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
|
3587 uDamageAmount >>= 1; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3588 IsAdditionalDamagePossible = false; |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3589 if ( !player->PlayerHitOrMiss( pMonster, v61, a4) ) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3590 { |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3591 player->PlaySound(SPEECH_52, 0); |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3592 return; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3593 } |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3594 break; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3595 case SPELL_EARTH_STUN: |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3596 uDamageAmount = 0; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3597 attackElement = DMGT_PHISYCAL; |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3598 hit_will_stun = 1; |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3599 if ( !player->PlayerHitOrMiss( pMonster, v61, a4) ) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3600 { |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3601 player->PlaySound(SPEECH_52, 0); |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3602 return; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3603 } |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3604 break; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3605 case SPELL_BOW_ARROW: |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3606 attackElement = DMGT_PHISYCAL; |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3607 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
|
3608 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
|
3609 uDamageAmount /= 2; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3610 IsAdditionalDamagePossible = true; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3611 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
|
3612 { |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3613 attackElement = DMGT_FIRE; |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3614 } |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
3615 else if ( !player->PlayerHitOrMiss( pMonster, v61, a4) ) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3616 { |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3617 player->PlaySound(SPEECH_52, 0); |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3618 return; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3619 } |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3620 break; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3621 |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3622 default: |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3623 attackElement = (DAMAGE_TYPE)player->GetSpellSchool(projectileSprite->spell_id); |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3624 IsAdditionalDamagePossible = false; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3625 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
|
3626 break; |
1297 | 3627 } |
3628 } | |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3629 |
1362
d6cf8ead9242
Condition checking functions slightly renamed, some final changes in Player::SetCondition
Grumpy7
parents:
1359
diff
changeset
|
3630 if (player->IsWeak()) |
1929
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3631 uDamageAmount /= 2; |
4cce1e24b7e7
DamageMonsterFromParty moved initial damage source logic to an if and a switch
Grumpy7
parents:
1928
diff
changeset
|
3632 if ( pMonster->pActorBuffs[ACTOR_BUFF_STONED].uExpireTime > 0 ) |
1297 | 3633 uDamageAmount = 0; |
2293
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
3634 v61 = pMonster->CalcMagicalDamageToActor(attackElement, uDamageAmount); |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3635 if ( !projectileSprite && player->IsUnarmed() && player->pPlayerBuffs[PLAYER_BUFF_HAMMERHANDS].uExpireTime > 0 ) |
1297 | 3636 { |
2293
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
3637 v61 += pMonster->CalcMagicalDamageToActor((DAMAGE_TYPE)8, player->pPlayerBuffs[PLAYER_BUFF_HAMMERHANDS].uPower); |
1297 | 3638 } |
3639 uDamageAmount = v61; | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3640 if ( IsAdditionalDamagePossible ) |
1297 | 3641 { |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3642 if ( projectileSprite ) |
1297 | 3643 { |
1934 | 3644 a4 = projectileSprite->stru_24._439DF3_get_additional_damage((int*)&attackElement, &isLifeStealing); |
3645 if ( isLifeStealing && pMonster->sCurrentHP > 0 ) | |
1297 | 3646 { |
3647 player->sHealth += v61 / 5; | |
3648 if ( player->sHealth > player->GetMaxHealth() ) | |
3649 player->sHealth = player->GetMaxHealth(); | |
3650 } | |
2293
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
3651 uDamageAmount += pMonster->CalcMagicalDamageToActor(attackElement, a4); |
1297 | 3652 } |
3653 else | |
3654 { | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3655 for (int i = 0; i < 2; i++) |
1297 | 3656 { |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3657 if ( player->HasItemEquipped((ITEM_EQUIP_TYPE)i) ) |
1297 | 3658 { |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3659 ItemGen* item; |
1992
1e5f097e1c2d
fixing incorrect item checked when dealing damage to monsters
Grumpy7
parents:
1989
diff
changeset
|
3660 if (i == 0) |
1e5f097e1c2d
fixing incorrect item checked when dealing damage to monsters
Grumpy7
parents:
1989
diff
changeset
|
3661 item = player->GetOffHandItem(); |
1e5f097e1c2d
fixing incorrect item checked when dealing damage to monsters
Grumpy7
parents:
1989
diff
changeset
|
3662 else |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3663 item = player->GetMainHandItem(); |
1934 | 3664 a4 = item->_439DF3_get_additional_damage((int*)&attackElement, &isLifeStealing); |
3665 if ( isLifeStealing && pMonster->sCurrentHP > 0 ) | |
1297 | 3666 { |
3667 player->sHealth += v61 / 5; | |
3668 if ( player->sHealth > player->GetMaxHealth() ) | |
3669 player->sHealth = player->GetMaxHealth(); | |
3670 } | |
2293
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
3671 uDamageAmount += pMonster->CalcMagicalDamageToActor(attackElement, a4); |
1297 | 3672 } |
3673 } | |
3674 } | |
3675 } | |
3676 pMonster->sCurrentHP -= uDamageAmount; | |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3677 if ( uDamageAmount == 0 && !hit_will_stun ) |
1297 | 3678 { |
3679 player->PlaySound(SPEECH_52, 0); | |
3680 return; | |
3681 } | |
3682 if ( pMonster->sCurrentHP > 0 ) | |
3683 { | |
1934 | 3684 Actor::AI_Stun(uActorID_Monster, a1, 0); |
3685 Actor::AggroSurroundingPeasants(uActorID_Monster, 1); | |
1297 | 3686 if ( bShowDamage ) |
3687 { | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3688 if ( projectileSprite ) |
1934 | 3689 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[189], player->pName, pMonster->pActorName, uDamageAmount);// "%s shoots %s for %lu points" |
1297 | 3690 else |
1934 | 3691 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[164], player->pName, pMonster->pActorName, uDamageAmount);// "%s hits %s for %lu damage" |
1297 | 3692 ShowStatusBarString(pTmpBuf.data(), 2u); |
3693 } | |
3694 } | |
3695 else | |
3696 { | |
3697 if ( pMonsterStats->pInfos[pMonster->pMonsterInfo.uID].bQuestMonster & 1 ) | |
3698 { | |
2154 | 3699 if ( /*pRenderer->pRenderD3D &&*/ pGame->uFlags2 & GAME_FLAGS_2_DRAW_BLOODSPLATS ) |
1297 | 3700 { |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
3701 v33 = byte_4D864C && pGame->uFlags & 0x80000 ? 10 * pMonster->uActorRadius : pMonster->uActorRadius; |
1935 | 3702 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 | 3703 } |
3704 } | |
1934 | 3705 Actor::Die(uActorID_Monster); |
3706 Actor::ApplyFineForKillingPeasant(uActorID_Monster); | |
3707 Actor::AggroSurroundingPeasants(uActorID_Monster, 1); | |
1297 | 3708 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
|
3709 pParty->GivePartyExp(pMonsterStats->pInfos[pMonster->pMonsterInfo.uID].uExp); |
1297 | 3710 v40 = SPEECH_51; |
3711 if ( rand() % 100 < 20 ) | |
3712 v40 = ((signed int)pMonster->pMonsterInfo.uHP >= 100) + 1; | |
3713 player->PlaySound((PlayerSpeech)v40, 0); | |
3714 if ( bShowDamage ) | |
3715 { | |
3716 pMonsterName = (char *)uDamageAmount; | |
3717 pPlayerName = player->pName; // "%s inflicts %lu points killing %s" | |
3718 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[175], player->pName, uDamageAmount, pMonster); | |
3719 ShowStatusBarString(pTmpBuf.data(), 2u); | |
3720 } | |
3721 } | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3722 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
|
3723 && uDamageAmount != 0 ) |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3724 player->ReceiveDamage(uDamageAmount, attackElement); |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3725 int knockbackValue = 20 * v61 / (signed int)pMonster->pMonsterInfo.uHP; |
2301 | 3726 if ( (player->GetSpecialItemBonus(24) || hit_will_stun) && pMonster->DoesDmgTypeDoDamage(DMGT_EARTH) ) |
1297 | 3727 { |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3728 extraRecoveryTime = 20; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3729 knockbackValue = 10; |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3730 if ( !pParty->bTurnBasedModeOn ) |
1935 | 3731 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
|
3732 pMonster->pMonsterInfo.uRecoveryTime += extraRecoveryTime; |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3733 if ( bShowDamage ) |
1297 | 3734 { |
3735 pMonsterName = player->pName; // "%s stuns %s" | |
3736 sprintfex(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[635], player->pName, pMonster); | |
3737 ShowStatusBarString(pTmpBuf.data(), 2u); | |
3738 } | |
3739 } | |
2301 | 3740 if ( hit_will_paralyze && pMonster->CanAct() && pMonster->DoesDmgTypeDoDamage(DMGT_EARTH)) |
1297 | 3741 { |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3742 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
|
3743 v45 = SkillToMastery(v43); |
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3744 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
|
3745 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
|
3746 if ( bShowDamage ) |
1297 | 3747 { |
1933
5fcf6023f9c3
DamageMonsterFromParty some additional vars removed, changed the ordering part to something more readable
Grumpy7
parents:
1932
diff
changeset
|
3748 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
|
3749 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
|
3750 ShowStatusBarString(pTmpBuf.data(), 2u); |
1297 | 3751 } |
3752 } | |
1931
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3753 if ( knockbackValue > 10 ) |
2e3d08ff3309
DamageMonsterFromParty renaming vars, deleting unused ones, values to enums, etc.
Grumpy7
parents:
1929
diff
changeset
|
3754 knockbackValue = 10; |
1297 | 3755 if ( !MonsterStats::BelongsToSupertype(pMonster->pMonsterInfo.uID, MONSTER_SUPERTYPE_TREANT) ) |
3756 { | |
2172 | 3757 pVelocity->x = fixpoint_mul(knockbackValue, pVelocity->x); |
3758 pVelocity->y = fixpoint_mul(knockbackValue, pVelocity->y); | |
3759 pVelocity->z = fixpoint_mul(knockbackValue, pVelocity->z); | |
1297 | 3760 pMonster->vVelocity.x = 50 * LOWORD(pVelocity->x); |
3761 pMonster->vVelocity.y = 50 * LOWORD(pVelocity->y); | |
3762 pMonster->vVelocity.z = 50 * LOWORD(pVelocity->z); | |
3763 } | |
1934 | 3764 Actor::AddBloodsplatOnDamageOverlay(uActorID_Monster, 1, v61); |
1297 | 3765 } |
3766 //----- (004BBF61) -------------------------------------------------------- | |
2169 | 3767 void Actor::Arena_summon_actor( int monster_id, __int16 x, int y, int z ) |
1297 | 3768 { |
3769 int v12; // ebx@7 | |
3770 int v13; // eax@8 | |
3771 __int16 v16; // [sp+10h] [bp-4h]@3 | |
3772 | |
1583 | 3773 if (uNumActors < 500) |
1297 | 3774 { |
3775 v16 = 0; | |
3776 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor ) | |
1935 | 3777 v16 = pIndoor->GetSector(x, y, z); |
2169 | 3778 pActors[uNumActors].Reset(); |
3779 strcpy(pActors[uNumActors].pActorName, pMonsterStats->pInfos[monster_id].pName); | |
3780 pActors[uNumActors].sCurrentHP = LOWORD(pMonsterStats->pInfos[monster_id].uHP); | |
3781 memcpy(&pActors[uNumActors].pMonsterInfo, &pMonsterStats->pInfos[monster_id], 0x58u); | |
3782 pActors[uNumActors].word_000086_some_monster_id = monster_id; | |
3783 pActors[uNumActors].uActorRadius = pMonsterList->pMonsters[monster_id - 1].uMonsterRadius; | |
3784 pActors[uNumActors].uActorHeight = pMonsterList->pMonsters[monster_id - 1].uMonsterHeight; | |
3785 pActors[uNumActors].uMovementSpeed = pMonsterList->pMonsters[monster_id - 1].uMovementSpeed; | |
3786 pActors[uNumActors].vInitialPosition.x = x; | |
3787 pActors[uNumActors].vPosition.x = x; | |
3788 pActors[uNumActors].uAttributes |= 80000; | |
3789 pActors[uNumActors].pMonsterInfo.uTreasureType = 0; | |
3790 pActors[uNumActors].pMonsterInfo.uTreasureLevel = 0; | |
3791 pActors[uNumActors].pMonsterInfo.uTreasureDiceSides = 0; | |
3792 pActors[uNumActors].pMonsterInfo.uTreasureDiceRolls = 0; | |
3793 pActors[uNumActors].pMonsterInfo.uTreasureDropChance = 0; | |
3794 pActors[uNumActors].vInitialPosition.y = y; | |
3795 pActors[uNumActors].vPosition.y = y; | |
3796 pActors[uNumActors].vInitialPosition.z = z; | |
3797 pActors[uNumActors].vPosition.z = z; | |
3798 pActors[uNumActors].uTetherDistance = 256; | |
3799 pActors[uNumActors].uSectorID = v16; | |
3800 pActors[uNumActors].uGroup = 1; | |
3801 pActors[uNumActors].pMonsterInfo.uHostilityType = MonsterInfo::Hostility_Long; | |
3802 pActors[uNumActors].PrepareSprites(0); | |
3803 for ( int i = 0; i < 4; i++) | |
3804 pSoundList->LoadSound(pMonsterList->pMonsters[monster_id - 1].pSoundSampleIDs[i], 0); | |
3805 v12 = 0; | |
3806 do | |
3807 { | |
3808 v13 = pSoundList->LoadSound(v12 + word_4EE088_sound_ids[pMonsterStats->pInfos[monster_id].uSpell1ID], 1); | |
3809 v12++; | |
3810 } | |
3811 while ( v13 ); | |
1297 | 3812 ++uNumActors; |
3813 } | |
1911 | 3814 } |
3815 //----- (00426E10) -------------------------------------------------------- | |
3816 int stru319::which_player_to_attack(Actor *pActor) | |
3817 { | |
3818 signed int v2; // ebx@1 | |
3819 bool flag; // edi@37 | |
3820 int v22; // [sp+8h] [bp-140h]@3 | |
3821 int Victims_list[60]; // [sp+48h] [bp-100h]@48 | |
3822 int for_sex; // [sp+13Ch] [bp-Ch]@1 | |
3823 int for_race; // [sp+140h] [bp-8h]@1 | |
3824 int for_class; // [sp+144h] [bp-4h]@1 | |
3825 | |
3826 for_class = -1; | |
3827 for_race = -1; | |
3828 for_sex = -1; | |
3829 v2 = 0; | |
3830 if ( pActor->pMonsterInfo.uAttackPreference ) | |
3831 { | |
3832 for ( uint i = 0; i < 16; i++ ) | |
3833 { | |
3834 v22 = pActor->pMonsterInfo.uAttackPreference & (1 << i); | |
3835 if ( v22 ) | |
3836 { | |
3837 switch ( v22 ) | |
3838 { | |
3839 case 1: | |
3840 for_class = 0; | |
3841 break; | |
3842 case 2: | |
3843 for_class = 12; | |
3844 break; | |
3845 case 4: | |
3846 for_class = 16; | |
3847 break; | |
3848 case 8: | |
3849 for_class = 28; | |
3850 break; | |
3851 case 16: | |
3852 for_class = 24; | |
3853 break; | |
3854 case 32: | |
3855 for_class = 32; | |
3856 break; | |
3857 case 64: | |
3858 for_class = 20; | |
3859 break; | |
3860 case 128: | |
3861 for_class = 4; | |
3862 break; | |
3863 case 256: | |
3864 for_class = 8; | |
3865 break; | |
3866 case 512: | |
3867 for_sex = 0; | |
3868 break; | |
3869 case 1024: | |
3870 for_sex = 1; | |
3871 break; | |
3872 case 2048: | |
3873 for_race = 0; | |
3874 break; | |
3875 case 4096: | |
3876 for_race = 1; | |
3877 break; | |
3878 case 8192: | |
3879 for_race = 3; | |
3880 break; | |
3881 case 16384: | |
3882 for_race = 2; | |
3883 break; | |
3884 } | |
3885 v2 = 0; | |
3886 for ( uint j = 0; j < 4; ++j ) | |
3887 { | |
3888 flag = 0; | |
3889 if ( for_class != -1 && for_class == pPlayers[j + 1]->classType ) | |
3890 flag = true; | |
3891 if ( for_sex != -1 && for_sex == pPlayers[j + 1]->uSex ) | |
3892 flag = true; | |
3893 if ( for_race != -1 && for_race == pPlayers[j + 1]->GetRace() ) | |
3894 flag = true; | |
3895 if ( flag == true ) | |
3896 { | |
2057 | 3897 if ( !(pPlayers[j + 1]->pConditions[Condition_Paralyzed] | pPlayers[j + 1]->pConditions[Condition_Unconcious] |
3898 | pPlayers[j + 1]->pConditions[Condition_Dead] | pPlayers[j + 1]->pConditions[Condition_Pertified] | pPlayers[j + 1]->pConditions[Condition_Eradicated]) ) | |
1911 | 3899 Victims_list[v2++] = j; |
3900 } | |
3901 } | |
3902 } | |
3903 } | |
3904 if ( v2 ) | |
3905 return Victims_list[rand() % v2]; | |
3906 } | |
3907 for ( uint i = 0; i < 4; ++i ) | |
3908 { | |
2057 | 3909 if ( !(pPlayers[i + 1]->pConditions[Condition_Paralyzed] | pPlayers[i + 1]->pConditions[Condition_Unconcious] |
3910 | pPlayers[i + 1]->pConditions[Condition_Dead] | pPlayers[i + 1]->pConditions[Condition_Pertified] | pPlayers[i + 1]->pConditions[Condition_Eradicated]) ) | |
1911 | 3911 Victims_list[v2++] = i; |
3912 } | |
3913 if ( v2 ) | |
3914 return Victims_list[rand() % v2]; | |
3915 else | |
3916 return 0; | |
3917 } | |
1936 | 3918 //----- (0042F4DA) -------------------------------------------------------- |
3919 bool CheckActors_proximity() | |
3920 { | |
3921 signed int distance; // edi@1 | |
3922 int for_x; // ebx@5 | |
3923 int for_y; // [sp+Ch] [bp-10h]@5 | |
3924 int for_z; // [sp+10h] [bp-Ch]@5 | |
3925 int v3; // eax@5 | |
3926 int v4; // ebx@5 | |
3927 unsigned int v5; // ecx@5 | |
3928 int v6; // edx@6 | |
3929 unsigned int v7; // edx@8 | |
3930 unsigned int v8; // edx@10 | |
3931 | |
3932 | |
3933 distance = 5120; | |
3934 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor) | |
3935 distance = 2560; | |
3936 | |
3937 if ( (signed int)uNumActors <= 0 ) | |
3938 return false; | |
3939 for ( uint i = 0; i < (signed int)uNumActors; ++i ) | |
3940 { | |
3941 for_x = abs(pActors[i].vInitialPosition.x - pParty->vPosition.x); | |
3942 for_y = abs(pActors[i].vInitialPosition.y - pParty->vPosition.y); | |
3943 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
|
3944 if ( int_get_vector_length(for_x, for_y, for_z) < distance ) |
1936 | 3945 { |
3946 if ( pActors[i].uAIState != Dead ) | |
3947 { | |
3948 if ( pActors[i].uAIState != Dying && pActors[i].uAIState != Removed | |
3949 && pActors[i].uAIState != Disabled && pActors[i].uAIState != Summoned | |
2203 | 3950 && (pActors[i].uAttributes & 0x80000 || pActors[i].GetActorsRelation(0) ) ) |
1936 | 3951 return true; |
3952 } | |
3953 } | |
3954 } | |
3955 return false; | |
3956 } | |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3957 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3958 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3959 //----- (00426A5A) -------------------------------------------------------- |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3960 void Actor::LootActor() |
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 signed int v2; // edi@1 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3963 unsigned __int8 v7; // al@30 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3964 char *v9; // [sp-4h] [bp-3Ch]@10 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3965 char *v10; // [sp-4h] [bp-3Ch]@31 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3966 char *v11; // [sp-4h] [bp-3Ch]@38 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3967 ItemGen Dst; // [sp+Ch] [bp-2Ch]@1 |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
3968 bool itemFound; // [sp+30h] [bp-8h]@1 |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3969 int v14; // [sp+34h] [bp-4h]@1 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3970 |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3971 pParty->sub_421B2C_PlaceInInventory_or_DropPickedItem(); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3972 Dst.Reset(); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3973 v2 = 0; |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
3974 itemFound = false; |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3975 v14 = 0; |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
3976 if ( !( this->uAttributes & 0x800000 ) ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3977 { |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
3978 for (uchar i = 0; i < this->pMonsterInfo.uTreasureDiceRolls; i++ ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3979 v14 += rand() % this->pMonsterInfo.uTreasureDiceSides + 1; |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
3980 if ( v14 != 0 ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3981 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3982 pParty->PartyFindsGold(v14, 0); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3983 viewparams->bRedrawGameUI = 1; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3984 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3985 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3986 else |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3987 { |
2276 | 3988 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
|
3989 { |
2276 | 3990 v14 = this->ActorHasItems[3].uSpecEnchantmentType; |
3991 this->ActorHasItems[3].Reset(); | |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3992 if ( v14 ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3993 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3994 pParty->PartyFindsGold(v14, 0); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3995 viewparams->bRedrawGameUI = 1; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3996 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3997 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3998 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
3999 if ( this->uCarriedItemID ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4000 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4001 Dst.Reset(); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4002 Dst.uItemID = this->uCarriedItemID; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4003 v9 = pItemsTable->pItems[Dst.uItemID].pUnidentifiedName; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4004 if ( v14 ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4005 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[490], v14, v9); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4006 else |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4007 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[471], v9); |
2276 | 4008 ShowStatusBarString(pTmpBuf2.data(), 2); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4009 if ( Dst.GetItemEquipType() == 12 ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4010 { |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4011 Dst.uNumCharges = rand() % 6 + Dst.GetDamageMod() + 1; |
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4012 Dst.uMaxCharges = Dst.uNumCharges; |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4013 } |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4014 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
|
4015 Dst.uEnchantmentType = 2 * rand() % 4 + 2; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4016 pItemsTable->SetSpecialBonus(&Dst); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4017 if ( !pParty->AddItemToParty(&Dst) ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4018 pParty->SetHoldingItem(&Dst); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4019 this->uCarriedItemID = 0; |
2276 | 4020 if ( this->ActorHasItems[0].uItemID ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4021 { |
2276 | 4022 if ( !pParty->AddItemToParty(this->ActorHasItems) ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4023 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4024 pParty->sub_421B2C_PlaceInInventory_or_DropPickedItem(); |
2276 | 4025 pParty->SetHoldingItem(this->ActorHasItems); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4026 } |
2276 | 4027 this->ActorHasItems[0].Reset(); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4028 } |
2276 | 4029 if ( this->ActorHasItems[1].uItemID ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4030 { |
2276 | 4031 if ( !pParty->AddItemToParty(&this->ActorHasItems[1]) ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4032 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4033 pParty->sub_421B2C_PlaceInInventory_or_DropPickedItem(); |
2276 | 4034 pParty->SetHoldingItem(&this->ActorHasItems[1]); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4035 } |
2276 | 4036 this->ActorHasItems[1].Reset(); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4037 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4038 this->Remove(); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4039 return; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4040 } |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4041 if ( ( this->uAttributes & 0x800000 ) ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4042 { |
2276 | 4043 if ( this->ActorHasItems[3].uItemID ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4044 { |
2276 | 4045 memcpy(&Dst, &this->ActorHasItems[3], sizeof(Dst)); |
4046 this->ActorHasItems[3].Reset(); | |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4047 v11 = pItemsTable->pItems[Dst.uItemID].pUnidentifiedName; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4048 if ( v14 ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4049 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[490], v14, v11); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4050 else |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4051 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[471], v11); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4052 ShowStatusBarString(pTmpBuf2.data(), 2u); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4053 if ( !pParty->AddItemToParty(&Dst) ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4054 pParty->SetHoldingItem(&Dst); |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4055 itemFound = true; |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4056 } |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4057 } |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4058 else |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4059 { |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4060 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
|
4061 { |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4062 pItemsTable->GenerateItem(v7, this->pMonsterInfo.uTreasureType, &Dst); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4063 v10 = pItemsTable->pItems[Dst.uItemID].pUnidentifiedName; |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4064 if ( v14 ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4065 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
|
4066 else |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4067 sprintfex(pTmpBuf2.data(), pGlobalTXT_LocalizationStrings[471], v10);//Âû íàøëè ^Pv[%s]! |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4068 ShowStatusBarString(pTmpBuf2.data(), 2); |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4069 if ( !pParty->AddItemToParty(&Dst) ) |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4070 pParty->SetHoldingItem(&Dst); |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4071 itemFound = true; |
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4072 } |
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4073 } |
2276 | 4074 if ( this->ActorHasItems[0].uItemID ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4075 { |
2276 | 4076 if ( !pParty->AddItemToParty(this->ActorHasItems) ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4077 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4078 pParty->sub_421B2C_PlaceInInventory_or_DropPickedItem(); |
2276 | 4079 pParty->SetHoldingItem(this->ActorHasItems); |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4080 itemFound = true; |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4081 } |
2276 | 4082 this->ActorHasItems[0].Reset(); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4083 } |
2276 | 4084 if ( this->ActorHasItems[1].uItemID ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4085 { |
2276 | 4086 if ( !pParty->AddItemToParty(&this->ActorHasItems[1]) ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4087 { |
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4088 pParty->sub_421B2C_PlaceInInventory_or_DropPickedItem(); |
2276 | 4089 pParty->SetHoldingItem(&this->ActorHasItems[1]); |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4090 itemFound = true; |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4091 } |
2276 | 4092 this->ActorHasItems[1].Reset(); |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4093 } |
1967
05787232b571
Actor::LootActor cleaned up, fixed item looting not working
Grumpy7
parents:
1966
diff
changeset
|
4094 if ( !itemFound || rand() % 100 < 90 ) |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4095 this->Remove(); |
1968 | 4096 } |
4097 | |
4098 | |
4099 //----- (00427102) -------------------------------------------------------- | |
1971 | 4100 bool Actor::_427102_IsOkToCastSpell( signed int a2 ) |
1968 | 4101 { |
4102 switch(a2) | |
4103 { | |
1969 | 4104 case SPELL_BODY_POWER_CURE: |
1968 | 4105 { |
4106 if ( this->sCurrentHP >= (signed int)this->pMonsterInfo.uHP ) | |
1970 | 4107 return false; |
4108 return true; | |
1968 | 4109 } |
1969 | 4110 case SPELL_LIGHT_DISPEL_MAGIC: |
1968 | 4111 { |
1970 | 4112 for (int i = 0; i < 20; i++) |
1968 | 4113 { |
1970 | 4114 if (pParty->pPartyBuffs[i].uExpireTime > 0) |
4115 return true; | |
1968 | 4116 } |
1970 | 4117 for ( int i = 1; i <= 4; i++ ) |
4118 { | |
4119 for ( int j = 0; j < 22; j++ ) | |
4120 { | |
4121 if (pPlayers[i]->pPlayerBuffs[j].uExpireTime > 0) | |
4122 return true; | |
4123 } | |
4124 } | |
4125 return false; | |
1968 | 4126 } |
1969 | 4127 case SPELL_LIGHT_DAY_OF_PROTECTION: |
1968 | 4128 { |
1970 | 4129 return this->pActorBuffs[ACTOR_BUFF_DAY_OF_PROTECTION].uExpireTime <= 0; |
1968 | 4130 break; |
4131 } | |
1969 | 4132 case SPELL_LIGHT_HOUR_OF_POWER: |
1968 | 4133 { |
1970 | 4134 return this->pActorBuffs[ACTOR_BUFF_HOUR_OF_POWER].uExpireTime <= 0; |
1968 | 4135 break; |
4136 } | |
1969 | 4137 case SPELL_DARK_PAIN_REFLECTION: |
1968 | 4138 { |
1970 | 4139 return this->pActorBuffs[ACTOR_BUFF_PAIN_REFLECTION].uExpireTime <= 0; |
1968 | 4140 break; |
4141 } | |
1969 | 4142 case SPELL_BODY_HAMMERHANDS: |
1968 | 4143 { |
1970 | 4144 return this->pActorBuffs[ACTOR_BUFF_PAIN_HAMMERHANDS].uExpireTime <= 0; |
1968 | 4145 break; |
4146 } | |
1969 | 4147 case SPELL_FIRE_HASTE: |
1968 | 4148 { |
1970 | 4149 return this->pActorBuffs[ACTOR_BUFF_HASTE].uExpireTime <= 0; |
1968 | 4150 break; |
4151 } | |
1969 | 4152 case SPELL_AIR_SHIELD: |
1968 | 4153 { |
1970 | 4154 return this->pActorBuffs[ACTOR_BUFF_SHIELD].uExpireTime <= 0; |
1968 | 4155 break; |
4156 } | |
1969 | 4157 case SPELL_EARTH_STONESKIN: |
1968 | 4158 { |
1970 | 4159 return this->pActorBuffs[ACTOR_BUFF_STONESKIN].uExpireTime <= 0; |
4160 break; | |
1968 | 4161 } |
1969 | 4162 case SPELL_SPIRIT_BLESS: |
1968 | 4163 { |
1970 | 4164 return this->pActorBuffs[ACTOR_BUFF_BLESS].uExpireTime <= 0; |
1968 | 4165 break; |
4166 } | |
1969 | 4167 case SPELL_SPIRIT_FATE: |
1968 | 4168 { |
1970 | 4169 return this->pActorBuffs[ACTOR_BUFF_FATE].uExpireTime <= 0; |
1968 | 4170 break; |
4171 } | |
1969 | 4172 case SPELL_SPIRIT_HEROISM: |
1968 | 4173 { |
1970 | 4174 return this->pActorBuffs[ACTOR_BUFF_HEROISM].uExpireTime <= 0; |
1968 | 4175 break; |
4176 } | |
4177 default: | |
1970 | 4178 return true; |
1968 | 4179 } |
1972
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4180 } |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4181 |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4182 |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4183 //----- (0042704B) -------------------------------------------------------- |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4184 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
|
4185 { |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4186 signed int okToCastSpell1; // ebx@5 |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4187 signed int okToCastSpell2; // edi@5 |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4188 |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4189 if ( this->pMonsterInfo.uSpecialAbilityType == 2 |
2251 | 4190 && this->pMonsterInfo.uSpecialAbilityDamageDiceBonus < 3 |
1972
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4191 && rand() % 100 < 5 ) |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4192 this->SummonMinion(a2); |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4193 okToCastSpell1 = this->_427102_IsOkToCastSpell(this->pMonsterInfo.uSpell1ID); |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4194 okToCastSpell2 = this->_427102_IsOkToCastSpell(this->pMonsterInfo.uSpell2ID); |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4195 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
|
4196 return ABILITY_SPELL1; |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4197 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
|
4198 return ABILITY_SPELL2; |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4199 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
|
4200 return ABILITY_ATTACK2; |
3ef25d06b9b0
Actor::special_ability_use_check moved to Actor and cleaned up
Grumpy7
parents:
1971
diff
changeset
|
4201 return ABILITY_ATTACK1; |
1974
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4202 } |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4203 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4204 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4205 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4206 //----- (004273BB) -------------------------------------------------------- |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4207 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
|
4208 { |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4209 signed int v6; // ebx@1 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4210 signed int v7; // esi@1 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4211 int armorSum; // ebx@10 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4212 signed int a2a; // [sp+18h] [bp+Ch]@1 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4213 |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4214 v6 = defender->pMonsterInfo.uAC; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4215 v7 = 0; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4216 a2a = 0; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4217 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
|
4218 v6 /= 2; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4219 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
|
4220 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
|
4221 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
|
4222 v7 = defender->pActorBuffs[ACTOR_BUFF_STONESKIN].uPower; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4223 armorSum = v7 + v6; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4224 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
|
4225 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
|
4226 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
|
4227 a2a = this->pActorBuffs[ACTOR_BUFF_BLESS].uPower; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4228 if ( this->pActorBuffs[ACTOR_BUFF_FATE].uExpireTime > 0 ) |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4229 { |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4230 a2a += this->pActorBuffs[ACTOR_BUFF_FATE].uPower; |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4231 this->pActorBuffs[ACTOR_BUFF_FATE].Reset(); |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4232 } |
0f62a2b8bd0a
stru319::_4273BB moved to Actor::_4273BB, renamed to _4273BB_DoesHitOtherActor
Grumpy7
parents:
1972
diff
changeset
|
4233 return rand() % (armorSum + 2 * this->pMonsterInfo.uLevel + 10) + a2a + 1 > armorSum + 5; |
2101 | 4234 } |
4235 | |
2291
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4236 //----- (004274AD) -------------------------------------------------------- |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4237 bool Actor::ActorHitOrMiss(Player *pPlayer) |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4238 { |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4239 signed int v3; // edi@1 |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4240 signed int v4; // esi@8 |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4241 int v5; // esi@8 |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4242 |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4243 v3 = 0; |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4244 if ( this->pActorBuffs[ACTOR_BUFF_HOUR_OF_POWER].uExpireTime > 0 ) |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4245 v3 = this->pActorBuffs[ACTOR_BUFF_HOUR_OF_POWER].uPower; |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4246 if ( this->pActorBuffs[ACTOR_BUFF_BLESS].uExpireTime > 0 && this->pActorBuffs[ACTOR_BUFF_BLESS].uPower > v3 ) |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4247 v3 = this->pActorBuffs[ACTOR_BUFF_BLESS].uPower; |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4248 if ( this->pActorBuffs[ACTOR_BUFF_FATE].uExpireTime > 0 ) |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4249 { |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4250 v3 += this->pActorBuffs[ACTOR_BUFF_FATE].uPower; |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4251 this->pActorBuffs[ACTOR_BUFF_FATE].Reset(); |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4252 } |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4253 v4 = pPlayer->GetActualAC() + 2 * this->pMonsterInfo.uLevel + 10; |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4254 v5 = rand() % v4 + 1; |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4255 return (v3 + v5 > pPlayer->GetActualAC() + 5); |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4256 } |
69661f22ff03
stru319::PlayerHitOrMiss moved to Player class, cleaned up a bit, stru319::ActorHitOrMiss moved to Actor class, cleaned up a bit
Grumpy7
parents:
2281
diff
changeset
|
4257 |
2293
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4258 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4259 //----- (0042756B) -------------------------------------------------------- |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4260 int Actor::CalcMagicalDamageToActor(DAMAGE_TYPE dmgType, signed int incomingDmg) |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4261 { |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4262 int v4; // edx@1 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4263 int v5; // ecx@1 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4264 signed int v6; // eax@4 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4265 signed int result; // eax@17 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4266 signed int v8; // esi@18 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4267 |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4268 v4 = 0; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4269 v5 = 0; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4270 if ( this->pActorBuffs[ACTOR_BUFF_HOUR_OF_POWER].uExpireTime > 0 ) |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4271 v5 = this->pActorBuffs[ACTOR_BUFF_HOUR_OF_POWER].uPower; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4272 switch ( dmgType ) |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4273 { |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4274 case DMGT_FIRE: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4275 v6 = this->pMonsterInfo.uResFire; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4276 v4 = v5; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4277 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4278 case DMGT_ELECTR: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4279 v6 = this->pMonsterInfo.uResAir; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4280 v4 = v5; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4281 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4282 case DMGT_COLD: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4283 v6 = this->pMonsterInfo.uResWater; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4284 v4 = v5; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4285 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4286 case DMGT_EARTH: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4287 v6 = this->pMonsterInfo.uResEarth; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4288 v4 = v5; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4289 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4290 case DMGT_PHISYCAL: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4291 v6 = this->pMonsterInfo.uResPhysical; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4292 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4293 case DMGT_SPIRIT: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4294 v6 = this->pMonsterInfo.uResSpirit; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4295 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4296 case DMGT_MIND: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4297 v6 = this->pMonsterInfo.uResMind; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4298 v4 = v5; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4299 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4300 case DMGT_BODY: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4301 v6 = this->pMonsterInfo.uResBody; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4302 v4 = v5; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4303 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4304 case DMGT_LIGHT: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4305 v6 = this->pMonsterInfo.uResLight; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4306 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4307 case DMGT_DARK: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4308 v6 = this->pMonsterInfo.uResDark; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4309 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4310 default: |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4311 v6 = 0; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4312 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4313 } |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4314 if ( v6 < 200 ) |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4315 { |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4316 v8 = v4 + v6 + 30; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4317 for (int i = 0; i < 4; i++) |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4318 { |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4319 if ( rand() % v8 < 30 ) |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4320 break; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4321 incomingDmg /= 2; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4322 } |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4323 result = incomingDmg; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4324 } |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4325 else |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4326 result = 0; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4327 return result; |
b0f10ef66e00
stru319::CalcMagicalDamageToActor moved to Actor class
Grumpy7
parents:
2292
diff
changeset
|
4328 } |
2301 | 4329 |
4330 //----- (00427662) -------------------------------------------------------- | |
4331 bool Actor::DoesDmgTypeDoDamage(DAMAGE_TYPE uType) | |
4332 { | |
4333 signed int resist; // esi@2 | |
4334 bool result; // eax@13 | |
4335 | |
4336 switch ( uType ) | |
4337 { | |
4338 case 0: | |
4339 resist = this->pMonsterInfo.uResFire; | |
4340 break; | |
4341 case 1: | |
4342 resist = this->pMonsterInfo.uResAir; | |
4343 break; | |
4344 case 2: | |
4345 resist = this->pMonsterInfo.uResWater; | |
4346 break; | |
4347 case 3: | |
4348 resist = this->pMonsterInfo.uResEarth; | |
4349 break; | |
4350 case 4: | |
4351 resist = this->pMonsterInfo.uResPhysical; | |
4352 break; | |
4353 case 6: | |
4354 resist = this->pMonsterInfo.uResSpirit; | |
4355 break; | |
4356 case 7: | |
4357 resist = this->pMonsterInfo.uResMind; | |
4358 case 8: | |
4359 resist = this->pMonsterInfo.uResBody; | |
4360 break; | |
4361 case 9: | |
4362 resist = this->pMonsterInfo.uResLight; | |
4363 break; | |
4364 case 10: | |
4365 resist = this->pMonsterInfo.uResDark; | |
4366 break; | |
4367 default: | |
4368 return 1; | |
4369 } | |
4370 if ( resist < 200 ) | |
4371 result = rand() % ((this->pMonsterInfo.uLevel >> 2) + resist + 30) < 30; | |
4372 else | |
4373 result = 0; | |
4374 return result; | |
4375 } | |
4376 | |
2101 | 4377 //----- (00448A98) -------------------------------------------------------- |
4378 void __fastcall ToggleActorGroupFlag(unsigned int uGroupID, unsigned int uFlag, unsigned int bToggle) | |
4379 { | |
4380 if ( uGroupID ) | |
4381 { | |
4382 if ( bToggle ) | |
4383 { | |
4384 for ( uint i = 0; i < (unsigned int)uNumActors; ++i ) | |
4385 { | |
4386 if ( pActors[i].uGroup == uGroupID ) | |
4387 { | |
4388 pActors[i].uAttributes |= uFlag; | |
4389 if ( uFlag == 0x10000 ) | |
4390 { | |
4391 pActors[i].uAIState = Disabled; | |
4392 pActors[i].UpdateAnimation(); | |
4393 } | |
4394 } | |
4395 } | |
4396 } | |
4397 else | |
4398 { | |
4399 for ( uint i = 0; i < (unsigned int)uNumActors; ++i ) | |
4400 { | |
4401 if ( pActors[i].uGroup == uGroupID ) | |
4402 { | |
4403 if ( uFlag == 0x10000 ) | |
4404 { | |
4405 if ( pActors[i].uAIState != Dead ) | |
4406 { | |
4407 if ( pActors[i].uAIState != 4 && pActors[i].uAIState != 11 ) | |
4408 pActors[i].uAIState = Standing; | |
4409 } | |
4410 } | |
4411 LODWORD(pActors[i].uAttributes) &= ~uFlag; | |
4412 } | |
4413 } | |
4414 } | |
4415 } | |
1966
7840fe323f67
stru319::LootActor(struct Actor *pActor) to Actor::LootActor
Grumpy7
parents:
1965
diff
changeset
|
4416 } |