Mercurial > mm7
annotate Party.h @ 1344:65379a50e4eb
Portals in indoor (continue)
author | Ritor1 |
---|---|
date | Thu, 11 Jul 2013 17:47:12 +0600 |
parents | 0665a061132b |
children | 60cdc3eac407 |
rev | line source |
---|---|
0 | 1 #pragma once |
2 #include "Player.h" | |
3 #include "NPC.h" | |
4 #include "VectorTypes.h" | |
5 | |
6 | |
7 | |
1053 | 8 #define PARTY_AUTONOTES_BIT__EMERALD_FIRE_FOUNTAIN 2 |
0 | 9 |
710 | 10 enum PARTY_QUEST_BITS: unsigned __int32 |
11 { | |
1035 | 12 PARTY_QUEST_EMERALD_RED_POTION_ACTIVE = 1, |
13 PARTY_QUEST_EMERALD_SEASHELL_ACTIVE = 2, | |
14 PARTY_QUEST_EMERALD_LONGBOW_ACTIVE = 3, | |
15 PARTY_QUEST_EMERALD_PLATE_ACTIVE = 4, | |
16 PARTY_QUEST_EMERALD_LUTE_ACTIVE = 5, | |
17 PARTY_QUEST_EMERALD_HAT_ACTIVE = 6, | |
18 | |
1052 | 19 PARTY_QUEST_EMERALD_MARGARETH_OFF = 17, |
20 | |
778 | 21 PARTY_QUEST_EVENMORN_MAP_FOUND = 64, |
981 | 22 PARTY_QUEST_FINISHED_EMERALD_ISLE = 136, |
710 | 23 PARTY_QUEST_FOUNTAIN_HARMONDALE = 206, |
24 PARTY_QUEST_FOUNTAIN_NIGHON = 207, | |
25 PARTY_QUEST_FOUNTAIN_PIERPONT = 208, | |
26 PARTY_QUEST_FOUNTAIN_CELESTIA = 209, | |
27 PARTY_QUEST_FOUNTAIN_THE_PIT = 210, | |
28 PARTY_QUEST_FOUNTAIN_EVENMORN_ISLE = 211 | |
29 }; | |
0 | 30 |
31 | |
32 | |
33 | |
34 /* 355 */ | |
141 | 35 enum PARTY_FLAGS_1: __int32 |
36 { | |
569 | 37 PARTY_FLAGS_1_FALLING = 0x0008, |
390 | 38 PARTY_FLAGS_1_ALERT_RED = 0x0010, |
39 PARTY_FLAGS_1_ALERT_YELLOW = 0x0020, | |
569 | 40 PARTY_FLAGS_1_STANDING_ON_WATER = 0x0080, |
390 | 41 PARTY_FLAGS_1_LANDING = 0x0100, |
816 | 42 PARTY_FLAGS_1_BURNING = 0x200 |
141 | 43 }; |
44 enum PARTY_FLAGS_2: __int32 | |
0 | 45 { |
46 PARTY_FLAGS_2_RUNNING = 0x2, | |
47 }; | |
48 | |
49 /* 347 */ | |
50 enum PARTY_BUFF_INDEX | |
51 { | |
488 | 52 PARTY_BUFF_RESIST_AIR = 0, |
53 PARTY_BUFF_RESIST_BODY = 1, | |
54 PARTY_BUFF_DAY_OF_GODS = 2, | |
55 PARTY_BUFF_DETECT_LIFE = 3, | |
56 PARTY_BUFF_RESIST_EARTH = 4, | |
57 PARTY_BUFF_FEATHER_FALL = 5, | |
58 PARTY_BUFF_RESIST_FIRE = 6, | |
59 PARTY_BUFF_FLY = 7, | |
60 PARTY_BUFF_HASTE = 8, | |
61 PARTY_BUFF_HEROISM = 9, | |
62 PARTY_BUFF_IMMOLATION = 10, | |
271 | 63 PARTY_BUFF_INVISIBILITY = 11, |
488 | 64 PARTY_BUFF_RESIST_MIND = 12, |
65 PARTY_BUFF_PROTECTION_FROM_MAGIC = 13, | |
66 PARTY_BUFF_SHIELD = 14, | |
67 PARTY_BUFF_STONE_SKIN = 15, | |
68 PARTY_BUFF_TORCHLIGHT = 16, | |
69 PARTY_BUFF_RESIST_WATER = 17, | |
70 PARTY_BUFF_WATER_WALK = 18, | |
71 PARTY_BUFF_WIZARD_EYE = 19, | |
0 | 72 }; |
73 | |
74 | |
75 | |
76 /* 300 */ | |
77 enum PartyAction: unsigned __int32 | |
78 { | |
79 PARTY_INVALID = 0, | |
80 PARTY_TurnLeft = 0x1, | |
81 PARTY_TurnRight = 0x2, | |
82 PARTY_StrafeLeft = 0x3, | |
83 PARTY_StrafeRight = 0x4, | |
84 PARTY_WalkForward = 0x5, | |
85 PARTY_WalkBackward = 0x6, | |
86 PARTY_LookUp = 0x7, | |
87 PARTY_LookDown = 0x8, | |
88 PARTY_CenterView = 0x9, | |
89 PARTY_unkA = 0xA, | |
90 PARTY_unkB = 0xB, | |
91 PARTY_Jump = 0xC, | |
92 PARTY_FlyUp = 0xD, | |
93 PARTY_FlyDown = 0xE, | |
94 PARTY_Land = 0xF, | |
95 PARTY_RunForward = 0x10, | |
96 PARTY_RunBackward = 0x11, | |
97 PARTY_FastTurnLeft = 0x12, | |
98 PARTY_FastTurnRight = 0x13, | |
99 | |
100 PARTY_dword = 0xFFFFFFFF | |
101 }; | |
102 | |
103 | |
104 | |
105 /* 135 */ | |
106 #pragma pack(push, 1) | |
107 struct ActionQueue | |
108 { | |
109 void Add(PartyAction action); | |
783 | 110 void Reset(); |
0 | 111 PartyAction Next(); |
112 | |
113 unsigned int uNumActions; | |
114 PartyAction pActions[30]; | |
115 }; | |
116 #pragma pack(pop) | |
117 | |
118 | |
119 | |
120 | |
121 | |
373 | 122 enum PartyAlignment: unsigned __int32 |
123 { | |
124 PartyAlignment_Good = 0, | |
125 PartyAlignment_Neutral = 1, | |
126 PartyAlignment_Evil = 2 | |
127 }; | |
0 | 128 |
129 | |
130 | |
131 | |
132 | |
133 /* 208 */ | |
134 #pragma pack(push, 1) | |
135 struct Party_stru0 | |
136 { | |
137 int field_0[20]; | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
470
diff
changeset
|
138 // int field_50[170]; |
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
470
diff
changeset
|
139 __int64 field_50[85]; |
484 | 140 __int64 _shop_ban_times[53]; |
141 int field_4A0[20]; | |
0 | 142 int field_4F0[38]; |
143 char field_588[2]; | |
484 | 144 __int64 _s_times[21]; //5d8 440h+8*51 |
527 | 145 __int64 field_632[8]; |
146 char field_672[6]; | |
484 | 147 // char pIsArtifactFound[8]; |
0 | 148 }; |
149 #pragma pack(pop) | |
150 | |
151 /* 207 */ | |
152 #pragma pack(push, 1) | |
153 struct Party | |
154 { | |
155 Party(): | |
156 uTimePlayed(0) | |
157 { | |
783 | 158 Zero(); |
0 | 159 } |
160 | |
783 | 161 void Zero(); |
130 | 162 void UpdatePlayersAndHirelingsEmotions(); |
0 | 163 void RestAndHeal(); |
164 unsigned int GetPartyFame(); | |
165 void CreateDefaultParty(char bGiveItems); | |
166 int Reset(); | |
167 void ResetPosMiscAndSpellBuffs(); | |
168 bool HasItem(unsigned int uItemID); | |
169 void SetHoldingItem(ItemGen *pItem); | |
170 int GetNextActiveCharacter(); | |
171 bool _497FC5_check_party_perception_against_level(); | |
172 bool AddItem(ItemGen *pItem); | |
173 void Yell(); | |
1035 | 174 void CountHirelings(); |
0 | 175 |
176 static void SetGold(unsigned int uNumGold); | |
177 static void TakeGold(unsigned int uNumGold); | |
593 | 178 static void SetFood(unsigned int uNumFood); |
0 | 179 static void TakeFood(unsigned int uNumFood); |
592 | 180 static void GiveFood(unsigned int _this); |
0 | 181 |
182 inline bool WizardEyeActive() {return pPartyBuffs[PARTY_BUFF_WIZARD_EYE].uExpireTime > 0;} | |
183 inline int WizardEyeSkillLevel() {return pPartyBuffs[PARTY_BUFF_WIZARD_EYE].uSkill;} | |
184 inline bool TorchlightActive() {return pPartyBuffs[PARTY_BUFF_TORCHLIGHT].uExpireTime > 0;} | |
185 inline bool FlyActive() {return pPartyBuffs[PARTY_BUFF_FLY].uExpireTime > 0;} | |
186 inline bool WaterWalkActive() {return pPartyBuffs[PARTY_BUFF_WATER_WALK].uExpireTime > 0;} | |
187 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
|
188 inline int ImmolationSkillLevel() {return pPartyBuffs[PARTY_BUFF_IMMOLATION].uSkill;} |
0 | 189 inline bool FeatherFallActive() {return pPartyBuffs[PARTY_BUFF_FEATHER_FALL].uExpireTime > 0;} |
141 | 190 inline bool Invisible() {return pPartyBuffs[PARTY_BUFF_INVISIBILITY].uExpireTime > 0;} |
0 | 191 |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1053
diff
changeset
|
192 inline bool GetRedAlert() {return (uFlags & PARTY_FLAGS_1_ALERT_RED) != 0;} |
390 | 193 inline void SetRedAlert() {uFlags |= PARTY_FLAGS_1_ALERT_RED;} |
1113
39eaa6b00141
something to bool cast (performance warning) mostly fixed
Grumpy7
parents:
1053
diff
changeset
|
194 inline bool GetYellowAlert() {return (uFlags & PARTY_FLAGS_1_ALERT_YELLOW) != 0;} |
390 | 195 inline void SetYellowAlert() {uFlags |= PARTY_FLAGS_1_ALERT_YELLOW;} |
196 | |
0 | 197 |
198 int field_0; | |
199 unsigned int uPartyHeight; | |
200 unsigned int uDefaultPartyHeight; | |
201 int sEyelevel; | |
202 unsigned int uDefaultEyelevel; | |
203 int field_14; | |
120 | 204 int y_rotation_granularity; |
0 | 205 unsigned int uWalkSpeed; |
122 | 206 int y_rotation_speed; // deg/s |
0 | 207 int field_24; |
208 int field_28; | |
209 unsigned __int64 uTimePlayed; | |
210 __int64 uLastRegenerationTime; | |
211 Party_stru0 field_3C; | |
212 Vec3_int_ vPosition; | |
213 int sRotationY; | |
214 int sRotationX; | |
215 Vec3_int_ vPrevPosition; | |
216 int sPrevRotationY; | |
217 int sPrevRotationX; | |
218 int sPrevEyelevel; | |
219 int field_6E0; | |
220 int field_6E4; | |
221 int uFallSpeed; | |
222 int field_6EC; | |
223 int field_6F0; | |
831 | 224 int floor_face_pid; // face we are standing at |
225 int walk_sound_timer; | |
0 | 226 int field_6FC; |
227 int uFallStartY; | |
228 unsigned int bFlying; | |
229 char field_708; | |
230 char field_709; | |
231 char field_70A; | |
232 char field_70B; | |
233 unsigned int uCurrentYear; | |
234 unsigned int uCurrentMonth; | |
235 unsigned int uCurrentMonthWeek; | |
236 unsigned int uDaysPlayed; | |
237 unsigned int uCurrentHour; | |
238 unsigned int uCurrentMinute; | |
239 unsigned int uCurrentTimeSecond; | |
240 unsigned int uNumFoodRations; | |
241 int field_72C; | |
242 int field_730; | |
243 unsigned int uNumGold; | |
244 unsigned int uNumGoldInBank; | |
245 unsigned int uNumDeaths; | |
246 int field_740; | |
247 int uNumPrisonTerms; | |
248 unsigned int uNumBountiesCollected; | |
249 int field_74C; | |
250 __int16 field_750[5]; | |
251 __int16 field_75A[5]; | |
766 | 252 unsigned char days_played_without_rest; |
484 | 253 unsigned __int8 _quest_bits[64]; |
0 | 254 unsigned __int8 pArcomageWins[16]; |
255 char field_7B5_in_arena_quest; | |
256 char uNumArenaPageWins; | |
257 char uNumArenaSquireWins; | |
258 char uNumArenaKnightWins; | |
259 char uNumArenaLordWins; | |
492 | 260 char pIsArtifactFound[29]; //7ba |
261 char field_7d7[39]; | |
1310 | 262 unsigned char _autonote_bits[26]; |
263 char field_818[60]; | |
0 | 264 char field_854[32]; |
949 | 265 int uNumArcomageWins; |
266 int uNumArcomageLoses; | |
0 | 267 unsigned int bTurnBasedModeOn; |
268 int field_880; | |
269 int uFlags2; | |
373 | 270 PartyAlignment alignment; |
0 | 271 SpellBuff pPartyBuffs[20]; |
272 Player pPlayers[4]; | |
273 NPCData pHirelings[2]; | |
274 ItemGen pPickedItem; | |
275 unsigned int uFlags; | |
463 | 276 ItemGen StandartItemsInShops[53][12]; |
470 | 277 ItemGen SpecialItemsInShops[53][12]; //D0EC |
496 | 278 ItemGen SpellBooksInGuilds[32][12]; |
527 | 279 char field_1605C[24]; |
0 | 280 char pHireling1Name[100]; |
281 char pHireling2Name[100]; | |
349 | 282 int armageddon_timer; |
0 | 283 int field_16140; |
284 int pTurnBasedPlayerRecoveryTimes[4]; | |
463 | 285 int InTheShopFlags[53]; |
0 | 286 int uFine; |
287 float flt_TorchlightColorR; | |
288 float flt_TorchlightColorG; | |
289 float flt_TorchlightColorB; | |
290 }; | |
291 #pragma pack(pop) | |
292 | |
293 | |
294 | |
295 extern Party *pParty; // idb | |
296 | |
297 | |
66 | 298 extern struct ActionQueue *pPartyActionQueue; |
299 |