annotate Events.cpp @ 614:7cb26ceb7107

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