Mercurial > mm7
annotate GUIWindow.cpp @ 1404:7cc3b01a92ac
ClearTextureList
author | Ritor1 |
---|---|
date | Mon, 22 Jul 2013 14:49:12 +0600 |
parents | a519a6a412d0 |
children | c0b273d33338 |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
4 |
0 | 5 #include "GUIWindow.h" |
6 #include "GUIFont.h" | |
7 #include "Party.h" | |
8 #include "LOD.h" | |
9 #include "Keyboard.h" | |
10 #include "IndoorCamera.h" | |
11 #include "Math.h" | |
12 #include "VideoPlayer.h" | |
13 #include "Allocator.h" | |
14 #include "MapInfo.h" | |
15 #include "Time.h" | |
16 #include "AudioPlayer.h" | |
17 #include "Mouse.h" | |
18 #include "Viewport.h" | |
19 #include "Render.h" | |
20 #include "PlayerFrameTable.h" | |
21 #include "SaveLoad.h" | |
22 #include "StorylineTextTable.h" | |
23 #include "Events2D.h" | |
1299 | 24 #include "UI\UIHouses.h" |
1310 | 25 #include "UI\UIBooks.h" |
189 | 26 #include "texts.h" |
81
377535d6e366
structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents:
74
diff
changeset
|
27 #include "Autonotes.h" |
949 | 28 #include "Awards.h" |
1297 | 29 #include "Chest.h" |
0 | 30 |
31 | |
32 #include "mm7_data.h" | |
33 | |
1268 | 34 typedef struct _RGBColor |
35 { | |
36 unsigned char R; | |
37 unsigned char B; | |
38 unsigned char G; | |
39 }RGBColor; | |
0 | 40 |
41 | |
1268 | 42 std::array<RGBColor, 20> spell_tooltip_colors={{ |
43 {0x96, 0xD4, 0xFF}, | |
44 {0xFF, 0x80, 0x00}, | |
45 {0xFF, 0xFF, 0x9B}, | |
46 {0xE1, 0xE1, 0xE1}, | |
47 {0x80, 0x80, 0x80}, | |
48 {0x96, 0xD4, 0xFF}, | |
49 {0xFF, 0x55, 0x00}, | |
50 {0x96, 0xD4, 0xFF}, | |
51 {0xFF, 0x55, 0x00}, | |
52 {0xE1, 0xE1, 0xE1}, | |
53 {0xFF, 0x55, 0x00}, | |
54 {0x96, 0xD4, 0xFF}, | |
55 {0xEB, 0x0F, 0xFF}, | |
56 {0xFF, 0x80, 0x00}, | |
57 {0x96, 0xD4, 0xFF}, | |
58 {0x80, 0x80, 0x80}, | |
59 {0xFF, 0x55, 0x00}, | |
60 {0x00, 0x80, 0xFF}, | |
61 {0x00, 0x80, 0xFF}, | |
62 {0x96, 0xD4, 0xFF}}}; | |
63 | |
0 | 64 |
65 int pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[1]; // idb | |
66 struct GUIWindow *pWindow_MainMenu; | |
1202 | 67 std::array<struct GUIWindow, 20> pWindowList; |
0 | 68 |
69 struct GUIMessageQueue *pMessageQueue_50CBD0 = new GUIMessageQueue; | |
1012 | 70 struct GUIMessageQueue *pMessageQueue_50C9E8 = new GUIMessageQueue; |
0 | 71 |
1038 | 72 |
73 | |
74 | |
75 | |
76 | |
77 | |
78 //----- (004141CA) -------------------------------------------------------- | |
1268 | 79 void ModalWindow( const char *pStrHint, int a4 ) |
80 { | |
1038 | 81 pEventTimer->Pause(); |
82 dword_506F0C[0] = pCurrentScreen; | |
1268 | 83 ptr_507BDC = GUIWindow::Create(0, 0, 640, 480, WINDOW_FinalWindow, a4, pStrHint); |
1038 | 84 pCurrentScreen = SCREEN_PRESS_ESCAPE_MESSAGE; |
85 } | |
86 // 4E28F8: using guessed type int pCurrentScreen; | |
87 | |
783 | 88 // inlined |
89 //----- (mm6c::00420520) -------------------------------------------------- | |
90 void GUIMessageQueue::Flush() | |
91 { | |
92 if (uNumMessages) | |
93 uNumMessages = pMessages[0].field_8 != 0; | |
94 } | |
95 | |
96 | |
0 | 97 //----- (004356B9) -------------------------------------------------------- |
98 void GUIMessageQueue::PopMessage(enum UIMessageType *pType, int *pParam, int *a4) | |
99 { | |
100 signed int v4; // edx@1 | |
101 GUIMessage *v5; // eax@2 | |
102 | |
103 v4 = 0; | |
104 if ( this->uNumMessages ) | |
105 { | |
106 v5 = this->pMessages; | |
107 *pType = this->pMessages[0].eType; | |
108 *pParam = this->pMessages[0].param; | |
109 *a4 = this->pMessages[0].field_8; | |
110 if ( (signed int)(this->uNumMessages - 1) > 0 ) | |
111 { | |
112 do | |
113 { | |
114 v5->eType = v5[1].eType; | |
115 v5->param = v5[1].param; | |
116 v5->field_8 = v5[1].field_8; | |
117 ++v4; | |
118 ++v5; | |
119 } | |
120 while ( v4 < (signed int)(this->uNumMessages - 1) ); | |
121 } | |
122 --this->uNumMessages; | |
123 } | |
124 } | |
125 | |
126 | |
127 | |
994 | 128 |
129 | |
130 | |
131 //----- (0041B4E1) -------------------------------------------------------- | |
132 int __fastcall GUI_ReplaceHotkey(unsigned __int8 uOldHotkey, unsigned __int8 uNewHotkey, char bFirstCall) | |
133 { | |
134 unsigned __int8 v3; // bl@1 | |
135 int result; // eax@1 | |
136 int i; // edx@2 | |
137 GUIButton *j; // ecx@3 | |
138 int k; // edx@7 | |
139 GUIButton *l; // ecx@8 | |
140 unsigned __int8 v9; // [sp+4h] [bp-8h]@1 | |
141 char v10; // [sp+8h] [bp-4h]@1 | |
142 | |
143 v3 = uNewHotkey; | |
144 v10 = toupper(uOldHotkey); | |
145 result = toupper(v3); | |
146 v9 = result; | |
147 if ( bFirstCall ) | |
148 { | |
149 for ( i = uNumVisibleWindows; i >= 0; --i ) | |
150 { | |
151 result = 84 * pVisibleWindowsIdxs[i]; | |
152 for ( j = pWindowList[pVisibleWindowsIdxs[i] - 1].pControlsHead; j; j = j->pNext ) | |
153 j->field_28 = 0; | |
154 } | |
155 } | |
156 for ( k = uNumVisibleWindows; k >= 0; --k ) | |
157 { | |
158 result = 84 * pVisibleWindowsIdxs[k]; | |
159 for ( l = pWindowList[pVisibleWindowsIdxs[k] - 1].pControlsHead; l; l = l->pNext ) | |
160 { | |
161 LOBYTE(result) = v10; | |
162 if ( l->uHotkey == v10 ) | |
163 { | |
164 if ( !l->field_28 ) | |
165 { | |
166 LOBYTE(result) = v9; | |
167 l->field_28 = 1; | |
168 l->uHotkey = v9; | |
169 } | |
170 } | |
171 } | |
172 } | |
173 return result; | |
174 } | |
175 | |
176 | |
177 | |
178 | |
179 //----- (0041B438) -------------------------------------------------------- | |
180 GUIButton *__fastcall GUI_HandleHotkey(unsigned __int8 uHotkey) | |
181 { | |
182 char v1; // al@1 | |
183 int v2; // esi@1 | |
184 char v3; // dl@1 | |
185 GUIWindow *v4; // ecx@2 | |
186 GUIButton *result; // eax@2 | |
187 //int v6; // edx@12 | |
188 | |
189 v1 = toupper(uHotkey); | |
190 v2 = uNumVisibleWindows; | |
191 v3 = v1; | |
1210 | 192 for( v2 = uNumVisibleWindows; v2 >= 0 && pVisibleWindowsIdxs[v2] > 0; v2-- ) |
994 | 193 { |
1210 | 194 v4 = &pWindowList[pVisibleWindowsIdxs[v2] - 1]; |
195 for ( result = v4->pControlsHead; result; result = result->pNext ) | |
196 { | |
197 if ( result->uHotkey == v3 ) | |
198 { | |
199 pMessageQueue_50CBD0->AddMessage(result->msg, result->msg_param, 0); | |
200 return result; | |
201 } | |
202 } | |
203 if ( !v4->uFrameX && !v4->uFrameY && (v4->uFrameWidth == 640 && v4->uFrameHeight == 480) ) | |
204 break; | |
994 | 205 } |
206 return 0; | |
207 } | |
208 // 5075E0: using guessed type int pVisibleWindowsIdxs[20]; | |
209 | |
0 | 210 //----- (0041D73D) -------------------------------------------------------- |
1006 | 211 void GUIWindow::_41D73D_draw_buff_tooltip() |
212 { | |
1268 | 213 |
214 __int64 remaing_time; // ST28_8@11 | |
215 unsigned short text_color; | |
216 int Y_pos; // esi@11 | |
217 int string_count; // [sp+20h] [bp-4h]@7 | |
218 | |
219 | |
220 string_count = 0; | |
221 for (int i=0; i<20; ++i) | |
222 if ( pParty->pPartyBuffs[i].uExpireTime > 0i64 ) | |
223 ++string_count; | |
0 | 224 |
1268 | 225 uFrameHeight = pFontArrus->uFontHeight + 72; |
226 uFrameHeight += (string_count - 1) * pFontArrus->uFontHeight; | |
227 uFrameZ = uFrameWidth + uFrameX - 1; | |
228 uFrameW = uFrameY + uFrameHeight - 1; | |
229 DrawMessageBox(0); | |
230 DrawTitleText(pFontArrus, 0, 12, 0, pGlobalTXT_LocalizationStrings[451], 3u); | |
231 if ( !string_count ) | |
232 DrawTitleText(pFontComic, 0, 40, 0, pGlobalTXT_LocalizationStrings[153], 3u); | |
233 | |
234 GetTickCount(); | |
235 string_count = 0; | |
236 for (int i=0; i<20; ++i) | |
0 | 237 { |
1268 | 238 if ( pParty->pPartyBuffs[i].uExpireTime>0i64 )//!!! |
239 { | |
240 remaing_time = pParty->pPartyBuffs[i].uExpireTime- pParty->uTimePlayed;//!!! | |
241 Y_pos = string_count * pFontComic->uFontHeight + 40; | |
242 text_color = TargetColor(spell_tooltip_colors[i].R, spell_tooltip_colors[i].G, spell_tooltip_colors[i].B); | |
243 DrawText(pFontComic, 52, Y_pos, text_color, aSpellNames[i], 0, 0, 0); | |
244 sub_41D20D_buff_remaining_time_string(Y_pos, this, remaing_time, pFontComic); | |
245 ++string_count; | |
246 } | |
0 | 247 } |
248 } | |
249 | |
250 | |
251 //----- (0041D08F) -------------------------------------------------------- | |
972 | 252 void GUIWindow::_41D08F_set_keyboard_control_group(int a2, int a3, int a4, int a5) |
0 | 253 { |
254 if ( a2 ) | |
255 { | |
256 this->pNumPresenceButton = a2; | |
257 this->field_30 = a3; | |
258 this->field_34 = a4; | |
259 this->pCurrentPosActiveItem = a5; | |
260 this->pStartingPosActiveItem = a5; | |
972 | 261 this->receives_keyboard_input = true; |
0 | 262 } |
263 else | |
264 { | |
265 this->pNumPresenceButton = 0; | |
266 this->field_30 = a3; | |
267 this->field_34 = a4; | |
268 this->pCurrentPosActiveItem = 0; | |
269 this->pStartingPosActiveItem = 0; | |
972 | 270 this->receives_keyboard_input = false; |
0 | 271 } |
272 } | |
273 | |
274 | |
275 //----- (0041C26A) -------------------------------------------------------- | |
276 void GUIWindow::Release() | |
277 { | |
961 | 278 //GUIWindow *v1; // esi@1 |
0 | 279 int i; // edi@20 |
961 | 280 //GUIButton *v8; // eax@26 |
281 GUIButton *pNextBtn; // edi@27 | |
282 //int v10; // esi@28 | |
283 //int v11; // ecx@28 | |
0 | 284 int v12; // edx@29 |
285 | |
961 | 286 //v1 = this; |
0 | 287 if ( !this ) |
288 return; | |
696 | 289 |
290 switch( this->eWindowType ) | |
0 | 291 { |
696 | 292 case WINDOW_GreetingNPC: |
293 { | |
1006 | 294 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 295 pCurrentScreen = pMainScreenNum; |
1038 | 296 pKeyActionMap->SetWindowInputStatus(3); |
696 | 297 break; |
298 } | |
299 case WINDOW_HouseInterior: | |
300 { | |
301 for ( i = 0; i < uNumDialogueNPCPortraits; ++i ) | |
302 pDialogueNPCPortraits[i]->Release(); | |
303 uNumDialogueNPCPortraits = 0; | |
304 pTexture_Dialogue_Background->Release(); | |
0 | 305 |
1006 | 306 pIcons_LOD->SyncLoadedFilesCount(); |
1404 | 307 pIcons_LOD->ClearTextureList(); |
696 | 308 dword_5C35D4 = 0; |
309 if ( bFlipOnExit ) | |
310 { | |
311 pIndoorCamera->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (stru_5C6E00->uIntegerPi | |
312 + pIndoorCamera->sRotationY); | |
313 pParty->sRotationY = pIndoorCamera->sRotationY; | |
314 } | |
315 pParty->uFlags |= 2u; | |
316 break; | |
317 } | |
318 case WINDOW_Transition: | |
319 { | |
320 pVideoPlayer->Unload(); | |
321 pTexture_outside->Release(); | |
322 pTexture_Dialogue_Background->Release(); | |
1006 | 323 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 324 pCurrentScreen = pMainScreenNum; |
325 break; | |
326 } | |
327 case WINDOW_SpellBook: | |
328 { | |
1402 | 329 OnCloseSpellBookPage(); |
330 OnCloseSpellBook(); | |
696 | 331 break; |
332 } | |
333 case WINDOW_Book: | |
334 { | |
1402 | 335 OnCloseBook(); |
696 | 336 break; |
337 } | |
1402 | 338 case WINDOW_ChangeLocation: |
339 { | |
0 | 340 pTexture_outside->Release(); |
341 pTexture_Dialogue_Background->Release(); | |
1006 | 342 pIcons_LOD->SyncLoadedFilesCount(); |
11 | 343 pCurrentScreen = pMainScreenNum; |
696 | 344 break; |
345 } | |
346 case WINDOW_Dialogue: | |
347 { | |
348 if ( !dword_591084 ) | |
349 pDialogueNPCPortraits[0]->Release(); | |
350 uNumDialogueNPCPortraits = 0; | |
351 pTexture_Dialogue_Background->Release(); | |
352 | |
1006 | 353 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 354 pCurrentScreen = pMainScreenNum; |
355 } | |
356 default: | |
357 { | |
358 break; | |
359 } | |
0 | 360 } |
961 | 361 //v8 = this->pControlsHead; |
362 if ( this->pControlsHead ) | |
0 | 363 { |
364 do | |
365 { | |
961 | 366 pNextBtn = this->pControlsHead->pNext; |
367 pAllocator->FreeChunk(this->pControlsHead); | |
368 this->pControlsHead = pNextBtn; | |
0 | 369 } |
961 | 370 while ( pNextBtn ); |
0 | 371 } |
961 | 372 this->pControlsHead = 0; |
373 this->pControlsTail = 0; | |
374 this->uNumControls = 0; | |
375 this->eWindowType = WINDOW_null; | |
376 while ( this->numVisibleWindows < uNumVisibleWindows ) | |
0 | 377 { |
961 | 378 v12 = pVisibleWindowsIdxs[this->numVisibleWindows + 1]; |
379 pVisibleWindowsIdxs[this->numVisibleWindows] = v12; | |
962 | 380 --pWindowList[v12 - 1].numVisibleWindows; |
961 | 381 ++this->numVisibleWindows; |
0 | 382 } |
961 | 383 pVisibleWindowsIdxs[uNumVisibleWindows] = 0; |
384 uNumVisibleWindows = uNumVisibleWindows - 1; | |
0 | 385 } |
386 | |
387 | |
388 | |
389 | |
390 | |
391 | |
392 //----- (0041CD3B) -------------------------------------------------------- | |
393 GUIButton *GUIWindow::GetControl(unsigned int uID) | |
394 { | |
395 GUIButton *result; // eax@1 | |
396 unsigned int v3; // ecx@1 | |
397 | |
398 result = this->pControlsHead; | |
399 v3 = uID; | |
400 if ( (signed int)uID > 0 ) | |
401 { | |
402 do | |
403 { | |
404 result = result->pNext; | |
405 --v3; | |
406 } | |
407 while ( v3 ); | |
408 } | |
409 return result; | |
410 } | |
411 | |
412 //----- (00411BFC) -------------------------------------------------------- | |
413 void GUIWindow::InitializeBookView() | |
414 { | |
415 GUIWindow *v1; // ebp@1 | |
416 signed int v2; // ecx@8 | |
417 __int64 *v3; // ebp@9 | |
418 char *v4; // ecx@10 | |
419 char *v5; // eax@12 | |
420 int v6; // eax@12 | |
421 __int64 v7; // qax@12 | |
422 unsigned int v8; // esi@12 | |
423 GUIButton *v9; // eax@19 | |
424 signed int v10; // esi@19 | |
425 int v11; // eax@24 | |
426 int v12; // eax@27 | |
427 int i; // esi@28 | |
428 char *v14; // ebp@29 | |
429 int v15; // eax@31 | |
710 | 430 //unsigned int v16; // esi@35 |
0 | 431 Player *v17; // esi@38 |
432 unsigned __int16 v18; // ax@38 | |
433 unsigned int v19; // edi@43 | |
434 unsigned int v20; // edi@45 | |
435 void *v21; // esi@45 | |
1310 | 436 signed int max_beacons; // [sp+10h] [bp-5Ch]@38 |
0 | 437 char *v25; // [sp+14h] [bp-58h]@21 |
438 GUIWindow v26; // [sp+18h] [bp-54h]@8 | |
439 | |
440 v1 = this; | |
441 pAudioPlayer->StopChannels(-1, -1); | |
442 InitializeBookFonts(); | |
1310 | 443 v1->CreateButton(475, 445, 158, 34, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); // Close |
151 | 444 pCurrentScreen = SCREEN_BOOKS; |
949 | 445 num_achieved_awards_2 = 0; |
0 | 446 dword_506528 = 0; |
447 dword_50651C = 0; | |
949 | 448 num_achieved_awards = 0; |
688 | 449 switch (v1->par1C) |
450 { | |
961 | 451 case WINDOW_LloydsBeacon:{ |
688 | 452 byte_506360 = 0; |
948 | 453 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("lb_bordr", TEXTURE_16BIT_PALETTE); |
454 pTexture_LloydBeacons[0] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); | |
1310 | 455 pTexture_LloydBeacons[1] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); |
948 | 456 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); |
457 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
458 | |
961 | 459 pBtn_Book_1 = v1->CreateButton(415, 13, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 0, 0, pGlobalTXT_LocalizationStrings[375], 0); // Set Beacon |
460 pBtn_Book_2 = v1->CreateButton(415, 48, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 1, 0, pGlobalTXT_LocalizationStrings[523], 0); // Recall Beacon | |
948 | 461 |
688 | 462 v17 = &pParty->pPlayers[_506348_current_lloyd_playerid]; |
1310 | 463 |
464 max_beacons = 1; | |
465 v18 = v17->pActiveSkills[PLAYER_SKILL_WATER]; | |
466 if ( v18 & 0x100 || (v18 & 0x80) ) | |
467 max_beacons = 5; | |
468 else if ( v18 & 0x40 ) | |
469 max_beacons = 3; | |
470 | |
471 | |
472 for (int i =0; i< max_beacons; ++i) | |
473 CreateButton(pLloydsBeaconsPreviewXs[v19], pLloydsBeaconsPreviewYs[v19], | |
474 92, 68, 1, 180, UIMSG_InstallBeacon, i, 0, "", 0); | |
475 | |
476 for (int i =0; i< 5; ++i) | |
688 | 477 { |
1310 | 478 if (v17->pInstalledBeacons[i].uBeaconTime >= (signed __int64)pParty->uTimePlayed) |
479 LoadThumbnailLloydTexture(i, _506348_current_lloyd_playerid + 1); | |
480 else | |
481 memset(&v17->pInstalledBeacons[i], 0, sizeof(LloydBeacon)); | |
688 | 482 } |
1310 | 483 } |
688 | 484 break; |
710 | 485 |
486 case WINDOW_TownPortal: | |
487 { | |
948 | 488 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("townport", TEXTURE_16BIT_PALETTE); |
710 | 489 pTexture_TownPortalIcons[0] = pIcons_LOD->LoadTexturePtr("tpharmndy", TEXTURE_16BIT_PALETTE); |
490 pTexture_TownPortalIcons[1] = pIcons_LOD->LoadTexturePtr("tpelf", TEXTURE_16BIT_PALETTE); | |
491 pTexture_TownPortalIcons[2] = pIcons_LOD->LoadTexturePtr("tpwarlock", TEXTURE_16BIT_PALETTE); | |
492 pTexture_TownPortalIcons[3] = pIcons_LOD->LoadTexturePtr("tpisland", TEXTURE_16BIT_PALETTE); | |
493 pTexture_TownPortalIcons[4] = pIcons_LOD->LoadTexturePtr("tpheaven", TEXTURE_16BIT_PALETTE); | |
730 | 494 pTexture_TownPortalIcons[5] = pIcons_LOD->LoadTexturePtr("tphell", TEXTURE_16BIT_PALETTE); |
1393 | 495 |
496 static int pTownPortalBook_ws[6] = { 80, 66, 68, 72, 67, 74}; | |
497 static int pTownPortalBook_hs[6] = { 55, 56, 65, 67, 67, 59}; | |
710 | 498 for (uint i = 0; i < 6; ++i) |
961 | 499 v1->CreateButton(pTownPortalBook_xs[i], pTownPortalBook_ys[i], pTownPortalBook_ws[i], pTownPortalBook_hs[i], 1, 182, UIMSG_ClickTownInTP, i, 0, "", nullptr); |
1310 | 500 |
710 | 501 } |
502 break; | |
503 | |
504 case WINDOW_QuestBook: | |
948 | 505 { |
506 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("sbquiknot", TEXTURE_16BIT_PALETTE); | |
507 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr( "divbar", TEXTURE_16BIT_PALETTE); | |
508 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
509 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
510 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
511 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
512 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, | |
513 pTex_tab_an_6b__zoom_on->uTextureWidth, pTex_tab_an_6b__zoom_on->uTextureHeight, | |
996 | 514 1, 0, UIMSG_ClickBooksBtn, 0xBu, 0, pGlobalTXT_LocalizationStrings[192],// "Scroll Up" |
948 | 515 pTex_tab_an_6b__zoom_on, 0); |
516 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, | |
517 pTex_tab_an_7b__zoot_on->uTextureHeight, pTex_tab_an_7b__zoot_on->uTextureHeight, | |
996 | 518 1, 0, UIMSG_ClickBooksBtn, 0xAu, 0, pGlobalTXT_LocalizationStrings[193],// "Scroll Down" |
948 | 519 pTex_tab_an_7b__zoot_on, 0); |
949 | 520 num_achieved_awards = 0; |
1202 | 521 memset(achieved_awards.data(), 0, 4000); |
688 | 522 for ( i = dword_506528; i < 512; ++i ) |
523 { | |
1310 | 524 // v14 = (char *)pQuestTable[i];//(&dword_722F10)[4 * i]; |
525 if ( _449B57_test_bit(pParty->_quest_bits, i) && pQuestTable[i] ) | |
0 | 526 { |
1310 | 527 achieved_awards[num_achieved_awards] = (AwardType)i; |
528 ++num_achieved_awards; | |
0 | 529 } |
530 } | |
949 | 531 v12 = num_achieved_awards; |
532 num_achieved_awards = 0; | |
533 num_achieved_awards_2 = v12; | |
688 | 534 } |
535 break; | |
981 | 536 |
537 | |
710 | 538 case WINDOW_AutonotesBook: |
688 | 539 { |
948 | 540 pTexture_AutonotesBook = pIcons_LOD->LoadTexturePtr("sbautnot", TEXTURE_16BIT_PALETTE); |
541 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr("divbar", TEXTURE_16BIT_PALETTE); | |
542 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
543 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
544 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
545 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
546 pTexture_506394 = pIcons_LOD->LoadTexturePtr("tab-an-1b", TEXTURE_16BIT_PALETTE); | |
547 pTexture_506390 = pIcons_LOD->LoadTexturePtr("tab-an-1a", TEXTURE_16BIT_PALETTE); | |
548 pTexture_50638C = pIcons_LOD->LoadTexturePtr("tab-an-2b", TEXTURE_16BIT_PALETTE); | |
549 pTexture_506388 = pIcons_LOD->LoadTexturePtr("tab-an-2a", TEXTURE_16BIT_PALETTE); | |
550 pTexture_506384 = pIcons_LOD->LoadTexturePtr("tab-an-3b", TEXTURE_16BIT_PALETTE); | |
551 pTexture_506380 = pIcons_LOD->LoadTexturePtr("tab-an-3a", TEXTURE_16BIT_PALETTE); | |
552 pTexture_50637C = pIcons_LOD->LoadTexturePtr("tab-an-5b", TEXTURE_16BIT_PALETTE); | |
553 pTexture_506378 = pIcons_LOD->LoadTexturePtr("tab-an-5a", TEXTURE_16BIT_PALETTE); | |
554 pTexture_506374 = pIcons_LOD->LoadTexturePtr("tab-an-4b", TEXTURE_16BIT_PALETTE); | |
555 pTexture_506370 = pIcons_LOD->LoadTexturePtr("tab-an-4a", TEXTURE_16BIT_PALETTE); | |
556 pTexture_50636C = pIcons_LOD->LoadTexturePtr("tab-an-8b", TEXTURE_16BIT_PALETTE); | |
557 pTexture_506368 = pIcons_LOD->LoadTexturePtr("tab-an-8a", TEXTURE_16BIT_PALETTE); | |
558 | |
1310 | 559 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, |
560 UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[193], pTex_tab_an_6b__zoom_on, 0); | |
561 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, | |
562 UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[192], pTex_tab_an_7b__zoot_on, 0); | |
563 pBtn_Book_3 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, | |
564 UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[85], pTexture_506394, 0); // "Potion Notes" | |
565 pBtn_Book_4 = v1->CreateButton(pViewport->uViewportTL_X + 399, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, | |
566 UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[137], pTexture_50638C, 0); // "Fountain Notes" | |
567 pBtn_Book_5 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, | |
568 UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[8], pTexture_506384, 0); // "Obelisk Notes" | |
569 pBtn_Book_6 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, | |
570 UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[141], pTexture_50637C, 0); // "Seer Notes" | |
571 pBtn_Autonotes_Misc = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 264, 50, 34, 1, 0, | |
572 UIMSG_ClickBooksBtn, 6, 0, pGlobalTXT_LocalizationStrings[123], pTexture_506374, 0); // "Miscellaneous Notes" | |
573 pBtn_Autonotes_Instructors = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 302, 50, 34, 1, 0, | |
574 UIMSG_ClickBooksBtn, 7, 0, pGlobalTXT_LocalizationStrings[662], pTexture_50636C, 0); // "Instructors" | |
948 | 575 |
949 | 576 num_achieved_awards = 0; |
1310 | 577 for ( i = dword_506528; i < 196; ++i ) |
578 if ( _506568_autonote_type == pAutonoteTxt[i].eType)//dword_72371C[2 * v10] ) | |
688 | 579 { |
1310 | 580 if ( i ) |
688 | 581 { |
1310 | 582 if ( _449B57_test_bit(pParty->_autonote_bits, i) && pAutonoteTxt[i].pText ) |
688 | 583 { |
1310 | 584 |
585 achieved_awards[num_achieved_awards] = (AwardType)i; | |
586 ++num_achieved_awards; | |
688 | 587 } |
588 } | |
589 } | |
1310 | 590 |
688 | 591 } |
592 break; | |
948 | 593 |
710 | 594 case WINDOW_MapsBook: |
948 | 595 { |
688 | 596 dword_506364 = 1; |
948 | 597 pSpellBookPagesTextr_12 = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); |
598 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("zoom-on", TEXTURE_16BIT_PALETTE); | |
599 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("zoot-on", TEXTURE_16BIT_PALETTE); | |
600 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("zoom-off", TEXTURE_16BIT_PALETTE); | |
601 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("zoot-off", TEXTURE_16BIT_PALETTE); | |
602 pTexture_506394 = pIcons_LOD->LoadTexturePtr("tabNon", TEXTURE_16BIT_PALETTE); | |
603 pTexture_506390 = pIcons_LOD->LoadTexturePtr("tabNoff", TEXTURE_16BIT_PALETTE); | |
604 pTexture_50638C = pIcons_LOD->LoadTexturePtr("tabSon", TEXTURE_16BIT_PALETTE); | |
605 pTexture_506388 = pIcons_LOD->LoadTexturePtr("tabSoff", TEXTURE_16BIT_PALETTE); | |
606 pTexture_506384 = pIcons_LOD->LoadTexturePtr("tabEon", TEXTURE_16BIT_PALETTE); | |
607 pTexture_506380 = pIcons_LOD->LoadTexturePtr("tabEoff", TEXTURE_16BIT_PALETTE); | |
608 pTexture_50637C = pIcons_LOD->LoadTexturePtr("tabWon", TEXTURE_16BIT_PALETTE); | |
609 pTexture_506378 = pIcons_LOD->LoadTexturePtr("tabWoff", TEXTURE_16BIT_PALETTE); | |
610 | |
1310 | 611 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, |
612 UIMSG_ClickBooksBtn, 0, 0, pGlobalTXT_LocalizationStrings[251], pTex_tab_an_6b__zoom_on, 0);// "Zoom In" | |
613 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, | |
614 UIMSG_ClickBooksBtn, 1, 0, pGlobalTXT_LocalizationStrings[252], pTex_tab_an_7b__zoot_on, 0);// "Zoom Out" | |
615 pBtn_Book_3 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, | |
616 UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[192], (Texture *)"", 0);// Scroll Up | |
617 pBtn_Book_4 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, | |
618 UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[193], (Texture *)"", 0);// Scroll Down | |
619 pBtn_Book_5 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, | |
620 UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[573], (Texture *)"", 0);// "Scroll Right" | |
621 pBtn_Book_6 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, | |
622 UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[572], (Texture *)"", 0);// "Scroll Left" | |
688 | 623 } |
624 break; | |
948 | 625 |
626 case WINDOW_CalendarBook: | |
627 { | |
628 pSpellBookPagesTextr_13 = pIcons_LOD->LoadTexturePtr("sbdate-time", TEXTURE_16BIT_PALETTE); | |
629 pTex_moon_new = pIcons_LOD->LoadTexturePtr("moon_new", TEXTURE_16BIT_PALETTE); | |
630 pTex_moon_4 = pIcons_LOD->LoadTexturePtr("moon_4", TEXTURE_16BIT_PALETTE); | |
631 pTex_moon_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE); | |
632 pTex_moon_2_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE); | |
633 pTex_moon_ful = pIcons_LOD->LoadTexturePtr("moon_ful", TEXTURE_16BIT_PALETTE); | |
688 | 634 } |
635 break; | |
948 | 636 |
1004 | 637 case WINDOW_JournalBook: |
948 | 638 { |
639 pSpellBookPagesTextr_11 = pIcons_LOD->LoadTexturePtr("sbplayrnot", TEXTURE_16BIT_PALETTE); | |
640 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
641 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
642 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
643 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
644 | |
1310 | 645 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, |
646 pTex_tab_an_6b__zoom_on->uTextureWidth, pTex_tab_an_6b__zoom_on->uTextureHeight, 1, 0, | |
647 UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[192], pTex_tab_an_6b__zoom_on, 0); | |
648 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, pTex_tab_an_7b__zoot_on->uTextureHeight, | |
649 pTex_tab_an_7b__zoot_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 10, 0, | |
650 pGlobalTXT_LocalizationStrings[193], pTex_tab_an_7b__zoot_on, 0); | |
948 | 651 |
949 | 652 num_achieved_awards = 0; |
688 | 653 v26.uFrameX = 48; |
654 v26.uFrameY = 70; | |
655 v26.uFrameWidth = 360; | |
656 v26.uFrameHeight = 264; | |
657 v2 = LOBYTE(pAutonoteFont->uFontHeight) - 3; | |
658 v26.uFrameZ = 407; | |
659 v26.uFrameHeight = v2 * 264 / v2; | |
660 v26.uFrameW = v26.uFrameHeight + 69; | |
949 | 661 memset(&achieved_awards, 0, 4000); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
662 memset(byte_5C6D50.data(), 0, 0x64u); |
688 | 663 if ( dword_506528 < 29 ) |
664 { | |
665 v3 = (__int64 *)&pParty->field_3C.field_4F0[2 * dword_506528]; | |
666 for(int i=dword_506528+1;i<dword_506528+31;i++) | |
667 { | |
668 v4 = pStorylineText->StoreLine[i].pText; | |
669 if ( *v3 ) | |
670 { | |
671 if ( v4 ) | |
672 { | |
673 v5 = BuilDialogueString(v4, uActiveCharacter - 1, 0, 0, 0, v3); | |
674 v6 = pAutonoteFont->CalcTextHeight(v5, &v26, 1, 0); | |
675 v7 = (v6 - 3) / (signed int)v26.uFrameHeight; | |
676 v8 = v7 + 1; | |
677 if ( (signed int)v7 + 1 > 0 ) | |
678 { | |
949 | 679 memset32((char *)&achieved_awards + 4 * num_achieved_awards , i, v8); |
688 | 680 do |
681 { | |
949 | 682 LODWORD(v7) = num_achieved_awards++; |
688 | 683 byte_5C6D50[(int)v7] = BYTE4(v7); |
684 ++HIDWORD(v7); | |
685 } | |
686 while ( SHIDWORD(v7) < (signed int)v8 ); | |
687 } | |
688 } | |
689 } | |
690 ++i; | |
691 ++v3; | |
692 } | |
693 } | |
694 | |
695 } | |
696 break; | |
697 } | |
698 | |
0 | 699 } |
700 | |
701 | |
702 | |
703 | |
704 //----- (00415551) -------------------------------------------------------- | |
705 void GUIWindow::DrawMessageBox(int arg0) | |
706 { | |
707 unsigned int v2; // edi@1 | |
708 GUIWindow *v3; // ebx@1 | |
709 signed int v4; // esi@2 | |
710 unsigned int v5; // eax@2 | |
711 unsigned int v6; // edx@4 | |
712 unsigned int v7; // ecx@6 | |
713 unsigned int v8; // eax@9 | |
714 __int32 v9; // eax@10 | |
715 unsigned int v10; // eax@18 | |
716 LONG v11; // ecx@18 | |
717 unsigned int v12; // edx@18 | |
718 unsigned int v13; // eax@18 | |
719 const char *v14; // ecx@18 | |
720 int v15; // eax@19 | |
721 unsigned int v16; // esi@19 | |
722 const char *v17; // ebx@25 | |
723 int v18; // eax@26 | |
724 GUIWindow v19; // [sp+Ch] [bp-60h]@18 | |
725 POINT a2; // [sp+60h] [bp-Ch]@8 | |
726 unsigned int v21; // [sp+68h] [bp-4h]@18 | |
727 unsigned int v22; // [sp+74h] [bp+8h]@2 | |
728 unsigned int v23; // [sp+74h] [bp+8h]@18 | |
729 | |
730 v2 = 0; | |
731 v3 = this; | |
732 if ( arg0 ) | |
733 { | |
693 | 734 v4 = pViewport->uViewportTL_X; |
735 v5 = pViewport->uViewportBR_X; | |
736 v2 = pViewport->uViewportTL_Y; | |
737 v22 = pViewport->uViewportBR_Y; | |
0 | 738 } |
739 else | |
740 { | |
741 v4 = 0; | |
742 v5 = 640; | |
743 v22 = 480; | |
744 } | |
745 v6 = this->uFrameX; | |
746 if ( (signed int)this->uFrameX >= v4 ) | |
747 { | |
748 v7 = this->uFrameWidth; | |
749 if ( (signed int)(v7 + v6) <= (signed int)v5 ) | |
750 goto LABEL_9; | |
751 v3->uFrameX = v5 - v7; | |
752 } | |
753 else | |
754 { | |
755 this->uFrameX = v4; | |
756 } | |
757 v3->uFrameY = pMouse->GetCursorPos(&a2)->y + 30; | |
758 LABEL_9: | |
759 v8 = v3->uFrameY; | |
760 if ( (signed int)v8 >= (signed int)v2 ) | |
761 { | |
762 if ( (signed int)(v8 + v3->uFrameHeight) <= (signed int)v22 ) | |
763 goto LABEL_14; | |
764 v9 = pMouse->GetCursorPos(&a2)->y - v3->uFrameHeight - 30; | |
765 } | |
766 else | |
767 { | |
768 v9 = pMouse->GetCursorPos(&a2)->y + 30; | |
769 } | |
770 v3->uFrameY = v9; | |
771 LABEL_14: | |
772 if ( (signed int)v3->uFrameY < (signed int)v2 ) | |
773 v3->uFrameY = v2; | |
774 if ( (signed int)v3->uFrameX < v4 ) | |
775 v3->uFrameX = v4; | |
776 v10 = v3->uFrameWidth; | |
777 v11 = v3->uFrameX; | |
778 v12 = v3->uFrameY; | |
779 v21 = v10; | |
780 a2.y = v11; | |
781 v3->uFrameZ = v10 + v11 - 1; | |
782 v13 = v3->uFrameHeight; | |
783 v3->uFrameW = v13 + v12 - 1; | |
784 memcpy(&v19, v3, sizeof(v19)); | |
785 v19.uFrameX += 12; | |
786 v19.uFrameWidth -= 24; | |
787 v19.uFrameY += 12; | |
788 v19.uFrameHeight -= 12; | |
789 v19.uFrameZ = v19.uFrameWidth + v19.uFrameX - 1; | |
790 v23 = v12; | |
791 v19.uFrameW = v19.uFrameHeight + v19.uFrameY - 1; | |
792 v14 = v3->Hint; | |
793 if ( v14 ) | |
794 { | |
795 v15 = pFontLucida->CalcTextHeight(v14, &v19, 0, 0); | |
796 v12 = v23; | |
797 v16 = v15 + 24; | |
798 } | |
799 else | |
800 { | |
801 v16 = v13; | |
802 } | |
803 if ( (signed int)v16 < 64 ) | |
804 v16 = 64; | |
805 if ( (signed int)(v16 + v12) > 479 ) | |
806 v16 = 479 - v12; | |
807 DrawPopupWindow(a2.y, v12, v21, v16); | |
808 v17 = v3->Hint; | |
809 if ( v17 ) | |
810 { | |
811 v18 = pFontLucida->CalcTextHeight(v17, &v19, 0, 0); | |
1004 | 812 v19.DrawTitleText(pFontLucida, 0, (signed int)(v16 - v18) / 2 - 14, 0, v17, 3); |
0 | 813 } |
814 } | |
815 | |
816 | |
817 | |
818 | |
819 //----- (00411B59) -------------------------------------------------------- | |
820 void __fastcall LoadThumbnailLloydTexture(unsigned int uSlot, unsigned int uPlayer) | |
821 { | |
822 unsigned int v2; // esi@1 | |
823 unsigned int v3; // edi@1 | |
824 FILE *v4; // ebx@1 | |
825 FILE *v5; // eax@2 | |
826 char pContainerName[64]; // [sp+Ch] [bp-44h]@1 | |
827 unsigned int v7; // [sp+4Ch] [bp-4h]@1 | |
828 | |
829 v2 = uSlot; | |
830 v7 = uPlayer; | |
831 v3 = uSlot + 1; | |
832 sprintf(pContainerName, "data\\lloyd%d%d.pcx", uPlayer, uSlot + 1); | |
833 v4 = fopen(pContainerName, "rb"); | |
834 if ( v4 ) | |
835 { | |
836 pSavegameThumbnails[v2].LoadFromFILE(v4, 0, 1u); | |
837 fclose(v4); | |
838 } | |
839 else | |
840 { | |
841 sprintf(pContainerName, "lloyd%d%d.pcx", v7, v3); | |
842 v5 = pNew_LOD->FindContainer(pContainerName, 1); | |
843 if ( v5 ) | |
844 pSavegameThumbnails[v2].LoadFromFILE(v5, 0, 0); | |
845 else | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
846 *((int *)&pSavegameThumbnails.data()->pPixels + 10 * v2) = 0; |
0 | 847 } |
848 } | |
849 | |
850 | |
851 //----- (00411621) -------------------------------------------------------- | |
198 | 852 void GUIWindow::OpenSpellBook() |
0 | 853 { |
11 | 854 Player *pPlayer; // edi@1 |
198 | 855 //GUIWindow *pWindow; // esi@1 |
856 //unsigned int v3; // ebp@1 | |
0 | 857 int v4; // eax@3 |
198 | 858 ///GUIButton *result; // eax@25 |
0 | 859 int a2; // [sp+10h] [bp-8h]@1 |
198 | 860 //int v7; // [sp+14h] [bp-4h]@1 |
0 | 861 |
11 | 862 pPlayer = pPlayers[uActiveCharacter]; |
198 | 863 //pWindow = this; |
864 LoadSpellbook(pPlayer->lastOpenedSpellbookPage); | |
865 //v3 = 0; | |
0 | 866 a2 = 0; |
198 | 867 |
868 auto chapter = &pPlayer->spellbook.pChapters[pPlayer->lastOpenedSpellbookPage]; | |
869 for (uint i = 0; i < 11; ++i) | |
0 | 870 { |
198 | 871 if (!chapter->bIsSpellAvailable[i]) |
872 continue; | |
363 | 873 v4= pPlayer->lastOpenedSpellbookPage; |
874 //v4 = (12 * pPlayer->lastOpenedSpellbookPage + pSpellbookSpellIndices[pPlayer->lastOpenedSpellbookPage][i + 1]); | |
693 | 875 CreateButton(pViewport->uViewportTL_X + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Xpos, |
876 pViewport->uViewportTL_Y + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Ypos, //dword_4E20D0 | |
1402 | 877 SBPageSSpellsTextureList[i + 1]->uTextureWidth, |
878 SBPageSSpellsTextureList[i + 1]->uTextureHeight, | |
832 | 879 1, 79, UIMSG_SelectSpell, i, 0, "", 0); |
0 | 880 ++a2; |
198 | 881 //++v3; |
0 | 882 } |
198 | 883 //while ( (signed int)v3 < 11 ); |
884 | |
1118 | 885 CreateButton(0, 0, 0, 0, 1, 0, UIMSG_SpellBook_PressTab, 0, '\t', "", 0); |
0 | 886 if ( a2 ) |
972 | 887 _41D08F_set_keyboard_control_group(a2, 0, 0, 0); |
948 | 888 |
889 if (pPlayer->pActiveSkills[PLAYER_SKILL_FIRE]) CreateButton(399, 10, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 0, 0, aSpellSchoolNames[0], 0); | |
890 if (pPlayer->pActiveSkills[PLAYER_SKILL_AIR]) CreateButton(399, 46, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 1, 0, aSpellSchoolNames[1], 0); | |
891 if (pPlayer->pActiveSkills[PLAYER_SKILL_WATER]) CreateButton(399, 83, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 2, 0, aSpellSchoolNames[2], 0); | |
892 if (pPlayer->pActiveSkills[PLAYER_SKILL_EARTH]) CreateButton(399, 121, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 3, 0, aSpellSchoolNames[3], 0); | |
893 if (pPlayer->pActiveSkills[PLAYER_SKILL_SPIRIT]) CreateButton(399, 158, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 4, 0, aSpellSchoolNames[4], 0); | |
894 if (pPlayer->pActiveSkills[PLAYER_SKILL_MIND]) CreateButton(400, 196, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 5, 0, aSpellSchoolNames[5], 0); | |
895 if (pPlayer->pActiveSkills[PLAYER_SKILL_BODY]) CreateButton(400, 234, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 6, 0, aSpellSchoolNames[6], 0); | |
896 if (pPlayer->pActiveSkills[PLAYER_SKILL_LIGHT]) CreateButton(400, 271, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 7, 0, aSpellSchoolNames[7], 0); | |
897 if (pPlayer->pActiveSkills[PLAYER_SKILL_DARK]) CreateButton(400, 307, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 8, 0, aSpellSchoolNames[8], 0); | |
898 | |
1402 | 899 CreateButton(476, 450, pSBClickQuickSpellBtnTextr->uTextureWidth, pSBClickQuickSpellBtnTextr->uTextureHeight, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", 0); |
900 pBtn_InstallRemoveSpell = CreateButton(476, 450, 48, 32, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", pSBClickQuickSpellBtnTextr, 0); | |
901 CreateButton(561, 450, pSpellBookClickCloseBtnTextr->uTextureWidth, pSpellBookClickCloseBtnTextr->uTextureHeight, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); | |
902 pBtn_CloseBook = CreateButton(561, 450, 48, 32, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], pSpellBookClickCloseBtnTextr, 0); | |
0 | 903 } |
904 // 50640C: using guessed type int dword_50640C[]; | |
905 | |
906 //----- (004B3157) -------------------------------------------------------- | |
405 | 907 void GUIWindow::HouseDialogManager() |
0 | 908 { |
854 | 909 unsigned __int16 pWhiteColor; // di@2 |
910 const char *pHouseName; // edx@4 | |
0 | 911 signed int v3; // edx@5 |
912 char *v4; // edi@9 | |
854 | 913 int pTextHeight; // eax@45 |
0 | 914 int v6; // edi@45 |
915 char *v7; // eax@45 | |
916 int v8; // edi@46 | |
917 int v9; // eax@50 | |
918 unsigned int v10; // [sp-10h] [bp-C8h]@53 | |
873 | 919 char *pTitleText; // [sp-8h] [bp-C0h]@50 |
854 | 920 GUIWindow pDialogWindow; // [sp+Ch] [bp-ACh]@4 |
921 GUIWindow pWindow; // [sp+60h] [bp-58h]@2 | |
922 int pColor2; // [sp+B4h] [bp-4h]@2 | |
0 | 923 |
336 | 924 if ( !window_SpeakInHouse ) |
0 | 925 return; |
854 | 926 memcpy(&pWindow, this, sizeof(pWindow)); |
927 pWindow.uFrameWidth -= 18; | |
928 pWindow.uFrameZ -= 18; | |
949 | 929 pWhiteColor = TargetColor(0xFFu, 0xFFu, 0xFFu); |
930 pColor2 = TargetColor(0x15u, 0x99u, 0xE9u); | |
0 | 931 pRenderer->DrawTextureIndexed(0x1DDu, 0, pTexture_Dialogue_Background); |
910 | 932 pRenderer->DrawTextureTransparent(0x1D4u, 0, &pIcons_LOD->pTextures[uTextureID_right_panel_loop]); |
457 | 933 if ( pDialogueNPCCount != uNumDialogueNPCPortraits || !uHouse_ExitPic ) |
0 | 934 { |
854 | 935 pDialogWindow.uFrameWidth = 130; |
936 pDialogWindow.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight); | |
937 pHouseName = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName; | |
938 if ( pHouseName ) | |
0 | 939 { |
854 | 940 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(pHouseName, &pDialogWindow, 0, 0); |
0 | 941 if ( v3 < 0 ) |
942 v3 = 0; | |
854 | 943 pWindow.DrawTitleText(pFontCreate, 0x1EAu, v3 / 2 + 4, pWhiteColor, |
0 | 944 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C], |
336 | 945 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName, 3); |
0 | 946 } |
947 } | |
854 | 948 pWindow.uFrameWidth += 8; |
949 pWindow.uFrameZ += 8; | |
457 | 950 if ( !pDialogueNPCCount ) |
0 | 951 { |
484 | 952 if ( in_current_building_type == BildingType_Jail ) |
0 | 953 { |
480 | 954 JailDialog(); |
854 | 955 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
956 { | |
957 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
958 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
959 } | |
960 else | |
961 { | |
962 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
963 } | |
964 return; | |
0 | 965 } |
827 | 966 if ( current_npc_text ) |
0 | 967 { |
854 | 968 pDialogWindow.uFrameWidth = 458; |
969 pDialogWindow.uFrameZ = 457; | |
970 pTextHeight = pFontArrus->CalcTextHeight(current_npc_text, &pDialogWindow, 13, 0); | |
971 v6 = pTextHeight + 7; | |
972 pRenderer->_4A6A68(8, 352 - (pTextHeight + 7), &pIcons_LOD->pTextures[uTextureID_Leather], | |
973 pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight - (pTextHeight + 7)); | |
974 pRenderer->DrawTextureIndexed(8, 347 - v6, pTexture_591428); | |
975 v7 = FitTextInAWindow(current_npc_text, pFontArrus, &pDialogWindow, 0xDu, 0); | |
336 | 976 window_SpeakInHouse->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0); |
0 | 977 } |
978 if ( uNumDialogueNPCPortraits <= 0 ) | |
854 | 979 { |
980 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) | |
981 { | |
982 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
983 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
984 } | |
985 else | |
986 { | |
987 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
988 } | |
989 return; | |
990 } | |
873 | 991 for ( v8 = 0; v8 < uNumDialogueNPCPortraits; ++v8 ) |
0 | 992 { |
419 | 993 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8] - 4, |
874 | 994 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]); |
419 | 995 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8], |
996 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8], pDialogueNPCPortraits[v8]); | |
0 | 997 if ( uNumDialogueNPCPortraits < 4 ) |
854 | 998 { |
873 | 999 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
854 | 1000 { |
873 | 1001 pTitleText = pMapStats->pInfos[uHouse_ExitPic].pName; |
1002 v9 = 94 * v8 + 113; | |
854 | 1003 } |
1004 else | |
1005 { | |
873 | 1006 if ( !v8 && dword_591080 ) |
1007 { | |
1008 pTitleText = (char *)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle; | |
1009 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 113, pColor2, pTitleText, 3); | |
1010 continue; | |
1011 } | |
1211 | 1012 pTitleText = HouseNPCData[v8 +1 - (dword_591080 != 0)]->pName; |
1013 v9 = pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] + pDialogueNPCPortraits[v8]->uTextureHeight + 2; | |
854 | 1014 } |
873 | 1015 v10 = v9; |
1211 | 1016 pWindow.DrawTitleText(pFontCreate, 483, v10, pColor2, pTitleText, 3); |
854 | 1017 } |
874 | 1018 } |
873 | 1019 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1020 { |
873 | 1021 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); |
1022 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
0 | 1023 } |
873 | 1024 else |
1025 { | |
1026 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
1027 } | |
1028 return; | |
0 | 1029 } |
457 | 1030 v4 = (char *)pDialogueNPCCount - 1; |
419 | 1031 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0] - 4, pNPCPortraits_y[0][0] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]); |
1032 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], pDialogueNPCPortraits[(signed int)v4]); | |
151 | 1033 if ( pCurrentScreen == SCREEN_E ) |
0 | 1034 { |
984 | 1035 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); |
854 | 1036 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
1037 { | |
1038 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
1039 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
1040 } | |
1041 else | |
1042 { | |
1043 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
1044 } | |
1045 return; | |
0 | 1046 } |
1047 if ( v4 || !dword_591080 ) | |
1048 { | |
445 | 1049 SimpleHouseAndBoatsDialog(); |
0 | 1050 } |
1051 else | |
1052 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1053 sprintfex( pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], |
336 | 1054 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterName, |
1055 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle); | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1056 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 0x71u, pColor2, pTmpBuf.data(), 3); |
484 | 1057 switch ( in_current_building_type ) |
0 | 1058 { |
480 | 1059 case BildingType_WeaponShop: |
405 | 1060 WeaponShopDialog(); |
0 | 1061 break; |
480 | 1062 case BildingType_ArmorShop: |
405 | 1063 ArmorShopDialog(); |
0 | 1064 break; |
480 | 1065 case BildingType_MagicShop: |
405 | 1066 MagicShopDialog(); |
0 | 1067 break; |
480 | 1068 case BildingType_AlchemistShop: |
405 | 1069 AlchemistDialog(); |
0 | 1070 break; |
480 | 1071 case BildingType_FireGuild: |
1072 case BildingType_AirGuild: | |
1073 case BildingType_WaterGuild: | |
1074 case BildingType_EarthGuild: | |
1075 case BildingType_SpiritGuild: | |
1076 case BildingType_MindGuild: | |
1077 case BildingType_BodyGuild: | |
1078 case BildingType_LightGuild: | |
495 | 1079 case BildingType_DarkGuild: |
480 | 1080 GuildDialog(); |
1081 break; | |
1082 case BildingType_18: | |
987 | 1083 __debugbreak(); //What over the dialog? |
480 | 1084 sub_4B6478(); |
1085 break; | |
1086 case BildingType_TownHall: | |
1087 TownHallDialog(); | |
1088 break; | |
1089 case BildingType_Tavern: | |
1090 TavernDialog(); | |
1091 break; | |
1092 case BildingType_Bank: | |
1093 BankDialog(); | |
1094 break; | |
481 | 1095 case BildingType_Temple: |
495 | 1096 TempleDialog(); |
480 | 1097 break; |
1098 case BildingType_Stables: | |
1099 TravelByTransport(); | |
1100 break; | |
1101 case BildingType_Training: | |
1102 TrainingDialog(); | |
1103 break; | |
1104 case BildingType_Jail: | |
1105 JailDialog(); | |
1106 break; | |
0 | 1107 default: |
987 | 1108 __debugbreak();//New BildingType |
0 | 1109 break; |
1110 } | |
1111 } | |
457 | 1112 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1113 { |
370 | 1114 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); |
1115 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
0 | 1116 } |
1117 else | |
1118 { | |
526 | 1119 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); |
0 | 1120 } |
1121 } | |
1122 | |
1123 //----- (004B1854) -------------------------------------------------------- | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1124 void GUIWindow::DrawCurrentTime( __int64 a2 ) |
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1125 { |
0 | 1126 unsigned int v2; // edi@1 |
1127 unsigned int v3; // esi@1 | |
1128 unsigned int v4; // ebp@1 | |
1129 unsigned int v5; // ebx@1 | |
1130 signed __int64 v6; // ST2C_8@1 | |
1131 signed __int64 v7; // kr00_8@1 | |
1132 char *v8; // eax@2 | |
1133 char *v9; // eax@7 | |
1134 char *v10; // eax@13 | |
1135 char *v11; // eax@19 | |
1136 unsigned __int16 v12; // ST0C_2@22 | |
1137 int v13; // eax@22 | |
1138 GUIWindow *v15; // [sp+0h] [bp-1Ch]@1 | |
1139 signed __int64 v16; // [sp+Ch] [bp-10h]@1 | |
1140 signed __int64 v17; // [sp+14h] [bp-8h]@1 | |
1141 unsigned int v18; // [sp+20h] [bp+4h]@1 | |
1142 | |
1143 v15 = this; | |
1144 v2 = (unsigned __int64)(signed __int64)((double)a2 * 0.234375) >> 32; | |
1145 v3 = (signed __int64)((double)a2 * 0.234375); | |
1146 v4 = (unsigned __int64)((signed __int64)((double)a2 * 0.234375) / 60) >> 32; | |
1147 v5 = (signed __int64)((double)a2 * 0.234375) / 60; | |
1148 v6 = (signed __int64)((double)a2 * 0.234375) / 60 / 60; | |
1149 v18 = (unsigned int)v6 / 0x18; | |
1150 v17 = (signed __int64)__PAIR__(v2, v3) % 60; | |
1151 v16 = (signed __int64)__PAIR__(v4, v5) % 60; | |
1152 v7 = v6 % 24; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1153 strcpy(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[532]); |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1154 if ( (unsigned int)v6 /24 ) |
0 | 1155 { |
1156 v8 = pGlobalTXT_LocalizationStrings[57]; | |
1157 if ( v18 <= 1 ) | |
1158 v8 = pGlobalTXT_LocalizationStrings[56]; | |
1394 | 1159 sprintfex(pTmpBuf2.data(), "%d %s ", v18, v8); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1160 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1161 } |
1162 if ( v7 ) | |
1163 { | |
1164 if ( v7 <= 1 ) | |
1165 v9 = pGlobalTXT_LocalizationStrings[109]; | |
1166 else | |
1167 v9 = pGlobalTXT_LocalizationStrings[110]; | |
1394 | 1168 sprintfex(pTmpBuf2.data(), "%d %s ", v7, v9); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1169 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1170 } |
1171 if ( v16 && !v18 ) | |
1172 { | |
1173 if ( v16 <= 1 ) | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1174 v10 = pGlobalTXT_LocalizationStrings[437];//"Minute" |
0 | 1175 else |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1176 v10 = pGlobalTXT_LocalizationStrings[436]; //"Minutes" |
1394 | 1177 sprintfex(pTmpBuf2.data(), "%d %s ", v16, v10); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1178 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1179 } |
1180 if ( v17 && !v7 ) | |
1181 { | |
1182 if ( v17 <= 1 ) | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1183 v11 = pGlobalTXT_LocalizationStrings[439]; //"Second" |
0 | 1184 else |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1185 v11 = pGlobalTXT_LocalizationStrings[438]; //"Seconds" |
1394 | 1186 sprintfex(pTmpBuf2.data(), "%d %s ", v17, v11); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1187 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1188 } |
949 | 1189 v12 = TargetColor(0xFFu, 0xFFu, 0x9Bu); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1190 v13 = pFontArrus->CalcTextHeight(pTmpBuf.data(), v15, 0, 0); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1191 v15->DrawTitleText(pFontArrus, 0, (212 - v13) / 2 + 101, v12, pTmpBuf.data(), 3u); |
0 | 1192 } |
1193 | |
1194 | |
1195 | |
1196 //----- (0044D406) -------------------------------------------------------- | |
1268 | 1197 void GUIWindow::DrawTitleText( GUIFont *a2, signed int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor, |
1198 const char *pInString, unsigned int uLineSpacing ) | |
762 | 1199 { |
0 | 1200 GUIWindow *pWindow; // esi@1 |
1201 unsigned int v8; // ebx@1 | |
1202 char *v9; // eax@1 | |
1203 unsigned int v11; // edi@1 | |
1204 signed int v12; // esi@1 | |
1205 int v13; // eax@2 | |
1206 GUIFont *pFont; // [sp+Ch] [bp-4h]@1 | |
1207 const char *Stra; // [sp+24h] [bp+14h]@5 | |
1208 | |
1209 pWindow = this; | |
1210 pFont = a2; | |
1211 v8 = this->uFrameWidth - uHorizontalMargin; | |
1212 ui_current_text_color = uDefaultColor; | |
1213 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0); | |
762 | 1214 Stra = strtok(v9, "\n"); |
0 | 1215 v11 = uHorizontalMargin + pWindow->uFrameX; |
1216 v12 = uVerticalMargin + pWindow->uFrameY; | |
1217 while ( 1 ) | |
1218 { | |
762 | 1219 if ( !Stra ) |
0 | 1220 break; |
762 | 1221 v13 = (signed int)(v8 - pFont->GetLineWidth(Stra)) >> 1; |
0 | 1222 if ( v13 < 0 ) |
1223 v13 = 0; | |
1224 pFont->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, 640); | |
49 | 1225 v12 += pFont->uFontHeight - uLineSpacing; |
762 | 1226 Stra = strtok(0, "\n"); |
0 | 1227 } |
1228 } | |
1229 // 5C6DB4: using guessed type int ui_current_text_color; | |
1230 | |
1231 | |
1232 | |
1233 //----- (0044CE08) -------------------------------------------------------- | |
1006 | 1234 void GUIWindow::DrawText( GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, unsigned int uFontShadowColor ) |
1235 { | |
0 | 1236 GUIWindow *v9; // edi@1 |
1237 GUIFont *v10; // ebx@1 | |
1238 int v11; // eax@2 | |
1239 signed int v12; // esi@9 | |
1240 signed int v13; // edi@9 | |
1241 int v14; // edx@9 | |
1242 int v15; // eax@25 | |
1243 unsigned int v16; // ecx@25 | |
1244 int v17; // eax@27 | |
1245 int v18; // edi@32 | |
1246 int v19; // esi@38 | |
1247 std::string v21; // [sp-18h] [bp-50h]@2 | |
1248 const char *v22; // [sp-8h] [bp-40h]@2 | |
1249 int v23; // [sp-4h] [bp-3Ch]@2 | |
1250 char Dest[6]; // [sp+Ch] [bp-2Ch]@32 | |
1251 //char v25; // [sp+Fh] [bp-29h]@32 | |
1252 //char v26; // [sp+11h] [bp-27h]@34 | |
1253 const char *v27; // [sp+20h] [bp-18h]@25 | |
1254 int v28; // [sp+24h] [bp-14h]@25 | |
1255 int v29; // [sp+28h] [bp-10h]@1 | |
1256 size_t v30; // [sp+2Ch] [bp-Ch]@4 | |
1257 GUIWindow *v31; // [sp+30h] [bp-8h]@1 | |
1258 const char *v32; // [sp+34h] [bp-4h]@7 | |
1259 size_t pInString; // [sp+4Ch] [bp+14h]@11 | |
1260 | |
1261 auto a1 = this; | |
1262 v29 = 0; | |
1263 v9 = a1; | |
1264 v10 = a2; | |
1265 v31 = a1; | |
1266 if ( !Str ) | |
1267 { | |
1268 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0); | |
1006 | 1269 return; |
0 | 1270 } |
1271 v11 = strcmp(Str, "null"); | |
1272 if ( v11 ) | |
1273 { | |
1274 v30 = strlen(Str); | |
1275 LOBYTE(v11) = 0; | |
1276 if ( !uX ) | |
1277 uX = 12; | |
1278 if ( a8 ) | |
1279 { | |
1280 v32 = Str; | |
1281 } | |
1282 else | |
1283 { | |
1284 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0); | |
1285 v32 = (const char *)v11; | |
1286 } | |
1287 v12 = uX + v9->uFrameX; | |
1288 v13 = uY + v9->uFrameY; | |
1289 v14 = 0; | |
1290 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) ) | |
1291 { | |
1292 pInString = 0; | |
1293 if ( (signed int)v30 > 0 ) | |
1294 { | |
1295 do | |
1296 { | |
1297 LOBYTE(v11) = v32[v14]; | |
1298 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar | |
1299 || (char)v11 == 12 | |
1300 || (char)v11 == 13 | |
1301 || (char)v11 == 9 | |
1302 || (char)v11 == 10 ) | |
1303 { | |
1304 switch ( (unsigned __int8)v11 ) | |
1305 { | |
1306 case 9u: | |
1307 strncpy(Dest, &v32[v14 + 1], 3u); | |
1308 Dest[3] = 0; | |
1309 pInString += 3; | |
1310 v29 = atoi(Dest); | |
1311 v19 = atoi(Dest); | |
1312 LOBYTE(v11) = (char)v31; | |
1313 v12 = uX + v31->uFrameX + v19; | |
1314 break; | |
1315 case 0xAu: | |
1316 v11 = LOBYTE(v10->uFontHeight); | |
1317 uY = uY + v11 - 3; | |
1318 v13 = uY + v31->uFrameY; | |
1319 v12 = uX + v29 + v31->uFrameX; | |
1320 if ( a8 ) | |
1321 goto LABEL_36; | |
1322 break; | |
1323 case 0xCu: | |
1324 strncpy(Dest, &v32[v14 + 1], 5u); | |
1325 Dest[5] = 0; | |
1326 v11 = atoi(Dest); | |
1327 pInString += 5; | |
1328 uFontColor = v11; | |
1329 break; | |
1330 case 0xDu: | |
1331 strncpy(Dest, &v32[v14 + 1], 3u); | |
1332 Dest[3] = 0; | |
1333 pInString += 3; | |
1334 v18 = atoi(Dest); | |
1335 v11 = v10->GetLineWidth(&v32[pInString]); | |
1336 v12 = v31->uFrameZ - v11 - v18; | |
1337 v13 = uY + v31->uFrameY; | |
1338 if ( a8 ) | |
1339 { | |
1340 v11 = LOBYTE(v10->uFontHeight); | |
1341 LABEL_36: | |
1342 v11 = v11 + v13 - 3; | |
1343 if ( v11 > a8 ) | |
1006 | 1344 return; |
0 | 1345 break; |
1346 } | |
1347 break; | |
1348 default: | |
1349 if ( (char)v11 == 34 && v32[v14 + 1] == 34 ) | |
1350 { | |
1351 ++v14; | |
1352 pInString = v14; | |
1353 } | |
1354 v27 = &v32[v14]; | |
1355 v15 = (unsigned __int8)v32[v14]; | |
1356 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1357 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1358 if ( v14 > 0 ) | |
1359 v12 += v10->pMetrics[v15].uLeftSpacing; | |
1160 | 1360 v17 = (int)((char *)&v10[1] + v10->font_pixels_offset[v15]); |
0 | 1361 if ( (short)uFontColor ) |
1362 pRenderer->DrawText( | |
1363 v12, | |
1364 v13, | |
1365 (unsigned __int8 *)v17, | |
1366 v16, | |
1367 LOBYTE(v10->uFontHeight), | |
1368 v10->pFontPalettes[0], | |
1369 uFontColor, | |
1370 uFontShadowColor); | |
1371 else | |
1372 pRenderer->DrawTextPalette( | |
1373 v12, | |
1374 v13, | |
1268 | 1375 (unsigned char*)v17, |
0 | 1376 v16, |
1377 LOBYTE(v10->uFontHeight), | |
1378 v10->pFontPalettes[0], | |
1379 a7); | |
1380 LOBYTE(v11) = v30; | |
1381 v12 += v28; | |
1382 if ( (signed int)pInString < (signed int)v30 ) | |
1383 { | |
1384 LOBYTE(v11) = 3 * *v27; | |
1385 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing; | |
1386 } | |
1387 break; | |
1388 } | |
1389 } | |
1390 v14 = pInString++ + 1; | |
1391 } | |
1392 while ( (signed int)pInString < (signed int)v30 ); | |
1393 } | |
1394 } | |
1395 } | |
1006 | 1396 return; |
0 | 1397 } |
1398 | |
1399 | |
1400 //----- (0044CB4F) -------------------------------------------------------- | |
1268 | 1401 int GUIWindow::DrawTextInRect( GUIFont *pFont, unsigned int uX, unsigned int uY, unsigned int uColor, const char *text, int rect_width, int reverse_text ) |
1402 { | |
1403 | |
24 | 1404 int pLineWidth; // ebx@1 |
1268 | 1405 int text_width; // esi@3 |
0 | 1406 unsigned __int8 v12; // cl@7 |
1407 signed int v13; // esi@19 | |
1408 signed int v14; // ebx@19 | |
1409 unsigned __int8 v15; // cl@21 | |
1410 int v16; // eax@22 | |
1411 int v17; // ecx@22 | |
1412 int v18; // ecx@23 | |
1413 int v19; // ecx@24 | |
1414 unsigned int v20; // ecx@26 | |
1268 | 1415 unsigned char* v21; // eax@28 |
0 | 1416 int v22; // ebx@34 |
1417 int v23; // eax@34 | |
1418 int v24; // ebx@36 | |
1268 | 1419 char Str[6]; // [sp+Ch] [bp-20h]@34 |
0 | 1420 char v26; // [sp+Fh] [bp-1Dh]@34 |
1421 char v27; // [sp+11h] [bp-1Bh]@35 | |
1422 int v28; // [sp+20h] [bp-Ch]@17 | |
1423 GUIWindow *pWindow; // [sp+24h] [bp-8h]@1 | |
24 | 1424 size_t pNumLen; // [sp+28h] [bp-4h]@1 |
0 | 1425 size_t Str1a; // [sp+40h] [bp+14h]@5 |
1426 size_t Str1b; // [sp+40h] [bp+14h]@19 | |
1427 const char *Sourcea; // [sp+44h] [bp+18h]@20 | |
1428 int v34; // [sp+48h] [bp+1Ch]@26 | |
1268 | 1429 int i; |
0 | 1430 |
1268 | 1431 |
0 | 1432 pWindow = this; |
1268 | 1433 pNumLen = strlen(text); |
1434 pLineWidth = pFont->GetLineWidth(text); | |
1435 if ( pLineWidth < rect_width ) | |
0 | 1436 { |
1268 | 1437 pWindow->DrawText(pFont, uX, uY, uColor, text, 0, 0, 0); |
24 | 1438 return pLineWidth; |
0 | 1439 } |
1268 | 1440 strcpy(pTmpBuf2.data(), text); |
1441 text_width = 0; | |
1442 if ( reverse_text ) | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1443 _strrev(pTmpBuf2.data()); |
0 | 1444 Str1a = 0; |
1268 | 1445 for (i=0; i<pNumLen; ++i) |
0 | 1446 { |
1268 | 1447 if ( text_width >= rect_width ) |
0 | 1448 break; |
1268 | 1449 v12 = pTmpBuf2[i]; |
1450 if ( pFont->IsCharValid(v12) ) | |
0 | 1451 { |
1268 | 1452 switch (v12) |
0 | 1453 { |
1268 | 1454 case '\t':// Horizontal tab 09 |
1455 case '\n': //Line Feed 0A 10 | |
1456 case '\r': //Form Feed, page eject 0C 12 | |
1457 break; | |
1458 case '\f': //Carriage Return 0D 13 | |
1459 i += 5; | |
1460 break; | |
1461 default: | |
1462 if ( i > 0 ) | |
1463 text_width += pFont->pMetrics[v12].uLeftSpacing; | |
1464 text_width += pFont->pMetrics[v12].uWidth; | |
1465 if ( i < pNumLen ) | |
1466 text_width += pFont->pMetrics[v12].uRightSpacing; | |
1467 } | |
0 | 1468 } |
1469 } | |
1268 | 1470 pTmpBuf2[i - 1] = 0; |
1471 | |
1472 | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1473 pNumLen = strlen(pTmpBuf2.data()); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1474 v28 = pFont->GetLineWidth(pTmpBuf2.data()); |
1268 | 1475 if ( reverse_text ) |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1476 _strrev(pTmpBuf2.data()); |
1268 | 1477 |
0 | 1478 v13 = uX + pWindow->uFrameX; |
1479 v14 = uY + pWindow->uFrameY; | |
1268 | 1480 for (i=0; i<pNumLen; ++i) |
0 | 1481 { |
1268 | 1482 v15 = pTmpBuf2[i]; |
1483 if ( pFont->IsCharValid(v15) ) | |
0 | 1484 { |
1268 | 1485 switch (v12) |
1486 { | |
1487 case '\t':// Horizontal tab 09 | |
1488 { | |
1489 strncpy(Str, &pTmpBuf2[i+1], 3); | |
1490 Str[3] = 0; | |
1491 // atoi(Str); | |
1492 i += 3; | |
1493 break; | |
1494 } | |
1495 case '\n': //Line Feed 0A 10 | |
1496 { | |
1497 v24 = pFont->uFontHeight; | |
1498 v13 = uX; | |
1499 uY = uY + pFont->uFontHeight - 3; | |
1500 v14 = uY+pFont->uFontHeight - 3; | |
1501 break; | |
1502 } | |
1503 case '\r': //Form Feed, page eject 0C 12 | |
0 | 1504 { |
1268 | 1505 strncpy(Str, &pTmpBuf2[i+1], 5); |
1506 Str[5] = 0; | |
1507 i += 5; | |
1508 uColor = atoi(Str); | |
1509 break; | |
1510 } | |
1511 case '\f': //Carriage Return 0D 13 | |
1512 { | |
1513 strncpy(Str, &pTmpBuf2[i+1], 3); | |
1514 Str[3] = 0; | |
1515 i += 3; | |
1516 v23 = pFont->GetLineWidth(&pTmpBuf2[i]); | |
1517 v13 = pWindow->uFrameZ - v23 - atoi(Str); | |
1518 v14 = uY; | |
1519 break; | |
0 | 1520 } |
1268 | 1521 default: |
1522 v20 = pFont->pMetrics[v15].uWidth; | |
1523 if ( i > 0 ) | |
1524 v13 += pFont->pMetrics[v15].uLeftSpacing; | |
1525 v21 = &pFont->pFontData[pFont->font_pixels_offset[v15]]; | |
1526 if ( uColor ) | |
1527 pRenderer->DrawText(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], uColor, 0); | |
1528 else | |
1529 pRenderer->DrawTextPalette(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], 0); | |
1530 v13 += v20; | |
1531 if ( i < (signed int)pNumLen ) | |
1532 v13 += pFont->pMetrics[v15].uRightSpacing; | |
1533 } | |
0 | 1534 } |
1268 | 1535 |
1536 | |
0 | 1537 } |
1538 return v28; | |
1539 } | |
1540 | |
1541 //----- (0041D12F) -------------------------------------------------------- | |
189 | 1542 GUIButton *GUIWindow::CreateButton(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, |
832 | 1543 int a6, int a7, UIMessageType msg, unsigned int msg_param, unsigned __int8 uHotkey, const char *pName, Texture *pTextures, ...) |
0 | 1544 { |
17 | 1545 GUIButton *pButton; // esi@1 |
0 | 1546 unsigned int v13; // eax@1 |
1547 unsigned int v14; // ebx@4 | |
1548 unsigned int v15; // eax@4 | |
189 | 1549 unsigned int TextureNum=0; // ebx@4 |
0 | 1550 unsigned int v17; // eax@4 |
1551 Texture *v18; // eax@4 | |
1552 Texture **v19; // ecx@5 | |
1553 Texture **v20; // edx@5 | |
1554 GUIButton *v21; // eax@7 | |
189 | 1555 va_list texturs_ptr; |
0 | 1556 |
17 | 1557 pButton = (GUIButton *)pAllocator->AllocNamedChunk(0, 0xBCu, "BUTTON"); |
1558 pButton->pParent = this; | |
1268 | 1559 pButton->uWidth = uWidth; |
17 | 1560 pButton->uHeight = uHeight; |
1268 | 1561 |
0 | 1562 if ( a6 == 2 && !uHeight ) |
17 | 1563 pButton->uHeight = uWidth; |
1268 | 1564 |
17 | 1565 pButton->uButtonType = a6; |
1268 | 1566 pButton->uX = uX + this->uFrameX; |
1567 pButton->uY = uY + this->uFrameY; | |
1568 pButton->uZ = pButton->uX + uWidth - 1; | |
1569 pButton->uW = pButton->uY + uHeight - 1; | |
271 | 1570 pButton->field_2C_is_pushed = 0; |
17 | 1571 pButton->field_1C = a7; |
832 | 1572 pButton->msg = msg; |
1573 pButton->msg_param = msg_param; | |
17 | 1574 pButton->uHotkey = uHotkey; |
1268 | 1575 //strlen(pName); |
17 | 1576 strcpy(pButton->pButtonName, pName); |
189 | 1577 va_start(texturs_ptr, pName); |
1578 while (NULL!=(pTextures=va_arg(texturs_ptr, Texture *))) | |
0 | 1579 { |
189 | 1580 pButton->pTextures[TextureNum]=pTextures; |
1581 ++TextureNum; | |
0 | 1582 } |
189 | 1583 va_end(texturs_ptr); |
1584 pButton->uNumTextures = TextureNum; | |
1585 if ( this->pControlsTail ) | |
1586 this->pControlsTail->pNext = pButton; | |
0 | 1587 else |
17 | 1588 this->pControlsHead = pButton; |
1589 pButton->pPrev = this->pControlsTail; | |
1590 this->pControlsTail = pButton; | |
1591 pButton->pNext = 0; | |
0 | 1592 ++this->uNumControls; |
17 | 1593 return pButton; |
0 | 1594 } |
1595 | |
1596 //----- (00459C2B) -------------------------------------------------------- | |
1268 | 1597 void GUIWindow::DrawFlashingInputCursor( signed int uX, int uY, struct GUIFont *a2 ) |
1598 { | |
0 | 1599 if ( GetTickCount() % 1000 > 500 ) |
1268 | 1600 DrawText(a2, uX, uY, 0, "_", 0, 0, 0); |
0 | 1601 } |
1602 | |
1603 //----- (0041C432) -------------------------------------------------------- | |
1268 | 1604 GUIWindow * GUIWindow::Create( unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, enum WindowType eWindowType, int pButton, const char* hint ) |
1605 { | |
0 | 1606 unsigned int uNextFreeWindowID; // ebp@1 |
1607 //int *v8; // eax@1 | |
1608 //GUIWindow *pWindow; // esi@4 | |
962 | 1609 //int v10; // eax@4 |
0 | 1610 unsigned int v11; // ebx@15 |
423 | 1611 NPCData *speakingNPC; // ebp@15 |
1612 int v14; // eax@20 | |
1613 int v16; // eax@25 | |
1614 int v18; // eax@30 | |
1615 int v20; // eax@35 | |
1616 int v22; // eax@40 | |
1617 int v24; // eax@45 | |
0 | 1618 int v25; // eax@65 |
1619 unsigned int v26; // ebx@65 | |
1620 char *v27; // eax@71 | |
1621 const char *v29; // [sp-8h] [bp-18h]@68 | |
1622 char *v30; // [sp-4h] [bp-14h]@68 | |
1623 int uWidtha; // [sp+14h] [bp+4h]@66 | |
423 | 1624 int num_menu_buttons; // [sp+20h] [bp+10h]@15 |
0 | 1625 |
1626 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID) | |
1627 { | |
1628 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null) | |
1629 break; | |
1630 } | |
1631 | |
1632 auto pWindow = &pWindowList[uNextFreeWindowID]; | |
1633 pWindow->uFrameWidth = uWidth; | |
1268 | 1634 pWindow->uFrameHeight = uHeight; |
1635 | |
1636 pWindow->uFrameX = uX; | |
1637 pWindow->uFrameY = uY; | |
0 | 1638 pWindow->uFrameZ = uX + uWidth - 1; |
1639 pWindow->uFrameW = uY + uHeight - 1; | |
1268 | 1640 |
11 | 1641 pWindow->ptr_1C = (void *)pButton; |
1268 | 1642 pWindow->Hint = hint; |
1643 | |
0 | 1644 pWindow->eWindowType = eWindowType; |
972 | 1645 pWindow->receives_keyboard_input = false; |
496 | 1646 ++uNumVisibleWindows; |
1647 pWindow->numVisibleWindows = uNumVisibleWindows; | |
1648 pVisibleWindowsIdxs[uNumVisibleWindows] = uNextFreeWindowID + 1; | |
0 | 1649 if ( (signed int)eWindowType <= 20 ) |
1650 { | |
1651 if (eWindowType != WINDOW_Chest) | |
1652 { | |
1653 switch (eWindowType) | |
1654 { | |
1268 | 1655 case WINDOW_Book: { |
0 | 1656 pWindow->InitializeBookView(); |
1657 break; | |
1268 | 1658 } |
1659 case WINDOW_Dialogue: { | |
11 | 1660 pMainScreenNum = pCurrentScreen; |
151 | 1661 pCurrentScreen = SCREEN_NPC_DIALOGUE; |
832 | 1662 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], //"Exit" |
735 | 1663 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
496 | 1664 if ( pWindow->par1C != 1 ) |
0 | 1665 { |
423 | 1666 num_menu_buttons = 0; |
0 | 1667 v11 = LOBYTE(pFontArrus->uFontHeight) - 3; |
602 | 1668 speakingNPC = GetNPCData(sDialogue_SpeakingActorNPC_ID); |
827 | 1669 if ( GetGreetType(sDialogue_SpeakingActorNPC_ID) == 1 )//QuestsNPC_greet |
0 | 1670 { |
423 | 1671 if ( speakingNPC->joins ) |
0 | 1672 { |
832 | 1673 pWindow->CreateButton(480, 130, 140, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0xDu, 0, "", 0); |
423 | 1674 num_menu_buttons = 1; |
0 | 1675 } |
423 | 1676 if ( speakingNPC->evt_A ) |
0 | 1677 { |
423 | 1678 if ( num_menu_buttons < 4 ) |
0 | 1679 { |
423 | 1680 v14 = NPC_EventProcessor(speakingNPC->evt_A); |
0 | 1681 if ( v14 == 1 || v14 == 2 ) |
832 | 1682 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x13u, 0, "", 0); |
0 | 1683 } |
1684 } | |
423 | 1685 if ( speakingNPC->evt_B ) |
0 | 1686 { |
423 | 1687 if ( num_menu_buttons < 4 ) |
0 | 1688 { |
423 | 1689 v16 = NPC_EventProcessor(speakingNPC->evt_B); |
0 | 1690 if ( v16 == 1 || v16 == 2 ) |
832 | 1691 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x14u, 0, "", 0); |
0 | 1692 } |
1693 } | |
423 | 1694 if ( speakingNPC->evt_C ) |
0 | 1695 { |
423 | 1696 if ( num_menu_buttons < 4 ) |
0 | 1697 { |
423 | 1698 v18 = NPC_EventProcessor(speakingNPC->evt_C); |
0 | 1699 if ( v18 == 1 || v18 == 2 ) |
832 | 1700 pWindow->CreateButton( 0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x15u, 0, "", 0); |
0 | 1701 } |
1702 } | |
423 | 1703 if ( speakingNPC->evt_D ) |
0 | 1704 { |
423 | 1705 if ( num_menu_buttons < 4 ) |
0 | 1706 { |
423 | 1707 v20 = NPC_EventProcessor(speakingNPC->evt_D); |
0 | 1708 if ( v20 == 1 || v20 == 2 ) |
832 | 1709 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x16u, 0, "", 0); |
0 | 1710 } |
1711 } | |
423 | 1712 if ( speakingNPC->evt_E ) |
0 | 1713 { |
423 | 1714 if ( num_menu_buttons < 4 ) |
0 | 1715 { |
423 | 1716 v22 = NPC_EventProcessor(speakingNPC->evt_E); |
0 | 1717 if ( v22 == 1 || v22 == 2 ) |
832 | 1718 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x17u, 0, "", 0); |
0 | 1719 } |
1720 } | |
423 | 1721 if (speakingNPC->evt_F ) |
0 | 1722 { |
423 | 1723 if ( num_menu_buttons < 4 ) |
0 | 1724 { |
423 | 1725 v24 = NPC_EventProcessor(speakingNPC->evt_F); |
0 | 1726 if ( v24 == 1 || v24 == 2 ) |
832 | 1727 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x18u, 0, "", 0); |
0 | 1728 } |
1729 } | |
1730 } | |
1731 else | |
1732 { | |
423 | 1733 if ( speakingNPC->joins ) |
0 | 1734 { |
832 | 1735 pWindow->CreateButton(0x1E0u, 0x82u, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Du, 0, pGlobalTXT_LocalizationStrings[407], 0);//Ïîäðîáíåå |
423 | 1736 if (speakingNPC->Hired()) |
0 | 1737 { |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1738 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[408], speakingNPC->pName); //Îòïóñòèòü |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1739 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pTmpBuf.data(), 0); |
0 | 1740 } |
1741 else | |
1742 { | |
832 | 1743 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pGlobalTXT_LocalizationStrings[406], 0);//Íàíÿòü |
0 | 1744 } |
423 | 1745 num_menu_buttons = 2; |
0 | 1746 } |
1747 } | |
972 | 1748 pWindow->_41D08F_set_keyboard_control_group(num_menu_buttons, 1, 0, 1); |
0 | 1749 } |
1750 break; | |
1268 | 1751 } |
1752 case WINDOW_ChangeLocation: { | |
11 | 1753 pMainScreenNum = pCurrentScreen; |
151 | 1754 pCurrentScreen = SCREEN_CHANGE_LOCATION; |
987 | 1755 pBtn_ExitCancel = pWindow->CreateButton( 566, 445, 75, 33, 1, 0, UIMSG_CHANGE_LOCATION_ClickCencelBtn, 0, 'N', pGlobalTXT_LocalizationStrings[156], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);//Îñòàòüñÿ â ýòîé îáëàñòè |
948 | 1756 pBtn_YES = pWindow->CreateButton( 486, 445, 75, 33, 1, 0, UIMSG_OnTravelByFoot, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0); |
1757 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 63, 73, 1, 0, UIMSG_OnTravelByFoot, 1, ' ', pWindow->Hint, 0, 0, 0); | |
1758 pWindow->CreateButton( 8, 8, 460, 344, 1, 0, UIMSG_OnTravelByFoot, 1, 0, pWindow->Hint, 0); | |
0 | 1759 break; |
1268 | 1760 } |
1761 case WINDOW_SpellBook: {// îêíî êíèãè çàêëîâ | |
0 | 1762 InitializeBookTextures(); |
11 | 1763 pWindow->OpenSpellBook(); |
0 | 1764 break; |
1268 | 1765 } |
1766 case WINDOW_GreetingNPC: {// îêíî ïðèâåòñòâèÿ ÍÏÑ | |
11 | 1767 pMainScreenNum = pCurrentScreen; |
3 | 1768 pKeyActionMap->EnterText(0, 15, pWindow); |
151 | 1769 pCurrentScreen = SCREEN_BRANCHLESS_NPC_DIALOG; |
0 | 1770 break; |
1268 | 1771 } |
1772 | |
0 | 1773 } |
1774 return pWindow; | |
1775 } | |
11 | 1776 //LABEL_62: |
948 | 1777 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0); |
1778 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0); | |
1779 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0); | |
1780 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0); | |
832 | 1781 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, 9u, "", 0); |
0 | 1782 return pWindow; |
1783 } | |
1784 if (eWindowType == WINDOW_HouseInterior) | |
1785 { | |
151 | 1786 pCurrentScreen = SCREEN_HOUSE; |
1211 | 1787 pBtn_ExitCancel = pWindow->CreateButton(471, 445, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[80],//Âûéòè èç çäàíèÿ |
735 | 1788 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
1211 | 1789 |
873 | 1790 for ( v26 = 0; v26 < uNumDialogueNPCPortraits; ++v26 ) |
0 | 1791 { |
1211 | 1792 if ( v26 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1793 { |
1794 v30 = pMapStats->pInfos[uHouse_ExitPic].pName; | |
874 | 1795 v29 = (char*)pGlobalTXT_LocalizationStrings[LOCSTR_ENTER_S]; |
0 | 1796 } |
1797 else | |
1798 { | |
1799 if ( v26 || !dword_591080 ) | |
1313 | 1800 v27 = HouseNPCData[v26 +1 - ((dword_591080 != 0)? 1:0)]->pName; |
0 | 1801 else |
1268 | 1802 v27 = (char*)p2DEvents[pButton - 1].pProprieterName; |
0 | 1803 v30 = v27; |
874 | 1804 v29 = (char*)pGlobalTXT_LocalizationStrings[435]; |
0 | 1805 } |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1806 sprintfex(byte_591180[v26].data(), v29, v30); |
1211 | 1807 dword_5913F4[v26] = pWindow->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v26], |
419 | 1808 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v26], |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1809 0x3Fu, 0x49u, 1, 0, UIMSG_ClickHouseNPCPortrait, v26, 0, byte_591180[v26].data(), 0, 0, 0); |
0 | 1810 } |
1211 | 1811 |
1812 if ( uNumDialogueNPCPortraits == 1 ) | |
0 | 1813 { |
336 | 1814 window_SpeakInHouse = &pWindowList[uNextFreeWindowID]; |
0 | 1815 _4B4224_UpdateNPCTopics(0); |
1816 } | |
1817 } | |
1818 else | |
1819 { | |
158 | 1820 if (eWindowType == WINDOW_Transition) |
0 | 1821 { |
11 | 1822 pMainScreenNum = pCurrentScreen; |
151 | 1823 pCurrentScreen = SCREEN_INPUT_BLV; |
960 | 1824 pBtn_ExitCancel = pWindow->CreateButton(0x236u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionWindowCloseBtn, 0, 'N', pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);//Îòìåíà |
948 | 1825 pBtn_YES = pWindow->CreateButton(0x1E6u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionUI_Confirm, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0); |
1826 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 0x3Fu, 0x49u, 1, 0, UIMSG_TransitionUI_Confirm, 1, 0x20u, pWindow->Hint, 0); | |
1827 pWindow->CreateButton(8, 8, 0x1CCu, 0x158u, 1, 0, UIMSG_TransitionUI_Confirm, 1u, 0, pWindow->Hint, 0); | |
0 | 1828 return pWindow; |
1829 } | |
961 | 1830 if (eWindowType == WINDOW_CastSpell) |
0 | 1831 { |
1832 pEventTimer->Pause(); | |
1833 pAudioPlayer->StopChannels(-1, -1); | |
1834 pMouse->SetCursorBitmap("MICON2"); | |
11 | 1835 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);//Âûáåðèòå öåëü |
0 | 1836 return pWindow; |
1837 } | |
158 | 1838 if (eWindowType == WINDOW_Scroll) |
11 | 1839 { |
948 | 1840 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0); |
1841 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0); | |
1842 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0); | |
1843 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0); | |
1844 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0); | |
11 | 1845 return pWindow; |
1846 } | |
898 | 1847 if (eWindowType == WINDOW_CastSpell_InInventory) |
0 | 1848 { |
1849 pMouse->SetCursorBitmap("MICON2"); | |
832 | 1850 pBtn_ExitCancel = pWindow->CreateButton(0x188u, 0x13Eu, 0x4Bu, 0x21u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34],//Îòìåíà |
945 | 1851 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0); |
11 | 1852 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2);//Âûáðàòü öåëü |
0 | 1853 ++pIcons_LOD->uTexturePacksCount; |
1854 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103; | |
151 | 1855 pCurrentScreen = SCREEN_CASTING; |
0 | 1856 if ( !pIcons_LOD->uNumPrevLoadedFiles ) |
1857 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
1858 } | |
1859 } | |
1860 return pWindow; | |
1295 | 1861 } |
1862 //----- (004B3EF0) -------------------------------------------------------- | |
1863 void DrawJoinGuildWindow( int pEventCode ) | |
1864 { | |
1865 uDialogueType = 81;//enum JoinGuildDialog | |
1866 current_npc_text = (char *)pNPCTopics[pEventCode + 99].pText; | |
1867 ContractSelectText(pEventCode); | |
1868 pDialogueWindow->Release(); | |
1869 pDialogueWindow = GUIWindow::Create(0, 0, 640, 0x15E, WINDOW_MainMenu, pEventCode, 0); | |
1870 pBtn_ExitCancel = pDialogueWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uExitCancelTextureId), 0); // Cancel | |
1871 pDialogueWindow->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0); | |
1872 pDialogueWindow->CreateButton(480, 160, 140, 30, 1, 0, UIMSG_ClickNPCTopic, 0x52u, 0, pGlobalTXT_LocalizationStrings[122], 0); | |
1873 pDialogueWindow->_41D08F_set_keyboard_control_group(1, 1, 0, 2); | |
1874 dialog_menu_id = HOUSE_DIALOGUE_OTHER; | |
1875 } | |
1876 //----- (0044603D) -------------------------------------------------------- | |
1877 void __cdecl DialogueEnding() | |
1878 { | |
1879 sDialogue_SpeakingActorNPC_ID = 0; | |
1880 pDialogueWindow->Release(); | |
1881 pDialogueWindow = 0; | |
1882 pMiscTimer->Resume(); | |
1883 pEventTimer->Resume(); | |
1297 | 1884 } |
1885 //----- (004156F0) -------------------------------------------------------- | |
1886 void GUI_UpdateWindows() | |
1887 { | |
1888 GUIWindow *pWindow; // esi@4 | |
1889 //unsigned int pWindowType; // eax@4 | |
1890 const char *pHint; // edx@66 | |
1891 GUIButton *pButtonPtr_1C; // ebp@79 | |
1892 char *pHint1; // edx@80 | |
1893 int v26; // eax@98 | |
1894 unsigned int v27; // ebp@106 | |
1895 GUIWindow *pGUIWindow2; // ecx@109 | |
1896 GUIFont *pGUIFont; // ST1C_4@115 | |
1897 int v31; // eax@115 | |
1898 GUIButton *pButton; // ebp@118 | |
1899 int v39; // eax@129 | |
1900 unsigned int pNumMessages; // eax@142 | |
1901 GUIButton *pGUIButton; // ebp@146 | |
1902 //unsigned int pX; // [sp-1Ch] [bp-124h]@17 | |
1903 //unsigned int pY; // [sp-18h] [bp-120h]@17 | |
1904 //Texture *pTexture; // [sp-14h] [bp-11Ch]@17 | |
1905 //Texture *pTexture2; // [sp-14h] [bp-11Ch]@86 | |
1906 int i; // [sp+0h] [bp-108h]@3 | |
1907 ItemGen pItemGen; // [sp+4h] [bp-104h]@98 | |
1908 GUIButton GUIButton2; // [sp+28h] [bp-E0h]@133 | |
1909 ItemGen ItemGen2; // [sp+E4h] [bp-24h]@129 | |
1910 | |
1911 if (GetCurrentMenuID() != MENU_CREATEPARTY) | |
1912 UI_OnKeyDown(VK_NEXT); | |
1913 | |
1914 for ( i = 1; i <= uNumVisibleWindows; ++i ) | |
1915 { | |
1916 pWindow = &pWindowList[pVisibleWindowsIdxs[i] - 1]; | |
1917 switch (pWindow->eWindowType) | |
1918 { | |
1919 case WINDOW_OptionsButtons: | |
1920 { | |
1921 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_Y, | |
1922 pViewport->uViewportTL_X, pIcons_LOD->GetTexture(uTextureID_Options)); | |
1923 viewparams->bRedrawGameUI = 1; | |
1924 continue; | |
1925 } | |
1926 case WINDOW_CharacterRecord: | |
1927 { | |
1928 CharacterUI_CharacterScreen_Draw(pPlayers[uActiveCharacter]); | |
1929 continue; | |
1930 } | |
1931 case WINDOW_Options: | |
1932 { | |
1933 GameMenuUI_Options_Draw(); | |
1934 continue; | |
1935 } | |
1936 case WINDOW_Book: | |
1937 { | |
1938 BookUI_Draw((WindowType)(int)pWindow->ptr_1C); | |
1939 continue; | |
1940 } | |
1941 case WINDOW_Dialogue: | |
1942 { | |
1943 GameUI_DrawDialogue(); | |
1944 continue; | |
1945 } | |
1946 case WINDOW_QuickReference: | |
1947 { | |
1948 GameUI_QuickRef_Draw(); | |
1949 continue; | |
1950 } | |
1951 case WINDOW_Rest: | |
1952 { | |
1953 RestUI_Draw(); | |
1954 continue; | |
1955 } | |
1956 case WINDOW_ChangeLocation: | |
1957 { | |
1958 TravelUI_Draw(); | |
1959 continue; | |
1960 } | |
1961 case WINDOW_SpellBook: | |
1962 { | |
1963 DrawSpellBookContent(pPlayers[uActiveCharacter]); | |
1964 continue; | |
1965 } | |
1966 case WINDOW_GreetingNPC: | |
1967 { | |
1968 GameUI_DrawBranchlessDialogue(); | |
1969 continue; | |
1970 } | |
1971 case WINDOW_Chest: | |
1972 { | |
1973 if ( pCurrentScreen == SCREEN_CHEST ) | |
1974 { | |
1312 | 1975 Chest::DrawChestUI(pWindow->par1C); |
1297 | 1976 } |
1977 else if ( pCurrentScreen == SCREEN_CHEST_INVENTORY ) | |
1978 { | |
1979 pRenderer->ClearZBuffer(0, 479); | |
1980 draw_leather(); | |
1981 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); | |
1982 pRenderer->DrawTextureIndexed(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pIcons_LOD->GetTexture(uExitCancelTextureId)); | |
1983 } | |
1984 continue; | |
1985 } | |
1986 case WINDOW_SaveLoadButtons: | |
1987 { | |
1988 SaveUI_Draw(); | |
1989 continue; | |
1990 } | |
1991 case WINDOW_MainMenu_Load: | |
1992 { | |
1993 LoadUI_Draw(); | |
1994 continue; | |
1995 } | |
1996 case WINDOW_HouseInterior: | |
1997 { | |
1998 pWindowList[pVisibleWindowsIdxs[i] - 1].HouseDialogManager(); | |
1999 if ( !window_SpeakInHouse ) | |
2000 continue; | |
1312 | 2001 if ( window_SpeakInHouse->par1C >= 53 ) |
1297 | 2002 continue; |
1312 | 2003 if ( pParty->field_3C._shop_ban_times[window_SpeakInHouse->par1C] <=pParty->uTimePlayed ) |
1297 | 2004 { |
1312 | 2005 if ( window_SpeakInHouse->par1C < 53 ) |
1297 | 2006 { |
1312 | 2007 pParty->field_3C._shop_ban_times[window_SpeakInHouse->par1C] = 0; |
1297 | 2008 } |
2009 continue; | |
2010 } | |
2011 pNumMessages = pMessageQueue_50CBD0->uNumMessages; | |
2012 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2013 continue; | |
2014 } | |
2015 case WINDOW_Transition: | |
2016 { | |
2017 TransitionUI_Draw(); | |
2018 continue; | |
2019 } | |
2020 case WINDOW_Scroll: | |
2021 { | |
2022 CreateScrollWindow(); | |
2023 continue; | |
2024 } | |
2025 case WINDOW_CastSpell_InInventory: | |
2026 { | |
2027 pRenderer->ClearZBuffer(0, 479); | |
2028 draw_leather(); | |
2029 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); | |
2030 CharacterUI_DrawPaperdoll(pPlayers[uActiveCharacter]); | |
2031 pRenderer->DrawTextureTransparent(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pIcons_LOD->GetTexture(uTextureID_x_x_u)); | |
2032 continue; | |
2033 } | |
2034 case WINDOW_FinalWindow: | |
2035 { | |
2036 sub_41420D_press_esc(); | |
2037 continue; | |
2038 } | |
2039 case WINDOW_50: | |
2040 { | |
2041 v27 = TargetColor(255, 255, 255); | |
2042 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS) | |
2043 { | |
2044 ptr_507BD0->DrawMessageBox(0); | |
2045 ptr_507BD0->DrawText(pFontCreate, 30, 40, v27, (const char *)pKeyActionMap->pPressedKeysBuffer, 0, 0, 0); | |
2046 v31 = pFontCreate->GetLineWidth((const char *)pKeyActionMap->pPressedKeysBuffer); | |
2047 ptr_507BD0->DrawFlashingInputCursor(v31 + 30, 40, pFontCreate); | |
2048 continue; | |
2049 } | |
2050 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_CONFIRMED) | |
2051 { | |
2052 pWindow->receives_keyboard_input_2 = WINDOW_INPUT_NONE; | |
2053 pMessageQueue_50CBD0->AddMessage((UIMessageType)(int)ptr_507BD0->ptr_1C, 0, 0); | |
2054 pEventTimer->Resume(); | |
2055 ptr_507BD0->Release(); | |
2056 pCurrentScreen = SCREEN_GAME; | |
2057 viewparams->bRedrawGameUI = true; | |
2058 continue; | |
2059 } | |
2060 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_CANCELLED) | |
2061 { | |
2062 pWindow->receives_keyboard_input_2 = WINDOW_INPUT_NONE; | |
2063 pEventTimer->Resume(); | |
2064 ptr_507BD0->Release(); | |
2065 continue; | |
2066 } | |
2067 } | |
2068 case WINDOW_59: | |
2069 { | |
2070 pWindow->DrawMessageBox(0); | |
2071 pWindow->DrawText(pFontLucida, 10, 20, 0, "Making item number", 0, 0, 0); | |
2072 pWindow->DrawText(pFontLucida, 10, 40, 0, (const char *)pKeyActionMap->pPressedKeysBuffer, 0, 0, 0); | |
2073 if ( !pKeyActionMap->field_204 ) | |
2074 { | |
2075 ItemGen2.Reset(); | |
2076 pWindow->Release(); | |
2077 pEventTimer->Resume(); | |
2078 pCurrentScreen = 0; | |
2079 viewparams->bRedrawGameUI = true; | |
2080 v26 = atoi((const char *)pKeyActionMap->pPressedKeysBuffer); | |
2081 if ( v26 > 0 ) | |
2082 { | |
2083 if ( v26 < 800 ) | |
2084 { | |
2085 ItemGen2.uAttributes |= 1u; | |
2086 ItemGen2.uItemID = v26; | |
2087 if ( pItemsTable->pItems[v26].uEquipType == 12 ) | |
2088 { | |
2089 ItemGen2.uNumCharges = rand() % 6 + pItemsTable->pItems[ItemGen2.uItemID].uDamageMod + 1; | |
2090 ItemGen2.uMaxCharges = LOBYTE(ItemGen2.uNumCharges); | |
2091 } | |
2092 else | |
2093 { | |
2094 if ( v26 >= 221 && v26 < 271 ) | |
2095 ItemGen2.uEnchantmentType = rand() % 10 + 1; | |
2096 } | |
2097 pItemsTable->SetSpecialBonus(&ItemGen2); | |
2098 pParty->SetHoldingItem(&ItemGen2); | |
2099 } | |
2100 } | |
2101 } | |
2102 continue; | |
2103 } | |
2104 case WINDOW_PressedButton2: | |
2105 { | |
2106 if ( pWindow->Hint != (char *)1 ) | |
2107 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2108 pButton = (GUIButton *)pWindow->ptr_1C; | |
2109 if ( pButton->uX >= 0 && pButton->uX <= 640 ) | |
2110 { | |
2111 if ( pButton->uY >= 0 && pButton->uY <= 480 ) | |
2112 { | |
2113 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2114 viewparams->bRedrawGameUI = 1; | |
2115 if ( pWindow->Hint ) | |
2116 { | |
2117 if ( pWindow->Hint != (char *)1 ) | |
2118 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2119 } | |
2120 pWindow->Release(); | |
2121 continue; | |
2122 } | |
2123 } | |
2124 viewparams->bRedrawGameUI = 1; | |
2125 if ( pWindow->Hint ) | |
2126 { | |
2127 if ( pWindow->Hint != (char *)1 ) | |
2128 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2129 } | |
2130 pWindow->Release(); | |
2131 continue; | |
2132 } | |
2133 case WINDOW_CharactersPressedButton: | |
2134 { | |
2135 if ( pWindow->Hint != (char *)1 ) | |
2136 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2137 pButton = (GUIButton *)pWindow->ptr_1C; | |
2138 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]); | |
2139 viewparams->bRedrawGameUI = 1; | |
2140 if ( pWindow->Hint ) | |
2141 { | |
2142 if ( pWindow->Hint != (char *)1 ) | |
2143 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2144 } | |
2145 pWindow->Release(); | |
2146 continue; | |
2147 } | |
2148 case WINDOW_PressedButton: | |
2149 { | |
2150 if ( pWindow->Hint != (char *)1 ) | |
2151 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2152 pButton = (GUIButton *)pWindow->ptr_1C; | |
2153 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2154 viewparams->bRedrawGameUI = 1; | |
2155 if ( pWindow->Hint ) | |
2156 { | |
2157 if ( pWindow->Hint != (char *)1 ) | |
2158 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2159 } | |
2160 pWindow->Release(); | |
2161 continue; | |
2162 } | |
2163 case WINDOW_5D: | |
2164 { | |
2165 if ( pWindow->Hint != (char *)1 ) | |
2166 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2167 pButton = (GUIButton *)pWindow->ptr_1C; | |
2168 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]); | |
2169 viewparams->bRedrawGameUI = 1; | |
2170 pWindow->Release(); | |
2171 continue; | |
2172 } | |
2173 case WINDOW_SaveLoadBtn: | |
2174 { | |
2175 if (pWindow->Hint != (char *)1) | |
2176 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2177 pButton = (GUIButton *)pWindow->ptr_1C; | |
2178 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2179 pHint = pWindow->Hint; | |
2180 viewparams->bRedrawGameUI = 1; | |
2181 if ( pHint && pHint != (char *)1 ) | |
2182 pButton->DrawLabel(pHint, pFontCreate, 0, 0); | |
2183 pWindow->Release(); | |
2184 if (pCurrentScreen == SCREEN_SAVEGAME) | |
2185 pMessageQueue_50CBD0->AddMessage(UIMSG_SaveGame, 0, 0); | |
2186 else | |
2187 pMessageQueue_50CBD0->AddMessage(UIMSG_LoadGame, 0, 0); | |
2188 continue; | |
2189 } | |
2190 case WINDOW_LoadGame_CancelBtn: | |
2191 { | |
2192 if ( pWindow->Hint != (char *)1 ) | |
2193 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2194 pButton = (GUIButton *)pWindow->ptr_1C; | |
2195 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2196 viewparams->bRedrawGameUI = 1; | |
2197 if ( pWindow->Hint && pWindow->Hint != (char *)1 ) | |
2198 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2199 pWindow->Release(); | |
2200 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2201 continue; | |
2202 } | |
2203 case WINDOW_CloseRestWindowBtn: | |
2204 { | |
2205 if ( pWindow->Hint != (char *)1 ) | |
2206 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2207 pGUIButton = (GUIButton *)pWindow->ptr_1C; | |
2208 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pGUIButton->pTextures[0]); | |
2209 pHint = pWindow->Hint; | |
2210 viewparams->bRedrawGameUI = 1; | |
2211 if ( pHint && pHint != (char *)1 ) | |
2212 pGUIButton->DrawLabel(pHint, pFontCreate, 0, 0); | |
2213 pWindow->Release(); | |
2214 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2215 continue; | |
2216 } | |
2217 case WINDOW_ExitCharacterWindow: | |
2218 { | |
2219 if ( pWindow->Hint != (char *)1 ) | |
2220 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2221 pButton = (GUIButton *)pWindow->ptr_1C; | |
2222 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]); | |
2223 pHint = pWindow->Hint; | |
2224 viewparams->bRedrawGameUI = 1; | |
2225 if ( pHint && pHint != (char *)1 ) | |
2226 pButton->DrawLabel(pHint, pFontCreate, 0, 0); | |
2227 pWindow->Release(); | |
2228 pNumMessages = pMessageQueue_50CBD0->uNumMessages; | |
2229 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2230 continue; | |
2231 } | |
2232 case WINDOW_RestWindow: | |
2233 { | |
2234 memset(&GUIButton2, 0, 0xBCu); | |
2235 GUIButton2.uZ = 197; | |
2236 GUIButton2.uW = 197; | |
2237 GUIButton2.uX = 27; | |
2238 GUIButton2.uY = 161; | |
2239 GUIButton2.uWidth = 171; | |
2240 GUIButton2.uHeight = 37; | |
2241 GUIButton2.pParent = pButton_RestUI_WaitUntilDawn->pParent; | |
2242 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2243 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, *((Texture **)pWindow->ptr_1C + 15)); | |
2244 viewparams->bRedrawGameUI = 1; | |
2245 GUIButton2.DrawLabel(pGlobalTXT_LocalizationStrings[183], pFontCreate, 0, 0);//Îòäûõ è ëå÷åíèå 8 ÷àñîâ | |
2246 GUIButton2.pParent = 0; | |
2247 pGUIWindow2 = pWindow; | |
2248 pGUIWindow2->Release(); | |
2249 continue; | |
2250 } | |
2251 case WINDOW_BooksWindow: | |
2252 { | |
2253 pButton = (GUIButton *)pWindow->ptr_1C; | |
2254 pRenderer->DrawTextureIndexed(pWindow->uFrameY, | |
2255 pWindow->uFrameX, pButton->pTextures[0]); | |
2256 viewparams->bRedrawGameUI = true; | |
2257 continue; | |
2258 } | |
2259 case WINDOW_CharacterWindow_Inventory: | |
2260 { | |
2261 pWindow->DrawMessageBox(0); | |
2262 pWindow->DrawText(pFontLucida, 10, 20, 0, "Making item number", 0, 0, 0); | |
2263 pWindow->DrawText(pFontLucida, 10, 40, 0, (const char *)pKeyActionMap->pPressedKeysBuffer, 0, 0, 0); | |
2264 if ( !pKeyActionMap->field_204 ) | |
2265 { | |
2266 ItemGen2.Reset(); | |
2267 pWindow->Release(); | |
2268 pEventTimer->Resume(); | |
2269 pCurrentScreen = SCREEN_GAME; | |
2270 viewparams->bRedrawGameUI = 1; | |
2271 v39 = atoi((const char *)pKeyActionMap->pPressedKeysBuffer); | |
2272 if ( v39 > 0 ) | |
2273 { | |
2274 if ( v39 < 800 ) | |
2275 SpawnActor(v39); | |
2276 } | |
2277 } | |
2278 continue; | |
2279 } | |
2280 case WINDOW_KeyMappingOptions: | |
2281 { | |
2282 GameMenuUI_DrawKeyBindings(); | |
2283 continue; | |
2284 } | |
2285 case WINDOW_VideoOptions: | |
2286 { | |
2287 GameMenuUI_DrawVideoOptions(); | |
2288 continue; | |
2289 } | |
2290 default: | |
2291 { | |
2292 continue; | |
2293 } | |
2294 } | |
2295 } | |
2296 if ( GetCurrentMenuID() == -1 ) | |
2297 GameUI_DrawFoodAndGold(); | |
2298 if ( sub_4637E0_is_there_popup_onscreen() ) | |
2299 sub_416D62_ShowPopupWindow_MonsterRecord_ItemInfo_etcsub_416D62(0); | |
2300 } | |
2301 //----- (00415485) -------------------------------------------------------- | |
2302 void DrawCopyrightWindow() | |
2303 { | |
2304 GUIWindow Dst; // [sp+8h] [bp-54h]@1 | |
2305 | |
2306 memset(&Dst, 0, 0x54u); | |
2307 Dst.uFrameWidth = 624; | |
2308 Dst.uFrameHeight = 256; | |
2309 Dst.uFrameX = 8; | |
2310 Dst.uFrameY = 30; // c 1999 The 3DO Company. | |
2311 Dst.uFrameHeight = pFontSmallnum->CalcTextHeight(pGlobalTXT_LocalizationStrings[157], &Dst, 24, 0) | |
2312 + 2 * LOBYTE(pFontSmallnum->uFontHeight) | |
2313 + 24; | |
2314 Dst.uFrameY = 470 - Dst.uFrameHeight; | |
2315 Dst.uFrameZ = Dst.uFrameX + Dst.uFrameWidth - 1; | |
2316 Dst.uFrameW = 469; | |
2317 //Dst.Hint = "abcagfdsgsg ljsrengvlkjesnfkjwnef"; | |
2318 Dst.DrawMessageBox(0); | |
2319 | |
2320 Dst.uFrameWidth -= 24; | |
2321 Dst.uFrameX += 12; | |
2322 Dst.uFrameY += 12; | |
2323 Dst.uFrameHeight -= 12; | |
2324 Dst.uFrameZ = Dst.uFrameX + Dst.uFrameWidth - 1; | |
2325 Dst.uFrameW = Dst.uFrameY + Dst.uFrameHeight - 1; | |
2326 Dst.DrawTitleText(pFontSmallnum, 0, 0xCu, ui_mainmenu_copyright_color, pGlobalTXT_LocalizationStrings[157], 3); | |
2327 } | |
2328 //----- (0041420D) -------------------------------------------------------- | |
2329 void __cdecl sub_41420D_press_esc() | |
2330 { | |
2331 GUIWindow pWindow; // [sp+4h] [bp-54h]@1 | |
2332 | |
2333 sprintf(pTmpBuf2.data(), "%s\n \n%s", ptr_507BDC->Hint, pGlobalTXT_LocalizationStrings[61]);// Press Escape | |
2334 pWindow.Hint = pTmpBuf2.data(); | |
2335 pWindow.uFrameWidth = 400; | |
2336 pWindow.uFrameHeight = 100; | |
2337 pWindow.uFrameX = 120; | |
2338 pWindow.uFrameY = 140; | |
2339 pWindow.uFrameZ = 519; | |
2340 pWindow.uFrameW = 239; | |
2341 pWindow.DrawMessageBox(0); | |
2342 } | |
2343 | |
2344 //----- (0041426F) -------------------------------------------------------- | |
2345 void __cdecl sub_41426F() | |
2346 { | |
2347 GUIWindow *pWindow; // ecx@1 | |
2348 | |
2349 pWindow = ptr_507BDC; | |
1312 | 2350 pMessageQueue_50CBD0->AddMessage((UIMessageType)ptr_507BDC->par1C, 0, 0); |
1297 | 2351 |
2352 pWindow->Release(); | |
2353 ptr_507BDC = 0; | |
2354 pCurrentScreen = dword_506F0C[0]; | |
2355 pEventTimer->Resume(); | |
2356 } | |
2357 | |
2358 //----- (00467FB6) -------------------------------------------------------- | |
2359 void CreateScrollWindow() | |
2360 { | |
2361 unsigned int v0; // eax@1 | |
2362 char *v1; // ST18_4@3 | |
2363 unsigned int v2; // eax@3 | |
2364 GUIWindow a1; // [sp+Ch] [bp-54h]@1 | |
2365 | |
2366 memcpy(&a1, pGUIWindow_ScrollWindow, sizeof(a1)); | |
2367 a1.Hint = 0; | |
2368 a1.uFrameX = 1; | |
2369 a1.uFrameY = 1; | |
2370 a1.uFrameWidth = 468; | |
1312 | 2371 v0 = pFontSmallnum->CalcTextHeight(pScrolls[pGUIWindow_ScrollWindow->par1C], &a1, 0, 0) |
1297 | 2372 + 2 * LOBYTE(pFontCreate->uFontHeight) |
2373 + 24; | |
2374 a1.uFrameHeight = v0; | |
2375 if ( (signed int)(v0 + a1.uFrameY) > 479 ) | |
2376 { | |
2377 v0 = 479 - a1.uFrameY; | |
2378 a1.uFrameHeight = 479 - a1.uFrameY; | |
2379 } | |
2380 a1.uFrameZ = a1.uFrameWidth + a1.uFrameX - 1; | |
2381 a1.uFrameW = v0 + a1.uFrameY - 1; | |
2382 a1.DrawMessageBox(0); | |
2383 a1.uFrameX += 12; | |
2384 a1.uFrameWidth -= 24; | |
2385 a1.uFrameY += 12; | |
2386 a1.uFrameHeight -= 12; | |
2387 a1.uFrameZ = a1.uFrameWidth + a1.uFrameX - 1; | |
2388 a1.uFrameW = a1.uFrameHeight + a1.uFrameY - 1; | |
2389 v1 = pItemsTable->pItems[(unsigned int)pGUIWindow_ScrollWindow->ptr_1C + 700].pName; | |
2390 v2 = TargetColor(0xFFu, 0xFFu, 0x9Bu); | |
2391 sprintf(pTmpBuf.data(), format_4E2D80, v2, v1); | |
2392 a1.DrawTitleText(pFontCreate, 0, 0, 0, pTmpBuf.data(), 3u); | |
2393 a1.DrawText( | |
2394 pFontSmallnum, | |
2395 1, | |
2396 LOBYTE(pFontCreate->uFontHeight) - 3, | |
2397 0, | |
2398 pScrolls[(unsigned int)pGUIWindow_ScrollWindow->ptr_1C], | |
2399 0, | |
2400 0, | |
2401 0); | |
2402 } | |
2403 //----- (00467F48) -------------------------------------------------------- | |
2404 void CreateMsgScrollWindow( signed int mscroll_id ) | |
2405 { | |
2406 signed int v1; // esi@1 | |
2407 | |
2408 v1 = mscroll_id; | |
2409 if ( !pGUIWindow_ScrollWindow && mscroll_id >= 700 ) | |
2410 { | |
2411 if ( mscroll_id <= 782 ) | |
2412 { | |
2413 uTextureID_720980 = pIcons_LOD->LoadTexture("leather", TEXTURE_16BIT_PALETTE); | |
2414 pGUIWindow_ScrollWindow = GUIWindow::Create(0, 0, 640, 480, WINDOW_Scroll, v1 - 700, 0); | |
2415 } | |
2416 } | |
2417 } | |
2418 //----- (00467F9F) -------------------------------------------------------- | |
2419 void __cdecl free_book_subwindow() | |
2420 { | |
2421 if ( pGUIWindow_ScrollWindow ) | |
2422 { | |
2423 pGUIWindow_ScrollWindow->Release(); | |
2424 pGUIWindow_ScrollWindow = 0; | |
2425 } | |
0 | 2426 } |