annotate Events.cpp @ 827:085eb19b7ffd

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