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