Mercurial > mm7
annotate Engine/Events.cpp @ 2575:a76d408c5132 tip
DrawTranslucent -> DrawTextureGrayShade
Removed old texture drawing stuff
author | a.parshin |
---|---|
date | Wed, 09 Mar 2016 01:39:52 +0200 |
parents | dd36326a9994 |
children |
rev | line source |
---|---|
2499 | 1 #define _CRTDBG_MAP_ALLOC |
2 #include <stdlib.h> | |
3 #include <crtdbg.h> | |
4 | |
5 #define _CRT_SECURE_NO_WARNINGS | |
6 | |
2541 | 7 #include "Engine/Engine.h" |
2499 | 8 |
2501 | 9 #include "Graphics/Weather.h" |
10 #include "Graphics/Texture.h" | |
2499 | 11 #include "MapInfo.h" |
2501 | 12 #include "Graphics/Render.h" |
13 #include "Objects/SpriteObject.h" | |
14 #include "Objects/Chest.h" | |
2499 | 15 #include "MapsLongTimer.h" |
16 #include "LOD.h" | |
2501 | 17 #include "Objects/Actor.h" |
2499 | 18 #include "Party.h" |
19 #include "OurMath.h" | |
2501 | 20 #include "Graphics/Indoor.h" |
21 #include "Graphics/Viewport.h" | |
2499 | 22 #include "texts.h" |
23 #include "stru123.h" | |
24 #include "stru159.h" | |
25 #include "Events.h" | |
26 #include "Events2D.h" | |
2501 | 27 #include "Graphics/Level/Decoration.h" |
2499 | 28 #include "LuaVM.h" |
2501 | 29 #include "Graphics/DecorationList.h" |
2499 | 30 |
2545 | 31 #include "IO/Mouse.h" |
32 | |
33 #include "GUI/UI/UITransition.h" | |
34 #include "GUI/GUIProgressBar.h" | |
35 #include "GUI/UI/UIHouses.h" | |
36 | |
37 #include "Media/Audio/AudioPlayer.h" | |
38 #include "Media/MediaPlayer.h" | |
2499 | 39 |
40 std::array<EventIndex, 4400> pSomeOtherEVT_Events; | |
41 signed int uSomeOtherEVT_NumEvents; | |
42 char *pSomeOtherEVT; | |
43 std::array<EventIndex, 4400> pSomeEVT_Events; | |
44 signed int uSomeEVT_NumEvents; | |
45 char *pSomeEVT; | |
46 | |
47 unsigned int uGlobalEVT_NumEvents; | |
48 unsigned int uGlobalEVT_Size; | |
49 std::array<char, 46080> pGlobalEVT; | |
50 std::array<EventIndex, 4400> pGlobalEVT_Index; | |
51 | |
52 std::array<unsigned int, 500> pLevelStrOffsets; | |
53 unsigned int uLevelStrNumStrings; | |
54 unsigned int uLevelStrFileSize; | |
55 signed int uLevelEVT_NumEvents; | |
56 unsigned int uLevelEVT_Size; | |
57 std::array<char, 9216> pLevelStr; | |
58 std::array<char, 9216> pLevelEVT; | |
59 std::array<EventIndex, 4400> pLevelEVT_Index; | |
60 | |
61 _2devent p2DEvents[525]; | |
62 | |
63 | |
64 | |
65 //----- (00443CE1) -------------------------------------------------------- | |
66 unsigned int LoadEventsToBuffer(const char *pContainerName, char *pBuffer, unsigned int uBufferSize) | |
67 { | |
68 FILE *pLodFile; // eax@1 | |
69 unsigned int uTextureSize; // esi@3 | |
70 //char Args[60]; // [sp+8h] [bp-B4h]@6 | |
71 void *ptr; // [sp+B8h] [bp-4h]@1 | |
2574 | 72 Texture_MM7 DstBuf; // [sp+6Ch] [bp-50h]@1 |
2499 | 73 |
74 ptr = pEvents_LOD->LoadRaw(pContainerName, 0); | |
75 pLodFile = pEvents_LOD->FindContainer(pContainerName, 0); | |
76 if ( !pLodFile ) | |
77 Error("Unable to load %s", pContainerName); | |
78 | |
79 fread(&DstBuf, 1, 48, pLodFile); | |
80 uTextureSize = DstBuf.uDecompressedSize; | |
81 if ( !DstBuf.uDecompressedSize ) | |
82 uTextureSize = DstBuf.uTextureSize; | |
83 memset(&DstBuf, 0, 72); | |
84 if ( uTextureSize >= (signed int)uBufferSize ) | |
85 Error("File %s Size %lu - Buffer size %lu", pContainerName, uTextureSize, uBufferSize); | |
86 | |
87 memcpy(pBuffer, ptr, uTextureSize); | |
88 free(ptr); | |
89 return uTextureSize; | |
90 } | |
91 | |
92 //----- (00443DA1) -------------------------------------------------------- | |
93 void Initialize_GlobalEVT() | |
94 { | |
95 struct raw_event_header | |
96 { | |
97 unsigned char evt_size; | |
98 unsigned char evt_id_l; | |
99 unsigned char evt_id_h; | |
100 unsigned char evt_sequence_num; | |
101 } ; | |
102 uint events_count; | |
103 unsigned int offset_in; | |
104 raw_event_header *current_hdr; | |
105 uGlobalEVT_NumEvents = 0; | |
106 uGlobalEVT_Size = LoadEventsToBuffer("global.evt", pGlobalEVT.data(), 46080); | |
107 if ( !uGlobalEVT_Size ) | |
108 return; | |
109 memset(pGlobalEVT_Index.data(), 0x80, sizeof(pGlobalEVT_Index));//52800 | |
110 events_count = uGlobalEVT_NumEvents; | |
111 current_hdr=(raw_event_header *)pGlobalEVT.data(); | |
112 offset_in=0; | |
113 for (events_count = 0, offset_in = 0; offset_in < uGlobalEVT_Size; ++events_count) | |
114 { | |
115 pGlobalEVT_Index[events_count].uEventID=current_hdr->evt_id_l+(current_hdr->evt_id_h<<8); | |
116 pGlobalEVT_Index[events_count].event_sequence_num=current_hdr->evt_sequence_num; | |
117 pGlobalEVT_Index[events_count].uEventOffsetInEVT=offset_in; | |
118 offset_in+=current_hdr->evt_size+1; | |
119 | |
120 current_hdr=(raw_event_header *)&pGlobalEVT[offset_in]; | |
121 } | |
122 uGlobalEVT_NumEvents = events_count; | |
123 | |
124 assert(uGlobalEVT_NumEvents < 4400); | |
125 } | |
126 | |
127 | |
128 | |
129 //----- (00443EF8) -------------------------------------------------------- | |
130 void LoadLevel_InitializeLevelEvt() | |
131 { | |
132 struct raw_event_header | |
133 { | |
134 unsigned char evt_size; | |
135 unsigned char evt_id_l; | |
136 unsigned char evt_id_h; | |
137 unsigned char evt_sequence_num; | |
138 } ; | |
139 uint events_count; | |
140 unsigned int offset_in; | |
141 raw_event_header *current_hdr; | |
142 | |
143 if (!uLevelEVT_Size) | |
144 return; | |
145 | |
146 memset(MapsLongTimersList, 0, 3200); | |
147 memset(pLevelEVT_Index.data(), 80, sizeof(EventIndex)*4400); | |
148 | |
149 uLevelEVT_NumEvents = 0; | |
150 MapsLongTimers_count = 0; | |
151 | |
152 current_hdr=(raw_event_header *)pLevelEVT.data(); | |
153 offset_in=0; | |
154 for (events_count = 0, offset_in = 0; offset_in < uLevelEVT_Size; ++events_count) | |
155 { | |
156 pLevelEVT_Index[events_count].uEventID=current_hdr->evt_id_l+(current_hdr->evt_id_h<<8); | |
157 pLevelEVT_Index[events_count].event_sequence_num=current_hdr->evt_sequence_num; | |
158 pLevelEVT_Index[events_count].uEventOffsetInEVT=offset_in; | |
159 offset_in+=current_hdr->evt_size+1; | |
160 | |
161 current_hdr=(raw_event_header *)&pLevelEVT[offset_in]; | |
162 } | |
163 uLevelEVT_NumEvents = events_count; | |
164 | |
165 /* | |
166 EmeraldIsle::Variables: | |
167 [0] ??? | |
168 [1] ??? | |
169 [2] Luck Fountain uses left | |
170 [3] Gold Fountain used this week | |
171 [4] Gold Fountain total uses | |
172 | |
173 | |
174 Emerald Isle #110 // Fire Resistance fountain | |
175 0 LocationName | |
176 0 if (Player.FireResistance < 50) | |
177 { | |
178 1 Set(Player.FireResistance, 50) | |
179 2 SetFooterString(22) // +50 Fire Resistance (temporarily) | |
180 3 Add(Party.Autonotes, 2) | |
181 4 goto return | |
182 } | |
183 5 SetFooterString(11) // Refreshing! | |
184 6 return | |
185 | |
186 | |
187 | |
188 Emerald Isle #111 // ??? | |
189 Initialize | |
190 Set(Map.Variables[0], 30) | |
191 Set(Map.Variables[1], 30) | |
192 | |
193 | |
194 Emerald Isle #114 // month timer - manage luck fountain | |
195 0 LocationName | |
196 0 if (Player.BaseLuck >= 15) | |
197 { | |
198 2 SetFooterString(11) // Refreshing! | |
199 3 return | |
200 } | |
201 else | |
202 { | |
203 1 if (Map.Variables[2] >= 1) | |
204 { | |
205 4 Sub(Map.Variables[2], 1) | |
206 5 Add(Player.BaseLuck, 2) | |
207 6 SetFooterString(25) // +2 Luck (Permament) | |
208 7 return | |
209 } | |
210 else | |
211 { | |
212 2 SetFooterString(11) // Refreshing! | |
213 3 return | |
214 } | |
215 } | |
216 | |
217 8 Initialize | |
218 9 Set Map.Variables[2], 8 | |
219 | |
220 | |
221 | |
222 Emerald Isle #115 // week timer - gold fountain in the center of town | |
223 0 LocationName | |
224 0 if (Map.Variables[4] < 3) | |
225 { | |
226 1 if (Map.Variables[3] == 0) | |
227 { | |
228 2 if (Party.Gold < 201) | |
229 { | |
230 3 if (Player.BaseLuck >= 15) | |
231 { | |
232 5 Add(Map.Variables[3], 1) | |
233 6 Add(Party.Gold, 1000) | |
234 7 Add(Map.Variables[4], 1) | |
235 8 goto return | |
236 } | |
237 else | |
238 { | |
239 4 goto 9 | |
240 } | |
241 } | |
242 } | |
243 } | |
244 9 SetFooterString(11) // Refreshing! | |
245 10 return | |
246 | |
247 11 Initialize | |
248 12 Set(Map.Variables[3], 0) | |
249 | |
250 | |
251 | |
252 | |
253 | |
254 Emerald Isle #220 // day timer - monster spawner | |
255 0 LocationName | |
256 0 Initialize | |
257 1 if (NumAliveActors(group=20) != 0) | |
258 2 return | |
259 3 SpawnMonsters(1, level=1, count=10, x=-336, y=14512, z=0, group=20) | |
260 4 SpawnMonsters(1, level=2, count=5, x=16, y=16352, z=90, group=20) | |
261 5 SpawnMonsters(1, level=1, count=10, x=480, y=18288, z=6, group=20) | |
262 | |
263 | |
264 | |
265 Emerald Isle #200 // margareth dock tip | |
266 0 if (!QBits.QuestDone[17]) | |
267 { | |
268 1 InitiateNPCDialogue(npc=19) | |
269 } | |
270 2 return | |
271 | |
272 | |
273 Emerald Isle #201 // margareth armoury tip | |
274 0 if (!QBits.QuestDone[17]) | |
275 { | |
276 1 InitiateNPCDialogue(npc=20) | |
277 } | |
278 2 return | |
279 */ | |
280 } | |
281 | |
282 | |
283 //----- (0044684A) -------------------------------------------------------- | |
284 void EventProcessor(int uEventID, int targetObj, int canShowMessages, int entry_line) | |
285 { | |
286 signed int v4; // esi@7 | |
287 int v11; // eax@14 | |
288 char *v12; // eax@15 | |
289 const char *v16; // esi@21 | |
290 bool v17; // edx@21 | |
291 int v18; // ecx@22 | |
292 int v19; // ebp@36 | |
293 signed int v20; // ecx@40 | |
294 int v21; // eax@40 | |
295 int v22; // edx@40 | |
296 int v23; // eax@40 | |
297 unsigned __int16 v24; // ax@45 | |
298 LevelDecoration *v26; // eax@55 | |
299 int v27; // eax@57 | |
300 int pEventID; // eax@58 | |
301 int pNPC_ID; // ecx@58 | |
302 int pIndex; // esi@58 | |
303 NPCData *pNPC; // ecx@58 | |
304 int v38; // eax@78 | |
305 int v39; // ecx@78 | |
306 int v42; // eax@84 | |
307 int v43; // ecx@84 | |
308 GUIButton *v48; // ecx@93 | |
309 GUIButton *v49; // esi@94 | |
310 signed int pValue; // ebp@124 | |
311 Player *pPlayer; // esi@125 | |
312 int v83; // eax@212 | |
313 int v84; // ebp@220 | |
314 int v90; // eax@243 | |
315 const char *v91; // ecx@247 | |
316 int v94; // ecx@262 | |
317 int v95; // ebp@262 | |
318 int v96; // edx@262 | |
319 int v97; // eax@262 | |
320 unsigned int v98; // edx@265 | |
321 const char *v99; // esi@267 | |
322 int v100; // edx@267 | |
323 unsigned int v102; // esi@281 | |
324 int v104; // eax@288 | |
325 int v106; // [sp-20h] [bp-4C8h]@278 | |
326 signed int v109; // [sp-14h] [bp-4BCh]@278 | |
327 signed int v110; // [sp-10h] [bp-4B8h]@278 | |
328 int curr_seq_num; // [sp+10h] [bp-498h]@4 | |
329 int v126; // [sp+1Ch] [bp-48Ch]@262 | |
330 int player_choose; // [sp+20h] [bp-488h]@4 | |
331 int v128; // [sp+24h] [bp-484h]@21 | |
332 int v129; // [sp+24h] [bp-484h]@262 | |
333 signed int v130; // [sp+28h] [bp-480h]@0 | |
334 int v132; // [sp+30h] [bp-478h]@262 | |
335 signed int v133; // [sp+34h] [bp-474h]@1 | |
336 int v134; // [sp+38h] [bp-470h]@262 | |
337 int v135; // [sp+3Ch] [bp-46Ch]@262 | |
338 int v136; // [sp+40h] [bp-468h]@40 | |
339 int v137; // [sp+44h] [bp-464h]@40 | |
340 int v138; // [sp+48h] [bp-460h]@40 | |
341 int v139; // [sp+4Ch] [bp-45Ch]@40 | |
342 ItemGen item; // [sp+50h] [bp-458h]@15 | |
343 char Source[120]; // [sp+74h] [bp-434h]@15 | |
344 char Str[120]; // [sp+ECh] [bp-3BCh]@21 | |
345 Actor Dst; // [sp+164h] [bp-344h]@53 | |
346 | |
347 v133 = 0; | |
348 EvtTargetObj = targetObj; | |
349 dword_5B65C4_cancelEventProcessing = 0; | |
350 if ( uEventID == 114 )//for test script | |
351 { | |
352 if (!lua->DoFile("out01.lua")) | |
353 Log::Warning(L"Error opening out01.lua\n"); | |
354 Log::Warning(L"being tested that well\n"); | |
355 return; | |
356 } | |
357 if ( !uEventID ) | |
358 { | |
359 if ( !GameUI_Footer_TimeLeft ) | |
360 ShowStatusBarString(pGlobalTXT_LocalizationStrings[521], 2u);// Nothing here | |
361 return; | |
362 } | |
363 player_choose = (uActiveCharacter == 0)?6:4; //4 - active or 6 - random player if active =0 | |
364 curr_seq_num = entry_line; | |
365 | |
366 if ( activeLevelDecoration ) | |
367 { | |
368 uSomeEVT_NumEvents = uGlobalEVT_NumEvents; | |
369 pSomeEVT = pGlobalEVT.data(); | |
370 memcpy(pSomeEVT_Events.data(), pGlobalEVT_Index.data(), sizeof(EventIndex)*4400); //4400 evts | |
371 } | |
372 else | |
373 { | |
374 uSomeEVT_NumEvents = uLevelEVT_NumEvents; | |
375 pSomeEVT = pLevelEVT.data(); | |
376 memcpy(pSomeEVT_Events.data(), pLevelEVT_Index.data(), sizeof(EventIndex)*4400); | |
377 } | |
378 | |
379 for ( v4 = 0; v4 < uSomeEVT_NumEvents; ++v4 ) | |
380 { | |
381 if ( dword_5B65C4_cancelEventProcessing ) | |
382 { | |
383 if ( v133 == 1 ) | |
384 OnMapLeave(); | |
385 return; | |
386 } | |
387 if ( pSomeEVT_Events[v4].uEventID == uEventID && pSomeEVT_Events[v4].event_sequence_num == curr_seq_num ) | |
388 { | |
389 _evt_raw * _evt = (_evt_raw *)(pSomeEVT + pSomeEVT_Events[v4].uEventOffsetInEVT); | |
390 | |
391 switch (_evt->_e_type) | |
392 { | |
393 case EVENT_CheckSeason: | |
394 if ( !sub_4465DF_check_season(_evt->v5) ) | |
395 { | |
396 ++curr_seq_num; | |
397 //v4 = v124; | |
398 break; | |
399 } | |
400 v4 = -1; | |
401 curr_seq_num = _evt->v6 - 1; | |
402 ++curr_seq_num; | |
403 break; | |
404 case EVENT_ShowMovie: | |
405 { | |
406 strcpy(Source, (char *)&_evt->v7); | |
407 v12 = (char *)&item.uExpireTime + strlen(Source) + 7; | |
408 if ( *v12 == 32 ) | |
409 *v12 = 0; | |
410 if (pMediaPlayer->bPlaying_Movie) | |
411 pMediaPlayer->Unload(); | |
412 pMediaPlayer->bStopBeforeSchedule = 0; | |
413 // pMediaPlayer->pResetflag = 0; | |
414 | |
2541 | 415 v128 = current_screen_type; |
2499 | 416 strcpy(Str, Source); |
417 v16 = RemoveQuotes(Str); | |
418 pMediaPlayer->FullscreenMovieLoop(v16, 0/*, _evt->v5*/); | |
419 if ( !_stricmp(v16, "arbiter good") ) | |
420 { | |
421 pParty->alignment = PartyAlignment_Good; | |
422 v18 = 0; | |
423 LOBYTE(v17) = 1; | |
424 SetUserInterface(PartyAlignment_Good, v17); | |
2541 | 425 if (!_evt->v6 || v128 == SCREEN_BOOKS) |
2499 | 426 { |
2541 | 427 current_screen_type = (CURRENT_SCREEN)v128; |
428 if (v128 == SCREEN_BOOKS) | |
429 pGameLoadingUI_ProgressBar->uType = GUIProgressBar::TYPE_Fullscreen; | |
430 if (v128 == SCREEN_HOUSE) | |
431 pMediaPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1); | |
2499 | 432 } |
433 ++curr_seq_num; | |
434 break; | |
435 } | |
436 if ( !_stricmp(v16, "arbiter evil") ) | |
437 { | |
438 v18 = 2; | |
439 pParty->alignment = PartyAlignment_Evil; | |
440 LOBYTE(v17) = 1; | |
441 SetUserInterface(PartyAlignment_Evil, v17); | |
2541 | 442 if (!_evt->v6 || v128 == SCREEN_BOOKS) |
2499 | 443 { |
2541 | 444 current_screen_type = (CURRENT_SCREEN)v128; |
445 if (v128 == SCREEN_BOOKS) | |
446 pGameLoadingUI_ProgressBar->uType = GUIProgressBar::TYPE_Fullscreen; | |
447 if (v128 == SCREEN_HOUSE) | |
448 pMediaPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1); | |
2499 | 449 } |
450 ++curr_seq_num; | |
451 break; | |
452 } | |
453 if ( !_stricmp(v16, "pcout01") ) // moving to harmondale from emerald isle | |
454 { | |
455 Rest(0x2760u); | |
456 pParty->RestAndHeal(); | |
457 pParty->days_played_without_rest = 0; | |
458 } | |
2541 | 459 if (!_evt->v6 || v128 == SCREEN_BOOKS) |
2499 | 460 { |
2541 | 461 current_screen_type = (CURRENT_SCREEN)v128; |
462 if (v128 == SCREEN_BOOKS) | |
463 pGameLoadingUI_ProgressBar->uType = GUIProgressBar::TYPE_Fullscreen; | |
464 if (v128 == SCREEN_HOUSE) | |
465 pMediaPlayer->OpenHouseMovie(pAnimatedRooms[uCurrentHouse_Animation].video_name, 1); | |
2499 | 466 } |
467 ++curr_seq_num; | |
468 } | |
469 break; | |
470 case EVENT_CheckSkill: | |
471 { | |
472 v19 = _evt->v7 + ((_evt->v8 + ((_evt->v9 + ((unsigned int)_evt->v10 << 8)) << 8)) << 8); | |
473 if ( player_choose < 0 ) | |
474 goto LABEL_47; | |
475 if ( player_choose <= 3 ) | |
476 v24 = pParty->pPlayers[0].pActiveSkills[3486 * player_choose + _evt->v5]; | |
477 else | |
478 { | |
479 if ( player_choose == 4 ) | |
480 v24 = pPlayers[uActiveCharacter]->pActiveSkills[_evt->v5]; | |
481 else | |
482 { | |
483 if ( player_choose == 5 ) | |
484 { | |
485 v20 = 0; | |
486 v21 = 3486 * v130 + _evt->v5; | |
487 v136 = 1; | |
488 LOWORD(v21) = pParty->pPlayers[0].pActiveSkills[v21]; | |
489 v137 = v21 & 0x40; | |
490 v138 = v21 & 0x80; | |
491 v22 = v21 & 0x100; | |
492 v23 = v21 & 0x3F; | |
493 v139 = v22; | |
494 while ( v23 < v19 || !*(&v136 + _evt->v6) ) | |
495 { | |
496 ++v20; | |
497 if ( v20 >= 4 ) | |
498 { | |
499 ++curr_seq_num; | |
500 break; | |
501 } | |
502 } | |
503 curr_seq_num = _evt->v11 - 1; | |
504 ++curr_seq_num; | |
505 break; | |
506 } | |
507 LABEL_47: | |
508 //v10 = (ByteArray *)&v5[v9]; | |
509 v24 = pParty->pPlayers[0].pActiveSkills[_evt->v5 + 3486 * rand() % 4]; | |
510 } | |
511 } | |
512 v136 = 1; | |
513 v137 = v24 & 0x40; | |
514 v138 = v24 & 0x80; | |
515 v139 = v24 & 0x100; | |
516 if ( (v24 & 0x3F) >= v19 && *(&v136 + _evt->v6) ) | |
517 { | |
518 curr_seq_num = _evt->v11 - 1; | |
519 ++curr_seq_num; | |
520 break; | |
521 } | |
522 ++curr_seq_num; | |
523 } | |
524 break; | |
525 | |
526 case EVENT_SpeakNPC: | |
527 if ( canShowMessages ) | |
528 { | |
529 //Actor::Actor(&Dst); | |
530 memset(&Dst, 0, 0x344u); | |
531 dword_5B65D0_dialogue_actor_npc_id = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((unsigned int)_evt->v8 << 8)) << 8)) << 8); | |
532 Dst.sNPC_ID = dword_5B65D0_dialogue_actor_npc_id; | |
533 GameUI_InitializeDialogue(&Dst, false); | |
534 } | |
535 else | |
536 bDialogueUI_InitializeActor_NPC_ID = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((unsigned int)_evt->v8 << 8)) << 8)) << 8); | |
537 ++curr_seq_num; | |
538 break; | |
539 case EVENT_ChangeEvent: | |
540 if ( EVT_DWORD(_evt->v5) ) | |
541 stru_5E4C90_MapPersistVars._decor_events[activeLevelDecoration->_idx_in_stru123] = _evt->v5 - 124; | |
542 else | |
543 { | |
544 v26 = (LevelDecoration *)activeLevelDecoration; | |
545 stru_5E4C90_MapPersistVars._decor_events[activeLevelDecoration ->_idx_in_stru123] = 0; | |
546 v26->uFlags |= LEVEL_DECORATION_INVISIBLE; | |
547 } | |
548 ++curr_seq_num; | |
549 | |
550 break; | |
551 case EVENT_SetNPCGreeting: | |
552 v27 = EVT_DWORD(_evt->v5); | |
553 pNPCStats->pNewNPCData[v27].uFlags &= 0xFFFFFFFCu; | |
554 pNPCStats->pNewNPCData[v27].greet = EVT_DWORD(_evt->v9); | |
555 ++curr_seq_num; | |
556 break; | |
557 case EVENT_SetNPCTopic: | |
558 { | |
559 //v29 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
560 pEventID = _evt->v10 + ((_evt->v11 + ((_evt->v12 + ((uint)_evt->v13 << 8)) << 8)) << 8); | |
561 pNPC_ID = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
562 pIndex = _evt->v9; | |
563 pNPC = &pNPCStats->pNewNPCData[pNPC_ID]; | |
564 if ( pIndex == 0 ) | |
565 pNPC->evt_A = pEventID; | |
566 if ( pIndex == 1 ) | |
567 pNPC->evt_B = pEventID; | |
568 if ( pIndex == 2 ) | |
569 pNPC->evt_C = pEventID; | |
570 if ( pIndex == 3 ) | |
571 pNPC->evt_D = pEventID; | |
572 if ( pIndex == 4 ) | |
573 pNPC->evt_E = pEventID; | |
574 if ( pIndex == 5 ) | |
575 pNPC->evt_F = pEventID; | |
576 if ( pNPC_ID == 8 ) | |
577 { | |
578 if ( pEventID == 78 ) | |
579 { | |
580 HouseDialogPressCloseBtn(); | |
581 window_SpeakInHouse->Release(); | |
582 pParty->uFlags &= ~2; | |
583 if ( EnterHouse(HOUSE_DARK_GUILD_PIT) ) | |
584 { | |
585 pAudioPlayer->StopChannels(-1, -1); | |
2544
c674d547cc7c
GUIWindow switch logic refactored into behaviour classes
a.parshin
parents:
2541
diff
changeset
|
586 window_SpeakInHouse = new GUIWindow_House(0, 0, window->GetWidth(), window->GetHeight(), 170, 0); |
2499 | 587 window_SpeakInHouse->CreateButton( 61, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0); |
588 window_SpeakInHouse->CreateButton(177, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0); | |
589 window_SpeakInHouse->CreateButton(292, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0); | |
590 window_SpeakInHouse->CreateButton(407, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0); | |
591 window_SpeakInHouse->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0); | |
592 current_npc_text = pNPCTopics[90].pText; | |
593 } | |
594 } | |
595 } | |
596 ++curr_seq_num; | |
597 } | |
598 break; | |
599 case EVENT_NPCSetItem: | |
600 sub_448518_npc_set_item(EVT_DWORD(_evt->v5),EVT_DWORD(_evt->v9), _evt->v13); | |
601 ++curr_seq_num; | |
602 break; | |
603 case EVENT_SetActorItem: | |
604 Actor::GiveItem(EVT_DWORD(_evt->v5),EVT_DWORD(_evt->v9), _evt->v13); | |
605 ++curr_seq_num; | |
606 break; | |
607 case EVENT_SetNPCGroupNews: | |
608 pNPCStats->pGroups_copy[_evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8)] = _evt->v9 + ((uint)_evt->v10 << 8); | |
609 ++curr_seq_num; | |
610 break; | |
611 case EVENT_SetActorGroup: | |
612 __debugbreak(); | |
613 *(&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); | |
614 ++curr_seq_num; | |
615 break; | |
616 case EVENT_ChangeGroup: | |
617 v38 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
618 v39 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8); | |
619 __debugbreak(); | |
620 for ( uint actor_id = 0; actor_id < uNumActors; actor_id++ ) | |
621 { | |
622 if ( pActors[actor_id].uGroup == v38 ) | |
623 pActors[actor_id].uGroup = v39; | |
624 } | |
625 ++curr_seq_num; | |
626 break; | |
627 case EVENT_ChangeGroupAlly: | |
628 v42 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
629 v43 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8); | |
630 __debugbreak(); | |
631 for ( uint actor_id = 0; actor_id < uNumActors; actor_id++ ) | |
632 { | |
633 if ( pActors[actor_id].uGroup == v42 ) | |
634 pActors[actor_id].uAlly = v43; | |
635 } | |
636 ++curr_seq_num; | |
637 break; | |
638 case EVENT_MoveNPC: | |
639 { | |
640 pNPCStats->pNewNPCData[EVT_DWORD(_evt->v5)].Location2D =EVT_DWORD(_evt->v9); | |
641 if ( window_SpeakInHouse ) | |
642 { | |
643 | |
644 if ( window_SpeakInHouse->par1C == 165 ) | |
645 { | |
646 HouseDialogPressCloseBtn(); | |
647 pMediaPlayer->Unload(); | |
648 window_SpeakInHouse->Release(); | |
649 pParty->uFlags &= ~2; | |
650 activeLevelDecoration = (LevelDecoration*)1; | |
651 if ( EnterHouse(HOUSE_BODY_GUILD_ERATHIA) ) | |
652 { | |
2506 | 653 pAudioPlayer->PlaySound(SOUND_Invalid, 0, 0, -1, 0, 0, 0, 0); |
2544
c674d547cc7c
GUIWindow switch logic refactored into behaviour classes
a.parshin
parents:
2541
diff
changeset
|
654 window_SpeakInHouse = new GUIWindow_House(0, 0, window->GetWidth(), window->GetHeight(), 165, 0); |
2499 | 655 v48 = window_SpeakInHouse->pControlsHead; |
656 if ( window_SpeakInHouse->pControlsHead ) | |
657 { | |
658 do | |
659 { | |
660 v49 = v48->pNext; | |
661 free(v48); | |
662 v48 = v49; | |
663 } | |
664 while ( v49 ); | |
665 } | |
666 window_SpeakInHouse->pControlsHead = 0; | |
667 window_SpeakInHouse->pControlsTail = 0; | |
668 window_SpeakInHouse->uNumControls = 0; | |
669 } | |
670 } | |
671 else | |
672 { | |
673 if ( window_SpeakInHouse->par1C == 553 ) | |
674 pMediaPlayer->bLoopPlaying = 0; | |
675 } | |
676 } | |
677 | |
678 } | |
679 ++curr_seq_num; | |
680 break; | |
681 case EVENT_Jmp: | |
682 curr_seq_num = _evt->v5 - 1; | |
683 ++curr_seq_num; | |
684 v4 = -1; | |
685 | |
686 break; | |
687 case EVENT_ShowFace: | |
688 if ( _evt->v5 <= 3u ) //someone | |
689 pParty->pPlayers[_evt->v5].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0); | |
690 else if ( _evt->v5 == 4 ) //active | |
691 pParty->pPlayers[uActiveCharacter].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0); | |
692 else if ( _evt->v5 == 5 ) //all players | |
693 { | |
694 for(int i = 0; i < 4; ++i) | |
695 pParty->pPlayers[i].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0); | |
696 } | |
697 else //random player | |
698 pParty->pPlayers[rand() % 4].PlayEmotion((CHARACTER_EXPRESSION_ID)_evt->v6, 0); | |
699 ++curr_seq_num; | |
700 break; | |
701 case EVENT_CharacterAnimation: | |
702 if ( _evt->v5 <= 3 ) //someone | |
703 pParty->pPlayers[_evt->v5].PlaySound((PlayerSpeech) _evt->v6, 0); | |
704 else if ( _evt->v5 == 4 ) //active | |
705 pParty->pPlayers[uActiveCharacter].PlaySound((PlayerSpeech) _evt->v6, 0); | |
706 else if ( _evt->v5 == 5 ) //all | |
707 for(int i = 0; i < 4; ++i) | |
708 pParty->pPlayers[i].PlaySound((PlayerSpeech) _evt->v6, 0); | |
709 else //random | |
710 pParty->pPlayers[rand() % 4].PlaySound((PlayerSpeech) _evt->v6, 0); | |
711 ++curr_seq_num; | |
712 break; | |
713 case EVENT_ForPartyMember: | |
714 player_choose = _evt->v5; | |
715 ++curr_seq_num; | |
716 break; | |
717 case EVENT_SummonItem: | |
2566 | 718 SpriteObject::sub_42F7EB_DropItemAt( |
719 (SPRITE_OBJECT_TYPE)(_evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8)), | |
720 _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8), | |
721 _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8), | |
722 _evt->v17 + ((_evt->v18 + ((_evt->v19 + ((uint)_evt->v20 << 8)) << 8)) << 8), | |
723 _evt->v21 + ((_evt->v22 + ((_evt->v23 + ((uint)_evt->v24 << 8)) << 8)) << 8), | |
724 _evt->v25, _evt->v26, 0, 0 | |
725 ); | |
2499 | 726 ++curr_seq_num; |
727 break; | |
728 case EVENT_Compare: | |
729 pValue = EVT_DWORD(_evt->v7); | |
730 if ( player_choose <= 3 ) | |
731 { | |
732 if ( pPlayers[player_choose]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) ) | |
733 { | |
734 // v124 = -1; | |
735 curr_seq_num = _evt->v11 - 1; | |
736 } | |
737 } | |
738 else if ( player_choose == 4 ) //active | |
739 { | |
740 if ( uActiveCharacter ) | |
741 { | |
742 if ( pPlayers[uActiveCharacter]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) ) | |
743 { | |
744 // v124 = -1; | |
745 curr_seq_num = _evt->v11 - 1; | |
746 } | |
747 } | |
748 } | |
749 else if ( player_choose == 5 )//all | |
750 { | |
751 v130 = 0; | |
752 for(int i = 1; i < 5; ++i) | |
753 { | |
754 if ( pPlayers[i]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) ) | |
755 { | |
756 // v124 = -1; | |
757 curr_seq_num = _evt->v11 - 1; | |
758 break; | |
759 } | |
760 ++v130; | |
761 } | |
762 } | |
763 else if ( player_choose == 6 ) //random | |
764 { | |
765 if ( pPlayers[rand() % 4 + 1]->CompareVariable((enum VariableType)EVT_WORD(_evt->v5), pValue) ) | |
766 { | |
767 // v124 = -1; | |
768 curr_seq_num = _evt->v11 - 1; | |
769 } | |
770 } | |
771 ++curr_seq_num; | |
772 v4 = -1; | |
773 break; | |
774 case EVENT_IsActorAlive: | |
775 if (IsActorAlive(EVT_BYTE(_evt->v5), EVT_DWORD(_evt->v6), EVT_BYTE(_evt->v10))) | |
776 { | |
777 //v124 = -1; | |
778 curr_seq_num = _evt->v11 - 1; | |
779 } | |
780 ++curr_seq_num; | |
781 v4 = -1; | |
782 break; | |
783 case EVENT_Substract: | |
784 pValue = EVT_DWORD(_evt->v7); | |
785 /*if ( EVT_WORD(_evt->v5) == VAR_PlayerItemInHands ) | |
786 { | |
787 if ( pParty->pPickedItem.uItemID == pValue )//In hand | |
788 { | |
789 pMouse->RemoveHoldingItem(); | |
790 ++curr_seq_num; | |
791 v4 = v124; | |
792 break; | |
793 } | |
794 //v67 = (int)pPlayers[uActiveCharacter]->pInventoryMatrix.data(); | |
795 for ( v65 = 0; v65 < 126; ++v65 ) | |
796 { | |
797 v67 = &pPlayers[uActiveCharacter]->pInventoryMatrix[v65]; | |
798 if ( v67 > 0 ) | |
799 { | |
800 if ( pPlayers[uActiveCharacter]->pInventoryItemList[v67 - 1].uItemID == pValue ) | |
801 { | |
802 pPlayers[uActiveCharacter]->RemoveItemAtInventoryIndex(v65); | |
803 //++curr_seq_num; | |
804 //v4 = v124; | |
805 goto substract; | |
806 } | |
807 } | |
808 //v67 += 4; | |
809 } | |
810 //while ( (signed int)v65 < 126 ); | |
811 //v69 = (int)&pPlayers[uActiveCharacter]->pEquipment.pIndices; | |
812 for ( v68 = 0; v68 < 16; ++v68 ) | |
813 { | |
814 if ( pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->pEquipment.pIndices[v68]].uItemID == pValue ) | |
815 { | |
816 pPlayers[uActiveCharacter]->pEquipment.pIndices[v68] = 0; | |
817 //++curr_seq_num; | |
818 //v4 = v124; | |
819 goto substract; | |
820 } | |
821 //v69 += 4; | |
822 } | |
823 for (int i = 1; i < 5; i++) | |
824 { | |
825 //v72 = (int)pPlayers[i]->pInventoryMatrix.data(); | |
826 for ( int v71 = 0; v71 < 126; ++v71 ) | |
827 { | |
828 v72 = &pPlayers[i]->pInventoryMatrix[v71]; | |
829 if ( v72 > 0 ) | |
830 { | |
831 if ( pPlayers[i]->pInventoryItemList[v72 - 1].uItemID == pValue ) | |
832 { | |
833 pPlayers[i]->RemoveItemAtInventoryIndex(v71); | |
834 goto substract; | |
835 } | |
836 } | |
837 //v72 += 4; | |
838 } | |
839 for ( v73 = 0; v73 < 16; ++v73 ) | |
840 { | |
841 //v74 = (int)&pPlayers[i]->pEquipment; | |
842 if (pPlayers[i]->pEquipment.pIndices[v73]) | |
843 { | |
844 if (pPlayers[i]->pInventoryItemList[pPlayers[i]->pEquipment.pIndices[v73] - 1].uItemID == pValue ) | |
845 { | |
846 pPlayers[i]->pEquipment.pIndices[v73] = 0; | |
847 //v74 += 4; | |
848 goto substract; | |
849 } | |
850 } | |
851 } | |
852 } | |
853 }*/ | |
854 if ( player_choose <= 3 ) | |
855 pParty->pPlayers[player_choose].SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
856 else if ( player_choose == 4 ) //active | |
857 { | |
858 if ( uActiveCharacter ) | |
859 pPlayers[uActiveCharacter]->SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
860 } | |
861 else if ( player_choose == 5 )//all | |
862 { | |
863 for(int i = 1; i < 5; ++i) | |
864 pPlayers[i]->SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
865 } | |
866 else if ( player_choose == 6 ) //random | |
867 pParty->pPlayers[rand() % 4].SubtractVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
868 ++curr_seq_num; | |
869 break; | |
870 case EVENT_Set: | |
871 pValue = EVT_DWORD(_evt->v7); | |
872 if ( player_choose <= 3 ) | |
873 pParty->pPlayers[player_choose].SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
874 else if ( player_choose == 4 ) //active | |
875 { | |
876 if ( uActiveCharacter ) | |
877 pPlayers[uActiveCharacter]->SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
878 } | |
879 else if ( player_choose == 5 )//all | |
880 { | |
881 //recheck v130 | |
882 for ( int i = 1; i < 5; ++i ) | |
883 pPlayers[i]->SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
884 } | |
885 else if ( player_choose == 6 ) //random | |
886 pParty->pPlayers[rand() % 4].SetVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
887 ++curr_seq_num; | |
888 break; | |
889 case EVENT_Add: | |
890 pValue = EVT_DWORD(_evt->v7); | |
891 if ( player_choose <= 3 ) | |
892 { | |
893 pPlayer = &pParty->pPlayers[player_choose]; | |
894 pPlayer->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
895 } | |
896 else if ( player_choose == 4 ) //active | |
897 { | |
898 if ( uActiveCharacter ) | |
899 pPlayers[uActiveCharacter]->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
900 } | |
901 else if ( player_choose == 5 )//all | |
902 { | |
903 for(int i = 1; i < 5; ++i) | |
904 pPlayers[i]->AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
905 } | |
906 else if ( player_choose == 6 ) //random | |
907 pParty->pPlayers[rand() % 4].AddVariable((enum VariableType)EVT_WORD(_evt->v5), pValue); | |
908 v83 = EVT_WORD(_evt->v5); | |
909 if (v83 == 21 || // gold well on emerald isle | |
910 v83 == 22 || v83 == 23 || v83 == 24 ) | |
911 { | |
912 //__debugbreak(); // bonfire | |
913 viewparams->bRedrawGameUI = true; | |
914 } | |
915 ++curr_seq_num; | |
916 break; | |
917 case EVENT_InputString: | |
918 if ( !entry_line ) | |
919 { | |
920 strcpy(GameUI_Footer_TimedString.data(), &pLevelStr[pLevelStrOffsets[EVT_DWORD(_evt->v5 )]]); | |
921 sub_4451A8_press_any_key(uEventID, curr_seq_num, 26); | |
922 if ( v133 == 1 ) | |
923 OnMapLeave(); | |
924 return; | |
925 } | |
926 v84 = _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8); | |
927 if ( !_stricmp(GameUI_Footer_TimedString.data(), &pLevelStr[pLevelStrOffsets[_evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8)]]) | |
928 || !_stricmp(GameUI_Footer_TimedString.data(), &pLevelStr[pLevelStrOffsets[v84]]) ) | |
929 { | |
930 v11 = _evt->v17; | |
931 curr_seq_num = v11 - 1; | |
932 } | |
933 ++curr_seq_num; | |
934 v4 = -1; | |
935 break; | |
936 case EVENT_RandomGoTo: | |
937 //v124 = -1; | |
938 v11 = (unsigned __int8)*(&_evt->v5 + rand() % ((_evt->v5 != 0) + (_evt->v6 != 0) + (_evt->v7 != 0) + (_evt->v8 != 0) + (_evt->v9 != 0) | |
939 + (_evt->v10 != 0))); | |
940 curr_seq_num = v11 - 1; | |
941 ++curr_seq_num; | |
942 v4 = -1; | |
943 break; | |
944 case EVENT_ReceiveDamage: | |
945 if ( (unsigned __int8)_evt->v5 <= 3 ) | |
946 { | |
947 pParty->pPlayers[(unsigned __int8)_evt->v5].ReceiveDamage(EVT_DWORD(_evt->v7 ), (DAMAGE_TYPE)_evt->v6); | |
948 ++curr_seq_num; | |
949 break; | |
950 } | |
951 if ( _evt->v5 == 4 ) | |
952 { | |
953 if ( !uActiveCharacter ) | |
954 { | |
955 ++curr_seq_num; | |
956 break; | |
957 } | |
958 pPlayers[uActiveCharacter]->ReceiveDamage(EVT_DWORD(_evt->v7 ), (DAMAGE_TYPE)_evt->v6); | |
959 ++curr_seq_num; | |
960 break; | |
961 } | |
962 if ( _evt->v5 != 5 ) | |
963 { | |
964 pParty->pPlayers[rand() % 4].ReceiveDamage(EVT_DWORD(_evt->v7 ), (DAMAGE_TYPE)_evt->v6); | |
965 ++curr_seq_num; | |
966 break; | |
967 } | |
968 for ( uint pl_id = 0;pl_id < 4; pl_id++ ) | |
969 pParty->pPlayers[pl_id].ReceiveDamage(EVT_DWORD(_evt->v7 ), (DAMAGE_TYPE)_evt->v6); | |
970 ++curr_seq_num; | |
971 break; | |
972 case EVENT_ToggleIndoorLight: | |
973 pIndoor->ToggleLight(EVT_DWORD(_evt->v5 ), _evt->v9); | |
974 ++curr_seq_num; | |
975 break; | |
976 case EVENT_SetFacesBit: | |
977 sub_44892E_set_faces_bit(EVT_DWORD(_evt->v5),EVT_DWORD(_evt->v9), _evt->v13); | |
978 ++curr_seq_num; | |
979 break; | |
980 case EVENT_ToggleChestFlag: | |
981 Chest::ToggleFlag(EVT_DWORD(_evt->v5 ), EVT_DWORD(_evt->v9 ), _evt->v13); | |
982 ++curr_seq_num; | |
983 break; | |
984 case EVENT_ToggleActorFlag: | |
985 Actor::ToggleFlag(EVT_DWORD(_evt->v5 ), EVT_DWORD(_evt->v9 ), _evt->v13); | |
986 ++curr_seq_num; | |
987 break; | |
988 case EVENT_ToggleActorGroupFlag: | |
989 ToggleActorGroupFlag(EVT_DWORD(_evt->v5 ), EVT_DWORD(_evt->v9 ), _evt->v13); | |
990 ++curr_seq_num; | |
991 break; | |
992 case EVENT_SetSnow: | |
993 if ( !_evt->v5 ) | |
994 pWeather->bRenderSnow = _evt->v6 != 0; | |
995 ++curr_seq_num; | |
996 break; | |
997 case EVENT_StatusText: | |
998 v90 = EVT_DWORD(_evt->v5 ); | |
999 if ( activeLevelDecoration ) | |
1000 { | |
1001 if ( activeLevelDecoration == (LevelDecoration*)1 ) | |
1002 current_npc_text = pNPCTopics[v90-1].pText;//(&dword_721664)[8 * v90]; | |
1003 if ( canShowMessages == 1 ) | |
1004 { | |
1005 v91 = pNPCTopics[v90-1].pText;//(&dword_721664)[8 * v90]; | |
1006 //LABEL_248: | |
1007 ShowStatusBarString(v91, 2); | |
1008 } | |
1009 } | |
1010 else | |
1011 { | |
1012 if ( canShowMessages == 1 ) | |
1013 { | |
1014 v91 = &pLevelStr[pLevelStrOffsets[v90]]; | |
1015 ShowStatusBarString(v91, 2); | |
1016 } | |
1017 } | |
1018 ++curr_seq_num; | |
1019 break; | |
1020 case EVENT_ShowMessage: | |
1021 if ( activeLevelDecoration ) | |
1022 { | |
1023 current_npc_text = pNPCTopics[EVT_DWORD(_evt->v5 )-1].pText;//(&dword_721664)[8 * v92]; | |
1024 byte_5B0938[0] = 0; | |
1025 } | |
1026 else | |
1027 strcpy(byte_5B0938.data(), &pLevelStr[pLevelStrOffsets[EVT_DWORD(_evt->v5 )]]); | |
1028 ++curr_seq_num; | |
1029 break; | |
1030 case EVENT_CastSpell: | |
1031 EventCastSpell(_evt->v5, _evt->v6, _evt->v7, EVT_DWORD(_evt->v8 ), | |
1032 EVT_DWORD(_evt->v12 ), EVT_DWORD(_evt->v16 ), EVT_DWORD(_evt->v20 ), | |
1033 EVT_DWORD(_evt->v24 ), EVT_DWORD(_evt->v28 )); | |
1034 ++curr_seq_num; | |
1035 break; | |
1036 case EVENT_SetTexture: | |
1037 sub_44861E_set_texture(EVT_DWORD(_evt->v5 ), (char *)&_evt->v9); | |
1038 ++curr_seq_num; | |
1039 break; | |
1040 case EVENT_SetSprite: | |
1041 SetDecorationSprite(EVT_DWORD(_evt->v5 ), _evt->v9, (char *)&_evt->v10); | |
1042 ++curr_seq_num; | |
1043 break; | |
1044 case EVENT_SummonMonsters: | |
1045 sub_448CF4_spawn_monsters(_evt->v5, _evt->v6, _evt->v7,EVT_DWORD(_evt->v8 ), | |
1046 EVT_DWORD(_evt->v12 ), EVT_DWORD(_evt->v16 ), EVT_DWORD(_evt->v20 ), | |
1047 EVT_DWORD(_evt->v24 )); | |
1048 ++curr_seq_num; | |
1049 break; | |
1050 case EVENT_MouseOver: | |
1051 case EVENT_LocationName: | |
1052 --curr_seq_num; | |
1053 ++curr_seq_num; | |
1054 break; | |
1055 case EVENT_ChangeDoorState: | |
1056 Door_switch_animation(_evt->v5, _evt->v6); | |
1057 ++curr_seq_num; | |
1058 break; | |
1059 case EVENT_OpenChest: | |
1060 if ( !Chest::Open(_evt->v5) ) | |
1061 { | |
1062 if ( v133 == 1 ) | |
1063 OnMapLeave(); | |
1064 return; | |
1065 } | |
1066 ++curr_seq_num; | |
1067 break; | |
1068 case EVENT_MoveToMap: | |
1069 v94 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
1070 v135 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
1071 v132 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8); | |
1072 v126 = _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8); | |
1073 v129 = _evt->v17 + ((_evt->v18 + ((_evt->v19 + ((uint)_evt->v20 << 8)) << 8)) << 8); | |
1074 v95 = _evt->v21 + ((_evt->v22 + ((_evt->v23 + ((uint)_evt->v24 << 8)) << 8)) << 8); | |
1075 v96 = _evt->v25; | |
1076 v97 = v96 + ((_evt->v26 + ((_evt->v27 + ((uint)_evt->v28 << 8)) << 8)) << 8); | |
1077 v134 = v96 + ((_evt->v26 + ((_evt->v27 + ((uint)_evt->v28 << 8)) << 8)) << 8); | |
1078 if ( _evt->v29 || _evt->v30 ) | |
1079 { | |
1080 pRenderer->Sub01(); | |
2545 | 1081 pDialogueWindow = new GUIWindow_Transition(_evt->v29, _evt->v30, v135, v132, v126, v129, v95, v134, (char *)&_evt->v31); |
2499 | 1082 dword_5C3418 = uEventID; |
1083 dword_5C341C = curr_seq_num + 1; | |
1084 if ( v133 == 1 ) | |
1085 OnMapLeave(); | |
1086 return; | |
1087 } | |
1088 _5B65AC_npcdata_fame_or_other = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8); | |
1089 _5B65A8_npcdata_uflags_or_other = v94; | |
1090 _5B65B0_npcdata_rep_or_other = v126; | |
1091 if ( v129 == -1 ) | |
1092 v98 = _5B65B4_npcdata_loword_house_or_other; | |
1093 else | |
1094 { | |
1095 v98 = v129 & stru_5C6E00->uDoublePiMask; | |
1096 _5B65B4_npcdata_loword_house_or_other = v129 & stru_5C6E00->uDoublePiMask; | |
1097 } | |
1098 v99 = (char *)&_evt->v31; | |
1099 _5B65B8_npcdata_hiword_house_or_other = v95; | |
1100 dword_5B65BC = v97; | |
1101 v100 = v94 | v132 | v126 | v95 | v97 | v98; | |
1102 dword_5B65C0 = v100; | |
1103 if ( *v99 == 48 ) | |
1104 { | |
1105 if ( v100 ) | |
1106 { | |
1107 pParty->vPosition.x = v135; | |
1108 pParty->vPosition.y = v132; | |
1109 pParty->vPosition.z = v126; | |
1110 pParty->uFallStartY = v126; | |
1111 if ( _5B65B4_npcdata_loword_house_or_other != -1 ) | |
1112 pParty->sRotationY = _5B65B4_npcdata_loword_house_or_other; | |
1113 _5B65B4_npcdata_loword_house_or_other = -1; | |
1114 pParty->sRotationX = v95; | |
1115 pParty->uFallSpeed = v134; | |
1116 dword_5B65C0 = 0; | |
1117 dword_5B65BC = 0; | |
1118 _5B65B8_npcdata_hiword_house_or_other = 0; | |
1119 _5B65B0_npcdata_rep_or_other = 0; | |
1120 _5B65AC_npcdata_fame_or_other = 0; | |
1121 _5B65A8_npcdata_uflags_or_other = 0; | |
1122 v106 = 232; | |
1123 pAudioPlayer->PlaySound((SoundID)v106, 0, 0, -1, 0, 0, 0, 0); | |
1124 } | |
1125 } | |
1126 else | |
1127 { | |
1128 pGameLoadingUI_ProgressBar->uType = (GUIProgressBar::Type)((activeLevelDecoration == NULL) + 1); | |
1129 Transition_StopSound_Autosave(v99, MapStartPoint_Party); | |
1130 v133 = 1; | |
2541 | 1131 if ( current_screen_type == SCREEN_HOUSE ) |
2499 | 1132 { |
1133 if ( uGameState == GAME_STATE_CHANGE_LOCATION ) | |
1134 { | |
1135 pAudioPlayer->StopChannels(-1, -1); | |
1136 dialog_menu_id = HOUSE_DIALOGUE_NULL; | |
1137 while ( HouseDialogPressCloseBtn() ) | |
1138 ; | |
1139 pMediaPlayer->Unload(); | |
1140 window_SpeakInHouse->Release(); | |
1141 window_SpeakInHouse = 0; | |
1142 if ( pMessageQueue_50CBD0->uNumMessages ) | |
1143 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
2541 | 1144 current_screen_type = SCREEN_GAME; |
2499 | 1145 viewparams->bRedrawGameUI = 1; |
1146 pDialogueNPCCount = 0; | |
1147 pDialogueWindow->Release(); | |
1148 dialog_menu_id = HOUSE_DIALOGUE_NULL; | |
1149 pDialogueWindow = 0; | |
1150 pIcons_LOD->SyncLoadedFilesCount(); | |
1151 } | |
1152 OnMapLeave(); | |
1153 return; | |
1154 } | |
1155 } | |
1156 ++curr_seq_num; | |
1157 break; | |
1158 case EVENT_PlaySound: | |
1159 v110 = _evt->v13 + ((_evt->v14 + ((_evt->v15 + ((uint)_evt->v16 << 8)) << 8)) << 8); | |
1160 v109 = _evt->v9 + ((_evt->v10 + ((_evt->v11 + ((uint)_evt->v12 << 8)) << 8)) << 8); | |
1161 v106 = _evt->v5 + ((_evt->v6 + ((_evt->v7 + ((uint)_evt->v8 << 8)) << 8)) << 8); | |
1162 pAudioPlayer->PlaySound((SoundID)v106, 0, 0, v109, v110, 0, 0, 0); | |
1163 ++curr_seq_num; | |
1164 break; | |
1165 case EVENT_GiveItem: | |
1166 item.Reset(); | |
1167 v102 = _evt->v7 + ((_evt->v8 + ((_evt->v9 + ((uint)_evt->v10 << 8)) << 8)) << 8); | |
1168 pItemsTable->GenerateItem(_evt->v5, _evt->v6, &item); | |
1169 if ( v102 ) | |
1170 item.uItemID = v102; | |
1171 pParty->SetHoldingItem(&item); | |
1172 ++curr_seq_num; | |
1173 break; | |
1174 case EVENT_SpeakInHouse: | |
1175 if ( EnterHouse((enum HOUSE_ID)EVT_DWORD(_evt->v5))) | |
1176 { | |
1177 pRenderer->Sub01(); | |
2506 | 1178 pAudioPlayer->PlaySound(SOUND_Invalid, 0, 0, -1, 0, 0, 0, 0); |
2534 | 1179 pAudioPlayer->PlaySound(SOUND_enter, 814, 0, -1, 0, 0, 0, 0); |
2499 | 1180 v104 = 187; |
1181 if ( uCurrentHouse_Animation != 167 ) | |
1182 v104 = EVT_DWORD(_evt->v5); | |
2544
c674d547cc7c
GUIWindow switch logic refactored into behaviour classes
a.parshin
parents:
2541
diff
changeset
|
1183 window_SpeakInHouse = new GUIWindow_House(0, 0, window->GetWidth(), window->GetHeight(), v104, 0); |
2499 | 1184 window_SpeakInHouse->CreateButton( 61, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0); |
1185 window_SpeakInHouse->CreateButton(177, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0); | |
1186 window_SpeakInHouse->CreateButton(292, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0); | |
1187 window_SpeakInHouse->CreateButton(407, 424, 31, 0, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0); | |
1188 window_SpeakInHouse->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0); | |
1189 } | |
1190 ++curr_seq_num; | |
1191 break; | |
1192 case EVENT_PressAnyKey: | |
1193 sub_4451A8_press_any_key(uEventID, curr_seq_num + 1, 33); | |
1194 if ( v133 == 1 ) | |
1195 OnMapLeave(); | |
1196 return; | |
1197 case EVENT_Exit: | |
1198 if ( v133 == 1 ) | |
1199 OnMapLeave(); | |
1200 return; | |
1201 default: | |
1202 ++curr_seq_num; | |
1203 break; | |
1204 } | |
1205 } | |
1206 } | |
1207 if ( v133 == 1 ) | |
1208 OnMapLeave(); | |
1209 return; | |
1210 } | |
1211 | |
1212 //----- (00444732) -------------------------------------------------------- | |
1213 char *GetEventHintString(unsigned int uEventID) | |
1214 { | |
1215 signed int event_index; // edx@1 | |
1216 int event_pos; // esi@4 | |
1217 char *result; // eax@6 | |
1218 unsigned int str_index; // eax@9 | |
1219 int i; // esi@11 | |
1220 _evt_raw* test_evt; | |
1221 _evt_raw* last_evt; | |
1222 | |
1223 event_index = 0; | |
1224 if ( uLevelEVT_NumEvents <= 0 ) | |
1225 return NULL; | |
1226 | |
1227 //v2 = (char *)&pLevelEVT_Index[0].uEventOffsetInEVT; | |
1228 while ( 1 ) | |
1229 { | |
1230 if ( pLevelEVT_Index[event_index].uEventID == uEventID ) | |
1231 { | |
1232 test_evt=(_evt_raw*)&pLevelEVT[pLevelEVT_Index[event_index].uEventOffsetInEVT]; | |
1233 last_evt=test_evt; | |
1234 event_pos = pLevelEVT_Index[event_index+1].uEventOffsetInEVT; | |
1235 if ( test_evt->_e_type == EVENT_MouseOver ) | |
1236 break; | |
1237 } | |
1238 ++event_index; | |
1239 if ( event_index >= uLevelEVT_NumEvents ) | |
1240 return NULL; | |
1241 } | |
1242 test_evt=(_evt_raw*)&pLevelEVT[event_pos]; | |
1243 if ( test_evt->_e_type== EVENT_SpeakInHouse ) | |
1244 { | |
1245 str_index = EVT_DWORD(test_evt->v5); | |
1246 result = (char *)p2DEvents[str_index - 1].pName; | |
1247 } | |
1248 else | |
1249 { | |
1250 for ( i = event_index + 1; pLevelEVT_Index[i].uEventID == uEventID; ++i ) | |
1251 { | |
1252 event_pos = pLevelEVT_Index[i].uEventOffsetInEVT; | |
1253 test_evt=(_evt_raw*)&pLevelEVT[event_pos]; | |
1254 if ( test_evt->_e_type == EVENT_SpeakInHouse ) | |
1255 { | |
1256 str_index = EVT_DWORD(test_evt->v5); | |
1257 if ( str_index < 600 ) | |
1258 return (char *)p2DEvents[str_index - 1].pName; | |
1259 } | |
1260 } | |
1261 result = &pLevelStr[pLevelStrOffsets[EVT_BYTE(last_evt->v5)]]; | |
1262 } | |
1263 | |
1264 return result; | |
1265 } | |
1266 | |
1267 //----- (004613C4) -------------------------------------------------------- | |
1268 void init_event_triggers() | |
1269 { | |
1270 uint id = pDecorationList->GetDecorIdByName("Event Trigger"); | |
1271 | |
1272 num_event_triggers = 0; | |
1273 for (uint i = 0; i < uNumLevelDecorations; ++i) | |
1274 if (pLevelDecorations[i].uDecorationDescID == id) | |
1275 event_triggers[num_event_triggers++] = i; | |
1276 } | |
1277 | |
1278 //----- (0046CC4B) -------------------------------------------------------- | |
1279 void check_event_triggers() | |
1280 { | |
1281 for (size_t i = 0; i < num_event_triggers; i++) | |
1282 { | |
1283 if (pLevelDecorations[event_triggers[i]].uFlags & LEVEL_DECORATION_TRIGGERED_BY_TOUCH | |
1284 && pLevelDecorations[event_triggers[i]].vPosition.GetDistanceTo(pParty->vPosition) < pLevelDecorations[event_triggers[i]].uTriggerRange) | |
1285 { | |
1286 EventProcessor(pLevelDecorations[event_triggers[i]].uEventID, PID(OBJECT_Decoration, i), 1); | |
1287 } | |
1288 else if (pLevelDecorations[event_triggers[i]].uFlags & LEVEL_DECORATION_TRIGGERED_BY_MONSTER) | |
1289 { | |
1290 for (size_t j = 0; j < uNumActors; j++) | |
1291 { | |
1292 if (pLevelDecorations[event_triggers[i]].vPosition.GetDistanceTo(pActors[j].vPosition) < pLevelDecorations[event_triggers[i]].uTriggerRange) | |
1293 EventProcessor(pLevelDecorations[event_triggers[i]].uEventID, 0, 1); | |
1294 } | |
1295 } | |
1296 else if (pLevelDecorations[event_triggers[i]].uFlags & LEVEL_DECORATION_TRIGGERED_BY_OBJECT) | |
1297 { | |
1298 for (size_t j = 0; j < uNumSpriteObjects; j++) | |
1299 { | |
1300 if (pLevelDecorations[event_triggers[i]].vPosition.GetDistanceTo(pSpriteObjects[j].vPosition) < pLevelDecorations[event_triggers[i]].uTriggerRange) | |
1301 EventProcessor(pLevelDecorations[event_triggers[i]].uEventID, 0, 1); | |
1302 } | |
1303 } | |
1304 } | |
1305 } | |
1306 // 6836C8: using guessed type int 6836C8_num_decorations_6807E8; | |
1307 | |
1308 //----- (004465DF) -------------------------------------------------------- | |
1309 bool sub_4465DF_check_season(int a1) | |
1310 { | |
1311 unsigned int monthPlusOne; // eax@1 | |
1312 unsigned int daysPlusOne; // edx@1 | |
1313 | |
1314 monthPlusOne = pParty->uCurrentMonth + 1; | |
1315 daysPlusOne = pParty->uDaysPlayed + 1; | |
1316 | |
1317 switch (a1) | |
1318 { | |
1319 case 3: //winter 12.21 -> 3.20 | |
1320 return (monthPlusOne == 12 && daysPlusOne >= 21 || monthPlusOne == 1 || monthPlusOne == 2 || monthPlusOne == 3 && daysPlusOne <= 20); | |
1321 break; | |
1322 case 2:// autumn/fall 9.21 -> 12.20 | |
1323 return (monthPlusOne == 9 && daysPlusOne >= 21 || monthPlusOne == 10 || monthPlusOne == 11 || monthPlusOne == 12 && daysPlusOne <= 20); | |
1324 break; | |
1325 case 1://summer 6.21 -> 9.20 | |
1326 return (monthPlusOne == 6 && daysPlusOne >= 21 || monthPlusOne == 7 || monthPlusOne == 8 || monthPlusOne == 9 && daysPlusOne <= 20); | |
1327 break; | |
1328 case 0: //spring 3.21 -> 6.20 | |
1329 return (monthPlusOne == 3 && daysPlusOne >= 21 || monthPlusOne == 4 || monthPlusOne == 5 || monthPlusOne == 6 && daysPlusOne <= 20); | |
1330 break; | |
1331 } | |
1332 Error("Unknown season"); | |
1333 return false; | |
1334 } | |
1335 | |
1336 //----- (00448CF4) -------------------------------------------------------- | |
1337 void __fastcall sub_448CF4_spawn_monsters(__int16 typeindex, __int16 level, int count, int x, int y, int z, int group, unsigned int uUniqueName) | |
1338 { | |
1339 unsigned int map_id; // eax@1 | |
1340 size_t old_num_actors; // ebx@2 | |
1341 AIDirection v15; // [sp+28h] [bp-34h]@2 | |
1342 SpawnPointMM7 pSpawnPoint; // [sp+44h] [bp-18h]@1 | |
1343 | |
1344 pSpawnPoint.vPosition.x = x; | |
1345 pSpawnPoint.vPosition.y = y; | |
1346 pSpawnPoint.vPosition.z = z; | |
1347 pSpawnPoint.uGroup = group; | |
1348 pSpawnPoint.uRadius = 32; | |
1349 pSpawnPoint.uKind = 3; | |
1350 pSpawnPoint.uIndex = typeindex + 2 * level + level; | |
1351 map_id = pMapStats->GetMapInfo(pCurrentMapName); | |
1352 if (map_id) | |
1353 { | |
1354 old_num_actors = uNumActors; | |
1355 SpawnEncounter(&pMapStats->pInfos[map_id], &pSpawnPoint, 0, count, 0); | |
1356 Actor::GetDirectionInfo(PID(OBJECT_Actor, old_num_actors), 4, &v15, 1); | |
1357 for (uint i = (unsigned int)old_num_actors; i < (unsigned int)uNumActors; ++i) | |
1358 { | |
1359 pActors[i].PrepareSprites(0); | |
1360 pActors[i].uYawAngle = v15.uYawAngle; | |
1361 pActors[i].dword_000334_unique_name = uUniqueName; | |
1362 } | |
1363 } | |
1364 } |