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