Mercurial > mm7
annotate GUIWindow.cpp @ 1294:6bbd50bda571
Слияние
author | Ritor1 |
---|---|
date | Mon, 17 Jun 2013 09:09:30 +0600 |
parents | 2929c4406d2c |
children | 86a83e12d795 dcc52e17b517 |
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" | |
629 | 24 #include "UIHouses.h" |
189 | 25 #include "texts.h" |
81
377535d6e366
structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents:
74
diff
changeset
|
26 #include "Autonotes.h" |
949 | 27 #include "Awards.h" |
0 | 28 |
29 | |
30 #include "mm7_data.h" | |
31 | |
1268 | 32 typedef struct _RGBColor |
33 { | |
34 unsigned char R; | |
35 unsigned char B; | |
36 unsigned char G; | |
37 }RGBColor; | |
0 | 38 |
39 | |
1268 | 40 std::array<RGBColor, 20> spell_tooltip_colors={{ |
41 {0x96, 0xD4, 0xFF}, | |
42 {0xFF, 0x80, 0x00}, | |
43 {0xFF, 0xFF, 0x9B}, | |
44 {0xE1, 0xE1, 0xE1}, | |
45 {0x80, 0x80, 0x80}, | |
46 {0x96, 0xD4, 0xFF}, | |
47 {0xFF, 0x55, 0x00}, | |
48 {0x96, 0xD4, 0xFF}, | |
49 {0xFF, 0x55, 0x00}, | |
50 {0xE1, 0xE1, 0xE1}, | |
51 {0xFF, 0x55, 0x00}, | |
52 {0x96, 0xD4, 0xFF}, | |
53 {0xEB, 0x0F, 0xFF}, | |
54 {0xFF, 0x80, 0x00}, | |
55 {0x96, 0xD4, 0xFF}, | |
56 {0x80, 0x80, 0x80}, | |
57 {0xFF, 0x55, 0x00}, | |
58 {0x00, 0x80, 0xFF}, | |
59 {0x00, 0x80, 0xFF}, | |
60 {0x96, 0xD4, 0xFF}}}; | |
61 | |
0 | 62 |
63 int pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[1]; // idb | |
64 struct GUIWindow *pWindow_MainMenu; | |
1202 | 65 std::array<struct GUIWindow, 20> pWindowList; |
0 | 66 |
67 struct GUIMessageQueue *pMessageQueue_50CBD0 = new GUIMessageQueue; | |
1012 | 68 struct GUIMessageQueue *pMessageQueue_50C9E8 = new GUIMessageQueue; |
0 | 69 |
1038 | 70 |
71 | |
72 | |
73 | |
74 | |
75 | |
76 //----- (004141CA) -------------------------------------------------------- | |
1268 | 77 void ModalWindow( const char *pStrHint, int a4 ) |
78 { | |
1038 | 79 pEventTimer->Pause(); |
80 dword_506F0C[0] = pCurrentScreen; | |
1268 | 81 ptr_507BDC = GUIWindow::Create(0, 0, 640, 480, WINDOW_FinalWindow, a4, pStrHint); |
1038 | 82 pCurrentScreen = SCREEN_PRESS_ESCAPE_MESSAGE; |
83 } | |
84 // 4E28F8: using guessed type int pCurrentScreen; | |
85 | |
783 | 86 // inlined |
87 //----- (mm6c::00420520) -------------------------------------------------- | |
88 void GUIMessageQueue::Flush() | |
89 { | |
90 if (uNumMessages) | |
91 uNumMessages = pMessages[0].field_8 != 0; | |
92 } | |
93 | |
94 | |
0 | 95 //----- (004356B9) -------------------------------------------------------- |
96 void GUIMessageQueue::PopMessage(enum UIMessageType *pType, int *pParam, int *a4) | |
97 { | |
98 signed int v4; // edx@1 | |
99 GUIMessage *v5; // eax@2 | |
100 | |
101 v4 = 0; | |
102 if ( this->uNumMessages ) | |
103 { | |
104 v5 = this->pMessages; | |
105 *pType = this->pMessages[0].eType; | |
106 *pParam = this->pMessages[0].param; | |
107 *a4 = this->pMessages[0].field_8; | |
108 if ( (signed int)(this->uNumMessages - 1) > 0 ) | |
109 { | |
110 do | |
111 { | |
112 v5->eType = v5[1].eType; | |
113 v5->param = v5[1].param; | |
114 v5->field_8 = v5[1].field_8; | |
115 ++v4; | |
116 ++v5; | |
117 } | |
118 while ( v4 < (signed int)(this->uNumMessages - 1) ); | |
119 } | |
120 --this->uNumMessages; | |
121 } | |
122 } | |
123 | |
124 | |
125 | |
994 | 126 |
127 | |
128 | |
129 //----- (0041B4E1) -------------------------------------------------------- | |
130 int __fastcall GUI_ReplaceHotkey(unsigned __int8 uOldHotkey, unsigned __int8 uNewHotkey, char bFirstCall) | |
131 { | |
132 unsigned __int8 v3; // bl@1 | |
133 int result; // eax@1 | |
134 int i; // edx@2 | |
135 GUIButton *j; // ecx@3 | |
136 int k; // edx@7 | |
137 GUIButton *l; // ecx@8 | |
138 unsigned __int8 v9; // [sp+4h] [bp-8h]@1 | |
139 char v10; // [sp+8h] [bp-4h]@1 | |
140 | |
141 v3 = uNewHotkey; | |
142 v10 = toupper(uOldHotkey); | |
143 result = toupper(v3); | |
144 v9 = result; | |
145 if ( bFirstCall ) | |
146 { | |
147 for ( i = uNumVisibleWindows; i >= 0; --i ) | |
148 { | |
149 result = 84 * pVisibleWindowsIdxs[i]; | |
150 for ( j = pWindowList[pVisibleWindowsIdxs[i] - 1].pControlsHead; j; j = j->pNext ) | |
151 j->field_28 = 0; | |
152 } | |
153 } | |
154 for ( k = uNumVisibleWindows; k >= 0; --k ) | |
155 { | |
156 result = 84 * pVisibleWindowsIdxs[k]; | |
157 for ( l = pWindowList[pVisibleWindowsIdxs[k] - 1].pControlsHead; l; l = l->pNext ) | |
158 { | |
159 LOBYTE(result) = v10; | |
160 if ( l->uHotkey == v10 ) | |
161 { | |
162 if ( !l->field_28 ) | |
163 { | |
164 LOBYTE(result) = v9; | |
165 l->field_28 = 1; | |
166 l->uHotkey = v9; | |
167 } | |
168 } | |
169 } | |
170 } | |
171 return result; | |
172 } | |
173 | |
174 | |
175 | |
176 | |
177 //----- (0041B438) -------------------------------------------------------- | |
178 GUIButton *__fastcall GUI_HandleHotkey(unsigned __int8 uHotkey) | |
179 { | |
180 char v1; // al@1 | |
181 int v2; // esi@1 | |
182 char v3; // dl@1 | |
183 GUIWindow *v4; // ecx@2 | |
184 GUIButton *result; // eax@2 | |
185 //int v6; // edx@12 | |
186 | |
187 v1 = toupper(uHotkey); | |
188 v2 = uNumVisibleWindows; | |
189 v3 = v1; | |
1210 | 190 for( v2 = uNumVisibleWindows; v2 >= 0 && pVisibleWindowsIdxs[v2] > 0; v2-- ) |
994 | 191 { |
1210 | 192 v4 = &pWindowList[pVisibleWindowsIdxs[v2] - 1]; |
193 for ( result = v4->pControlsHead; result; result = result->pNext ) | |
194 { | |
195 if ( result->uHotkey == v3 ) | |
196 { | |
197 pMessageQueue_50CBD0->AddMessage(result->msg, result->msg_param, 0); | |
198 return result; | |
199 } | |
200 } | |
201 if ( !v4->uFrameX && !v4->uFrameY && (v4->uFrameWidth == 640 && v4->uFrameHeight == 480) ) | |
202 break; | |
994 | 203 } |
204 return 0; | |
205 } | |
206 // 5075E0: using guessed type int pVisibleWindowsIdxs[20]; | |
207 | |
0 | 208 //----- (0041D73D) -------------------------------------------------------- |
1006 | 209 void GUIWindow::_41D73D_draw_buff_tooltip() |
210 { | |
1268 | 211 |
212 __int64 remaing_time; // ST28_8@11 | |
213 unsigned short text_color; | |
214 int Y_pos; // esi@11 | |
215 int string_count; // [sp+20h] [bp-4h]@7 | |
216 | |
217 | |
218 string_count = 0; | |
219 for (int i=0; i<20; ++i) | |
220 if ( pParty->pPartyBuffs[i].uExpireTime > 0i64 ) | |
221 ++string_count; | |
0 | 222 |
1268 | 223 uFrameHeight = pFontArrus->uFontHeight + 72; |
224 uFrameHeight += (string_count - 1) * pFontArrus->uFontHeight; | |
225 uFrameZ = uFrameWidth + uFrameX - 1; | |
226 uFrameW = uFrameY + uFrameHeight - 1; | |
227 DrawMessageBox(0); | |
228 DrawTitleText(pFontArrus, 0, 12, 0, pGlobalTXT_LocalizationStrings[451], 3u); | |
229 if ( !string_count ) | |
230 DrawTitleText(pFontComic, 0, 40, 0, pGlobalTXT_LocalizationStrings[153], 3u); | |
231 | |
232 GetTickCount(); | |
233 string_count = 0; | |
234 for (int i=0; i<20; ++i) | |
0 | 235 { |
1268 | 236 if ( pParty->pPartyBuffs[i].uExpireTime>0i64 )//!!! |
237 { | |
238 remaing_time = pParty->pPartyBuffs[i].uExpireTime- pParty->uTimePlayed;//!!! | |
239 Y_pos = string_count * pFontComic->uFontHeight + 40; | |
240 text_color = TargetColor(spell_tooltip_colors[i].R, spell_tooltip_colors[i].G, spell_tooltip_colors[i].B); | |
241 DrawText(pFontComic, 52, Y_pos, text_color, aSpellNames[i], 0, 0, 0); | |
242 sub_41D20D_buff_remaining_time_string(Y_pos, this, remaing_time, pFontComic); | |
243 ++string_count; | |
244 } | |
0 | 245 } |
246 } | |
247 | |
248 | |
249 //----- (0041D08F) -------------------------------------------------------- | |
972 | 250 void GUIWindow::_41D08F_set_keyboard_control_group(int a2, int a3, int a4, int a5) |
0 | 251 { |
252 if ( a2 ) | |
253 { | |
254 this->pNumPresenceButton = a2; | |
255 this->field_30 = a3; | |
256 this->field_34 = a4; | |
257 this->pCurrentPosActiveItem = a5; | |
258 this->pStartingPosActiveItem = a5; | |
972 | 259 this->receives_keyboard_input = true; |
0 | 260 } |
261 else | |
262 { | |
263 this->pNumPresenceButton = 0; | |
264 this->field_30 = a3; | |
265 this->field_34 = a4; | |
266 this->pCurrentPosActiveItem = 0; | |
267 this->pStartingPosActiveItem = 0; | |
972 | 268 this->receives_keyboard_input = false; |
0 | 269 } |
270 } | |
271 | |
272 | |
273 //----- (0041C26A) -------------------------------------------------------- | |
274 void GUIWindow::Release() | |
275 { | |
961 | 276 //GUIWindow *v1; // esi@1 |
0 | 277 int i; // edi@20 |
961 | 278 //GUIButton *v8; // eax@26 |
279 GUIButton *pNextBtn; // edi@27 | |
280 //int v10; // esi@28 | |
281 //int v11; // ecx@28 | |
0 | 282 int v12; // edx@29 |
283 | |
961 | 284 //v1 = this; |
0 | 285 if ( !this ) |
286 return; | |
696 | 287 |
288 switch( this->eWindowType ) | |
0 | 289 { |
696 | 290 case WINDOW_GreetingNPC: |
291 { | |
1006 | 292 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 293 pCurrentScreen = pMainScreenNum; |
1038 | 294 pKeyActionMap->SetWindowInputStatus(3); |
696 | 295 break; |
296 } | |
297 case WINDOW_HouseInterior: | |
298 { | |
299 for ( i = 0; i < uNumDialogueNPCPortraits; ++i ) | |
300 pDialogueNPCPortraits[i]->Release(); | |
301 uNumDialogueNPCPortraits = 0; | |
302 pTexture_Dialogue_Background->Release(); | |
0 | 303 |
1006 | 304 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 305 pIcons_LOD->_4114F2(); |
306 dword_5C35D4 = 0; | |
307 if ( bFlipOnExit ) | |
308 { | |
309 pIndoorCamera->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (stru_5C6E00->uIntegerPi | |
310 + pIndoorCamera->sRotationY); | |
311 pParty->sRotationY = pIndoorCamera->sRotationY; | |
312 } | |
313 pParty->uFlags |= 2u; | |
314 break; | |
315 } | |
316 case WINDOW_Transition: | |
317 { | |
318 pVideoPlayer->Unload(); | |
319 pTexture_outside->Release(); | |
320 pTexture_Dialogue_Background->Release(); | |
1006 | 321 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 322 pCurrentScreen = pMainScreenNum; |
323 break; | |
324 } | |
325 case WINDOW_SpellBook: | |
326 { | |
327 sub_41140B(); | |
328 sub_411473(); | |
329 break; | |
330 } | |
331 case WINDOW_Book: | |
332 { | |
960 | 333 OnCloseSpellBook(); |
696 | 334 break; |
335 } | |
336 case WINDOW_ChangeLocation: | |
337 { | |
0 | 338 pTexture_outside->Release(); |
339 pTexture_Dialogue_Background->Release(); | |
1006 | 340 pIcons_LOD->SyncLoadedFilesCount(); |
11 | 341 pCurrentScreen = pMainScreenNum; |
696 | 342 break; |
343 } | |
344 case WINDOW_Dialogue: | |
345 { | |
346 if ( !dword_591084 ) | |
347 pDialogueNPCPortraits[0]->Release(); | |
348 uNumDialogueNPCPortraits = 0; | |
349 pTexture_Dialogue_Background->Release(); | |
350 | |
1006 | 351 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 352 pCurrentScreen = pMainScreenNum; |
353 } | |
354 default: | |
355 { | |
356 break; | |
357 } | |
0 | 358 } |
961 | 359 //v8 = this->pControlsHead; |
360 if ( this->pControlsHead ) | |
0 | 361 { |
362 do | |
363 { | |
961 | 364 pNextBtn = this->pControlsHead->pNext; |
365 pAllocator->FreeChunk(this->pControlsHead); | |
366 this->pControlsHead = pNextBtn; | |
0 | 367 } |
961 | 368 while ( pNextBtn ); |
0 | 369 } |
961 | 370 this->pControlsHead = 0; |
371 this->pControlsTail = 0; | |
372 this->uNumControls = 0; | |
373 this->eWindowType = WINDOW_null; | |
374 while ( this->numVisibleWindows < uNumVisibleWindows ) | |
0 | 375 { |
961 | 376 v12 = pVisibleWindowsIdxs[this->numVisibleWindows + 1]; |
377 pVisibleWindowsIdxs[this->numVisibleWindows] = v12; | |
962 | 378 --pWindowList[v12 - 1].numVisibleWindows; |
961 | 379 ++this->numVisibleWindows; |
0 | 380 } |
961 | 381 pVisibleWindowsIdxs[uNumVisibleWindows] = 0; |
382 uNumVisibleWindows = uNumVisibleWindows - 1; | |
0 | 383 } |
384 | |
385 | |
386 | |
387 | |
388 | |
389 | |
390 //----- (0041CD3B) -------------------------------------------------------- | |
391 GUIButton *GUIWindow::GetControl(unsigned int uID) | |
392 { | |
393 GUIButton *result; // eax@1 | |
394 unsigned int v3; // ecx@1 | |
395 | |
396 result = this->pControlsHead; | |
397 v3 = uID; | |
398 if ( (signed int)uID > 0 ) | |
399 { | |
400 do | |
401 { | |
402 result = result->pNext; | |
403 --v3; | |
404 } | |
405 while ( v3 ); | |
406 } | |
407 return result; | |
408 } | |
409 | |
410 //----- (00411BFC) -------------------------------------------------------- | |
411 void GUIWindow::InitializeBookView() | |
412 { | |
413 GUIWindow *v1; // ebp@1 | |
414 signed int v2; // ecx@8 | |
415 __int64 *v3; // ebp@9 | |
416 char *v4; // ecx@10 | |
417 char *v5; // eax@12 | |
418 int v6; // eax@12 | |
419 __int64 v7; // qax@12 | |
420 unsigned int v8; // esi@12 | |
421 GUIButton *v9; // eax@19 | |
422 signed int v10; // esi@19 | |
423 int v11; // eax@24 | |
424 int v12; // eax@27 | |
425 int i; // esi@28 | |
426 char *v14; // ebp@29 | |
427 int v15; // eax@31 | |
710 | 428 //unsigned int v16; // esi@35 |
0 | 429 Player *v17; // esi@38 |
430 unsigned __int16 v18; // ax@38 | |
431 unsigned int v19; // edi@43 | |
432 unsigned int v20; // edi@45 | |
433 void *v21; // esi@45 | |
434 signed int v23; // [sp+10h] [bp-5Ch]@38 | |
435 char *v25; // [sp+14h] [bp-58h]@21 | |
436 GUIWindow v26; // [sp+18h] [bp-54h]@8 | |
437 | |
438 v1 = this; | |
439 pAudioPlayer->StopChannels(-1, -1); | |
440 InitializeBookFonts(); | |
832 | 441 v1->CreateButton(0x1DBu, 0x1BDu, 0x9Eu, 0x22u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); // Close |
151 | 442 pCurrentScreen = SCREEN_BOOKS; |
949 | 443 num_achieved_awards_2 = 0; |
0 | 444 dword_506528 = 0; |
445 dword_50651C = 0; | |
949 | 446 num_achieved_awards = 0; |
688 | 447 switch (v1->par1C) |
448 { | |
961 | 449 case WINDOW_LloydsBeacon:{ |
688 | 450 byte_506360 = 0; |
948 | 451 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("lb_bordr", TEXTURE_16BIT_PALETTE); |
452 pTexture_LloydBeacons[0] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); | |
453 pTexture_50635C = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); | |
454 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
455 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
456 | |
961 | 457 pBtn_Book_1 = v1->CreateButton(415, 13, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 0, 0, pGlobalTXT_LocalizationStrings[375], 0); // Set Beacon |
458 pBtn_Book_2 = v1->CreateButton(415, 48, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 1, 0, pGlobalTXT_LocalizationStrings[523], 0); // Recall Beacon | |
948 | 459 |
688 | 460 v17 = &pParty->pPlayers[_506348_current_lloyd_playerid]; |
461 v23 = 1; | |
462 v18 = v17->pActiveSkills[14]; | |
463 if ( HIBYTE(v18) & 1 || (v18 & 0x80u) != 0 ) | |
464 { | |
465 v23 = 5; | |
466 } | |
467 else | |
468 { | |
469 if ( v18 & 0x40 ) | |
470 v23 = 3; | |
471 } | |
472 v19 = 0; | |
473 if ( v23 > 0 ) | |
474 { | |
475 do | |
476 { | |
961 | 477 v1->CreateButton(pLloydsBeaconsPreviewXs[v19], pLloydsBeaconsPreviewYs[v19], 0x5Cu, 0x44u, 1, 180, UIMSG_InstallBeacon, v19, 0, "", 0); |
688 | 478 ++v19; |
479 } | |
480 while ( (signed int)v19 < v23 ); | |
481 } | |
482 v20 = 0; | |
483 v21 = v17->pInstalledBeacons; | |
0 | 484 do |
688 | 485 { |
486 if ( *(_QWORD *)v21 >= (signed __int64)pParty->uTimePlayed ) | |
487 LoadThumbnailLloydTexture(v20, _506348_current_lloyd_playerid + 1); | |
488 else | |
489 memset(v21, 0, 0x1Cu); | |
490 ++v20; | |
491 v21 = (char *)v21 + 28; | |
492 } | |
493 while ( (signed int)v20 < 5 ); | |
0 | 494 } |
688 | 495 break; |
710 | 496 |
497 case WINDOW_TownPortal: | |
498 { | |
948 | 499 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("townport", TEXTURE_16BIT_PALETTE); |
710 | 500 pTexture_TownPortalIcons[0] = pIcons_LOD->LoadTexturePtr("tpharmndy", TEXTURE_16BIT_PALETTE); |
501 pTexture_TownPortalIcons[1] = pIcons_LOD->LoadTexturePtr("tpelf", TEXTURE_16BIT_PALETTE); | |
502 pTexture_TownPortalIcons[2] = pIcons_LOD->LoadTexturePtr("tpwarlock", TEXTURE_16BIT_PALETTE); | |
503 pTexture_TownPortalIcons[3] = pIcons_LOD->LoadTexturePtr("tpisland", TEXTURE_16BIT_PALETTE); | |
504 pTexture_TownPortalIcons[4] = pIcons_LOD->LoadTexturePtr("tpheaven", TEXTURE_16BIT_PALETTE); | |
730 | 505 pTexture_TownPortalIcons[5] = pIcons_LOD->LoadTexturePtr("tphell", TEXTURE_16BIT_PALETTE); |
710 | 506 |
507 for (uint i = 0; i < 6; ++i) | |
961 | 508 v1->CreateButton(pTownPortalBook_xs[i], pTownPortalBook_ys[i], pTownPortalBook_ws[i], pTownPortalBook_hs[i], 1, 182, UIMSG_ClickTownInTP, i, 0, "", nullptr); |
710 | 509 /*v16 = 0; |
0 | 510 do |
688 | 511 { |
512 v1->CreateButton(pTownPortalBook_xs[v16], pTownPortalBook_ys[v16], pTownPortalBook_ws[v16], pTownPortalBook_hs[v16], 1, 182, 0xB7u, v16, 0, "", 0); | |
513 ++v16; | |
514 } | |
710 | 515 while ( (signed int)v16 < 6 );*/ |
516 } | |
517 break; | |
518 | |
519 case WINDOW_QuestBook: | |
948 | 520 { |
521 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("sbquiknot", TEXTURE_16BIT_PALETTE); | |
522 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr( "divbar", TEXTURE_16BIT_PALETTE); | |
523 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
524 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
525 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
526 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
527 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, | |
528 pTex_tab_an_6b__zoom_on->uTextureWidth, pTex_tab_an_6b__zoom_on->uTextureHeight, | |
996 | 529 1, 0, UIMSG_ClickBooksBtn, 0xBu, 0, pGlobalTXT_LocalizationStrings[192],// "Scroll Up" |
948 | 530 pTex_tab_an_6b__zoom_on, 0); |
531 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, | |
532 pTex_tab_an_7b__zoot_on->uTextureHeight, pTex_tab_an_7b__zoot_on->uTextureHeight, | |
996 | 533 1, 0, UIMSG_ClickBooksBtn, 0xAu, 0, pGlobalTXT_LocalizationStrings[193],// "Scroll Down" |
948 | 534 pTex_tab_an_7b__zoot_on, 0); |
949 | 535 num_achieved_awards = 0; |
1202 | 536 memset(achieved_awards.data(), 0, 4000); |
688 | 537 for ( i = dword_506528; i < 512; ++i ) |
538 { | |
81
377535d6e366
structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents:
74
diff
changeset
|
539 v14 = (char *)pQuestTable[i-1];//(&dword_722F10)[4 * i]; |
521 | 540 if ( _449B57_test_bit(pParty->_quest_bits, i) && v14 ) |
0 | 541 { |
949 | 542 v15 = num_achieved_awards++; |
543 achieved_awards[v15] = (AwardType)i; | |
0 | 544 } |
545 } | |
949 | 546 v12 = num_achieved_awards; |
547 num_achieved_awards = 0; | |
548 num_achieved_awards_2 = v12; | |
688 | 549 } |
550 break; | |
981 | 551 |
552 | |
710 | 553 case WINDOW_AutonotesBook: |
688 | 554 { |
948 | 555 pTexture_AutonotesBook = pIcons_LOD->LoadTexturePtr("sbautnot", TEXTURE_16BIT_PALETTE); |
556 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr("divbar", TEXTURE_16BIT_PALETTE); | |
557 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
558 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
559 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
560 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
561 pTexture_506394 = pIcons_LOD->LoadTexturePtr("tab-an-1b", TEXTURE_16BIT_PALETTE); | |
562 pTexture_506390 = pIcons_LOD->LoadTexturePtr("tab-an-1a", TEXTURE_16BIT_PALETTE); | |
563 pTexture_50638C = pIcons_LOD->LoadTexturePtr("tab-an-2b", TEXTURE_16BIT_PALETTE); | |
564 pTexture_506388 = pIcons_LOD->LoadTexturePtr("tab-an-2a", TEXTURE_16BIT_PALETTE); | |
565 pTexture_506384 = pIcons_LOD->LoadTexturePtr("tab-an-3b", TEXTURE_16BIT_PALETTE); | |
566 pTexture_506380 = pIcons_LOD->LoadTexturePtr("tab-an-3a", TEXTURE_16BIT_PALETTE); | |
567 pTexture_50637C = pIcons_LOD->LoadTexturePtr("tab-an-5b", TEXTURE_16BIT_PALETTE); | |
568 pTexture_506378 = pIcons_LOD->LoadTexturePtr("tab-an-5a", TEXTURE_16BIT_PALETTE); | |
569 pTexture_506374 = pIcons_LOD->LoadTexturePtr("tab-an-4b", TEXTURE_16BIT_PALETTE); | |
570 pTexture_506370 = pIcons_LOD->LoadTexturePtr("tab-an-4a", TEXTURE_16BIT_PALETTE); | |
571 pTexture_50636C = pIcons_LOD->LoadTexturePtr("tab-an-8b", TEXTURE_16BIT_PALETTE); | |
572 pTexture_506368 = pIcons_LOD->LoadTexturePtr("tab-an-8a", TEXTURE_16BIT_PALETTE); | |
573 | |
996 | 574 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[193], pTex_tab_an_6b__zoom_on, 0); |
575 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[192], pTex_tab_an_7b__zoot_on, 0); | |
576 pBtn_Book_3 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[85], pTexture_506394, 0); // "Potion Notes" | |
577 pBtn_Book_4 = v1->CreateButton(pViewport->uViewportTL_X + 399, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[137], pTexture_50638C, 0); // "Fountain Notes" | |
578 pBtn_Book_5 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[8], pTexture_506384, 0); // "Obelisk Notes" | |
579 pBtn_Book_6 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[141], pTexture_50637C, 0); // "Seer Notes" | |
580 pBtn_Autonotes_Misc = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 264, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 6, 0, pGlobalTXT_LocalizationStrings[123], pTexture_506374, 0); // "Miscellaneous Notes" | |
581 pBtn_Autonotes_Instructors = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 302, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 7, 0, pGlobalTXT_LocalizationStrings[662], pTexture_50636C, 0); // "Instructors" | |
948 | 582 |
583 v9 = pBtn_Autonotes_Instructors; | |
688 | 584 v10 = dword_506528; |
949 | 585 num_achieved_awards = 0; |
688 | 586 while ( v10 < 196 ) |
587 { | |
981 | 588 if ( _506568_autonote_type == pAutonoteTxt[v10-1].eType)//dword_72371C[2 * v10] ) |
688 | 589 { |
590 //v25 = (&dword_723718_autonote_related)[8 * (signed __int16)v10]; | |
591 v25 = (char *)pAutonoteTxt[v10-1].pText; | |
592 if ( (short)v10 ) | |
593 { | |
594 if ( _449B57_test_bit(pParty->_autonote_bits, v10) && v25 ) | |
595 { | |
949 | 596 v11 = num_achieved_awards++; |
597 achieved_awards[v11] = (AwardType)v10; | |
688 | 598 } |
599 } | |
600 } | |
601 ++v10; | |
602 } | |
603 } | |
604 break; | |
948 | 605 |
710 | 606 case WINDOW_MapsBook: |
948 | 607 { |
688 | 608 dword_506364 = 1; |
948 | 609 pSpellBookPagesTextr_12 = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); |
610 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("zoom-on", TEXTURE_16BIT_PALETTE); | |
611 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("zoot-on", TEXTURE_16BIT_PALETTE); | |
612 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("zoom-off", TEXTURE_16BIT_PALETTE); | |
613 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("zoot-off", TEXTURE_16BIT_PALETTE); | |
614 pTexture_506394 = pIcons_LOD->LoadTexturePtr("tabNon", TEXTURE_16BIT_PALETTE); | |
615 pTexture_506390 = pIcons_LOD->LoadTexturePtr("tabNoff", TEXTURE_16BIT_PALETTE); | |
616 pTexture_50638C = pIcons_LOD->LoadTexturePtr("tabSon", TEXTURE_16BIT_PALETTE); | |
617 pTexture_506388 = pIcons_LOD->LoadTexturePtr("tabSoff", TEXTURE_16BIT_PALETTE); | |
618 pTexture_506384 = pIcons_LOD->LoadTexturePtr("tabEon", TEXTURE_16BIT_PALETTE); | |
619 pTexture_506380 = pIcons_LOD->LoadTexturePtr("tabEoff", TEXTURE_16BIT_PALETTE); | |
620 pTexture_50637C = pIcons_LOD->LoadTexturePtr("tabWon", TEXTURE_16BIT_PALETTE); | |
621 pTexture_506378 = pIcons_LOD->LoadTexturePtr("tabWoff", TEXTURE_16BIT_PALETTE); | |
622 | |
996 | 623 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 0, 0, pGlobalTXT_LocalizationStrings[251], pTex_tab_an_6b__zoom_on, 0);// "Zoom In" |
624 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 1, 0, pGlobalTXT_LocalizationStrings[252], pTex_tab_an_7b__zoot_on, 0);// "Zoom Out" | |
625 pBtn_Book_3 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[192], (Texture *)"", 0);// Scroll Up | |
626 pBtn_Book_4 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[193], (Texture *)"", 0);// Scroll Down | |
627 pBtn_Book_5 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[573], (Texture *)"", 0);// "Scroll Right" | |
628 pBtn_Book_6 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[572], (Texture *)"", 0);// "Scroll Left" | |
688 | 629 } |
630 break; | |
948 | 631 |
632 case WINDOW_CalendarBook: | |
633 { | |
634 pSpellBookPagesTextr_13 = pIcons_LOD->LoadTexturePtr("sbdate-time", TEXTURE_16BIT_PALETTE); | |
635 pTex_moon_new = pIcons_LOD->LoadTexturePtr("moon_new", TEXTURE_16BIT_PALETTE); | |
636 pTex_moon_4 = pIcons_LOD->LoadTexturePtr("moon_4", TEXTURE_16BIT_PALETTE); | |
637 pTex_moon_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE); | |
638 pTex_moon_2_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE); | |
639 pTex_moon_ful = pIcons_LOD->LoadTexturePtr("moon_ful", TEXTURE_16BIT_PALETTE); | |
688 | 640 } |
641 break; | |
948 | 642 |
1004 | 643 case WINDOW_JournalBook: |
948 | 644 { |
645 pSpellBookPagesTextr_11 = pIcons_LOD->LoadTexturePtr("sbplayrnot", TEXTURE_16BIT_PALETTE); | |
646 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); | |
647 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
648 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
649 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
650 | |
996 | 651 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, pTex_tab_an_6b__zoom_on->uTextureWidth, pTex_tab_an_6b__zoom_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[192], pTex_tab_an_6b__zoom_on, 0); |
652 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, pTex_tab_an_7b__zoot_on->uTextureHeight, pTex_tab_an_7b__zoot_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[193], pTex_tab_an_7b__zoot_on, 0); | |
948 | 653 |
949 | 654 num_achieved_awards = 0; |
688 | 655 v26.uFrameX = 48; |
656 v26.uFrameY = 70; | |
657 v26.uFrameWidth = 360; | |
658 v26.uFrameHeight = 264; | |
659 v2 = LOBYTE(pAutonoteFont->uFontHeight) - 3; | |
660 v26.uFrameZ = 407; | |
661 v26.uFrameHeight = v2 * 264 / v2; | |
662 v26.uFrameW = v26.uFrameHeight + 69; | |
949 | 663 memset(&achieved_awards, 0, 4000); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
664 memset(byte_5C6D50.data(), 0, 0x64u); |
688 | 665 if ( dword_506528 < 29 ) |
666 { | |
667 v3 = (__int64 *)&pParty->field_3C.field_4F0[2 * dword_506528]; | |
668 for(int i=dword_506528+1;i<dword_506528+31;i++) | |
669 { | |
670 v4 = pStorylineText->StoreLine[i].pText; | |
671 if ( *v3 ) | |
672 { | |
673 if ( v4 ) | |
674 { | |
675 v5 = BuilDialogueString(v4, uActiveCharacter - 1, 0, 0, 0, v3); | |
676 v6 = pAutonoteFont->CalcTextHeight(v5, &v26, 1, 0); | |
677 v7 = (v6 - 3) / (signed int)v26.uFrameHeight; | |
678 v8 = v7 + 1; | |
679 if ( (signed int)v7 + 1 > 0 ) | |
680 { | |
949 | 681 memset32((char *)&achieved_awards + 4 * num_achieved_awards , i, v8); |
688 | 682 do |
683 { | |
949 | 684 LODWORD(v7) = num_achieved_awards++; |
688 | 685 byte_5C6D50[(int)v7] = BYTE4(v7); |
686 ++HIDWORD(v7); | |
687 } | |
688 while ( SHIDWORD(v7) < (signed int)v8 ); | |
689 } | |
690 } | |
691 } | |
692 ++i; | |
693 ++v3; | |
694 } | |
695 } | |
696 | |
697 } | |
698 break; | |
699 } | |
700 | |
0 | 701 } |
702 | |
703 | |
704 | |
705 | |
706 //----- (00415551) -------------------------------------------------------- | |
707 void GUIWindow::DrawMessageBox(int arg0) | |
708 { | |
709 unsigned int v2; // edi@1 | |
710 GUIWindow *v3; // ebx@1 | |
711 signed int v4; // esi@2 | |
712 unsigned int v5; // eax@2 | |
713 unsigned int v6; // edx@4 | |
714 unsigned int v7; // ecx@6 | |
715 unsigned int v8; // eax@9 | |
716 __int32 v9; // eax@10 | |
717 unsigned int v10; // eax@18 | |
718 LONG v11; // ecx@18 | |
719 unsigned int v12; // edx@18 | |
720 unsigned int v13; // eax@18 | |
721 const char *v14; // ecx@18 | |
722 int v15; // eax@19 | |
723 unsigned int v16; // esi@19 | |
724 const char *v17; // ebx@25 | |
725 int v18; // eax@26 | |
726 GUIWindow v19; // [sp+Ch] [bp-60h]@18 | |
727 POINT a2; // [sp+60h] [bp-Ch]@8 | |
728 unsigned int v21; // [sp+68h] [bp-4h]@18 | |
729 unsigned int v22; // [sp+74h] [bp+8h]@2 | |
730 unsigned int v23; // [sp+74h] [bp+8h]@18 | |
731 | |
732 v2 = 0; | |
733 v3 = this; | |
734 if ( arg0 ) | |
735 { | |
693 | 736 v4 = pViewport->uViewportTL_X; |
737 v5 = pViewport->uViewportBR_X; | |
738 v2 = pViewport->uViewportTL_Y; | |
739 v22 = pViewport->uViewportBR_Y; | |
0 | 740 } |
741 else | |
742 { | |
743 v4 = 0; | |
744 v5 = 640; | |
745 v22 = 480; | |
746 } | |
747 v6 = this->uFrameX; | |
748 if ( (signed int)this->uFrameX >= v4 ) | |
749 { | |
750 v7 = this->uFrameWidth; | |
751 if ( (signed int)(v7 + v6) <= (signed int)v5 ) | |
752 goto LABEL_9; | |
753 v3->uFrameX = v5 - v7; | |
754 } | |
755 else | |
756 { | |
757 this->uFrameX = v4; | |
758 } | |
759 v3->uFrameY = pMouse->GetCursorPos(&a2)->y + 30; | |
760 LABEL_9: | |
761 v8 = v3->uFrameY; | |
762 if ( (signed int)v8 >= (signed int)v2 ) | |
763 { | |
764 if ( (signed int)(v8 + v3->uFrameHeight) <= (signed int)v22 ) | |
765 goto LABEL_14; | |
766 v9 = pMouse->GetCursorPos(&a2)->y - v3->uFrameHeight - 30; | |
767 } | |
768 else | |
769 { | |
770 v9 = pMouse->GetCursorPos(&a2)->y + 30; | |
771 } | |
772 v3->uFrameY = v9; | |
773 LABEL_14: | |
774 if ( (signed int)v3->uFrameY < (signed int)v2 ) | |
775 v3->uFrameY = v2; | |
776 if ( (signed int)v3->uFrameX < v4 ) | |
777 v3->uFrameX = v4; | |
778 v10 = v3->uFrameWidth; | |
779 v11 = v3->uFrameX; | |
780 v12 = v3->uFrameY; | |
781 v21 = v10; | |
782 a2.y = v11; | |
783 v3->uFrameZ = v10 + v11 - 1; | |
784 v13 = v3->uFrameHeight; | |
785 v3->uFrameW = v13 + v12 - 1; | |
786 memcpy(&v19, v3, sizeof(v19)); | |
787 v19.uFrameX += 12; | |
788 v19.uFrameWidth -= 24; | |
789 v19.uFrameY += 12; | |
790 v19.uFrameHeight -= 12; | |
791 v19.uFrameZ = v19.uFrameWidth + v19.uFrameX - 1; | |
792 v23 = v12; | |
793 v19.uFrameW = v19.uFrameHeight + v19.uFrameY - 1; | |
794 v14 = v3->Hint; | |
795 if ( v14 ) | |
796 { | |
797 v15 = pFontLucida->CalcTextHeight(v14, &v19, 0, 0); | |
798 v12 = v23; | |
799 v16 = v15 + 24; | |
800 } | |
801 else | |
802 { | |
803 v16 = v13; | |
804 } | |
805 if ( (signed int)v16 < 64 ) | |
806 v16 = 64; | |
807 if ( (signed int)(v16 + v12) > 479 ) | |
808 v16 = 479 - v12; | |
809 DrawPopupWindow(a2.y, v12, v21, v16); | |
810 v17 = v3->Hint; | |
811 if ( v17 ) | |
812 { | |
813 v18 = pFontLucida->CalcTextHeight(v17, &v19, 0, 0); | |
1004 | 814 v19.DrawTitleText(pFontLucida, 0, (signed int)(v16 - v18) / 2 - 14, 0, v17, 3); |
0 | 815 } |
816 } | |
817 | |
818 | |
819 | |
820 | |
821 //----- (00411B59) -------------------------------------------------------- | |
822 void __fastcall LoadThumbnailLloydTexture(unsigned int uSlot, unsigned int uPlayer) | |
823 { | |
824 unsigned int v2; // esi@1 | |
825 unsigned int v3; // edi@1 | |
826 FILE *v4; // ebx@1 | |
827 FILE *v5; // eax@2 | |
828 char pContainerName[64]; // [sp+Ch] [bp-44h]@1 | |
829 unsigned int v7; // [sp+4Ch] [bp-4h]@1 | |
830 | |
831 v2 = uSlot; | |
832 v7 = uPlayer; | |
833 v3 = uSlot + 1; | |
834 sprintf(pContainerName, "data\\lloyd%d%d.pcx", uPlayer, uSlot + 1); | |
835 v4 = fopen(pContainerName, "rb"); | |
836 if ( v4 ) | |
837 { | |
838 pSavegameThumbnails[v2].LoadFromFILE(v4, 0, 1u); | |
839 fclose(v4); | |
840 } | |
841 else | |
842 { | |
843 sprintf(pContainerName, "lloyd%d%d.pcx", v7, v3); | |
844 v5 = pNew_LOD->FindContainer(pContainerName, 1); | |
845 if ( v5 ) | |
846 pSavegameThumbnails[v2].LoadFromFILE(v5, 0, 0); | |
847 else | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
848 *((int *)&pSavegameThumbnails.data()->pPixels + 10 * v2) = 0; |
0 | 849 } |
850 } | |
851 | |
852 | |
853 //----- (00411621) -------------------------------------------------------- | |
198 | 854 void GUIWindow::OpenSpellBook() |
0 | 855 { |
11 | 856 Player *pPlayer; // edi@1 |
198 | 857 //GUIWindow *pWindow; // esi@1 |
858 //unsigned int v3; // ebp@1 | |
0 | 859 int v4; // eax@3 |
198 | 860 ///GUIButton *result; // eax@25 |
0 | 861 int a2; // [sp+10h] [bp-8h]@1 |
198 | 862 //int v7; // [sp+14h] [bp-4h]@1 |
0 | 863 |
11 | 864 pPlayer = pPlayers[uActiveCharacter]; |
198 | 865 //pWindow = this; |
866 LoadSpellbook(pPlayer->lastOpenedSpellbookPage); | |
867 //v3 = 0; | |
0 | 868 a2 = 0; |
198 | 869 |
870 auto chapter = &pPlayer->spellbook.pChapters[pPlayer->lastOpenedSpellbookPage]; | |
871 for (uint i = 0; i < 11; ++i) | |
0 | 872 { |
198 | 873 if (!chapter->bIsSpellAvailable[i]) |
874 continue; | |
363 | 875 v4= pPlayer->lastOpenedSpellbookPage; |
876 //v4 = (12 * pPlayer->lastOpenedSpellbookPage + pSpellbookSpellIndices[pPlayer->lastOpenedSpellbookPage][i + 1]); | |
693 | 877 CreateButton(pViewport->uViewportTL_X + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Xpos, |
878 pViewport->uViewportTL_Y + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Ypos, //dword_4E20D0 | |
198 | 879 dword_506408[i + 1]->uTextureWidth, |
880 dword_506408[i + 1]->uTextureHeight, | |
832 | 881 1, 79, UIMSG_SelectSpell, i, 0, "", 0); |
0 | 882 ++a2; |
198 | 883 //++v3; |
0 | 884 } |
198 | 885 //while ( (signed int)v3 < 11 ); |
886 | |
1118 | 887 CreateButton(0, 0, 0, 0, 1, 0, UIMSG_SpellBook_PressTab, 0, '\t', "", 0); |
0 | 888 if ( a2 ) |
972 | 889 _41D08F_set_keyboard_control_group(a2, 0, 0, 0); |
948 | 890 |
891 if (pPlayer->pActiveSkills[PLAYER_SKILL_FIRE]) CreateButton(399, 10, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 0, 0, aSpellSchoolNames[0], 0); | |
892 if (pPlayer->pActiveSkills[PLAYER_SKILL_AIR]) CreateButton(399, 46, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 1, 0, aSpellSchoolNames[1], 0); | |
893 if (pPlayer->pActiveSkills[PLAYER_SKILL_WATER]) CreateButton(399, 83, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 2, 0, aSpellSchoolNames[2], 0); | |
894 if (pPlayer->pActiveSkills[PLAYER_SKILL_EARTH]) CreateButton(399, 121, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 3, 0, aSpellSchoolNames[3], 0); | |
895 if (pPlayer->pActiveSkills[PLAYER_SKILL_SPIRIT]) CreateButton(399, 158, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 4, 0, aSpellSchoolNames[4], 0); | |
896 if (pPlayer->pActiveSkills[PLAYER_SKILL_MIND]) CreateButton(400, 196, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 5, 0, aSpellSchoolNames[5], 0); | |
897 if (pPlayer->pActiveSkills[PLAYER_SKILL_BODY]) CreateButton(400, 234, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 6, 0, aSpellSchoolNames[6], 0); | |
898 if (pPlayer->pActiveSkills[PLAYER_SKILL_LIGHT]) CreateButton(400, 271, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 7, 0, aSpellSchoolNames[7], 0); | |
899 if (pPlayer->pActiveSkills[PLAYER_SKILL_DARK]) CreateButton(400, 307, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 8, 0, aSpellSchoolNames[8], 0); | |
900 | |
960 | 901 CreateButton(476, 450, pTexture_506444->uTextureWidth, pTexture_506444->uTextureHeight, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", 0); |
902 pBtn_InstallRemoveSpell = CreateButton(476, 450, 48, 32, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", pTexture_506444, 0); | |
948 | 903 CreateButton(561, 450, ptr_506440->uTextureWidth, ptr_506440->uTextureHeight, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); |
904 pBtn_CloseBook = CreateButton(561, 450, 48, 32, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], ptr_506440, 0); | |
0 | 905 } |
906 // 50640C: using guessed type int dword_50640C[]; | |
907 | |
908 //----- (004B3157) -------------------------------------------------------- | |
405 | 909 void GUIWindow::HouseDialogManager() |
0 | 910 { |
854 | 911 unsigned __int16 pWhiteColor; // di@2 |
912 const char *pHouseName; // edx@4 | |
0 | 913 signed int v3; // edx@5 |
914 char *v4; // edi@9 | |
854 | 915 int pTextHeight; // eax@45 |
0 | 916 int v6; // edi@45 |
917 char *v7; // eax@45 | |
918 int v8; // edi@46 | |
919 int v9; // eax@50 | |
920 unsigned int v10; // [sp-10h] [bp-C8h]@53 | |
873 | 921 char *pTitleText; // [sp-8h] [bp-C0h]@50 |
854 | 922 GUIWindow pDialogWindow; // [sp+Ch] [bp-ACh]@4 |
923 GUIWindow pWindow; // [sp+60h] [bp-58h]@2 | |
924 int pColor2; // [sp+B4h] [bp-4h]@2 | |
0 | 925 |
336 | 926 if ( !window_SpeakInHouse ) |
0 | 927 return; |
854 | 928 memcpy(&pWindow, this, sizeof(pWindow)); |
929 pWindow.uFrameWidth -= 18; | |
930 pWindow.uFrameZ -= 18; | |
949 | 931 pWhiteColor = TargetColor(0xFFu, 0xFFu, 0xFFu); |
932 pColor2 = TargetColor(0x15u, 0x99u, 0xE9u); | |
0 | 933 pRenderer->DrawTextureIndexed(0x1DDu, 0, pTexture_Dialogue_Background); |
910 | 934 pRenderer->DrawTextureTransparent(0x1D4u, 0, &pIcons_LOD->pTextures[uTextureID_right_panel_loop]); |
457 | 935 if ( pDialogueNPCCount != uNumDialogueNPCPortraits || !uHouse_ExitPic ) |
0 | 936 { |
854 | 937 pDialogWindow.uFrameWidth = 130; |
938 pDialogWindow.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight); | |
939 pHouseName = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName; | |
940 if ( pHouseName ) | |
0 | 941 { |
854 | 942 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(pHouseName, &pDialogWindow, 0, 0); |
0 | 943 if ( v3 < 0 ) |
944 v3 = 0; | |
854 | 945 pWindow.DrawTitleText(pFontCreate, 0x1EAu, v3 / 2 + 4, pWhiteColor, |
0 | 946 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C], |
336 | 947 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName, 3); |
0 | 948 } |
949 } | |
854 | 950 pWindow.uFrameWidth += 8; |
951 pWindow.uFrameZ += 8; | |
457 | 952 if ( !pDialogueNPCCount ) |
0 | 953 { |
484 | 954 if ( in_current_building_type == BildingType_Jail ) |
0 | 955 { |
480 | 956 JailDialog(); |
854 | 957 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
958 { | |
959 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
960 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
961 } | |
962 else | |
963 { | |
964 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
965 } | |
966 return; | |
0 | 967 } |
827 | 968 if ( current_npc_text ) |
0 | 969 { |
854 | 970 pDialogWindow.uFrameWidth = 458; |
971 pDialogWindow.uFrameZ = 457; | |
972 pTextHeight = pFontArrus->CalcTextHeight(current_npc_text, &pDialogWindow, 13, 0); | |
973 v6 = pTextHeight + 7; | |
974 pRenderer->_4A6A68(8, 352 - (pTextHeight + 7), &pIcons_LOD->pTextures[uTextureID_Leather], | |
975 pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight - (pTextHeight + 7)); | |
976 pRenderer->DrawTextureIndexed(8, 347 - v6, pTexture_591428); | |
977 v7 = FitTextInAWindow(current_npc_text, pFontArrus, &pDialogWindow, 0xDu, 0); | |
336 | 978 window_SpeakInHouse->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0); |
0 | 979 } |
980 if ( uNumDialogueNPCPortraits <= 0 ) | |
854 | 981 { |
982 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) | |
983 { | |
984 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
985 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
986 } | |
987 else | |
988 { | |
989 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
990 } | |
991 return; | |
992 } | |
873 | 993 for ( v8 = 0; v8 < uNumDialogueNPCPortraits; ++v8 ) |
0 | 994 { |
419 | 995 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8] - 4, |
874 | 996 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]); |
419 | 997 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8], |
998 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8], pDialogueNPCPortraits[v8]); | |
0 | 999 if ( uNumDialogueNPCPortraits < 4 ) |
854 | 1000 { |
873 | 1001 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
854 | 1002 { |
873 | 1003 pTitleText = pMapStats->pInfos[uHouse_ExitPic].pName; |
1004 v9 = 94 * v8 + 113; | |
854 | 1005 } |
1006 else | |
1007 { | |
873 | 1008 if ( !v8 && dword_591080 ) |
1009 { | |
1010 pTitleText = (char *)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle; | |
1011 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 113, pColor2, pTitleText, 3); | |
1012 continue; | |
1013 } | |
1211 | 1014 pTitleText = HouseNPCData[v8 +1 - (dword_591080 != 0)]->pName; |
1015 v9 = pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] + pDialogueNPCPortraits[v8]->uTextureHeight + 2; | |
854 | 1016 } |
873 | 1017 v10 = v9; |
1211 | 1018 pWindow.DrawTitleText(pFontCreate, 483, v10, pColor2, pTitleText, 3); |
854 | 1019 } |
874 | 1020 } |
873 | 1021 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1022 { |
873 | 1023 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); |
1024 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
0 | 1025 } |
873 | 1026 else |
1027 { | |
1028 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
1029 } | |
1030 return; | |
0 | 1031 } |
457 | 1032 v4 = (char *)pDialogueNPCCount - 1; |
419 | 1033 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0] - 4, pNPCPortraits_y[0][0] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]); |
1034 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], pDialogueNPCPortraits[(signed int)v4]); | |
151 | 1035 if ( pCurrentScreen == SCREEN_E ) |
0 | 1036 { |
984 | 1037 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); |
854 | 1038 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
1039 { | |
1040 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
1041 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
1042 } | |
1043 else | |
1044 { | |
1045 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
1046 } | |
1047 return; | |
0 | 1048 } |
1049 if ( v4 || !dword_591080 ) | |
1050 { | |
445 | 1051 SimpleHouseAndBoatsDialog(); |
0 | 1052 } |
1053 else | |
1054 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1055 sprintfex( pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], |
336 | 1056 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterName, |
1057 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
|
1058 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 0x71u, pColor2, pTmpBuf.data(), 3); |
484 | 1059 switch ( in_current_building_type ) |
0 | 1060 { |
480 | 1061 case BildingType_WeaponShop: |
405 | 1062 WeaponShopDialog(); |
0 | 1063 break; |
480 | 1064 case BildingType_ArmorShop: |
405 | 1065 ArmorShopDialog(); |
0 | 1066 break; |
480 | 1067 case BildingType_MagicShop: |
405 | 1068 MagicShopDialog(); |
0 | 1069 break; |
480 | 1070 case BildingType_AlchemistShop: |
405 | 1071 AlchemistDialog(); |
0 | 1072 break; |
480 | 1073 case BildingType_FireGuild: |
1074 case BildingType_AirGuild: | |
1075 case BildingType_WaterGuild: | |
1076 case BildingType_EarthGuild: | |
1077 case BildingType_SpiritGuild: | |
1078 case BildingType_MindGuild: | |
1079 case BildingType_BodyGuild: | |
1080 case BildingType_LightGuild: | |
495 | 1081 case BildingType_DarkGuild: |
480 | 1082 GuildDialog(); |
1083 break; | |
1084 case BildingType_18: | |
987 | 1085 __debugbreak(); //What over the dialog? |
480 | 1086 sub_4B6478(); |
1087 break; | |
1088 case BildingType_TownHall: | |
1089 TownHallDialog(); | |
1090 break; | |
1091 case BildingType_Tavern: | |
1092 TavernDialog(); | |
1093 break; | |
1094 case BildingType_Bank: | |
1095 BankDialog(); | |
1096 break; | |
481 | 1097 case BildingType_Temple: |
495 | 1098 TempleDialog(); |
480 | 1099 break; |
1100 case BildingType_Stables: | |
1101 TravelByTransport(); | |
1102 break; | |
1103 case BildingType_Training: | |
1104 TrainingDialog(); | |
1105 break; | |
1106 case BildingType_Jail: | |
1107 JailDialog(); | |
1108 break; | |
0 | 1109 default: |
987 | 1110 __debugbreak();//New BildingType |
0 | 1111 break; |
1112 } | |
1113 } | |
457 | 1114 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1115 { |
370 | 1116 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); |
1117 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
0 | 1118 } |
1119 else | |
1120 { | |
526 | 1121 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); |
0 | 1122 } |
1123 } | |
1124 | |
1125 //----- (004B1854) -------------------------------------------------------- | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1126 void GUIWindow::DrawCurrentTime( __int64 a2 ) |
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1127 { |
0 | 1128 unsigned int v2; // edi@1 |
1129 unsigned int v3; // esi@1 | |
1130 unsigned int v4; // ebp@1 | |
1131 unsigned int v5; // ebx@1 | |
1132 signed __int64 v6; // ST2C_8@1 | |
1133 signed __int64 v7; // kr00_8@1 | |
1134 char *v8; // eax@2 | |
1135 char *v9; // eax@7 | |
1136 char *v10; // eax@13 | |
1137 char *v11; // eax@19 | |
1138 unsigned __int16 v12; // ST0C_2@22 | |
1139 int v13; // eax@22 | |
1140 GUIWindow *v15; // [sp+0h] [bp-1Ch]@1 | |
1141 signed __int64 v16; // [sp+Ch] [bp-10h]@1 | |
1142 signed __int64 v17; // [sp+14h] [bp-8h]@1 | |
1143 unsigned int v18; // [sp+20h] [bp+4h]@1 | |
1144 | |
1145 v15 = this; | |
1146 v2 = (unsigned __int64)(signed __int64)((double)a2 * 0.234375) >> 32; | |
1147 v3 = (signed __int64)((double)a2 * 0.234375); | |
1148 v4 = (unsigned __int64)((signed __int64)((double)a2 * 0.234375) / 60) >> 32; | |
1149 v5 = (signed __int64)((double)a2 * 0.234375) / 60; | |
1150 v6 = (signed __int64)((double)a2 * 0.234375) / 60 / 60; | |
1151 v18 = (unsigned int)v6 / 0x18; | |
1152 v17 = (signed __int64)__PAIR__(v2, v3) % 60; | |
1153 v16 = (signed __int64)__PAIR__(v4, v5) % 60; | |
1154 v7 = v6 % 24; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1155 strcpy(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[532]); |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1156 if ( (unsigned int)v6 /24 ) |
0 | 1157 { |
1158 v8 = pGlobalTXT_LocalizationStrings[57]; | |
1159 if ( v18 <= 1 ) | |
1160 v8 = pGlobalTXT_LocalizationStrings[56]; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1161 sprintf(pTmpBuf2.data(), "%d %s ", v18, v8); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1162 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1163 } |
1164 if ( v7 ) | |
1165 { | |
1166 if ( v7 <= 1 ) | |
1167 v9 = pGlobalTXT_LocalizationStrings[109]; | |
1168 else | |
1169 v9 = pGlobalTXT_LocalizationStrings[110]; | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1170 sprintf(pTmpBuf2.data(), "%d %s ", v7, v9); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1171 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1172 } |
1173 if ( v16 && !v18 ) | |
1174 { | |
1175 if ( v16 <= 1 ) | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1176 v10 = pGlobalTXT_LocalizationStrings[437];//"Minute" |
0 | 1177 else |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1178 v10 = pGlobalTXT_LocalizationStrings[436]; //"Minutes" |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1179 sprintf(pTmpBuf2.data(), "%d %s ", v16, v10); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1180 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1181 } |
1182 if ( v17 && !v7 ) | |
1183 { | |
1184 if ( v17 <= 1 ) | |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1185 v11 = pGlobalTXT_LocalizationStrings[439]; //"Second" |
0 | 1186 else |
471
c43f156a95c9
ArmorShopDialog crash fixed. All shops show its items
Gloval
parents:
457
diff
changeset
|
1187 v11 = pGlobalTXT_LocalizationStrings[438]; //"Seconds" |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1188 sprintf(pTmpBuf2.data(), "%d %s ", v17, v11); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1189 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1190 } |
949 | 1191 v12 = TargetColor(0xFFu, 0xFFu, 0x9Bu); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1192 v13 = pFontArrus->CalcTextHeight(pTmpBuf.data(), v15, 0, 0); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1193 v15->DrawTitleText(pFontArrus, 0, (212 - v13) / 2 + 101, v12, pTmpBuf.data(), 3u); |
0 | 1194 } |
1195 | |
1196 | |
1197 | |
1198 //----- (0044D406) -------------------------------------------------------- | |
1268 | 1199 void GUIWindow::DrawTitleText( GUIFont *a2, signed int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor, |
1200 const char *pInString, unsigned int uLineSpacing ) | |
762 | 1201 { |
0 | 1202 GUIWindow *pWindow; // esi@1 |
1203 unsigned int v8; // ebx@1 | |
1204 char *v9; // eax@1 | |
1205 unsigned int v11; // edi@1 | |
1206 signed int v12; // esi@1 | |
1207 int v13; // eax@2 | |
1208 GUIFont *pFont; // [sp+Ch] [bp-4h]@1 | |
1209 const char *Stra; // [sp+24h] [bp+14h]@5 | |
1210 | |
1211 pWindow = this; | |
1212 pFont = a2; | |
1213 v8 = this->uFrameWidth - uHorizontalMargin; | |
1214 ui_current_text_color = uDefaultColor; | |
1215 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0); | |
762 | 1216 Stra = strtok(v9, "\n"); |
0 | 1217 v11 = uHorizontalMargin + pWindow->uFrameX; |
1218 v12 = uVerticalMargin + pWindow->uFrameY; | |
1219 while ( 1 ) | |
1220 { | |
762 | 1221 if ( !Stra ) |
0 | 1222 break; |
762 | 1223 v13 = (signed int)(v8 - pFont->GetLineWidth(Stra)) >> 1; |
0 | 1224 if ( v13 < 0 ) |
1225 v13 = 0; | |
1226 pFont->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, 640); | |
49 | 1227 v12 += pFont->uFontHeight - uLineSpacing; |
762 | 1228 Stra = strtok(0, "\n"); |
0 | 1229 } |
1230 } | |
1231 // 5C6DB4: using guessed type int ui_current_text_color; | |
1232 | |
1233 | |
1234 | |
1235 //----- (0044CE08) -------------------------------------------------------- | |
1006 | 1236 void GUIWindow::DrawText( GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, unsigned int uFontShadowColor ) |
1237 { | |
0 | 1238 GUIWindow *v9; // edi@1 |
1239 GUIFont *v10; // ebx@1 | |
1240 int v11; // eax@2 | |
1241 signed int v12; // esi@9 | |
1242 signed int v13; // edi@9 | |
1243 int v14; // edx@9 | |
1244 int v15; // eax@25 | |
1245 unsigned int v16; // ecx@25 | |
1246 int v17; // eax@27 | |
1247 int v18; // edi@32 | |
1248 int v19; // esi@38 | |
1249 std::string v21; // [sp-18h] [bp-50h]@2 | |
1250 const char *v22; // [sp-8h] [bp-40h]@2 | |
1251 int v23; // [sp-4h] [bp-3Ch]@2 | |
1252 char Dest[6]; // [sp+Ch] [bp-2Ch]@32 | |
1253 //char v25; // [sp+Fh] [bp-29h]@32 | |
1254 //char v26; // [sp+11h] [bp-27h]@34 | |
1255 const char *v27; // [sp+20h] [bp-18h]@25 | |
1256 int v28; // [sp+24h] [bp-14h]@25 | |
1257 int v29; // [sp+28h] [bp-10h]@1 | |
1258 size_t v30; // [sp+2Ch] [bp-Ch]@4 | |
1259 GUIWindow *v31; // [sp+30h] [bp-8h]@1 | |
1260 const char *v32; // [sp+34h] [bp-4h]@7 | |
1261 size_t pInString; // [sp+4Ch] [bp+14h]@11 | |
1262 | |
1263 auto a1 = this; | |
1264 v29 = 0; | |
1265 v9 = a1; | |
1266 v10 = a2; | |
1267 v31 = a1; | |
1268 if ( !Str ) | |
1269 { | |
1270 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0); | |
1006 | 1271 return; |
0 | 1272 } |
1273 v11 = strcmp(Str, "null"); | |
1274 if ( v11 ) | |
1275 { | |
1276 v30 = strlen(Str); | |
1277 LOBYTE(v11) = 0; | |
1278 if ( !uX ) | |
1279 uX = 12; | |
1280 if ( a8 ) | |
1281 { | |
1282 v32 = Str; | |
1283 } | |
1284 else | |
1285 { | |
1286 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0); | |
1287 v32 = (const char *)v11; | |
1288 } | |
1289 v12 = uX + v9->uFrameX; | |
1290 v13 = uY + v9->uFrameY; | |
1291 v14 = 0; | |
1292 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) ) | |
1293 { | |
1294 pInString = 0; | |
1295 if ( (signed int)v30 > 0 ) | |
1296 { | |
1297 do | |
1298 { | |
1299 LOBYTE(v11) = v32[v14]; | |
1300 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar | |
1301 || (char)v11 == 12 | |
1302 || (char)v11 == 13 | |
1303 || (char)v11 == 9 | |
1304 || (char)v11 == 10 ) | |
1305 { | |
1306 switch ( (unsigned __int8)v11 ) | |
1307 { | |
1308 case 9u: | |
1309 strncpy(Dest, &v32[v14 + 1], 3u); | |
1310 Dest[3] = 0; | |
1311 pInString += 3; | |
1312 v29 = atoi(Dest); | |
1313 v19 = atoi(Dest); | |
1314 LOBYTE(v11) = (char)v31; | |
1315 v12 = uX + v31->uFrameX + v19; | |
1316 break; | |
1317 case 0xAu: | |
1318 v11 = LOBYTE(v10->uFontHeight); | |
1319 uY = uY + v11 - 3; | |
1320 v13 = uY + v31->uFrameY; | |
1321 v12 = uX + v29 + v31->uFrameX; | |
1322 if ( a8 ) | |
1323 goto LABEL_36; | |
1324 break; | |
1325 case 0xCu: | |
1326 strncpy(Dest, &v32[v14 + 1], 5u); | |
1327 Dest[5] = 0; | |
1328 v11 = atoi(Dest); | |
1329 pInString += 5; | |
1330 uFontColor = v11; | |
1331 break; | |
1332 case 0xDu: | |
1333 strncpy(Dest, &v32[v14 + 1], 3u); | |
1334 Dest[3] = 0; | |
1335 pInString += 3; | |
1336 v18 = atoi(Dest); | |
1337 v11 = v10->GetLineWidth(&v32[pInString]); | |
1338 v12 = v31->uFrameZ - v11 - v18; | |
1339 v13 = uY + v31->uFrameY; | |
1340 if ( a8 ) | |
1341 { | |
1342 v11 = LOBYTE(v10->uFontHeight); | |
1343 LABEL_36: | |
1344 v11 = v11 + v13 - 3; | |
1345 if ( v11 > a8 ) | |
1006 | 1346 return; |
0 | 1347 break; |
1348 } | |
1349 break; | |
1350 default: | |
1351 if ( (char)v11 == 34 && v32[v14 + 1] == 34 ) | |
1352 { | |
1353 ++v14; | |
1354 pInString = v14; | |
1355 } | |
1356 v27 = &v32[v14]; | |
1357 v15 = (unsigned __int8)v32[v14]; | |
1358 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1359 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1360 if ( v14 > 0 ) | |
1361 v12 += v10->pMetrics[v15].uLeftSpacing; | |
1160 | 1362 v17 = (int)((char *)&v10[1] + v10->font_pixels_offset[v15]); |
0 | 1363 if ( (short)uFontColor ) |
1364 pRenderer->DrawText( | |
1365 v12, | |
1366 v13, | |
1367 (unsigned __int8 *)v17, | |
1368 v16, | |
1369 LOBYTE(v10->uFontHeight), | |
1370 v10->pFontPalettes[0], | |
1371 uFontColor, | |
1372 uFontShadowColor); | |
1373 else | |
1374 pRenderer->DrawTextPalette( | |
1375 v12, | |
1376 v13, | |
1268 | 1377 (unsigned char*)v17, |
0 | 1378 v16, |
1379 LOBYTE(v10->uFontHeight), | |
1380 v10->pFontPalettes[0], | |
1381 a7); | |
1382 LOBYTE(v11) = v30; | |
1383 v12 += v28; | |
1384 if ( (signed int)pInString < (signed int)v30 ) | |
1385 { | |
1386 LOBYTE(v11) = 3 * *v27; | |
1387 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing; | |
1388 } | |
1389 break; | |
1390 } | |
1391 } | |
1392 v14 = pInString++ + 1; | |
1393 } | |
1394 while ( (signed int)pInString < (signed int)v30 ); | |
1395 } | |
1396 } | |
1397 } | |
1006 | 1398 return; |
0 | 1399 } |
1400 | |
1401 | |
1402 //----- (0044CB4F) -------------------------------------------------------- | |
1268 | 1403 int GUIWindow::DrawTextInRect( GUIFont *pFont, unsigned int uX, unsigned int uY, unsigned int uColor, const char *text, int rect_width, int reverse_text ) |
1404 { | |
1405 | |
24 | 1406 int pLineWidth; // ebx@1 |
1268 | 1407 int text_width; // esi@3 |
0 | 1408 unsigned __int8 v12; // cl@7 |
1409 signed int v13; // esi@19 | |
1410 signed int v14; // ebx@19 | |
1411 unsigned __int8 v15; // cl@21 | |
1412 int v16; // eax@22 | |
1413 int v17; // ecx@22 | |
1414 int v18; // ecx@23 | |
1415 int v19; // ecx@24 | |
1416 unsigned int v20; // ecx@26 | |
1268 | 1417 unsigned char* v21; // eax@28 |
0 | 1418 int v22; // ebx@34 |
1419 int v23; // eax@34 | |
1420 int v24; // ebx@36 | |
1268 | 1421 char Str[6]; // [sp+Ch] [bp-20h]@34 |
0 | 1422 char v26; // [sp+Fh] [bp-1Dh]@34 |
1423 char v27; // [sp+11h] [bp-1Bh]@35 | |
1424 int v28; // [sp+20h] [bp-Ch]@17 | |
1425 GUIWindow *pWindow; // [sp+24h] [bp-8h]@1 | |
24 | 1426 size_t pNumLen; // [sp+28h] [bp-4h]@1 |
0 | 1427 size_t Str1a; // [sp+40h] [bp+14h]@5 |
1428 size_t Str1b; // [sp+40h] [bp+14h]@19 | |
1429 const char *Sourcea; // [sp+44h] [bp+18h]@20 | |
1430 int v34; // [sp+48h] [bp+1Ch]@26 | |
1268 | 1431 int i; |
0 | 1432 |
1268 | 1433 |
0 | 1434 pWindow = this; |
1268 | 1435 pNumLen = strlen(text); |
1436 pLineWidth = pFont->GetLineWidth(text); | |
1437 if ( pLineWidth < rect_width ) | |
0 | 1438 { |
1268 | 1439 pWindow->DrawText(pFont, uX, uY, uColor, text, 0, 0, 0); |
24 | 1440 return pLineWidth; |
0 | 1441 } |
1268 | 1442 strcpy(pTmpBuf2.data(), text); |
1443 text_width = 0; | |
1444 if ( reverse_text ) | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1445 _strrev(pTmpBuf2.data()); |
0 | 1446 Str1a = 0; |
1268 | 1447 for (i=0; i<pNumLen; ++i) |
0 | 1448 { |
1268 | 1449 if ( text_width >= rect_width ) |
0 | 1450 break; |
1268 | 1451 v12 = pTmpBuf2[i]; |
1452 if ( pFont->IsCharValid(v12) ) | |
0 | 1453 { |
1268 | 1454 switch (v12) |
0 | 1455 { |
1268 | 1456 case '\t':// Horizontal tab 09 |
1457 case '\n': //Line Feed 0A 10 | |
1458 case '\r': //Form Feed, page eject 0C 12 | |
1459 break; | |
1460 case '\f': //Carriage Return 0D 13 | |
1461 i += 5; | |
1462 break; | |
1463 default: | |
1464 if ( i > 0 ) | |
1465 text_width += pFont->pMetrics[v12].uLeftSpacing; | |
1466 text_width += pFont->pMetrics[v12].uWidth; | |
1467 if ( i < pNumLen ) | |
1468 text_width += pFont->pMetrics[v12].uRightSpacing; | |
1469 } | |
0 | 1470 } |
1471 } | |
1268 | 1472 pTmpBuf2[i - 1] = 0; |
1473 | |
1474 | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1475 pNumLen = strlen(pTmpBuf2.data()); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1476 v28 = pFont->GetLineWidth(pTmpBuf2.data()); |
1268 | 1477 if ( reverse_text ) |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1478 _strrev(pTmpBuf2.data()); |
1268 | 1479 |
0 | 1480 v13 = uX + pWindow->uFrameX; |
1481 v14 = uY + pWindow->uFrameY; | |
1268 | 1482 for (i=0; i<pNumLen; ++i) |
0 | 1483 { |
1268 | 1484 v15 = pTmpBuf2[i]; |
1485 if ( pFont->IsCharValid(v15) ) | |
0 | 1486 { |
1268 | 1487 switch (v12) |
1488 { | |
1489 case '\t':// Horizontal tab 09 | |
1490 { | |
1491 strncpy(Str, &pTmpBuf2[i+1], 3); | |
1492 Str[3] = 0; | |
1493 // atoi(Str); | |
1494 i += 3; | |
1495 break; | |
1496 } | |
1497 case '\n': //Line Feed 0A 10 | |
1498 { | |
1499 v24 = pFont->uFontHeight; | |
1500 v13 = uX; | |
1501 uY = uY + pFont->uFontHeight - 3; | |
1502 v14 = uY+pFont->uFontHeight - 3; | |
1503 break; | |
1504 } | |
1505 case '\r': //Form Feed, page eject 0C 12 | |
0 | 1506 { |
1268 | 1507 strncpy(Str, &pTmpBuf2[i+1], 5); |
1508 Str[5] = 0; | |
1509 i += 5; | |
1510 uColor = atoi(Str); | |
1511 break; | |
1512 } | |
1513 case '\f': //Carriage Return 0D 13 | |
1514 { | |
1515 strncpy(Str, &pTmpBuf2[i+1], 3); | |
1516 Str[3] = 0; | |
1517 i += 3; | |
1518 v23 = pFont->GetLineWidth(&pTmpBuf2[i]); | |
1519 v13 = pWindow->uFrameZ - v23 - atoi(Str); | |
1520 v14 = uY; | |
1521 break; | |
0 | 1522 } |
1268 | 1523 default: |
1524 v20 = pFont->pMetrics[v15].uWidth; | |
1525 if ( i > 0 ) | |
1526 v13 += pFont->pMetrics[v15].uLeftSpacing; | |
1527 v21 = &pFont->pFontData[pFont->font_pixels_offset[v15]]; | |
1528 if ( uColor ) | |
1529 pRenderer->DrawText(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], uColor, 0); | |
1530 else | |
1531 pRenderer->DrawTextPalette(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], 0); | |
1532 v13 += v20; | |
1533 if ( i < (signed int)pNumLen ) | |
1534 v13 += pFont->pMetrics[v15].uRightSpacing; | |
1535 } | |
0 | 1536 } |
1268 | 1537 |
1538 | |
0 | 1539 } |
1540 return v28; | |
1541 } | |
1542 | |
1543 //----- (0041D12F) -------------------------------------------------------- | |
189 | 1544 GUIButton *GUIWindow::CreateButton(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, |
832 | 1545 int a6, int a7, UIMessageType msg, unsigned int msg_param, unsigned __int8 uHotkey, const char *pName, Texture *pTextures, ...) |
0 | 1546 { |
17 | 1547 GUIButton *pButton; // esi@1 |
0 | 1548 unsigned int v13; // eax@1 |
1549 unsigned int v14; // ebx@4 | |
1550 unsigned int v15; // eax@4 | |
189 | 1551 unsigned int TextureNum=0; // ebx@4 |
0 | 1552 unsigned int v17; // eax@4 |
1553 Texture *v18; // eax@4 | |
1554 Texture **v19; // ecx@5 | |
1555 Texture **v20; // edx@5 | |
1556 GUIButton *v21; // eax@7 | |
189 | 1557 va_list texturs_ptr; |
0 | 1558 |
17 | 1559 pButton = (GUIButton *)pAllocator->AllocNamedChunk(0, 0xBCu, "BUTTON"); |
1560 pButton->pParent = this; | |
1268 | 1561 pButton->uWidth = uWidth; |
17 | 1562 pButton->uHeight = uHeight; |
1268 | 1563 |
0 | 1564 if ( a6 == 2 && !uHeight ) |
17 | 1565 pButton->uHeight = uWidth; |
1268 | 1566 |
17 | 1567 pButton->uButtonType = a6; |
1268 | 1568 pButton->uX = uX + this->uFrameX; |
1569 pButton->uY = uY + this->uFrameY; | |
1570 pButton->uZ = pButton->uX + uWidth - 1; | |
1571 pButton->uW = pButton->uY + uHeight - 1; | |
271 | 1572 pButton->field_2C_is_pushed = 0; |
17 | 1573 pButton->field_1C = a7; |
832 | 1574 pButton->msg = msg; |
1575 pButton->msg_param = msg_param; | |
17 | 1576 pButton->uHotkey = uHotkey; |
1268 | 1577 //strlen(pName); |
17 | 1578 strcpy(pButton->pButtonName, pName); |
189 | 1579 va_start(texturs_ptr, pName); |
1580 while (NULL!=(pTextures=va_arg(texturs_ptr, Texture *))) | |
0 | 1581 { |
189 | 1582 pButton->pTextures[TextureNum]=pTextures; |
1583 ++TextureNum; | |
0 | 1584 } |
189 | 1585 va_end(texturs_ptr); |
1586 pButton->uNumTextures = TextureNum; | |
1587 if ( this->pControlsTail ) | |
1588 this->pControlsTail->pNext = pButton; | |
0 | 1589 else |
17 | 1590 this->pControlsHead = pButton; |
1591 pButton->pPrev = this->pControlsTail; | |
1592 this->pControlsTail = pButton; | |
1593 pButton->pNext = 0; | |
0 | 1594 ++this->uNumControls; |
17 | 1595 return pButton; |
0 | 1596 } |
1597 | |
1598 //----- (00459C2B) -------------------------------------------------------- | |
1268 | 1599 void GUIWindow::DrawFlashingInputCursor( signed int uX, int uY, struct GUIFont *a2 ) |
1600 { | |
0 | 1601 if ( GetTickCount() % 1000 > 500 ) |
1268 | 1602 DrawText(a2, uX, uY, 0, "_", 0, 0, 0); |
0 | 1603 } |
1604 | |
1605 //----- (0041C432) -------------------------------------------------------- | |
1268 | 1606 GUIWindow * GUIWindow::Create( unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, enum WindowType eWindowType, int pButton, const char* hint ) |
1607 { | |
0 | 1608 unsigned int uNextFreeWindowID; // ebp@1 |
1609 //int *v8; // eax@1 | |
1610 //GUIWindow *pWindow; // esi@4 | |
962 | 1611 //int v10; // eax@4 |
0 | 1612 unsigned int v11; // ebx@15 |
423 | 1613 NPCData *speakingNPC; // ebp@15 |
1614 int v14; // eax@20 | |
1615 int v16; // eax@25 | |
1616 int v18; // eax@30 | |
1617 int v20; // eax@35 | |
1618 int v22; // eax@40 | |
1619 int v24; // eax@45 | |
0 | 1620 int v25; // eax@65 |
1621 unsigned int v26; // ebx@65 | |
1622 char *v27; // eax@71 | |
1623 const char *v29; // [sp-8h] [bp-18h]@68 | |
1624 char *v30; // [sp-4h] [bp-14h]@68 | |
1625 int uWidtha; // [sp+14h] [bp+4h]@66 | |
423 | 1626 int num_menu_buttons; // [sp+20h] [bp+10h]@15 |
0 | 1627 |
1628 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID) | |
1629 { | |
1630 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null) | |
1631 break; | |
1632 } | |
1633 | |
1634 auto pWindow = &pWindowList[uNextFreeWindowID]; | |
1635 pWindow->uFrameWidth = uWidth; | |
1268 | 1636 pWindow->uFrameHeight = uHeight; |
1637 | |
1638 pWindow->uFrameX = uX; | |
1639 pWindow->uFrameY = uY; | |
0 | 1640 pWindow->uFrameZ = uX + uWidth - 1; |
1641 pWindow->uFrameW = uY + uHeight - 1; | |
1268 | 1642 |
11 | 1643 pWindow->ptr_1C = (void *)pButton; |
1268 | 1644 pWindow->Hint = hint; |
1645 | |
0 | 1646 pWindow->eWindowType = eWindowType; |
972 | 1647 pWindow->receives_keyboard_input = false; |
496 | 1648 ++uNumVisibleWindows; |
1649 pWindow->numVisibleWindows = uNumVisibleWindows; | |
1650 pVisibleWindowsIdxs[uNumVisibleWindows] = uNextFreeWindowID + 1; | |
0 | 1651 if ( (signed int)eWindowType <= 20 ) |
1652 { | |
1653 if (eWindowType != WINDOW_Chest) | |
1654 { | |
1655 switch (eWindowType) | |
1656 { | |
1268 | 1657 case WINDOW_Book: { |
0 | 1658 pWindow->InitializeBookView(); |
1659 break; | |
1268 | 1660 } |
1661 case WINDOW_Dialogue: { | |
11 | 1662 pMainScreenNum = pCurrentScreen; |
151 | 1663 pCurrentScreen = SCREEN_NPC_DIALOGUE; |
832 | 1664 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], //"Exit" |
735 | 1665 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
496 | 1666 if ( pWindow->par1C != 1 ) |
0 | 1667 { |
423 | 1668 num_menu_buttons = 0; |
0 | 1669 v11 = LOBYTE(pFontArrus->uFontHeight) - 3; |
602 | 1670 speakingNPC = GetNPCData(sDialogue_SpeakingActorNPC_ID); |
827 | 1671 if ( GetGreetType(sDialogue_SpeakingActorNPC_ID) == 1 )//QuestsNPC_greet |
0 | 1672 { |
423 | 1673 if ( speakingNPC->joins ) |
0 | 1674 { |
832 | 1675 pWindow->CreateButton(480, 130, 140, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0xDu, 0, "", 0); |
423 | 1676 num_menu_buttons = 1; |
0 | 1677 } |
423 | 1678 if ( speakingNPC->evt_A ) |
0 | 1679 { |
423 | 1680 if ( num_menu_buttons < 4 ) |
0 | 1681 { |
423 | 1682 v14 = NPC_EventProcessor(speakingNPC->evt_A); |
0 | 1683 if ( v14 == 1 || v14 == 2 ) |
832 | 1684 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x13u, 0, "", 0); |
0 | 1685 } |
1686 } | |
423 | 1687 if ( speakingNPC->evt_B ) |
0 | 1688 { |
423 | 1689 if ( num_menu_buttons < 4 ) |
0 | 1690 { |
423 | 1691 v16 = NPC_EventProcessor(speakingNPC->evt_B); |
0 | 1692 if ( v16 == 1 || v16 == 2 ) |
832 | 1693 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x14u, 0, "", 0); |
0 | 1694 } |
1695 } | |
423 | 1696 if ( speakingNPC->evt_C ) |
0 | 1697 { |
423 | 1698 if ( num_menu_buttons < 4 ) |
0 | 1699 { |
423 | 1700 v18 = NPC_EventProcessor(speakingNPC->evt_C); |
0 | 1701 if ( v18 == 1 || v18 == 2 ) |
832 | 1702 pWindow->CreateButton( 0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x15u, 0, "", 0); |
0 | 1703 } |
1704 } | |
423 | 1705 if ( speakingNPC->evt_D ) |
0 | 1706 { |
423 | 1707 if ( num_menu_buttons < 4 ) |
0 | 1708 { |
423 | 1709 v20 = NPC_EventProcessor(speakingNPC->evt_D); |
0 | 1710 if ( v20 == 1 || v20 == 2 ) |
832 | 1711 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x16u, 0, "", 0); |
0 | 1712 } |
1713 } | |
423 | 1714 if ( speakingNPC->evt_E ) |
0 | 1715 { |
423 | 1716 if ( num_menu_buttons < 4 ) |
0 | 1717 { |
423 | 1718 v22 = NPC_EventProcessor(speakingNPC->evt_E); |
0 | 1719 if ( v22 == 1 || v22 == 2 ) |
832 | 1720 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x17u, 0, "", 0); |
0 | 1721 } |
1722 } | |
423 | 1723 if (speakingNPC->evt_F ) |
0 | 1724 { |
423 | 1725 if ( num_menu_buttons < 4 ) |
0 | 1726 { |
423 | 1727 v24 = NPC_EventProcessor(speakingNPC->evt_F); |
0 | 1728 if ( v24 == 1 || v24 == 2 ) |
832 | 1729 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x18u, 0, "", 0); |
0 | 1730 } |
1731 } | |
1732 } | |
1733 else | |
1734 { | |
423 | 1735 if ( speakingNPC->joins ) |
0 | 1736 { |
832 | 1737 pWindow->CreateButton(0x1E0u, 0x82u, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Du, 0, pGlobalTXT_LocalizationStrings[407], 0);// |
423 | 1738 if (speakingNPC->Hired()) |
0 | 1739 { |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1740 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[408], speakingNPC->pName); // |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1741 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pTmpBuf.data(), 0); |
0 | 1742 } |
1743 else | |
1744 { | |
832 | 1745 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pGlobalTXT_LocalizationStrings[406], 0);// |
0 | 1746 } |
423 | 1747 num_menu_buttons = 2; |
0 | 1748 } |
1749 } | |
972 | 1750 pWindow->_41D08F_set_keyboard_control_group(num_menu_buttons, 1, 0, 1); |
0 | 1751 } |
1752 break; | |
1268 | 1753 } |
1754 case WINDOW_ChangeLocation: { | |
11 | 1755 pMainScreenNum = pCurrentScreen; |
151 | 1756 pCurrentScreen = SCREEN_CHANGE_LOCATION; |
987 | 1757 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 | 1758 pBtn_YES = pWindow->CreateButton( 486, 445, 75, 33, 1, 0, UIMSG_OnTravelByFoot, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0); |
1759 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 63, 73, 1, 0, UIMSG_OnTravelByFoot, 1, ' ', pWindow->Hint, 0, 0, 0); | |
1760 pWindow->CreateButton( 8, 8, 460, 344, 1, 0, UIMSG_OnTravelByFoot, 1, 0, pWindow->Hint, 0); | |
0 | 1761 break; |
1268 | 1762 } |
1763 case WINDOW_SpellBook: {// | |
0 | 1764 InitializeBookTextures(); |
11 | 1765 pWindow->OpenSpellBook(); |
0 | 1766 break; |
1268 | 1767 } |
1768 case WINDOW_GreetingNPC: {// | |
11 | 1769 pMainScreenNum = pCurrentScreen; |
3 | 1770 pKeyActionMap->EnterText(0, 15, pWindow); |
151 | 1771 pCurrentScreen = SCREEN_BRANCHLESS_NPC_DIALOG; |
0 | 1772 break; |
1268 | 1773 } |
1774 | |
0 | 1775 } |
1776 return pWindow; | |
1777 } | |
11 | 1778 //LABEL_62: |
948 | 1779 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0); |
1780 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0); | |
1781 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0); | |
1782 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0); | |
832 | 1783 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, 9u, "", 0); |
0 | 1784 return pWindow; |
1785 } | |
1786 if (eWindowType == WINDOW_HouseInterior) | |
1787 { | |
151 | 1788 pCurrentScreen = SCREEN_HOUSE; |
1211 | 1789 pBtn_ExitCancel = pWindow->CreateButton(471, 445, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[80],// |
735 | 1790 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
1211 | 1791 |
873 | 1792 for ( v26 = 0; v26 < uNumDialogueNPCPortraits; ++v26 ) |
0 | 1793 { |
1211 | 1794 if ( v26 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1795 { |
1796 v30 = pMapStats->pInfos[uHouse_ExitPic].pName; | |
874 | 1797 v29 = (char*)pGlobalTXT_LocalizationStrings[LOCSTR_ENTER_S]; |
0 | 1798 } |
1799 else | |
1800 { | |
1801 if ( v26 || !dword_591080 ) | |
1211 | 1802 v27 = HouseNPCData[v26 +1 - (dword_591080 != 0)]->pName; |
0 | 1803 else |
1268 | 1804 v27 = (char*)p2DEvents[pButton - 1].pProprieterName; |
0 | 1805 v30 = v27; |
874 | 1806 v29 = (char*)pGlobalTXT_LocalizationStrings[435]; |
0 | 1807 } |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1808 sprintfex(byte_591180[v26].data(), v29, v30); |
1211 | 1809 dword_5913F4[v26] = pWindow->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v26], |
419 | 1810 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v26], |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1811 0x3Fu, 0x49u, 1, 0, UIMSG_ClickHouseNPCPortrait, v26, 0, byte_591180[v26].data(), 0, 0, 0); |
0 | 1812 } |
1211 | 1813 |
1814 if ( uNumDialogueNPCPortraits == 1 ) | |
0 | 1815 { |
336 | 1816 window_SpeakInHouse = &pWindowList[uNextFreeWindowID]; |
0 | 1817 _4B4224_UpdateNPCTopics(0); |
1818 } | |
1819 } | |
1820 else | |
1821 { | |
158 | 1822 if (eWindowType == WINDOW_Transition) |
0 | 1823 { |
11 | 1824 pMainScreenNum = pCurrentScreen; |
151 | 1825 pCurrentScreen = SCREEN_INPUT_BLV; |
960 | 1826 pBtn_ExitCancel = pWindow->CreateButton(0x236u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionWindowCloseBtn, 0, 'N', pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);// |
948 | 1827 pBtn_YES = pWindow->CreateButton(0x1E6u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionUI_Confirm, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0); |
1828 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 0x3Fu, 0x49u, 1, 0, UIMSG_TransitionUI_Confirm, 1, 0x20u, pWindow->Hint, 0); | |
1829 pWindow->CreateButton(8, 8, 0x1CCu, 0x158u, 1, 0, UIMSG_TransitionUI_Confirm, 1u, 0, pWindow->Hint, 0); | |
0 | 1830 return pWindow; |
1831 } | |
961 | 1832 if (eWindowType == WINDOW_CastSpell) |
0 | 1833 { |
1834 pEventTimer->Pause(); | |
1835 pAudioPlayer->StopChannels(-1, -1); | |
1836 pMouse->SetCursorBitmap("MICON2"); | |
11 | 1837 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);// |
0 | 1838 return pWindow; |
1839 } | |
158 | 1840 if (eWindowType == WINDOW_Scroll) |
11 | 1841 { |
948 | 1842 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0); |
1843 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0); | |
1844 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0); | |
1845 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0); | |
1846 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0); | |
11 | 1847 return pWindow; |
1848 } | |
898 | 1849 if (eWindowType == WINDOW_CastSpell_InInventory) |
0 | 1850 { |
1851 pMouse->SetCursorBitmap("MICON2"); | |
832 | 1852 pBtn_ExitCancel = pWindow->CreateButton(0x188u, 0x13Eu, 0x4Bu, 0x21u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34],// |
945 | 1853 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0); |
11 | 1854 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2);// |
0 | 1855 ++pIcons_LOD->uTexturePacksCount; |
1856 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103; | |
151 | 1857 pCurrentScreen = SCREEN_CASTING; |
0 | 1858 if ( !pIcons_LOD->uNumPrevLoadedFiles ) |
1859 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
1860 } | |
1861 } | |
1862 return pWindow; | |
1863 } |