annotate Events.cpp @ 695:af0332a32034

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