Mercurial > mm7
annotate Party.h @ 1971:e45c277da9f1
Actor::_427102 to Actor::_427102_IsOkToCastSpell
author | Grumpy7 |
---|---|
date | Sat, 26 Oct 2013 00:09:30 -0700 |
parents | 768590235c2c |
children | 259df09dfb50 |
rev | line source |
---|---|
0 | 1 #pragma once |
2 #include "Player.h" | |
3 #include "NPC.h" | |
1494 | 4 #include "mm7_data.h" |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
5 #include <array> |
0 | 6 |
7 | |
8 | |
1053 | 9 #define PARTY_AUTONOTES_BIT__EMERALD_FIRE_FOUNTAIN 2 |
0 | 10 |
1494 | 11 enum PARTY_QUEST_BITS: uint16 |
710 | 12 { |
1035 | 13 PARTY_QUEST_EMERALD_RED_POTION_ACTIVE = 1, |
14 PARTY_QUEST_EMERALD_SEASHELL_ACTIVE = 2, | |
15 PARTY_QUEST_EMERALD_LONGBOW_ACTIVE = 3, | |
16 PARTY_QUEST_EMERALD_PLATE_ACTIVE = 4, | |
17 PARTY_QUEST_EMERALD_LUTE_ACTIVE = 5, | |
18 PARTY_QUEST_EMERALD_HAT_ACTIVE = 6, | |
19 | |
1052 | 20 PARTY_QUEST_EMERALD_MARGARETH_OFF = 17, |
21 | |
778 | 22 PARTY_QUEST_EVENMORN_MAP_FOUND = 64, |
981 | 23 PARTY_QUEST_FINISHED_EMERALD_ISLE = 136, |
1494 | 24 |
25 PARTY_QUEST_OBELISK_HARMONDALE = 164, | |
26 PARTY_QUEST_OBELISK_ERATHIA = 165, | |
27 PARTY_QUEST_OBELISK_TULAREAN_FOREST = 166, | |
28 PARTY_QUEST_OBELISK_DEYJA = 167, | |
29 PARTY_QUEST_OBELISK_BRACADA_DESERT = 168, | |
30 PARTY_QUEST_OBELISK_CELESTE = 169, | |
31 PARTY_QUEST_OBELISK_THE_PIT = 170, | |
32 PARTY_QUEST_OBELISK_EVENMORN_ISLAND = 171, | |
33 PARTY_QUEST_OBELISK_MOUNT_NIGHON = 172, | |
34 PARTY_QUEST_OBELISK_BARROW_DOWNS = 173, | |
35 PARTY_QUEST_OBELISK_LAND_OF_THE_GIANTS = 174, | |
36 PARTY_QUEST_OBELISK_TATALIA = 175, | |
37 PARTY_QUEST_OBELISK_AVLEE = 176, | |
38 PARTY_QUEST_OBELISK_STONE_CITY = 177, | |
39 | |
40 PARTY_QUEST_OBELISK_TREASURE_FOUND = 178, | |
41 | |
710 | 42 PARTY_QUEST_FOUNTAIN_HARMONDALE = 206, |
43 PARTY_QUEST_FOUNTAIN_NIGHON = 207, | |
44 PARTY_QUEST_FOUNTAIN_PIERPONT = 208, | |
45 PARTY_QUEST_FOUNTAIN_CELESTIA = 209, | |
46 PARTY_QUEST_FOUNTAIN_THE_PIT = 210, | |
47 PARTY_QUEST_FOUNTAIN_EVENMORN_ISLE = 211 | |
48 }; | |
0 | 49 |
50 /* 355 */ | |
141 | 51 enum PARTY_FLAGS_1: __int32 |
52 { | |
1424 | 53 PARTY_FLAGS_1_WATER_DAMAGE = 0x0004, |
569 | 54 PARTY_FLAGS_1_FALLING = 0x0008, |
390 | 55 PARTY_FLAGS_1_ALERT_RED = 0x0010, |
56 PARTY_FLAGS_1_ALERT_YELLOW = 0x0020, | |
569 | 57 PARTY_FLAGS_1_STANDING_ON_WATER = 0x0080, |
390 | 58 PARTY_FLAGS_1_LANDING = 0x0100, |
816 | 59 PARTY_FLAGS_1_BURNING = 0x200 |
141 | 60 }; |
61 enum PARTY_FLAGS_2: __int32 | |
0 | 62 { |
63 PARTY_FLAGS_2_RUNNING = 0x2, | |
64 }; | |
65 | |
66 /* 347 */ | |
67 enum PARTY_BUFF_INDEX | |
68 { | |
488 | 69 PARTY_BUFF_RESIST_AIR = 0, |
70 PARTY_BUFF_RESIST_BODY = 1, | |
71 PARTY_BUFF_DAY_OF_GODS = 2, | |
72 PARTY_BUFF_DETECT_LIFE = 3, | |
73 PARTY_BUFF_RESIST_EARTH = 4, | |
74 PARTY_BUFF_FEATHER_FALL = 5, | |
75 PARTY_BUFF_RESIST_FIRE = 6, | |
76 PARTY_BUFF_FLY = 7, | |
77 PARTY_BUFF_HASTE = 8, | |
78 PARTY_BUFF_HEROISM = 9, | |
79 PARTY_BUFF_IMMOLATION = 10, | |
271 | 80 PARTY_BUFF_INVISIBILITY = 11, |
488 | 81 PARTY_BUFF_RESIST_MIND = 12, |
82 PARTY_BUFF_PROTECTION_FROM_MAGIC = 13, | |
83 PARTY_BUFF_SHIELD = 14, | |
84 PARTY_BUFF_STONE_SKIN = 15, | |
85 PARTY_BUFF_TORCHLIGHT = 16, | |
86 PARTY_BUFF_RESIST_WATER = 17, | |
87 PARTY_BUFF_WATER_WALK = 18, | |
88 PARTY_BUFF_WIZARD_EYE = 19, | |
0 | 89 }; |
90 | |
91 | |
92 | |
93 /* 300 */ | |
94 enum PartyAction: unsigned __int32 | |
95 { | |
96 PARTY_INVALID = 0, | |
97 PARTY_TurnLeft = 0x1, | |
98 PARTY_TurnRight = 0x2, | |
99 PARTY_StrafeLeft = 0x3, | |
100 PARTY_StrafeRight = 0x4, | |
101 PARTY_WalkForward = 0x5, | |
102 PARTY_WalkBackward = 0x6, | |
103 PARTY_LookUp = 0x7, | |
104 PARTY_LookDown = 0x8, | |
105 PARTY_CenterView = 0x9, | |
106 PARTY_unkA = 0xA, | |
107 PARTY_unkB = 0xB, | |
108 PARTY_Jump = 0xC, | |
109 PARTY_FlyUp = 0xD, | |
110 PARTY_FlyDown = 0xE, | |
111 PARTY_Land = 0xF, | |
112 PARTY_RunForward = 0x10, | |
113 PARTY_RunBackward = 0x11, | |
114 PARTY_FastTurnLeft = 0x12, | |
115 PARTY_FastTurnRight = 0x13, | |
116 | |
117 PARTY_dword = 0xFFFFFFFF | |
118 }; | |
119 | |
120 | |
121 | |
122 /* 135 */ | |
123 #pragma pack(push, 1) | |
124 struct ActionQueue | |
125 { | |
126 void Add(PartyAction action); | |
783 | 127 void Reset(); |
0 | 128 PartyAction Next(); |
129 | |
130 unsigned int uNumActions; | |
131 PartyAction pActions[30]; | |
132 }; | |
133 #pragma pack(pop) | |
134 | |
135 | |
136 | |
137 | |
138 | |
373 | 139 enum PartyAlignment: unsigned __int32 |
140 { | |
141 PartyAlignment_Good = 0, | |
142 PartyAlignment_Neutral = 1, | |
143 PartyAlignment_Evil = 2 | |
144 }; | |
0 | 145 |
146 | |
147 | |
148 | |
149 | |
150 /* 208 */ | |
151 #pragma pack(push, 1) | |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1736
diff
changeset
|
152 struct PartyTimeStruct |
0 | 153 { |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
154 std::array<__int64, 10> bountyHunting_next_generation_time; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
155 std::array<__int64, 85> Shops_next_generation_time;//field_50 |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
156 std::array<__int64, 53> _shop_ban_times; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
157 std::array<unsigned __int64, 10> CounterEventValues; // (0xACD314h in Silvo's binary) |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
158 std::array<__int64, 29> HistoryEventTimes; // (0xACD364h in Silvo's binary) |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
159 std::array<unsigned __int64, 20> _s_times; //5d8 440h+8*51 //(0xACD44Ch in Silvo's binary) |
0 | 160 }; |
161 #pragma pack(pop) | |
162 | |
163 /* 207 */ | |
164 #pragma pack(push, 1) | |
165 struct Party | |
166 { | |
167 Party(): | |
168 uTimePlayed(0) | |
169 { | |
783 | 170 Zero(); |
0 | 171 } |
172 | |
783 | 173 void Zero(); |
130 | 174 void UpdatePlayersAndHirelingsEmotions(); |
0 | 175 void RestAndHeal(); |
176 unsigned int GetPartyFame(); | |
177 void CreateDefaultParty(char bGiveItems); | |
178 int Reset(); | |
179 void ResetPosMiscAndSpellBuffs(); | |
180 bool HasItem(unsigned int uItemID); | |
181 void SetHoldingItem(ItemGen *pItem); | |
182 int GetNextActiveCharacter(); | |
183 bool _497FC5_check_party_perception_against_level(); | |
1558
30db6d265ceb
Changed the new Assert macro definition slightly, Party::AddItem (for some reason in players.cpp) renamed to Party::AddItemToParty, cleaned up; some unused variables in previous functions removed
Grumpy7
parents:
1546
diff
changeset
|
184 bool AddItemToParty(ItemGen *pItem); |
0 | 185 void Yell(); |
1035 | 186 void CountHirelings(); |
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:
1793
diff
changeset
|
187 |
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:
1793
diff
changeset
|
188 void GivePartyExp(unsigned int pEXPNum); |
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:
1793
diff
changeset
|
189 int GetPartyReputation(); |
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:
1793
diff
changeset
|
190 |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1827
diff
changeset
|
191 |
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1827
diff
changeset
|
192 void PartyFindsGold(unsigned int uNumGold, int _1_dont_share_with_followers___2_the_same_but_without_a_message__else_normal); |
1829
e4e27261d84e
sub_421B2C_PlaceInInventory_or_DropPickedItem to Party::sub_421B2C_PlaceInInventory_or_DropPickedItem
Grumpy7
parents:
1828
diff
changeset
|
193 void sub_421B2C_PlaceInInventory_or_DropPickedItem(); |
1828
35c1e4ff6ba7
party_finds_gold to Party::PartyFindsGold, cleaned up, moved Level/Decoration.h reference out of Indoor.h
Grumpy7
parents:
1827
diff
changeset
|
194 |
0 | 195 static void SetGold(unsigned int uNumGold); |
196 static void TakeGold(unsigned int uNumGold); | |
593 | 197 static void SetFood(unsigned int uNumFood); |
0 | 198 static void TakeFood(unsigned int uNumFood); |
592 | 199 static void GiveFood(unsigned int _this); |
0 | 200 |
201 inline bool WizardEyeActive() {return pPartyBuffs[PARTY_BUFF_WIZARD_EYE].uExpireTime > 0;} | |
202 inline int WizardEyeSkillLevel() {return pPartyBuffs[PARTY_BUFF_WIZARD_EYE].uSkill;} | |
203 inline bool TorchlightActive() {return pPartyBuffs[PARTY_BUFF_TORCHLIGHT].uExpireTime > 0;} | |
204 inline bool FlyActive() {return pPartyBuffs[PARTY_BUFF_FLY].uExpireTime > 0;} | |
205 inline bool WaterWalkActive() {return pPartyBuffs[PARTY_BUFF_WATER_WALK].uExpireTime > 0;} | |
206 inline bool ImmolationActive() {return pPartyBuffs[PARTY_BUFF_IMMOLATION].uExpireTime > 0;} | |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1053
diff
changeset
|
207 inline int ImmolationSkillLevel() {return pPartyBuffs[PARTY_BUFF_IMMOLATION].uSkill;} |
0 | 208 inline bool FeatherFallActive() {return pPartyBuffs[PARTY_BUFF_FEATHER_FALL].uExpireTime > 0;} |
141 | 209 inline bool Invisible() {return pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime > 0;} |
0 | 210 |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1053
diff
changeset
|
211 inline bool GetRedAlert() {return (uFlags & PARTY_FLAGS_1_ALERT_RED) != 0;} |
390 | 212 inline void SetRedAlert() {uFlags |= PARTY_FLAGS_1_ALERT_RED;} |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1053
diff
changeset
|
213 inline bool GetYellowAlert() {return (uFlags & PARTY_FLAGS_1_ALERT_YELLOW) != 0;} |
390 | 214 inline void SetYellowAlert() {uFlags |= PARTY_FLAGS_1_ALERT_YELLOW;} |
215 | |
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:
1310
diff
changeset
|
216 bool IsPartyEvil(); |
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:
1310
diff
changeset
|
217 bool IsPartyGood(); |
0 | 218 |
219 int field_0; | |
220 unsigned int uPartyHeight; | |
221 unsigned int uDefaultPartyHeight; | |
222 int sEyelevel; | |
223 unsigned int uDefaultEyelevel; | |
1546 | 224 int field_14_radius; |
120 | 225 int y_rotation_granularity; |
0 | 226 unsigned int uWalkSpeed; |
122 | 227 int y_rotation_speed; // deg/s |
0 | 228 int field_24; |
229 int field_28; | |
230 unsigned __int64 uTimePlayed; | |
231 __int64 uLastRegenerationTime; | |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1736
diff
changeset
|
232 PartyTimeStruct PartyTimes; |
0 | 233 Vec3_int_ vPosition; |
234 int sRotationY; | |
235 int sRotationX; | |
236 Vec3_int_ vPrevPosition; | |
237 int sPrevRotationY; | |
238 int sPrevRotationX; | |
239 int sPrevEyelevel; | |
240 int field_6E0; | |
241 int field_6E4; | |
242 int uFallSpeed; | |
243 int field_6EC; | |
244 int field_6F0; | |
831 | 245 int floor_face_pid; // face we are standing at |
246 int walk_sound_timer; | |
0 | 247 int field_6FC; |
248 int uFallStartY; | |
249 unsigned int bFlying; | |
250 char field_708; | |
1793
4dee76d79c78
dword_5B65CC to npcIdToDismissAfterDialogue, Party::field_709 to Party::hirelingScrollPosition
Grumpy7
parents:
1747
diff
changeset
|
251 unsigned __int8 hirelingScrollPosition; |
0 | 252 char field_70A; |
253 char field_70B; | |
254 unsigned int uCurrentYear; | |
255 unsigned int uCurrentMonth; | |
256 unsigned int uCurrentMonthWeek; | |
257 unsigned int uDaysPlayed; | |
258 unsigned int uCurrentHour; | |
259 unsigned int uCurrentMinute; | |
260 unsigned int uCurrentTimeSecond; | |
261 unsigned int uNumFoodRations; | |
262 int field_72C; | |
263 int field_730; | |
264 unsigned int uNumGold; | |
265 unsigned int uNumGoldInBank; | |
266 unsigned int uNumDeaths; | |
267 int field_740; | |
268 int uNumPrisonTerms; | |
269 unsigned int uNumBountiesCollected; | |
270 int field_74C; | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
271 std::array<__int16, 5> monster_id_for_hunting; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
272 std::array<__int16, 5> monster_for_hunting_killed; |
766 | 273 unsigned char days_played_without_rest; |
484 | 274 unsigned __int8 _quest_bits[64]; |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
275 std::array<unsigned __int8, 16> pArcomageWins; |
0 | 276 char field_7B5_in_arena_quest; |
277 char uNumArenaPageWins; | |
278 char uNumArenaSquireWins; | |
279 char uNumArenaKnightWins; | |
280 char uNumArenaLordWins; | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
281 std::array<char, 29> pIsArtifactFound; //7ba |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
282 std::array<char, 39> field_7d7; |
1310 | 283 unsigned char _autonote_bits[26]; |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
284 std::array<char, 60> field_818; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
285 std::array<char, 32> field_854; |
949 | 286 int uNumArcomageWins; |
287 int uNumArcomageLoses; | |
0 | 288 unsigned int bTurnBasedModeOn; |
289 int field_880; | |
290 int uFlags2; | |
373 | 291 PartyAlignment alignment; |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
292 std::array<SpellBuff, 20> pPartyBuffs; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
293 std::array<Player, 4> pPlayers; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
294 std::array<NPCData, 2> pHirelings; |
0 | 295 ItemGen pPickedItem; |
296 unsigned int uFlags; | |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
297 std::array<std::array<ItemGen, 12>, 53> StandartItemsInShops; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
298 std::array<std::array<ItemGen, 12>, 53> SpecialItemsInShops; //D0EC |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
299 std::array<std::array<ItemGen, 12>, 32> SpellBooksInGuilds; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
300 std::array<char, 24> field_1605C; |
0 | 301 char pHireling1Name[100]; |
302 char pHireling2Name[100]; | |
349 | 303 int armageddon_timer; |
1906 | 304 int armageddonDamage; |
1861
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
305 std::array<int, 4> pTurnBasedPlayerRecoveryTimes; |
a86c60679949
changing most of party arrays to std::arrays, some minor cleanups in actor.cpp
Grumpy7
parents:
1829
diff
changeset
|
306 std::array<int, 53> InTheShopFlags; |
0 | 307 int uFine; |
308 float flt_TorchlightColorR; | |
309 float flt_TorchlightColorG; | |
310 float flt_TorchlightColorB; | |
311 }; | |
312 #pragma pack(pop) | |
313 | |
314 | |
315 | |
316 extern Party *pParty; // idb | |
317 | |
318 | |
66 | 319 extern struct ActionQueue *pPartyActionQueue; |
320 | |
1494 | 321 inline bool TestPartyQuestBit(PARTY_QUEST_BITS bit) |
322 { | |
323 return _449B57_test_bit(pParty->_quest_bits, bit); | |
324 } |