annotate Events.cpp @ 1294:6bbd50bda571

Слияние
author Ritor1
date Mon, 17 Jun 2013 09:09:30 +0600
parents 24bc24b64ec2
children 86a83e12d795
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
4
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 747
diff changeset
5 #include <assert.h>
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
6 #include <stdlib.h>
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
7
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
8 #include "Texture.h"
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1254
diff changeset
9 #include "mm7_data.h"
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 978
diff changeset
10 #include "VideoPlayer.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 978
diff changeset
11 #include "Mouse.h"
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 978
diff changeset
12
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
13 #include "MapInfo.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
14 #include "Game.h"
1254
b9747d9e9b4e more included header cleanup
Grumpy7
parents: 1205
diff changeset
15 #include "Render.h"
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
16 #include "GUIWindow.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
17 #include "GUIProgressBar.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
18 #include "Chest.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
19 #include "stru176.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
20 #include "LOD.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
21 #include "Actor.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
22 #include "Party.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
23 #include "Math.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
24 #include "AudioPlayer.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
25 #include "Indoor.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
26 #include "Viewport.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
27 #include "texts.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
28 #include "Allocator.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
29 #include "stru123.h"
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
30 #include "stru159.h"
0
Ritor1
parents:
diff changeset
31 #include "Events.h"
Ritor1
parents:
diff changeset
32 #include "Events2D.h"
629
59713bb36033 houses func moved to uihouses
Gloval
parents: 616
diff changeset
33 #include "UIHouses.h"
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
34 #include "Log.h"
481
5b6e2021c6fe HOUSE_ID
Ritor1
parents: 480
diff changeset
35 #include "MM7.h"
0
Ritor1
parents:
diff changeset
36
Ritor1
parents:
diff changeset
37
Ritor1
parents:
diff changeset
38
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
39 std::array<EventIndex, 4400> pSomeOtherEVT_Events;
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 373
diff changeset
40 signed int uSomeOtherEVT_NumEvents;
0
Ritor1
parents:
diff changeset
41 char *pSomeOtherEVT;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
42 std::array<EventIndex, 4400> pSomeEVT_Events;
428
24936a5ff8ca level hints
Gloval
parents: 423
diff changeset
43 signed int uSomeEVT_NumEvents;
0
Ritor1
parents:
diff changeset
44 char *pSomeEVT;
Ritor1
parents:
diff changeset
45
Ritor1
parents:
diff changeset
46 unsigned int uGlobalEVT_NumEvents;
Ritor1
parents:
diff changeset
47 unsigned int uGlobalEVT_Size;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
48 std::array<char, 46080> pGlobalEVT;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
49 std::array<EventIndex, 4400> pGlobalEVT_Index;
0
Ritor1
parents:
diff changeset
50
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
51 std::array<unsigned int, 500> pLevelStrOffsets;
0
Ritor1
parents:
diff changeset
52 unsigned int uLevelStrNumStrings;
Ritor1
parents:
diff changeset
53 unsigned int uLevelStrFileSize;
428
24936a5ff8ca level hints
Gloval
parents: 423
diff changeset
54 signed int uLevelEVT_NumEvents;
0
Ritor1
parents:
diff changeset
55 unsigned int uLevelEVT_Size;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
56 std::array<char, 9216> pLevelStr;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
57 std::array<char, 9216> pLevelEVT;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
58 std::array<EventIndex, 4400> pLevelEVT_Index;
0
Ritor1
parents:
diff changeset
59
1289
Ritor1
parents: 1205
diff changeset
60 _2devent p2DEvents[525];
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
61
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
62
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
63
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
64 //----- (00443CE1) --------------------------------------------------------
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
65 unsigned int LoadEventsToBuffer(const char *pContainerName, char *pBuffer, unsigned int uBufferSize)
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
66 {
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
67 FILE *pLodFile; // eax@1
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
68 unsigned int uTextureSize; // esi@3
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
69 char Args[60]; // [sp+8h] [bp-B4h]@6
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
70 void *ptr; // [sp+B8h] [bp-4h]@1
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
71 Texture DstBuf; // [sp+6Ch] [bp-50h]@1
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
72
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
73 ptr = pEvents_LOD->LoadRaw(pContainerName, 0);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
74 pLodFile = pEvents_LOD->FindContainer(pContainerName, 0);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
75 if ( !pLodFile )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
76 Abortf("Unable to load %s", pContainerName);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
77 fread(&DstBuf, 1, 48, pLodFile);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
78 uTextureSize = DstBuf.uDecompressedSize;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
79 if ( !DstBuf.uDecompressedSize )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
80 uTextureSize = DstBuf.uTextureSize;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
81 memset(&DstBuf, 0, 72);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
82 if ( uTextureSize >= (signed int)uBufferSize )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
83 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
84 sprintf(Args, "File %s Size %lu - Buffer size %lu", pContainerName, uTextureSize, uBufferSize);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
85 Abortf(Args);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
86 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
87 memcpy(pBuffer, ptr, uTextureSize);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
88 pAllocator->FreeChunk(ptr);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
89 return uTextureSize;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
90 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
91
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
92 //----- (00443DA1) --------------------------------------------------------
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
93 void __cdecl Initialize_GlobalEVT()
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 747
diff changeset
94 {
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
95 struct raw_event_header
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
96 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
97 unsigned char evt_size;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
98 unsigned char evt_id_l;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
99 unsigned char evt_id_h;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
100 unsigned char evt_sequence_num;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
101 } ;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
102 uint events_count;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
103 unsigned int offset_in;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
104 raw_event_header *current_hdr;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
105 uGlobalEVT_NumEvents = 0;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
106 uGlobalEVT_Size = LoadEventsToBuffer("global.evt", pGlobalEVT.data(), 46080);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
107 if ( !uGlobalEVT_Size )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
108 return;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
109 memset(pGlobalEVT_Index.data(), 0x80, sizeof(pGlobalEVT_Index));//52800
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
110 events_count = uGlobalEVT_NumEvents;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
111 current_hdr=(raw_event_header *)pGlobalEVT.data();
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
112 offset_in=0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
113 for (events_count = 0, offset_in = 0; offset_in < uGlobalEVT_Size; ++events_count)
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
114 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
115 pGlobalEVT_Index[events_count].uEventID=current_hdr->evt_id_l+(current_hdr->evt_id_h<<8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
116 pGlobalEVT_Index[events_count].event_sequence_num=current_hdr->evt_sequence_num;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
117 pGlobalEVT_Index[events_count].uEventOffsetInEVT=offset_in;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
118 offset_in+=current_hdr->evt_size+1;
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
119
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
120 current_hdr=(raw_event_header *)&pGlobalEVT[offset_in];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
121 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
122 uGlobalEVT_NumEvents = events_count;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
123
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 747
diff changeset
124 assert(uGlobalEVT_NumEvents < 4400);
cf2fbac6edc9 Misc cleaning
Nomad
parents: 747
diff changeset
125 }
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
126
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
127
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
128
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
129 //----- (00443EF8) --------------------------------------------------------
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
130 void LoadLevel_InitializeLevelEvt()
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
131 {
601
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
132 struct raw_event_header
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
133 {
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
134 unsigned char evt_size;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
135 unsigned char evt_id_l;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
136 unsigned char evt_id_h;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
137 unsigned char evt_sequence_num;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
138 } ;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
139 uint events_count;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
140 unsigned int offset_in;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
141 raw_event_header *current_hdr;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
142
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
143 if (!uLevelEVT_Size)
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
144 return;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
145
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
146 memset(array_5B5928_timers, 0, 3200);
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
147 memset(pLevelEVT_Index.data(), 80, sizeof(EventIndex)*4400);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
148
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
149 uLevelEVT_NumEvents = 0;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
150 dword_5B65C8_timers_count = 0;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
151
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
152 current_hdr=(raw_event_header *)pLevelEVT.data();
601
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
153 offset_in=0;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
154 for (events_count = 0, offset_in = 0; offset_in < uLevelEVT_Size; ++events_count)
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
155 {
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
156 pLevelEVT_Index[events_count].uEventID=current_hdr->evt_id_l+(current_hdr->evt_id_h<<8);
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
157 pLevelEVT_Index[events_count].event_sequence_num=current_hdr->evt_sequence_num;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
158 pLevelEVT_Index[events_count].uEventOffsetInEVT=offset_in;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
159 offset_in+=current_hdr->evt_size+1;
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
160
601
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
161 current_hdr=(raw_event_header *)&pLevelEVT[offset_in];
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
162 }
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
163 uLevelEVT_NumEvents = events_count;
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
164
d59398528e4f level events loading fix
Gloval
parents: 569
diff changeset
165 /*
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
166 EmeraldIsle::Variables:
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
167 [0] ???
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
168 [1] ???
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
169 [2] Luck Fountain uses left
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
170 [3] Gold Fountain used this week
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
171 [4] Gold Fountain total uses
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
172
1053
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
173
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
174 Emerald Isle #110 // Fire Resistance fountain
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
175 0 LocationName
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
176 0 if (Player.FireResistance < 50)
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
177 {
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
178 1 Set(Player.FireResistance, 50)
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
179 2 SetFooterString(22) // +50 Fire Resistance (temporarily)
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
180 3 Add(Party.Autonotes, 2)
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
181 4 goto return
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
182 }
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
183 5 SetFooterString(11) // Refreshing!
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
184 6 return
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
185
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
186
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
187
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
188 Emerald Isle #111 // ???
1053
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
189 Initialize
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
190 Set(Map.Variables[0], 30)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
191 Set(Map.Variables[1], 30)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
192
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
193
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
194 Emerald Isle #114 // month timer - manage luck fountain
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
195 0 LocationName
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
196 0 if (Player.BaseLuck >= 15)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
197 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
198 2 SetFooterString(11) // Refreshing!
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
199 3 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
200 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
201 else
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
202 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
203 1 if (Map.Variables[2] >= 1)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
204 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
205 4 Sub(Map.Variables[2], 1)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
206 5 Add(Player.BaseLuck, 2)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
207 6 SetFooterString(25) // +2 Luck (Permament)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
208 7 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
209 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
210 else
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
211 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
212 2 SetFooterString(11) // Refreshing!
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
213 3 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
214 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
215 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
216
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
217 8 Initialize
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
218 9 Set Map.Variables[2], 8
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
219
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
220
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
221
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
222 Emerald Isle #115 // week timer - gold fountain in the center of town
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
223 0 LocationName
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
224 0 if (Map.Variables[4] < 3)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
225 {
1053
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
226 1 if (Map.Variables[3] == 0)
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
227 {
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
228 2 if (Party.Gold < 201)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
229 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
230 3 if (Player.BaseLuck >= 15)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
231 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
232 5 Add(Map.Variables[3], 1)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
233 6 Add(Party.Gold, 1000)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
234 7 Add(Map.Variables[4], 1)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
235 8 goto return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
236 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
237 else
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
238 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
239 4 goto 9
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
240 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
241 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
242 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
243 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
244 9 SetFooterString(11) // Refreshing!
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
245 10 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
246
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
247 11 Initialize
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
248 12 Set(Map.Variables[3], 0)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
249
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
250
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
251
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
252
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
253
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
254 Emerald Isle #220 // day timer - monster spawner
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
255 0 LocationName
1053
1c10b24a4159 BLV picky-blicky
Nomad
parents: 1052
diff changeset
256 0 Initialize
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
257 1 if (NumAliveActors(group=20) != 0)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
258 2 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
259 3 SpawnMonsters(1, level=1, count=10, x=-336, y=14512, z=0, group=20)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
260 4 SpawnMonsters(1, level=2, count=5, x=16, y=16352, z=90, group=20)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
261 5 SpawnMonsters(1, level=1, count=10, x=480, y=18288, z=6, group=20)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
262
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
263
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
264
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
265 Emerald Isle #200 // margareth dock tip
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
266 0 if (!QBits.QuestDone[17])
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
267 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
268 1 InitiateNPCDialogue(npc=19)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
269 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
270 2 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
271
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
272
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
273 Emerald Isle #201 // margareth armoury tip
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
274 0 if (!QBits.QuestDone[17])
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
275 {
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
276 1 InitiateNPCDialogue(npc=20)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
277 }
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
278 2 return
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
279 */
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
280 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
281
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
282
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
283 //----- (0044684A) --------------------------------------------------------
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
284 void EventProcessor(int uEventID, int targetObj, int canShowMessages, int entry_line)
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
285 {
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
286 unsigned int v3; // eax@5
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
287 signed int v4; // esi@7
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
288 //char *v5; // eax@8
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
289 Player *v6; // ecx@8
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
290 //char *v7; // ebp@8
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
291 //signed int v8; // edx@10
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
292 //int v9; // edi@12
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
293 //ByteArray *v10; // esi@12
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
294 int v11; // eax@14
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
295 char *v12; // eax@15
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
296 //char *v13; // edi@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
297 int v14; // ebp@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
298 int v15; // edi@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
299 const char *v16; // esi@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
300 bool v17; // edx@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
301 int v18; // ecx@22
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
302 int v19; // ebp@36
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
303 signed int v20; // ecx@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
304 int v21; // eax@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
305 int v22; // edx@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
306 int v23; // eax@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
307 unsigned __int16 v24; // ax@45
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
308 int v25; // eax@54
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
309 LevelDecoration *v26; // eax@55
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
310 int v27; // eax@57
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
311 int v28; // ecx@57
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
312 //int v29; // edx@58
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
313 int pEventID; // eax@58
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
314 int pNPC_ID; // ecx@58
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
315 int pIndex; // esi@58
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
316 NPCData *pNPC; // ecx@58
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
317 int v34; // esi@59
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
318 int v35; // esi@60
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
319 int v36; // esi@61
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
320 int v37; // esi@62
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
321 int v38; // eax@78
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
322 int v39; // ecx@78
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
323 size_t v40; // edx@78
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
324 Actor *v41; // esi@79
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
325 int v42; // eax@84
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
326 int v43; // ecx@84
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
327 size_t v44; // edx@84
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
328 Actor *v45; // esi@85
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
329 void *v46; // eax@91
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
330 GUIWindow *v47; // eax@93
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
331 GUIButton *v48; // ecx@93
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
332 GUIButton *v49; // esi@94
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
333 char v50; // al@100
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
334 Player *v51; // esi@103
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
335 Player *v52; // ecx@106
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
336 int v53; // ecx@107
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
337 char v54; // al@111
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
338 Player *v55; // esi@114
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
339 Player *v56; // ecx@117
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
340 int v57; // ecx@118
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
341 signed int pValue; // ebp@124
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
342 Player *pPlayer; // esi@125
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
343 int v60; // eax@126
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
344 int v61; // edx@133
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
345 int v62; // eax@139
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
346 int v63; // ebp@145
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
347 signed int v64; // edi@146
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
348 unsigned int v65; // edx@148
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
349 Player *v66; // ecx@148
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
350 int v67; // esi@148
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
351 signed int v68; // eax@151
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
352 int v69; // esi@151
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
353 Player *v70; // ecx@158
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
354 unsigned int v71; // eax@159
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
355 int v72; // esi@159
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
356 signed int v73; // eax@162
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
357 int v74; // esi@162
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
358 int v75; // edx@172
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
359 Player *v76; // esi@173
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
360 signed int v77; // ebp@186
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
361 int v78; // edx@186
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
362 Player *v79; // esi@187
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
363 //signed int v80; // ebp@200
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
364 //int v81; // edx@200
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
365 Player *v82; // esi@201
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
366 int v83; // eax@212
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
367 int v84; // ebp@220
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
368 signed int v85; // ebp@224
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
369 char v86; // al@224
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
370 Player *v87; // esi@227
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
371 Player *v88; // ecx@231
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
372 int v89; // ecx@232
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
373 int v90; // eax@243
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
374 const char *v91; // ecx@247
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
375 int v92; // eax@251
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
376 char *v93; // eax@252
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
377 int v94; // ecx@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
378 int v95; // ebp@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
379 int v96; // edx@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
380 int v97; // eax@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
381 unsigned int v98; // edx@265
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
382 const char *v99; // esi@267
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
383 int v100; // edx@267
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
384 //char *v101; // edi@281
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
385 unsigned int v102; // esi@281
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
386 int v103; // edi@284
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
387 int v104; // eax@288
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
388 int v105; // edx@294
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
389 int v106; // [sp-20h] [bp-4C8h]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
390 signed int v107; // [sp-1Ch] [bp-4C4h]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
391 unsigned int v108; // [sp-18h] [bp-4C0h]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
392 signed int v109; // [sp-14h] [bp-4BCh]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
393 signed int v110; // [sp-10h] [bp-4B8h]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
394 int v111; // [sp-Ch] [bp-4B4h]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
395 // Event *v112; // [sp-8h] [bp-4B0h]@5
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
396 int v113; // [sp-8h] [bp-4B0h]@106
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
397 int v114; // [sp-8h] [bp-4B0h]@117
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
398 signed int v115; // [sp-8h] [bp-4B0h]@231
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
399 unsigned int v116; // [sp-8h] [bp-4B0h]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
400 int v117; // [sp-4h] [bp-4ACh]@106
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
401 int v118; // [sp-4h] [bp-4ACh]@117
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
402 int v119; // [sp-4h] [bp-4ACh]@231
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
403 int v120; // [sp-4h] [bp-4ACh]@278
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
404 int v121; // [sp-4h] [bp-4ACh]@294
310
Gloval
parents: 307
diff changeset
405 int curr_seq_num; // [sp+10h] [bp-498h]@4
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
406 //char *v123; // [sp+14h] [bp-494h]@0
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
407 signed int v124; // [sp+18h] [bp-490h]@7
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
408 //signed int v125; // [sp+1Ch] [bp-48Ch]@155
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
409 int v126; // [sp+1Ch] [bp-48Ch]@262
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
410 int player_choose; // [sp+20h] [bp-488h]@4
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
411 int v128; // [sp+24h] [bp-484h]@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
412 int v129; // [sp+24h] [bp-484h]@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
413 signed int v130; // [sp+28h] [bp-480h]@0
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
414 //int v131; // [sp+2Ch] [bp-47Ch]@1
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
415 int v132; // [sp+30h] [bp-478h]@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
416 signed int v133; // [sp+34h] [bp-474h]@1
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
417 int v134; // [sp+38h] [bp-470h]@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
418 int v135; // [sp+3Ch] [bp-46Ch]@262
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
419 int v136; // [sp+40h] [bp-468h]@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
420 int v137; // [sp+44h] [bp-464h]@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
421 int v138; // [sp+48h] [bp-460h]@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
422 int v139; // [sp+4Ch] [bp-45Ch]@40
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
423 ItemGen item; // [sp+50h] [bp-458h]@15
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
424 char Source[120]; // [sp+74h] [bp-434h]@15
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
425 char Str[120]; // [sp+ECh] [bp-3BCh]@21
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
426 Actor Dst; // [sp+164h] [bp-344h]@53
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
427
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
428 //v131 = uEventID;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
429 v133 = 0;
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
430 EvtTargetObj = targetObj;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
431 dword_5B65C4 = 0;
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
432 if ( !uEventID )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
433 {
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 774
diff changeset
434 if ( !GameUI_Footer_TimeLeft )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
435 ShowStatusBarString(pGlobalTXT_LocalizationStrings[521], 2u);// Nothing here
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
436 return;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
437 }
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
438 player_choose = (uActiveCharacter == 0)?6:4; //4 - active or 6 - random player if active =0
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
439 curr_seq_num = entry_line;
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
440
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
441 if ( activeLevelDecoration )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
442 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
443 uSomeEVT_NumEvents = uGlobalEVT_NumEvents;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
444 pSomeEVT = pGlobalEVT.data();
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
445 memcpy(pSomeEVT_Events.data(), pGlobalEVT_Index.data(), sizeof(EventIndex)*4400); //4400 evts
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
446 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
447 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
448 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
449 uSomeEVT_NumEvents = uLevelEVT_NumEvents;
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
450 pSomeEVT = pLevelEVT.data();
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
451 memcpy(pSomeEVT_Events.data(), pLevelEVT_Index.data(), sizeof(EventIndex)*4400);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
452 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
453
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
454 v4 = 0;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
455 v124 = 0;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
456 //for (uint i = 0; i < uSomeEVT_NumEvents; ++i)
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
457 // {
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
458 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
459 //v7 = "";
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
460 while ( 1 )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
461 {
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
462 if ( dword_5B65C4 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
463 goto LABEL_301;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
464 //v8 = v4;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
465 if ( pSomeEVT_Events[v4].uEventID == uEventID && pSomeEVT_Events[v4].event_sequence_num == curr_seq_num )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
466 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
467 //v9 = pSomeEVT_Events[v8].uEventOffsetInEVT;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
468 //v10 = (ByteArray *)&v5[v9];
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
469 auto _evt = (_evt_raw *)(pSomeEVT + pSomeEVT_Events[v4].uEventOffsetInEVT);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
470
310
Gloval
parents: 307
diff changeset
471 switch (_evt->_e_type)
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
472 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
473 case EVENT_CheckSeason:
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
474 //
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
475 if ( !sub_4465DF_check_season(_evt->v5) )
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
476 {
310
Gloval
parents: 307
diff changeset
477 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
478 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
479 break;
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
480 }
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
481 v124 = -1;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
482 curr_seq_num = _evt->v6 - 1;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
483 ++curr_seq_num;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
484 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
485 case EVENT_ShowMovie:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
486 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
487 strcpy(Source, (char *)&_evt->v7);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
488 v12 = (char *)&item.uExpireTime + strlen(Source) + 7;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
489 if ( *v12 == 32 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
490 *v12 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
491 if ( pVideoPlayer->field_54 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
492 pVideoPlayer->Unload();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
493 pVideoPlayer->bStopBeforeSchedule = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
494 pVideoPlayer->pResetflag = 0;
1038
39f42990698f Cleanings
Nomad
parents: 1033
diff changeset
495
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
496 v128 = pCurrentScreen;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
497 //v13 = &pSomeEVT[v9];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
498 //v14 = (unsigned __int8)v13[5];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
499 //v15 = (unsigned __int8)v13[6];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
500 v14 = _evt->v5;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
501 v15 = _evt->v6;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
502 strcpy(Str, Source);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
503 v16 = RemoveQuotes(Str);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
504 VideoPlayer::MovieLoop(v16, 0, v14, 1);
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1053
diff changeset
505 if ( !_stricmp(v16, "arbiter good") )
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 336
diff changeset
506 {
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 336
diff changeset
507 pParty->alignment = PartyAlignment_Good;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
508 v18 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
509 LOBYTE(v17) = 1;
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 336
diff changeset
510 SetUserInterface(PartyAlignment_Good, v17);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
511 if ( !v15 || v128 == 3 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
512 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
513 pCurrentScreen = v128;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
514 if ( v128 == 3 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
515 pGameLoadingUI_ProgressBar->uType = GUIProgressBar::TYPE_Fullscreen;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
516 if ( v128 == 13 )
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 836
diff changeset
517 pVideoPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1u);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
518 }
1038
39f42990698f Cleanings
Nomad
parents: 1033
diff changeset
519
310
Gloval
parents: 307
diff changeset
520 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
521 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
522
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
523 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
524 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
525 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
526 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1053
diff changeset
527 if ( !_stricmp(v16, "arbiter evil") )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
528 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
529 v18 = 2;
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 336
diff changeset
530 pParty->alignment = PartyAlignment_Evil;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
531 LOBYTE(v17) = 1;
373
edd2d8b7e3c4 Interface reloading fix & party alignment enum
Nomad
parents: 336
diff changeset
532 SetUserInterface(PartyAlignment_Evil, v17);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
533 if ( !v15 || v128 == 3 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
534 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
535 pCurrentScreen = v128;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
536 if ( v128 == 3 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
537 pGameLoadingUI_ProgressBar->uType = GUIProgressBar::TYPE_Fullscreen;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
538 if ( v128 == 13 )
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 836
diff changeset
539 pVideoPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1u);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
540 }
310
Gloval
parents: 307
diff changeset
541 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
542 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
543
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
544 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
545 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
546
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
547 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
548 }
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1053
diff changeset
549 if ( !_stricmp(v16, "pcout01") ) // moving to harmondale from emerald isle
766
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
550 {
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
551 Rest(0x2760u);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
552 pParty->RestAndHeal();
766
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
553 pParty->days_played_without_rest = 0;
a464d28566a6 days_played_without_rest
Nomad
parents: 762
diff changeset
554 }
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
555 if ( !v15 || v128 == 3 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
556 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
557 pCurrentScreen = v128;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
558 if ( v128 == 3 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
559 pGameLoadingUI_ProgressBar->uType = GUIProgressBar::TYPE_Fullscreen;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
560 if ( v128 == 13 )
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 836
diff changeset
561 pVideoPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1u);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
562 }
310
Gloval
parents: 307
diff changeset
563 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
564 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
565
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
566 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
567 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
568 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
569 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
570 case EVENT_CheckSkill:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
571 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
572 v19 = _evt->v7 + ((_evt->v8 + ((_evt->v9 + ((unsigned int)_evt->v10 << 8)) << 8)) << 8);
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
573 if ( player_choose < 0 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
574 goto LABEL_47;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
575 if ( player_choose <= 3 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
576 {
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
577 v24 = pParty->pPlayers[0].pActiveSkills[3486 * player_choose + _evt->v5];
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
578 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
579 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
580 {
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
581 if ( player_choose == 4 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
582 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
583 v24 = pPlayers[uActiveCharacter]->pActiveSkills[_evt->v5];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
584 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
585 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
586 {
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
587 if ( player_choose == 5 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
588 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
589 v20 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
590 v21 = 3486 * v130 + _evt->v5;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
591 v136 = 1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
592 LOWORD(v21) = pParty->pPlayers[0].pActiveSkills[v21];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
593 v137 = v21 & 0x40;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
594 v138 = v21 & 0x80;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
595 v22 = v21 & 0x100;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
596 v23 = v21 & 0x3F;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
597 v139 = v22;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
598 while ( v23 < v19 || !*(&v136 + _evt->v6) )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
599 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
600 ++v20;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
601 if ( v20 >= 4 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
602 {
310
Gloval
parents: 307
diff changeset
603 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
604 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
605
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
606 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
607 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
608 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
609 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
610 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
611 v11 = _evt->v11;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
612 goto LABEL_130;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
613 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
614 LABEL_47:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
615 //v10 = (ByteArray *)&v5[v9];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
616 v24 = pParty->pPlayers[0].pActiveSkills[_evt->v5 + 3486 * rand() % 4];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
617 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
618 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
619 v136 = 1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
620 v137 = v24 & 0x40;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
621 v138 = v24 & 0x80;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
622 v139 = v24 & 0x100;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
623 if ( (v24 & 0x3F) >= v19 && *(&v136 + _evt->v6) )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
624 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
625 v11 = _evt->v11;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
626 goto LABEL_130;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
627 }
310
Gloval
parents: 307
diff changeset
628 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
629 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
630
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
631 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
632 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
633 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
634 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
635
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
636 case EVENT_SpeakNPC:
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
637 if ( canShowMessages )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
638 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
639 //Actor::Actor(&Dst);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
640 memset(&Dst, 0, 0x344u);
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
641 dword_5B65D0_dialogue_actor_npc_id = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((unsigned int)_evt->v8 << 8)) << 8)) << 8);
602
628694cd5744 Margaret working
zipi
parents: 601
diff changeset
642 Dst.sNPC_ID = dword_5B65D0_dialogue_actor_npc_id;
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1018
diff changeset
643 GameUI_InitializeDialogue(&Dst, false);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
644 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
645 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
646 {
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
647 bDialogueUI_InitializeActor_NPC_ID = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((unsigned int)_evt->v8 << 8)) << 8)) << 8);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
648 }
310
Gloval
parents: 307
diff changeset
649 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
650 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
651
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
652 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
653 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
654 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
655 case EVENT_ChangeEvent:
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
656 v25 = EVT_DWORD(_evt->v5);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
657 if ( v25 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
658 {
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
659 stru_5E4C90._decor_events[activeLevelDecoration->_idx_in_stru123] = _evt->v5 - 124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
660 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
661 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
662 {
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
663 v26 = (LevelDecoration *)activeLevelDecoration;
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
664 stru_5E4C90._decor_events[activeLevelDecoration ->_idx_in_stru123] = 0;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
665 v26->field_2 |= 0x0020;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
666 }
310
Gloval
parents: 307
diff changeset
667 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
668 v4 = v124;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
669
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
670 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
671 case EVENT_SetNPCGreeting:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
672 v27 = EVT_DWORD(_evt->v5);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
673 pNPCStats->pNewNPCData[v27].uFlags &= 0xFFFFFFFCu;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
674 pNPCStats->pNewNPCData[v27].greet = EVT_DWORD(_evt->v9);
310
Gloval
parents: 307
diff changeset
675 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
676 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
677
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
678 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
679 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
680 break;
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
681 case EVENT_SetNPCTopic:
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
682 {
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
683 //v29 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
684 pEventID = _evt->v10 + ((_evt->v11 + ((_evt->v12 + ((uint)_evt->v13 << 8)) << 8)) << 8);
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
685 pNPC_ID = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
686 pIndex = _evt->v9;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
687 pNPC = &pNPCStats->pNewNPCData[pNPC_ID];
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
688 if ( pIndex == 0 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
689 pNPC->evt_A = pEventID;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
690 if ( pIndex == 1 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
691 pNPC->evt_B = pEventID;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
692 if ( pIndex == 2 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
693 pNPC->evt_C = pEventID;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
694 if ( pIndex == 3 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
695 pNPC->evt_D = pEventID;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
696 if ( pIndex == 4 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
697 pNPC->evt_E = pEventID;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
698 if ( pIndex == 5 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
699 pNPC->evt_F = pEventID;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
700 if ( pNPC_ID == 8 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
701 {
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
702 if ( pEventID == 78 )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
703 {
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
704 sub_4BD8B5();
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
705 window_SpeakInHouse->Release();
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
706 pParty->uFlags &= ~2;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
707 if ( EnterHouse(HOUSE_DARK_GUILD_PIT) )
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
708 {
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
709 pAudioPlayer->StopChannels(-1, -1);
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
710 window_SpeakInHouse = GUIWindow::Create(0, 0, 640, 480, WINDOW_HouseInterior, 170, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
711 window_SpeakInHouse->CreateButton( 61, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
712 window_SpeakInHouse->CreateButton(177, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
713 window_SpeakInHouse->CreateButton(292, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
714 window_SpeakInHouse->CreateButton(407, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
715 window_SpeakInHouse->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0);
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
716 current_npc_text = pNPCTopics[90].pText;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
717 }
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
718 }
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
719 }
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
720 ++curr_seq_num;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
721 }
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
722 v4 = v124;
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
723 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
724 case EVENT_NPCSetItem:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
725 sub_448518_npc_set_item(EVT_DWORD(_evt->v5),EVT_DWORD(_evt->v9), _evt->v13);
310
Gloval
parents: 307
diff changeset
726 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
727 v4 = v124;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
728
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
729 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
730 case EVENT_SetActorItem:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
731 Actor::GiveItem(EVT_DWORD(_evt->v5),EVT_DWORD(_evt->v9), _evt->v13);
310
Gloval
parents: 307
diff changeset
732 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
733 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
734 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
735 case EVENT_SetNPCGroupNews:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
736 pNPCStats->pGroups_copy[_evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8)] = _evt->v9 + ((uint)_evt->v10 << 8);
310
Gloval
parents: 307
diff changeset
737 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
738 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
739 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
740 case EVENT_SetActorGroup:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
741 __debugbreak();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
742 *(&pActors[0].uGroup + 0x11000000 * _evt->v8 + 209 * (_evt->v5 + ((_evt->v6 + ((uint)_evt->v7 << 8)) << 8))) = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8);
310
Gloval
parents: 307
diff changeset
743 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
744 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
745 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
746 case EVENT_ChangeGroup:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
747 v38 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
748 v39 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
749 v40 = uNumActors;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
750 __debugbreak();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
751 if ( (signed int)uNumActors > 0 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
752 {
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
753 v41 = pActors.data();//[0].uGroup;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
754 do
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
755 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
756 if ( v41->uGroup == v38 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
757 v41->uGroup = v39;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
758 ++v41;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
759 --v40;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
760 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
761 while ( v40 );
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
762 }
310
Gloval
parents: 307
diff changeset
763 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
764 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
765
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
766 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
767 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
768 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
769 case EVENT_ChangeGroupAlly:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
770 v42 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
771 v43 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
772 v44 = uNumActors;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
773 __debugbreak();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
774 if ( (signed int)uNumActors > 0 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
775 {
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1179
diff changeset
776 v45 = pActors.data();//[0].uAlly;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
777 do
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
778 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
779 if ( v45->uGroup == v42 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
780 v45->uAlly = v43;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
781 ++v45;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
782 --v44;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
783 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
784 while ( v44 );
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
785 }
310
Gloval
parents: 307
diff changeset
786 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
787 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
788
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
789 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
790 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
791 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
792 case EVENT_MoveNPC:
310
Gloval
parents: 307
diff changeset
793 {
Gloval
parents: 307
diff changeset
794
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
795 pNPCStats->pNewNPCData[EVT_DWORD(_evt->v5)].Location2D =EVT_DWORD(_evt->v9);
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
796 if ( window_SpeakInHouse )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
797 {
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
798
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
799 if ( window_SpeakInHouse->par1C == 165 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
800 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
801 sub_4BD8B5();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
802 pVideoPlayer->Unload();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
803 window_SpeakInHouse->Release();
569
f451efdb7c8b * Party buff icons drawing (right panel)
Nomad
parents: 545
diff changeset
804 pParty->uFlags &= ~2;
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
805 activeLevelDecoration = (LevelDecoration*)1;
481
5b6e2021c6fe HOUSE_ID
Ritor1
parents: 480
diff changeset
806 if ( EnterHouse(HOUSE_BODY_GUILD_ERATHIA) )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
807 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
808 pAudioPlayer->PlaySound((SoundID)0, 0, 0, -1, 0, 0, 0, 0);
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
809 window_SpeakInHouse = GUIWindow::Create(0, 0, 640, 480, WINDOW_HouseInterior, 165, 0);
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
810 v48 = window_SpeakInHouse->pControlsHead;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
811 if ( v48 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
812 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
813 do
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
814 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
815 v49 = v48->pNext;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
816 pAllocator->FreeChunk(v48);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
817 v48 = v49;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
818 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
819 while ( v49 );
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
820 }
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
821 window_SpeakInHouse->pControlsHead = 0;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
822 window_SpeakInHouse->pControlsTail = 0;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
823 window_SpeakInHouse->uNumControls = 0;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
824 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
825 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
826 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
827 {
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
828 if ( window_SpeakInHouse->par1C == 553 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
829 pVideoPlayer->bLoopPlaying = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
830 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
831 }
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
832
310
Gloval
parents: 307
diff changeset
833 }
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
834 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
835 v4 = v124;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
836
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
837 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
838 case EVENT_Jmp:
310
Gloval
parents: 307
diff changeset
839 curr_seq_num = _evt->v5 - 1;
Gloval
parents: 307
diff changeset
840 ++curr_seq_num;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
841 v4 = -1;
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
842
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
843 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
844 case EVENT_ShowFace:
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
845 if ( _evt->v5 <= 3u ) //someone
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
846 pParty->pPlayers[_evt->v5].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0);
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
847 else if ( _evt->v5 == 4 ) //active
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
848 pParty->pPlayers[uActiveCharacter].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0);
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
849 else if ( _evt->v5 == 5 ) //all players
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
850 {
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
851 for(int i=0; i<4; ++i)
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
852 pParty->pPlayers[i].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
853 }
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
854 else //random player
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
855 pParty->pPlayers[rand() % 4].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0);
310
Gloval
parents: 307
diff changeset
856 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
857 v4 = v124;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
858
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
859 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
860 case EVENT_CharacterAnimation:
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
861 if ( _evt->v5 <= 3u ) //someone
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
862 pParty->pPlayers[_evt->v5].PlaySound((PlayerSpeech) _evt->v6, 0);
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
863 else if ( _evt->v5 == 4 ) //active
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
864 pParty->pPlayers[uActiveCharacter].PlaySound((PlayerSpeech) _evt->v6, 0);
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
865 else if ( _evt->v5 == 5 ) //all
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
866 for(int i=0; i<4; ++i)
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
867 pParty->pPlayers[i].PlaySound((PlayerSpeech) _evt->v6, 0);
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
868 else //random
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
869 pParty->pPlayers[rand() % 4].PlaySound((PlayerSpeech) _evt->v6, 0);
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
870 ++curr_seq_num;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
871 v4 = v124;
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
872
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
873 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
874 case EVENT_ForPartyMember:
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
875 player_choose = _evt->v5;
310
Gloval
parents: 307
diff changeset
876 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
877 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
878 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
879 case EVENT_SummonItem:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
880 sub_42F7EB_DropItemAt(_evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8),
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
881 _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8),
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
882 _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8),
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
883 _evt->v17 + ((_evt->v18 + ((_evt->v19 + ((uint)_evt->v20 << 8)) << 8)) << 8),
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
884 _evt->v21 + ((_evt->v22 + ((_evt->v23 + ((uint)_evt->v24 << 8)) << 8)) << 8),
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
885 _evt->v25, _evt->v26, 0, 0);
310
Gloval
parents: 307
diff changeset
886 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
887 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
888
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
889 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
890 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
891 break;
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
892 case EVENT_Compare:
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
893 pValue = EVT_DWORD(_evt->v7);
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
894 if ( player_choose <= 3 )
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
895 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
896 if ( pPlayers[player_choose]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) )
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
897 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
898 v124 = -1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
899 curr_seq_num = _evt->v11 - 1;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
900 }
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
901 }
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
902 else if ( player_choose == 4 ) //active
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
903 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
904 if ( uActiveCharacter )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
905 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
906 if ( pPlayers[uActiveCharacter]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
907 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
908 v124 = -1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
909 curr_seq_num = _evt->v11 - 1;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
910 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
911 }
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
912 }
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
913 else if ( player_choose == 5 )//all
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
914 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
915 v130=0;
616
610d2cf53427 Compare
Ritor1
parents: 615
diff changeset
916 for(int i = 1; i < 5; ++i)
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
917 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
918 if ( pPlayers[i]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) )
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
919 {
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
920 v124 = -1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
921 curr_seq_num = _evt->v11 - 1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
922 break;
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
923 }
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
924 ++v130;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
925 }
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
926 }
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
927 else if ( player_choose == 6 ) //random
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
928 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
929 if ( pPlayers[rand() % 4]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) )
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
930 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
931 v124 = -1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
932 curr_seq_num = _evt->v11 - 1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
933 }
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
934 }
310
Gloval
parents: 307
diff changeset
935 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
936 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
937 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
938 case EVENT_IsActorAlive:
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
939 if (IsActorAlive(EVT_BYTE(_evt->v5), EVT_DWORD(_evt->v6), EVT_BYTE(_evt->v10)))
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
940 {
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
941 v124 = -1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
942 curr_seq_num = _evt->v11 - 1;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
943 }
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
944 ++curr_seq_num;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
945 v4 = v124;
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
946 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
947 case EVENT_Substract:
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
948 pValue = EVT_DWORD(_evt->v7);
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
949 if ( EVT_WORD(_evt->v5) == VAR_PlayerItemInHands )
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
950 {
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
951 if ( pParty->pPickedItem.uItemID == pValue )//In hand
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
952 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
953 pMouse->RemoveHoldingItem();
310
Gloval
parents: 307
diff changeset
954 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
955 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
956 break;
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
957 }
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
958 v67 = (int)pPlayers[uActiveCharacter]->pInventoryIndices;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
959 for ( v65 = 0; v65 < 126; ++v65 )
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
960 {
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
961 if ( (int)&pPlayers[uActiveCharacter]->pInventoryItems[v67] == pValue )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
962 {
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
963 pPlayers[uActiveCharacter]->RemoveItemAtInventoryIndex(v65);
310
Gloval
parents: 307
diff changeset
964 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
965 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
966 break;
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
967 }
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
968 v67 += 4;
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
969 }
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
970 while ( (signed int)v65 < 126 );
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
971 v69 = (int)&pPlayers[uActiveCharacter]->pEquipment;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
972 for ( v68 = 0; v68 < 16; ++v68 )
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
973 {
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
974 if ( *(int *)v69 && (int)&pPlayers[uActiveCharacter]->pInventoryItems[v69] == pValue )
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
975 {
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 836
diff changeset
976 *(&pPlayers[uActiveCharacter]->pEquipment.uShield + v68) = 0;
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
977 ++curr_seq_num;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
978 v4 = v124;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
979 break;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
980 }
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
981 v69 += 4;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
982 }
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
983 for (int i = 1; i < 5; i++)
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
984 {
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
985 v72 = (int)pPlayers[i]->pInventoryIndices;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
986 for ( int v71 = 0; v71 < 126; ++v71 )
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
987 {
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
988 if ( (int)&pPlayers[i]->pInventoryItems[v72] == pValue )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
989 {
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
990 pPlayers[i]->RemoveItemAtInventoryIndex(v71);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
991 break;
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
992 }
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
993 v72 += 4;
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
994 }
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
995 v73 = 0;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
996 v74 = (int)&pPlayers[i]->pEquipment;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
997 while ( !*(int *)v74 || (int)&pPlayer->pInventoryItems[v74] != pValue )
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
998 {
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
999 ++v73;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1000 v74 += 4;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1001 if ( v73 >= 16 )
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1002 break;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1003 }
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 836
diff changeset
1004 *(&pPlayers[i]->pEquipment.uShield + v73) = 0;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1005 }
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1006 }
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1007 if ( player_choose <= 3 )
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1008 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1009 pPlayer = &pParty->pPlayers[player_choose];
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1010 pPlayer->SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1011 }
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1012 else if ( player_choose == 4 ) //active
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1013 {
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1014 if ( uActiveCharacter )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1015 {
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1016 pPlayer = pPlayers[uActiveCharacter];
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1017 pPlayer->SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1018 }
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1019 }
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1020 else if ( player_choose == 5 )//all
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1021 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1022 v130 = 0;
614
Ritor1
parents: 605
diff changeset
1023 for(int i = 1; i < 5; ++i)
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1024 {
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1025 if ( pPlayers[i]->SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) )
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1026 break;
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1027 }
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1028 ++v130;
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1029 }
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1030 else if ( player_choose == 6 ) //random
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1031 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1032 player_choose = rand() % 4;
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1033 pPlayer = &pParty->pPlayers[player_choose];
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1034 pPlayer->SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1035 }
545
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1036 ++curr_seq_num;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1037 v4 = v124;
dde1083df4b7 SubtractVariables
Ritor1
parents: 540
diff changeset
1038 break;
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1039 case EVENT_Set:
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1040 pValue = EVT_DWORD(_evt->v7);
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1041 if ( player_choose <= 3 )
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1042 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1043 pPlayer = &pParty->pPlayers[player_choose];
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1044 pPlayer->SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1045 }
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1046 else if ( player_choose == 4 ) //active
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1047 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1048 if ( uActiveCharacter )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1049 {
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1050 pPlayer = pPlayers[uActiveCharacter];
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1051 pPlayer->SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1052 }
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1053 }
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1054 else if ( player_choose == 5 )//all
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1055 {
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1056 //recheck v130
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1057 for(int i = 1; i < 5; ++i)
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1058 pPlayers[i]->SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1059
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1060 }
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1061 else if ( player_choose == 6 ) //random
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1062 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1063 player_choose = rand() % 4;
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1064 pPlayer = &pParty->pPlayers[player_choose];
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1065 pPlayer->SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1066
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1067 }
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1068 ++curr_seq_num;
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1069 v4 = v124;
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1070 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1071 case EVENT_Add:
501
6fa3ff8ef729 SubtractVariables
Ritor1
parents: 484
diff changeset
1072 pValue = EVT_DWORD(_evt->v7);
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1073 if ( player_choose <= 3 )
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1074 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1075 pPlayer = &pParty->pPlayers[player_choose];
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1076 pPlayer->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1077 }
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1078 else if ( player_choose == 4 ) //active
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1079 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1080 if ( uActiveCharacter )
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1081 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1082 pPlayer = pPlayers[uActiveCharacter];
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1083 pPlayer->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1084 }
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1085 }
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1086 else if ( player_choose == 5 )//all
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1087 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1088 //v130 = 0;
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1089 for(int i = 1; i < 5; ++i)
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1090 pPlayers[i]->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1091
512
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1092 }
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1093 else if ( player_choose == 6 ) //random
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1094 {
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1095 player_choose = rand() % 4;
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1096 pPlayer = &pParty->pPlayers[player_choose];
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1097 pPlayer->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue);
968f4053da7f little fix
Ritor1
parents: 511
diff changeset
1098 }
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1099 v83 = EVT_WORD(_evt->v5);
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
1100 if (v83 == 21 || // gold well on emerald isle
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
1101 v83 == 22 || v83 == 23 || v83 == 24 )
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
1102 {
1179
883eaee77094 sub_424829
Ritor1
parents: 1165
diff changeset
1103 //__debugbreak(); // bonfire
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
1104 viewparams->bRedrawGameUI = true;
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
1105 }
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1106 ++curr_seq_num;
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1107 v4 = v124;
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1108 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1109 case EVENT_InputString:
1052
d48c762de563 -nomarg
Nomad
parents: 1039
diff changeset
1110 if ( !entry_line )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1111 {
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1112 strcpy(GameUI_Footer_TimedString.data(), &pLevelStr[pLevelStrOffsets[EVT_DWORD(_evt->v5 )]]);
310
Gloval
parents: 307
diff changeset
1113 v105 = curr_seq_num;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1114 v121 = 26;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1115 LABEL_295:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1116 sub_4451A8_press_any_key(uEventID, v105, v121);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1117 LABEL_301:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1118 if ( v133 == 1 )
797
Ritor1
parents: 788
diff changeset
1119 OnMapLeave();
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1120 return;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1121 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1122 v84 = _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8);
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1123 if ( !_stricmp(GameUI_Footer_TimedString.data(), &pLevelStr[pLevelStrOffsets[_evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8)]])
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1124 || !_stricmp(GameUI_Footer_TimedString.data(), &pLevelStr[pLevelStrOffsets[v84]]) )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1125 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1126 v11 = _evt->v17;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1127 LABEL_130:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1128 //v124 = -1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1129 LABEL_131:
310
Gloval
parents: 307
diff changeset
1130 curr_seq_num = v11 - 1;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1131 }
310
Gloval
parents: 307
diff changeset
1132 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1133 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1134
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1135 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1136 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1137 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1138 case EVENT_RandomGoTo:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1139 //v124 = -1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1140 v11 = (unsigned __int8)*(&_evt->v5 + rand() % ((_evt->v5 != 0) + (_evt->v6 != 0) + (_evt->v7 != 0) + (_evt->v8 != 0) + (_evt->v9 != 0)
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1141 + (_evt->v10 != 0)));
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1142 curr_seq_num = v11 - 1;
787
3a77fbf7d0b8 GetSector
Ritor1
parents: 774
diff changeset
1143 ++curr_seq_num;
3a77fbf7d0b8 GetSector
Ritor1
parents: 774
diff changeset
1144 v4 = v124;
3a77fbf7d0b8 GetSector
Ritor1
parents: 774
diff changeset
1145 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1146 case EVENT_ReceiveDamage:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1147 v85 = EVT_DWORD(_evt->v7 );
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1148 v86 = _evt->v5;
797
Ritor1
parents: 788
diff changeset
1149 if ( (unsigned __int8)v86 <= 3 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1150 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1151 v119 = _evt->v6;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1152 v115 = EVT_DWORD(_evt->v7 );
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1153 v89 = (unsigned __int8)v86;
797
Ritor1
parents: 788
diff changeset
1154 v88 = &pParty->pPlayers[v89];
1036
7f8be9f9769e player recieve damage
Gloval
parents: 1033
diff changeset
1155 v88->ReceiveDamage(v115, (DAMAGE_TYPE)v119);
797
Ritor1
parents: 788
diff changeset
1156 ++curr_seq_num;
Ritor1
parents: 788
diff changeset
1157 v4 = v124;
Ritor1
parents: 788
diff changeset
1158 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1159 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1160 if ( v86 == 4 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1161 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1162 if ( !uActiveCharacter )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1163 {
310
Gloval
parents: 307
diff changeset
1164 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1165 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1166
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1167 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1168 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1169 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1170 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1171 v119 = _evt->v6;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1172 v88 = pPlayers[uActiveCharacter];
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1173 v115 = EVT_DWORD(_evt->v7 );
1036
7f8be9f9769e player recieve damage
Gloval
parents: 1033
diff changeset
1174 v88->ReceiveDamage(v115, (DAMAGE_TYPE)v119);
797
Ritor1
parents: 788
diff changeset
1175 ++curr_seq_num;
Ritor1
parents: 788
diff changeset
1176 v4 = v124;
Ritor1
parents: 788
diff changeset
1177 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1178 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1179 if ( v86 != 5 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1180 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1181 v119 = _evt->v6;
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1182 v115 = EVT_DWORD(_evt->v7 );
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1183 v89 = rand() % 4;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1184 v88 = &pParty->pPlayers[v89];
1036
7f8be9f9769e player recieve damage
Gloval
parents: 1033
diff changeset
1185 v88->ReceiveDamage(v115, (DAMAGE_TYPE)v119);
310
Gloval
parents: 307
diff changeset
1186 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1187 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1188
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1189 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1190 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1191 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1192 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1193 v87 = pParty->pPlayers;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1194 do
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1195 {
1036
7f8be9f9769e player recieve damage
Gloval
parents: 1033
diff changeset
1196 v87->ReceiveDamage(v85, (DAMAGE_TYPE)_evt->v6);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1197 ++v87;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1198 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1199 while ( (signed int)v87 < (signed int)pParty->pHirelings );
310
Gloval
parents: 307
diff changeset
1200 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1201 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1202
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1203 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1204 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1205 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1206 case EVENT_ToggleIndoorLight:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1207 pIndoor->ToggleLight(EVT_DWORD(_evt->v5 ), _evt->v9);
310
Gloval
parents: 307
diff changeset
1208 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1209 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1210
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1211 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1212 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1213 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1214 case EVENT_SetFacesBit:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1215 sub_44892E_set_faces_bit(EVT_DWORD(_evt->v5),EVT_DWORD(_evt->v9), _evt->v13);
310
Gloval
parents: 307
diff changeset
1216 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1217 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1218
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1219 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1220 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1221 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1222 case EVENT_ToggleChestFlag:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1223 Chest::ToggleFlag(EVT_DWORD(_evt->v5 ), EVT_DWORD(_evt->v9 ), _evt->v13);
310
Gloval
parents: 307
diff changeset
1224 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1225 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1226
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1227 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1228 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1229 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1230 case EVENT_ToggleActorFlag:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1231 Actor::ToggleFlag(EVT_DWORD(_evt->v5 ), EVT_DWORD(_evt->v9 ), _evt->v13);
310
Gloval
parents: 307
diff changeset
1232 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1233 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1234
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1235 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1236 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1237 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1238 case EVENT_ToggleActorGroupFlag:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1239 ToggleActorGroupFlag(EVT_DWORD(_evt->v5 ), EVT_DWORD(_evt->v9 ), _evt->v13);
310
Gloval
parents: 307
diff changeset
1240 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1241 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1242
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1243 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1244 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1245 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1246 case EVENT_SetSnow:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1247 if ( !_evt->v5 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1248 pWeather->bRenderSnow = _evt->v6 != 0;
310
Gloval
parents: 307
diff changeset
1249 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1250 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1251
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1252 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1253 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1254 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1255 case EVENT_StatusText:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1256 v90 = EVT_DWORD(_evt->v5 );
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
1257 if ( activeLevelDecoration )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1258 {
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1259 if ( activeLevelDecoration == (LevelDecoration*)1 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1260 {
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
1261 current_npc_text = pNPCTopics[v90-1].pText;//(&dword_721664)[8 * v90];
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1262 }
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
1263 if ( canShowMessages == 1 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1264 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1265 v91 = pNPCTopics[v90-1].pText;//(&dword_721664)[8 * v90];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1266 //LABEL_248:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1267 ShowStatusBarString(v91, 2u);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1268 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1269 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1270 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1271 {
469
0dbf780e247f CompareVariable part 1
Ritor1
parents: 457
diff changeset
1272 if ( canShowMessages == 1 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1273 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1274 v91 = &pLevelStr[pLevelStrOffsets[v90]];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1275 ShowStatusBarString(v91, 2u);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1276 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1277 }
310
Gloval
parents: 307
diff changeset
1278 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1279 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1280
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1281 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1282 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1283 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1284 case EVENT_ShowMessage:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1285 v92 = EVT_DWORD(_evt->v5 );
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
1286 if ( activeLevelDecoration )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1287 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1288 v93 = (char *)pNPCTopics[v92-1].pText;//(&dword_721664)[8 * v92];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1289 byte_5B0938[0] = 0;
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 801
diff changeset
1290 current_npc_text = v93;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1291 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1292 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1293 {
1205
8c02e6f74b29 arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents: 1202
diff changeset
1294 strcpy(byte_5B0938.data(), &pLevelStr[pLevelStrOffsets[v92]]);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1295 }
310
Gloval
parents: 307
diff changeset
1296 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1297 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1298
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1299 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1300 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1301 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1302 case EVENT_CastSpell:
835
72f6df90df98 EventCastSpell
Ritor1
parents: 827
diff changeset
1303 EventCastSpell(_evt->v5, _evt->v6, _evt->v7, EVT_DWORD(_evt->v8 ),
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1304 EVT_DWORD(_evt->v12 ), EVT_DWORD(_evt->v16 ), EVT_DWORD(_evt->v20 ),
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1305 EVT_DWORD(_evt->v24 ), EVT_DWORD(_evt->v28 ));
835
72f6df90df98 EventCastSpell
Ritor1
parents: 827
diff changeset
1306 ++curr_seq_num;
72f6df90df98 EventCastSpell
Ritor1
parents: 827
diff changeset
1307 v4 = v124;
72f6df90df98 EventCastSpell
Ritor1
parents: 827
diff changeset
1308 break;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1309 case EVENT_SetTexture:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1310 sub_44861E_set_texture(EVT_DWORD(_evt->v5 ), (char *)&_evt->v9);
310
Gloval
parents: 307
diff changeset
1311 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1312 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1313
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1314 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1315 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1316 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1317 case EVENT_SetSprite:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1318 SetDecorationSprite(EVT_DWORD(_evt->v5 ), _evt->v9, (char *)&_evt->v10);
310
Gloval
parents: 307
diff changeset
1319 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1320 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1321
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1322 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1323 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1324 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1325 case EVENT_SummonMonsters:
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1326 sub_448CF4_spawn_monsters(_evt->v5, _evt->v6, _evt->v7,EVT_DWORD(_evt->v8 ),
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1327 EVT_DWORD(_evt->v12 ), EVT_DWORD(_evt->v16 ), EVT_DWORD(_evt->v20 ),
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1328 EVT_DWORD(_evt->v24 ));
310
Gloval
parents: 307
diff changeset
1329 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1330 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1331
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1332 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1333 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1334 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1335 case EVENT_MouseOver:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1336 case EVENT_LocationName:
310
Gloval
parents: 307
diff changeset
1337 --curr_seq_num;
Gloval
parents: 307
diff changeset
1338 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1339 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1340
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1341 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1342 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1343 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1344 case EVENT_ChangeDoorState:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1345 sub_449A49_door_switch_animation(_evt->v5, _evt->v6);
310
Gloval
parents: 307
diff changeset
1346 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1347 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1348
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1349 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1350 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1351 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1352 case EVENT_OpenChest:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1353 if ( !Chest::Open(_evt->v5) )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1354 goto LABEL_301;
310
Gloval
parents: 307
diff changeset
1355 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1356 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1357
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1358 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1359 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1360 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1361 case EVENT_MoveToMap:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1362 v94 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1363 v135 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1364 v132 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1365 v126 = _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1366 v129 = _evt->v17 + ((_evt->v18 + ((_evt->v19 + ((uint)_evt->v20 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1367 v95 = _evt->v21 + ((_evt->v22 + ((_evt->v23 + ((uint)_evt->v24 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1368 v96 = _evt->v25;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1369 v97 = v96 + ((_evt->v26 + ((_evt->v27 + ((uint)_evt->v28 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1370 v134 = v96 + ((_evt->v26 + ((_evt->v27 + ((uint)_evt->v28 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1371 if ( _evt->v29 || _evt->v30 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1372 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1373 if ( pRenderer->pRenderD3D && !pRenderer->bWindowMode )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1374 pRenderer->_49FD3A();
1033
3a5c8df8381d * UI cleans and moves
Nomad
parents: 1018
diff changeset
1375 TransitionUI_Load(_evt->v29, _evt->v30, v135, v132, v126, v129, v95, v134, (char *)&_evt->v31);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1376 dword_5C3418 = uEventID;
310
Gloval
parents: 307
diff changeset
1377 dword_5C341C = curr_seq_num + 1;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1378 goto LABEL_301;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1379 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1380 _5B65AC_npcdata_fame_or_other = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1381 _5B65A8_npcdata_uflags_or_other = v94;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1382 _5B65B0_npcdata_rep_or_other = v126;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1383 if ( v129 == -1 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1384 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1385 v98 = _5B65B4_npcdata_loword_house_or_other;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1386 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1387 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1388 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1389 v98 = v129 & stru_5C6E00->uDoublePiMask;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1390 _5B65B4_npcdata_loword_house_or_other = v129 & stru_5C6E00->uDoublePiMask;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1391 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1392 v99 = (char *)&_evt->v31;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1393 _5B65B8_npcdata_hiword_house_or_other = v95;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1394 dword_5B65BC = v97;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1395 v100 = v94 | v132 | v126 | v95 | v97 | v98;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1396 dword_5B65C0 = v100;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1397 if ( *v99 == 48 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1398 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1399 if ( v100 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1400 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1401 pParty->vPosition.x = v135;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1402 pParty->vPosition.y = v132;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1403 pParty->vPosition.z = v126;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1404 pParty->uFallStartY = v126;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1405 if ( _5B65B4_npcdata_loword_house_or_other != -1 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1406 pParty->sRotationY = _5B65B4_npcdata_loword_house_or_other;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1407 _5B65B4_npcdata_loword_house_or_other = -1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1408 v120 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1409 v116 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1410 v111 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1411 v110 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1412 v109 = -1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1413 v108 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1414 v107 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1415 pParty->sRotationX = v95;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1416 pParty->uFallSpeed = v134;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1417 dword_5B65C0 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1418 dword_5B65BC = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1419 _5B65B8_npcdata_hiword_house_or_other = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1420 _5B65B0_npcdata_rep_or_other = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1421 _5B65AC_npcdata_fame_or_other = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1422 _5B65A8_npcdata_uflags_or_other = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1423 v106 = 232;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1424 LABEL_280:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1425 pAudioPlayer->PlaySound((SoundID)v106, v107, v108, v109, v110, v111, v116, v120);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1426 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1427 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1428 else
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1429 {
520
35f28d4c0ff9 GlobalEventInfo changed to LevelDecoration* activeLevelDecoration
Gloval
parents: 512
diff changeset
1430 pGameLoadingUI_ProgressBar->uType = (GUIProgressBar::Type)((activeLevelDecoration == NULL) + 1);
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 774
diff changeset
1431 sub_44987B(v99, MapStartPoint_Party);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1432 v133 = 1;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1433 if ( pCurrentScreen == SCREEN_HOUSE )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1434 {
978
9334a8c59c8d uGameState
Ritor1
parents: 948
diff changeset
1435 if ( uGameState == GAME_STATE_2 )
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1436 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1437 pAudioPlayer->StopChannels(-1, -1);
747
585490c29945 House dialogue ids appended
Nomad
parents: 629
diff changeset
1438 dialog_menu_id = HOUSE_DIALOGUE_NULL;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1439 while ( sub_4BD8B5() )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1440 ;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1441 pVideoPlayer->Unload();
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1442 window_SpeakInHouse->Release();
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1443 window_SpeakInHouse = 0;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1444 if ( pMessageQueue_50CBD0->uNumMessages )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1445 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1446 pCurrentScreen = SCREEN_GAME;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1447 viewparams->bRedrawGameUI = 1;
457
Ritor1
parents: 428
diff changeset
1448 pDialogueNPCCount = 0;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1449 pDialogueWindow->Release();
747
585490c29945 House dialogue ids appended
Nomad
parents: 629
diff changeset
1450 dialog_menu_id = HOUSE_DIALOGUE_NULL;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1451 pDialogueWindow = 0;
1006
e865f349aa41 ui cleanup
Gloval
parents: 978
diff changeset
1452 pIcons_LOD->SyncLoadedFilesCount();
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1453 }
797
Ritor1
parents: 788
diff changeset
1454 OnMapLeave();
Ritor1
parents: 788
diff changeset
1455 return;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1456 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1457 }
310
Gloval
parents: 307
diff changeset
1458 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1459 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1460
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1461 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1462 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1463 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1464 case EVENT_PlaySound:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1465 v120 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1466 v116 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1467 v111 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1468 v110 = _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1469 v109 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1470 v108 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1471 v107 = 0;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1472 v106 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1473 goto LABEL_280;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1474 case EVENT_GiveItem:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1475 item.Reset();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1476 //v101 = &pSomeEVT[v9];
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1477 v102 = _evt->v7
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1478 + ((_evt->v8 + ((_evt->v9 + ((uint)_evt->v10 << 8)) << 8)) << 8);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1479 pItemsTable->GenerateItem(_evt->v5, _evt->v6, &item);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1480 if ( v102 )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1481 item.uItemID = v102;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1482 pParty->SetHoldingItem(&item);
310
Gloval
parents: 307
diff changeset
1483 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1484 v4 = v124;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1485 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1486 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1487 break;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1488 case EVENT_SpeakInHouse:
496
0e20e886365d guilds ....
Gloval
parents: 484
diff changeset
1489 if ( EnterHouse((enum HOUSE_ID)EVT_DWORD(_evt->v5)))
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1490 {
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1491 if ( pRenderer->pRenderD3D && !pRenderer->bWindowMode )
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1492 pRenderer->_49FD3A();
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1493 pAudioPlayer->PlaySound((SoundID)0, 0, 0, -1, 0, 0, 0, 0);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1494 pAudioPlayer->PlaySound(SOUND_EnteringAHouse, 814, 0, -1, 0, 0, 0, 0);
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1495 v104 = 187;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1496 if ( uCurrentHouse_Animation != 167 )
525
e7b3fa10d58d events cleanup
Gloval
parents: 520
diff changeset
1497 v104 = EVT_DWORD(_evt->v5);
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1498 window_SpeakInHouse = GUIWindow::Create(0, 0, 640, 480, WINDOW_HouseInterior, v104, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
1499 window_SpeakInHouse->CreateButton( 61, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
1500 window_SpeakInHouse->CreateButton(177, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
1501 window_SpeakInHouse->CreateButton(292, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
1502 window_SpeakInHouse->CreateButton(407, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 898
diff changeset
1503 window_SpeakInHouse->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0);
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1504 }
310
Gloval
parents: 307
diff changeset
1505 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1506 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1507
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1508 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1509 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1510 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1511 case EVENT_PressAnyKey:
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1512 v121 = 33;
310
Gloval
parents: 307
diff changeset
1513 v105 = curr_seq_num + 1;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1514 goto LABEL_295;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1515 case EVENT_Exit:
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
1516 if ( v133 == 1 )
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
1517 OnMapLeave();
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
1518 return;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1519 default:
310
Gloval
parents: 307
diff changeset
1520 ++curr_seq_num;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1521 v4 = v124;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1522
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1523 //v6 = v123;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1524 //v7 = "";
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1525 break;
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1526 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1527 }
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1528 ++v4;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1529 v124 = v4;
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1530 if ( v4 >= uSomeEVT_NumEvents )
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 310
diff changeset
1531 goto LABEL_301;
307
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1532 //}
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1533 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1534 }
72faa54ff319 Events stuff moved to its file
Gloval
parents: 0
diff changeset
1535