Mercurial > mm7
annotate GUIWindow.cpp @ 180:c5bd7a825ef2
come back
author | Ritor1 |
---|---|
date | Fri, 15 Feb 2013 17:22:20 +0600 |
parents | 1dfa65be220e |
children | 038a4d09406f |
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)]; | |
180 | 925 pBookFont = LoadFont("book.fnt", "FONTPAL", NULL); |
926 pBook2Font = LoadFont("book2.fnt", "FONTPAL", NULL); | |
927 pAutonoteFont = LoadFont("autonote.fnt", "FONTPAL", NULL); | |
928 pSpellFont = LoadFont("spell.fnt", "FONTPAL", NULL); | |
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); | |
165 | 1059 pRenderer->DrawTextureTransparent(0x1D4u, 0, (Texture *)(uTextureID_507B04 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_507B04] : 0)); |
0 | 1060 if ( array_5913D8[6] != (NPCData *)uNumDialogueNPCPortraits || !uHouse_ExitPic ) |
1061 { | |
1062 w.uFrameWidth = 130; | |
1063 w.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight); | |
1064 | |
1065 //v2 = (const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C]; | |
1066 v2 = p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pName; | |
1067 | |
1068 if ( v2 ) | |
1069 { | |
1070 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(v2, &w, 0, 0); | |
1071 if ( v3 < 0 ) | |
1072 v3 = 0; | |
165 | 1073 v18.DrawTitleText(pFontCreate, 0x1EAu, v3 / 2 + 4, v1, |
0 | 1074 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C], |
165 | 1075 p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pName, 3); |
0 | 1076 } |
1077 } | |
1078 v18.uFrameWidth += 8; | |
1079 v18.uFrameZ += 8; | |
1080 if ( !array_5913D8[6] ) | |
1081 { | |
1082 if ( dword_F8B198 == 31 ) | |
1083 { | |
1084 LABEL_36: | |
1085 sub_4B4F4F(); | |
1086 goto LABEL_58; | |
1087 } | |
1088 if ( ptr_F8B1E8 ) | |
1089 { | |
1090 w.uFrameWidth = 458; | |
1091 w.uFrameZ = 457; | |
1092 v5 = pFontArrus->CalcTextHeight(ptr_F8B1E8, &w, 13, 0); | |
1093 v6 = v5 + 7; | |
165 | 1094 pRenderer->_4A6A68(8, 352 - (v5 + 7), (Texture *)(uTextureID_Leather != -1 ? &pIcons_LOD->pTextures[uTextureID_Leather] : 0), |
0 | 1095 (uTextureID_Leather != -1 ? pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight : 26) - (v5 + 7)); |
1096 pRenderer->DrawTextureIndexed(8u, 347 - v6, pTexture_591428); | |
1097 v7 = FitTextInAWindow(ptr_F8B1E8, pFontArrus, &w, 0xDu, 0); | |
1098 ptr_507BC0->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0); | |
1099 } | |
1100 v8 = 0; | |
1101 if ( uNumDialogueNPCPortraits <= 0 ) | |
1102 goto LABEL_58; | |
1103 while ( 1 ) | |
1104 { | |
165 | 1105 pRenderer->DrawTextureIndexed(*(&pNPCPortraits_x + v8 + 6 * uNumDialogueNPCPortraits - 6) - 4, |
1106 *(&pNPCPortraits_y + v8 + 6 * uNumDialogueNPCPortraits - 6) - 4, | |
0 | 1107 (Texture *)(uTextureID_50795C != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_50795C] : 0)); |
165 | 1108 pRenderer->DrawTextureIndexed(*(&pNPCPortraits_x + v8 + 6 * uNumDialogueNPCPortraits - 6), |
1109 *(&pNPCPortraits_y + v8 + 6 * uNumDialogueNPCPortraits - 6), pDialogueNPCPortraits[v8]); | |
0 | 1110 if ( uNumDialogueNPCPortraits < 4 ) |
1111 break; | |
1112 LABEL_57: | |
1113 ++v8; | |
1114 if ( v8 >= uNumDialogueNPCPortraits ) | |
1115 goto LABEL_58; | |
1116 } | |
1117 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) | |
1118 { | |
1119 v15 = 3; | |
1120 v13 = pMapStats->pInfos[uHouse_ExitPic].pName; | |
1121 v9 = 94 * v8 + 113; | |
1122 } | |
1123 else | |
1124 { | |
1125 if ( !v8 && dword_591080 ) | |
1126 { | |
1127 v15 = 3; | |
1128 //v13 = (char *)p2DEvents_minus1__10[13 * (unsigned int)ptr_507BC0->ptr_1C]; | |
1129 v13 = (char *)p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pProprieterTitle; | |
1130 v11 = v19; | |
1131 v10 = 113; | |
1132 LABEL_56: | |
1133 v18.DrawTitleText(pFontCreate, 0x1E3u, v10, v11, v13, v15); | |
1134 goto LABEL_57; | |
1135 } | |
1136 v15 = 3; | |
1137 v13 = array_5913D8[v8 - (dword_591080 != 0)]->pName; | |
1138 v9 = dword_4E5EC8[v8 + 6 * uNumDialogueNPCPortraits] + pDialogueNPCPortraits[v8]->uTextureHeight + 2; | |
1139 } | |
1140 v11 = v19; | |
1141 v10 = v9; | |
1142 goto LABEL_56; | |
1143 } | |
1144 v4 = (char *)array_5913D8[6] - 1; | |
165 | 1145 pRenderer->DrawTextureIndexed(pNPCPortraits_x - 4, pNPCPortraits_y - 4, |
0 | 1146 (Texture *)(uTextureID_50795C != -1 ? &pIcons_LOD->pTextures[uTextureID_50795C] : 0)); |
165 | 1147 pRenderer->DrawTextureIndexed(pNPCPortraits_x, pNPCPortraits_y, pDialogueNPCPortraits[(signed int)v4]); |
151 | 1148 if ( pCurrentScreen == SCREEN_E ) |
0 | 1149 { |
1150 CharacterUI_InventoryTab_Draw(uActiveCharacter, 1); | |
1151 goto LABEL_58; | |
1152 } | |
1153 if ( v4 || !dword_591080 ) | |
1154 { | |
1155 sub_4B2A74(); | |
1156 } | |
1157 else | |
1158 { | |
165 | 1159 sprintf( pTmpBuf, pGlobalTXT_LocalizationStrings[429], |
0 | 1160 //p2DEvents_minus1_::08[13 * (unsigned int)ptr_507BC0->ptr_1C], |
1161 p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pProprieterName, | |
1162 //p2DEvents_minus1__10[13 * (unsigned int)ptr_507BC0->ptr_1C]); | |
1163 p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pProprieterTitle); | |
1164 v18.DrawTitleText(pFontCreate, 0x1E3u, 0x71u, v19, pTmpBuf, 3u); | |
1165 if ( dword_F8B198 <= 18 ) | |
1166 { | |
1167 switch ( dword_F8B198 ) | |
1168 { | |
1169 case 18: | |
1170 sub_4B6478(); | |
1171 break; | |
1172 case 1: | |
1173 sub_4B910F(); | |
1174 break; | |
1175 case 2: | |
1176 sub_4BA928(); | |
1177 break; | |
1178 case 3: | |
1179 ui_shop_teachers(); | |
1180 break; | |
1181 case 4: | |
1182 sub_4B9CC6(); | |
1183 break; | |
1184 default: | |
1185 if ( dword_F8B198 > 4 ) | |
1186 { | |
1187 if ( dword_F8B198 <= 16 ) | |
1188 { | |
1189 sub_4B5D7C(); | |
1190 } | |
1191 else | |
1192 { | |
1193 if ( dword_F8B198 == 17 ) | |
1194 sub_4B7911(); | |
1195 } | |
1196 } | |
1197 break; | |
1198 } | |
1199 goto LABEL_58; | |
1200 } | |
1201 switch ( dword_F8B198 ) | |
1202 { | |
1203 case 21: | |
1204 sub_4B8285_prolly_draw_arcomage_result(); | |
1205 break; | |
1206 case 22: | |
1207 _4B7D7E_bank(); | |
1208 break; | |
1209 case 23: | |
1210 sub_4B705E(); | |
1211 break; | |
1212 default: | |
1213 if ( dword_F8B198 <= 26 ) | |
1214 break; | |
1215 if ( dword_F8B198 <= 28 ) | |
1216 { | |
1217 TravelByTransport(); | |
1218 } | |
1219 else | |
1220 { | |
1221 if ( dword_F8B198 != 30 ) | |
1222 { | |
1223 if ( dword_F8B198 != 31 ) | |
1224 break; | |
1225 goto LABEL_36; | |
1226 } | |
1227 ui_training(); | |
1228 } | |
1229 break; | |
1230 } | |
1231 } | |
1232 LABEL_58: | |
1233 if ( array_5913D8[6] == (NPCData *)uNumDialogueNPCPortraits && uHouse_ExitPic ) | |
1234 { | |
165 | 1235 pRenderer->DrawTextureIndexed(0x22Cu, 0x1C3u, (Texture *)(uTextureID_x_x_u != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_x_x_u] : 0)); |
0 | 1236 v16 = (Texture *)(uTextureID_x_ok_u != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_x_ok_u] : 0); |
1237 v14 = 451; | |
1238 v12 = 476; | |
1239 } | |
1240 else | |
1241 { | |
1242 v16 = (Texture *)(uTextureID_506438 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_506438] : 0); | |
1243 v14 = 445; | |
1244 v12 = 471; | |
1245 } | |
1246 pRenderer->DrawTextureIndexed(v12, v14, v16); | |
1247 } | |
1248 | |
1249 | |
1250 //----- (004B1854) -------------------------------------------------------- | |
1251 char *GUIWindow::_4B1854(__int64 a2) | |
1252 { | |
1253 unsigned int v2; // edi@1 | |
1254 unsigned int v3; // esi@1 | |
1255 unsigned int v4; // ebp@1 | |
1256 unsigned int v5; // ebx@1 | |
1257 signed __int64 v6; // ST2C_8@1 | |
1258 signed __int64 v7; // kr00_8@1 | |
1259 char *v8; // eax@2 | |
1260 char *v9; // eax@7 | |
1261 char *v10; // eax@13 | |
1262 char *v11; // eax@19 | |
1263 unsigned __int16 v12; // ST0C_2@22 | |
1264 int v13; // eax@22 | |
1265 GUIWindow *v15; // [sp+0h] [bp-1Ch]@1 | |
1266 signed __int64 v16; // [sp+Ch] [bp-10h]@1 | |
1267 signed __int64 v17; // [sp+14h] [bp-8h]@1 | |
1268 unsigned int v18; // [sp+20h] [bp+4h]@1 | |
1269 | |
1270 v15 = this; | |
1271 v2 = (unsigned __int64)(signed __int64)((double)a2 * 0.234375) >> 32; | |
1272 v3 = (signed __int64)((double)a2 * 0.234375); | |
1273 v4 = (unsigned __int64)((signed __int64)((double)a2 * 0.234375) / 60) >> 32; | |
1274 v5 = (signed __int64)((double)a2 * 0.234375) / 60; | |
1275 v6 = (signed __int64)((double)a2 * 0.234375) / 60 / 60; | |
1276 v18 = (unsigned int)v6 / 0x18; | |
1277 v17 = (signed __int64)__PAIR__(v2, v3) % 60; | |
1278 v16 = (signed __int64)__PAIR__(v4, v5) % 60; | |
1279 v7 = v6 % 24; | |
1280 strcpy(pTmpBuf, pGlobalTXT_LocalizationStrings[532]); | |
1281 if ( (unsigned int)v6 / 0x18 ) | |
1282 { | |
1283 v8 = pGlobalTXT_LocalizationStrings[57]; | |
1284 if ( v18 <= 1 ) | |
1285 v8 = pGlobalTXT_LocalizationStrings[56]; | |
1286 sprintf(pTmpBuf2, "%d %s ", v18, v8); | |
1287 strcat(pTmpBuf, pTmpBuf2); | |
1288 } | |
1289 if ( v7 ) | |
1290 { | |
1291 if ( v7 <= 1 ) | |
1292 v9 = pGlobalTXT_LocalizationStrings[109]; | |
1293 else | |
1294 v9 = pGlobalTXT_LocalizationStrings[110]; | |
1295 sprintf(pTmpBuf2, "%d %s ", v7, v9); | |
1296 strcat(pTmpBuf, pTmpBuf2); | |
1297 } | |
1298 if ( v16 && !v18 ) | |
1299 { | |
1300 if ( v16 <= 1 ) | |
1301 v10 = pGlobalTXT_LocalizationStrings[437]; | |
1302 else | |
1303 v10 = pGlobalTXT_LocalizationStrings[436]; | |
1304 sprintf(pTmpBuf2, "%d %s ", v16, v10); | |
1305 strcat(pTmpBuf, pTmpBuf2); | |
1306 } | |
1307 if ( v17 && !v7 ) | |
1308 { | |
1309 if ( v17 <= 1 ) | |
1310 v11 = pGlobalTXT_LocalizationStrings[439]; | |
1311 else | |
1312 v11 = pGlobalTXT_LocalizationStrings[438]; | |
1313 sprintf(pTmpBuf2, "%d %s ", v17, v11); | |
1314 strcat(pTmpBuf, pTmpBuf2); | |
1315 } | |
1316 v12 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0xFFu, 0xFFu, 0x9Bu); | |
1317 v13 = pFontArrus->CalcTextHeight(pTmpBuf, v15, 0, 0); | |
1318 return v15->DrawTitleText(pFontArrus, 0, (212 - v13) / 2 + 101, v12, pTmpBuf, 3u); | |
1319 } | |
1320 | |
1321 | |
1322 | |
1323 //----- (0044D406) -------------------------------------------------------- | |
1324 char *GUIWindow::DrawTitleText(GUIFont *a2, unsigned int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor, const char *pInString, unsigned int uLineSpacing) | |
1325 { | |
1326 GUIWindow *pWindow; // esi@1 | |
1327 unsigned int v8; // ebx@1 | |
1328 char *v9; // eax@1 | |
1329 char *result; // eax@1 | |
1330 unsigned int v11; // edi@1 | |
1331 signed int v12; // esi@1 | |
1332 int v13; // eax@2 | |
1333 GUIFont *pFont; // [sp+Ch] [bp-4h]@1 | |
1334 const char *Stra; // [sp+24h] [bp+14h]@5 | |
1335 | |
1336 pWindow = this; | |
1337 pFont = a2; | |
1338 v8 = this->uFrameWidth - uHorizontalMargin; | |
1339 ui_current_text_color = uDefaultColor; | |
1340 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0); | |
1341 result = strtok(v9, "\n"); | |
1342 v11 = uHorizontalMargin + pWindow->uFrameX; | |
1343 v12 = uVerticalMargin + pWindow->uFrameY; | |
1344 while ( 1 ) | |
1345 { | |
1346 Stra = result; | |
1347 if ( !result ) | |
1348 break; | |
1349 v13 = (signed int)(v8 - pFont->GetLineWidth(result)) >> 1; | |
1350 if ( v13 < 0 ) | |
1351 v13 = 0; | |
1352 pFont->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, 640); | |
49 | 1353 v12 += pFont->uFontHeight - uLineSpacing; |
0 | 1354 result = strtok(0, "\n"); |
1355 } | |
1356 return result; | |
1357 } | |
1358 // 5C6DB4: using guessed type int ui_current_text_color; | |
1359 | |
1360 | |
1361 | |
1362 //----- (0044CE08) -------------------------------------------------------- | |
1363 char GUIWindow::DrawText(GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, unsigned int uFontShadowColor) | |
1364 { | |
1365 GUIWindow *v9; // edi@1 | |
1366 GUIFont *v10; // ebx@1 | |
1367 int v11; // eax@2 | |
1368 signed int v12; // esi@9 | |
1369 signed int v13; // edi@9 | |
1370 int v14; // edx@9 | |
1371 int v15; // eax@25 | |
1372 unsigned int v16; // ecx@25 | |
1373 int v17; // eax@27 | |
1374 int v18; // edi@32 | |
1375 int v19; // esi@38 | |
1376 std::string v21; // [sp-18h] [bp-50h]@2 | |
1377 const char *v22; // [sp-8h] [bp-40h]@2 | |
1378 int v23; // [sp-4h] [bp-3Ch]@2 | |
1379 char Dest[6]; // [sp+Ch] [bp-2Ch]@32 | |
1380 //char v25; // [sp+Fh] [bp-29h]@32 | |
1381 //char v26; // [sp+11h] [bp-27h]@34 | |
1382 const char *v27; // [sp+20h] [bp-18h]@25 | |
1383 int v28; // [sp+24h] [bp-14h]@25 | |
1384 int v29; // [sp+28h] [bp-10h]@1 | |
1385 size_t v30; // [sp+2Ch] [bp-Ch]@4 | |
1386 GUIWindow *v31; // [sp+30h] [bp-8h]@1 | |
1387 const char *v32; // [sp+34h] [bp-4h]@7 | |
1388 size_t pInString; // [sp+4Ch] [bp+14h]@11 | |
1389 | |
1390 auto a1 = this; | |
1391 v29 = 0; | |
1392 v9 = a1; | |
1393 v10 = a2; | |
1394 v31 = a1; | |
1395 if ( !Str ) | |
1396 { | |
1397 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0); | |
1398 return v11; | |
1399 } | |
1400 v11 = strcmp(Str, "null"); | |
1401 if ( v11 ) | |
1402 { | |
1403 v30 = strlen(Str); | |
1404 LOBYTE(v11) = 0; | |
1405 if ( !uX ) | |
1406 uX = 12; | |
1407 if ( a8 ) | |
1408 { | |
1409 v32 = Str; | |
1410 } | |
1411 else | |
1412 { | |
1413 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0); | |
1414 v32 = (const char *)v11; | |
1415 } | |
1416 v12 = uX + v9->uFrameX; | |
1417 v13 = uY + v9->uFrameY; | |
1418 v14 = 0; | |
1419 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) ) | |
1420 { | |
1421 pInString = 0; | |
1422 if ( (signed int)v30 > 0 ) | |
1423 { | |
1424 do | |
1425 { | |
1426 LOBYTE(v11) = v32[v14]; | |
1427 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar | |
1428 || (char)v11 == 12 | |
1429 || (char)v11 == 13 | |
1430 || (char)v11 == 9 | |
1431 || (char)v11 == 10 ) | |
1432 { | |
1433 switch ( (unsigned __int8)v11 ) | |
1434 { | |
1435 case 9u: | |
1436 strncpy(Dest, &v32[v14 + 1], 3u); | |
1437 Dest[3] = 0; | |
1438 pInString += 3; | |
1439 v29 = atoi(Dest); | |
1440 v19 = atoi(Dest); | |
1441 LOBYTE(v11) = (char)v31; | |
1442 v12 = uX + v31->uFrameX + v19; | |
1443 break; | |
1444 case 0xAu: | |
1445 v11 = LOBYTE(v10->uFontHeight); | |
1446 uY = uY + v11 - 3; | |
1447 v13 = uY + v31->uFrameY; | |
1448 v12 = uX + v29 + v31->uFrameX; | |
1449 if ( a8 ) | |
1450 goto LABEL_36; | |
1451 break; | |
1452 case 0xCu: | |
1453 strncpy(Dest, &v32[v14 + 1], 5u); | |
1454 Dest[5] = 0; | |
1455 v11 = atoi(Dest); | |
1456 pInString += 5; | |
1457 uFontColor = v11; | |
1458 break; | |
1459 case 0xDu: | |
1460 strncpy(Dest, &v32[v14 + 1], 3u); | |
1461 Dest[3] = 0; | |
1462 pInString += 3; | |
1463 v18 = atoi(Dest); | |
1464 v11 = v10->GetLineWidth(&v32[pInString]); | |
1465 v12 = v31->uFrameZ - v11 - v18; | |
1466 v13 = uY + v31->uFrameY; | |
1467 if ( a8 ) | |
1468 { | |
1469 v11 = LOBYTE(v10->uFontHeight); | |
1470 LABEL_36: | |
1471 v11 = v11 + v13 - 3; | |
1472 if ( v11 > a8 ) | |
1473 return v11; | |
1474 break; | |
1475 } | |
1476 break; | |
1477 default: | |
1478 if ( (char)v11 == 34 && v32[v14 + 1] == 34 ) | |
1479 { | |
1480 ++v14; | |
1481 pInString = v14; | |
1482 } | |
1483 v27 = &v32[v14]; | |
1484 v15 = (unsigned __int8)v32[v14]; | |
1485 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1486 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1487 if ( v14 > 0 ) | |
1488 v12 += v10->pMetrics[v15].uLeftSpacing; | |
1489 v17 = (int)((char *)&v10[1] + v10->field_C20[v15]); | |
1490 if ( (short)uFontColor ) | |
1491 pRenderer->DrawText( | |
1492 v12, | |
1493 v13, | |
1494 (unsigned __int8 *)v17, | |
1495 v16, | |
1496 LOBYTE(v10->uFontHeight), | |
1497 v10->pFontPalettes[0], | |
1498 uFontColor, | |
1499 uFontShadowColor); | |
1500 else | |
1501 pRenderer->DrawTextPalette( | |
1502 v12, | |
1503 v13, | |
1504 v17, | |
1505 v16, | |
1506 LOBYTE(v10->uFontHeight), | |
1507 v10->pFontPalettes[0], | |
1508 a7); | |
1509 LOBYTE(v11) = v30; | |
1510 v12 += v28; | |
1511 if ( (signed int)pInString < (signed int)v30 ) | |
1512 { | |
1513 LOBYTE(v11) = 3 * *v27; | |
1514 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing; | |
1515 } | |
1516 break; | |
1517 } | |
1518 } | |
1519 v14 = pInString++ + 1; | |
1520 } | |
1521 while ( (signed int)pInString < (signed int)v30 ); | |
1522 } | |
1523 } | |
1524 } | |
1525 return v11; | |
1526 } | |
1527 | |
1528 | |
1529 //----- (0044CB4F) -------------------------------------------------------- | |
1530 int GUIWindow::DrawTextInRect(GUIFont *a2, unsigned int uX, unsigned int uY, unsigned int uColor, const char *Str1, int Source, int a8) | |
1531 { | |
24 | 1532 GUIFont *pFont; // edi@1 |
1533 int pLineWidth; // ebx@1 | |
0 | 1534 int v11; // esi@3 |
1535 unsigned __int8 v12; // cl@7 | |
1536 signed int v13; // esi@19 | |
1537 signed int v14; // ebx@19 | |
1538 unsigned __int8 v15; // cl@21 | |
1539 int v16; // eax@22 | |
1540 int v17; // ecx@22 | |
1541 int v18; // ecx@23 | |
1542 int v19; // ecx@24 | |
1543 unsigned int v20; // ecx@26 | |
1544 int v21; // eax@28 | |
1545 int v22; // ebx@34 | |
1546 int v23; // eax@34 | |
1547 int v24; // ebx@36 | |
1548 char Str; // [sp+Ch] [bp-20h]@34 | |
1549 char v26; // [sp+Fh] [bp-1Dh]@34 | |
1550 char v27; // [sp+11h] [bp-1Bh]@35 | |
1551 int v28; // [sp+20h] [bp-Ch]@17 | |
1552 GUIWindow *pWindow; // [sp+24h] [bp-8h]@1 | |
24 | 1553 size_t pNumLen; // [sp+28h] [bp-4h]@1 |
0 | 1554 size_t Str1a; // [sp+40h] [bp+14h]@5 |
1555 size_t Str1b; // [sp+40h] [bp+14h]@19 | |
1556 const char *Sourcea; // [sp+44h] [bp+18h]@20 | |
1557 int v34; // [sp+48h] [bp+1Ch]@26 | |
1558 | |
24 | 1559 pFont = a2; |
0 | 1560 pWindow = this; |
24 | 1561 pNumLen = strlen(Str1); |
1562 pLineWidth = pFont->GetLineWidth(Str1); | |
1563 if ( pLineWidth < Source ) | |
0 | 1564 { |
24 | 1565 pWindow->DrawText(pFont, uX, uY, uColor, Str1, 0, 0, 0); |
1566 return pLineWidth; | |
0 | 1567 } |
1568 strcpy(pTmpBuf2, Str1); | |
1569 v11 = 0; | |
1570 if ( a8 ) | |
1571 _strrev(pTmpBuf2); | |
1572 Str1a = 0; | |
24 | 1573 if ( (signed int)pNumLen > 0 ) |
0 | 1574 { |
1575 do | |
1576 { | |
1577 if ( v11 >= Source ) | |
1578 break; | |
24 | 1579 if ( pFont->IsCharValid(v12 = pTmpBuf2[Str1a]) ) |
0 | 1580 { |
1581 if ( v12 < 9u ) | |
24 | 1582 { |
1583 if ( (signed int)Str1a > 0 ) | |
1584 v11 += pFont->pMetrics[v12].uLeftSpacing; | |
1585 v11 += *((int *)&pFont->cFirstChar + 3 * v12 + 9); | |
1586 if ( (signed int)Str1a < (signed int)pNumLen ) | |
1587 v11 += pFont->pMetrics[v12].uRightSpacing; | |
1588 goto LABEL_16; | |
1589 } | |
1590 if ( v12 > 0xAu )//10 | |
0 | 1591 { |
1592 if ( v12 == 12 ) | |
1593 { | |
1594 Str1a += 5; | |
1595 } | |
1596 else | |
1597 { | |
1598 if ( v12 != 13 ) | |
1599 { | |
1600 if ( (signed int)Str1a > 0 ) | |
24 | 1601 v11 += pFont->pMetrics[v12].uLeftSpacing; |
1602 v11 += *((int *)&pFont->cFirstChar + 3 * v12 + 9); | |
1603 if ( (signed int)Str1a < (signed int)pNumLen ) | |
1604 v11 += pFont->pMetrics[v12].uRightSpacing; | |
0 | 1605 } |
1606 } | |
1607 } | |
1608 } | |
1609 LABEL_16: | |
1610 ++Str1a; | |
1611 } | |
24 | 1612 while ( (signed int)Str1a < (signed int)pNumLen ); |
0 | 1613 } |
1614 pTmpBuf[Str1a + 1999] = 0; | |
24 | 1615 pNumLen = strlen(pTmpBuf2); |
1616 v28 = pFont->GetLineWidth(pTmpBuf2); | |
0 | 1617 if ( a8 ) |
1618 _strrev(pTmpBuf2); | |
1619 Str1b = 0; | |
1620 v13 = uX + pWindow->uFrameX; | |
1621 v14 = uY + pWindow->uFrameY; | |
24 | 1622 if ( (signed int)pNumLen > 0 ) |
0 | 1623 { |
1624 Sourcea = &pTmpBuf2[1]; | |
1625 do | |
1626 { | |
24 | 1627 if ( pFont->IsCharValid(v15 = pTmpBuf2[Str1b]) ) |
0 | 1628 { |
1629 v16 = v15; | |
1630 v17 = v15 - 9; | |
24 | 1631 if ( v17 )//>0 |
0 | 1632 { |
1633 v18 = v17 - 1; | |
24 | 1634 if ( v18 )//>0 |
0 | 1635 { |
1636 v19 = v18 - 2; | |
24 | 1637 if ( v19 )//>0 |
0 | 1638 { |
24 | 1639 if ( v19 == 1 )//v15 == 13 |
0 | 1640 { |
1641 strncpy(&Str, Sourcea, 3u); | |
1642 v26 = 0; | |
1643 Str1b += 3; | |
1644 Sourcea += 3; | |
1645 v22 = atoi(&Str); | |
24 | 1646 v23 = pFont->GetLineWidth(&pTmpBuf2[Str1b]); |
0 | 1647 v13 = pWindow->uFrameZ - v23 - v22; |
1648 v14 = uY; | |
1649 } | |
24 | 1650 else//v15 > 13 |
0 | 1651 { |
24 | 1652 v20 = *((int *)&pFont->cFirstChar + 3 * v16 + 9); |
1653 v34 = *((int *)&pFont->cFirstChar + 3 * v16 + 9); | |
0 | 1654 if ( (signed int)Str1b > 0 ) |
24 | 1655 v13 += pFont->pMetrics[v16].uLeftSpacing; |
1656 v21 = (int)((char *)&pFont[1] + pFont->field_C20[v16]); | |
0 | 1657 if ( (short)uColor ) |
24 | 1658 pRenderer->DrawText(v13, v14, (unsigned __int8 *)v21, v20, LOBYTE(pFont->uFontHeight), pFont->pFontPalettes[0], uColor, 0); |
0 | 1659 else |
24 | 1660 pRenderer->DrawTextPalette(v13, v14, v21, v20, LOBYTE(pFont->uFontHeight), pFont->pFontPalettes[0], 0); |
0 | 1661 v13 += v34; |
24 | 1662 if ( (signed int)Str1b < (signed int)pNumLen ) |
1663 v13 += pFont->pMetrics[(unsigned __int8)pTmpBuf2[Str1b]].uRightSpacing; | |
0 | 1664 } |
1665 } | |
24 | 1666 else//v15 == 12 |
0 | 1667 { |
1668 strncpy(&Str, Sourcea, 5u); | |
1669 v27 = 0; | |
1670 Str1b += 5; | |
1671 Sourcea += 5; | |
1672 uColor = atoi(&Str); | |
1673 } | |
1674 } | |
24 | 1675 else//v15 == 10 |
0 | 1676 { |
24 | 1677 v24 = LOBYTE(pFont->uFontHeight); |
0 | 1678 v13 = uX; |
1679 uY = uY + v24 - 3; | |
1680 v14 = v24 + uY - 3; | |
1681 } | |
1682 } | |
24 | 1683 else//v15 == 9 |
0 | 1684 { |
1685 strncpy(&Str, Sourcea, 3u); | |
1686 v26 = 0; | |
1687 atoi(&Str); | |
1688 Str1b += 3; | |
1689 Sourcea += 3; | |
1690 } | |
1691 } | |
1692 ++Str1b; | |
1693 ++Sourcea; | |
1694 } | |
24 | 1695 while ( (signed int)Str1b < (signed int)pNumLen ); |
0 | 1696 } |
1697 return v28; | |
1698 } | |
1699 | |
1700 //----- (0041D12F) -------------------------------------------------------- | |
1701 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, ...) | |
1702 { | |
17 | 1703 GUIButton *pButton; // esi@1 |
0 | 1704 unsigned int v13; // eax@1 |
1705 unsigned int v14; // ebx@4 | |
1706 unsigned int v15; // eax@4 | |
17 | 1707 unsigned int pTextureNum; // ebx@4 |
0 | 1708 unsigned int v17; // eax@4 |
1709 Texture *v18; // eax@4 | |
1710 Texture **v19; // ecx@5 | |
1711 Texture **v20; // edx@5 | |
1712 GUIButton *v21; // eax@7 | |
1713 | |
17 | 1714 pButton = (GUIButton *)pAllocator->AllocNamedChunk(0, 0xBCu, "BUTTON"); |
1715 pButton->pParent = this; | |
1716 pButton->uX = uX + this->uFrameX; | |
0 | 1717 v13 = uY + this->uFrameY; |
17 | 1718 pButton->uHeight = uHeight; |
1719 pButton->uY = v13; | |
1720 pButton->uWidth = uWidth; | |
0 | 1721 if ( a6 == 2 && !uHeight ) |
17 | 1722 pButton->uHeight = uWidth; |
1723 v14 = pButton->uX; | |
1724 pButton->uButtonType = a6; | |
0 | 1725 v15 = v14 + uWidth - 1; |
17 | 1726 pTextureNum = 0; |
1727 pButton->uZ = v15; | |
1728 v17 = pButton->uY; | |
1729 pButton->field_2C = 0; | |
1730 pButton->uW = v17 + uHeight - 1; | |
1731 pButton->field_1C = a7; | |
1732 pButton->uControlID = uControlID; | |
1733 pButton->uControlParam = uControlParam; | |
1734 pButton->uHotkey = uHotkey; | |
0 | 1735 strlen(pName); |
17 | 1736 strcpy(pButton->pButtonName, pName); |
0 | 1737 v18 = pTextures; |
1738 if ( pTextures ) | |
1739 { | |
1740 v19 = &pTextures; | |
17 | 1741 v20 = pButton->pTextures; |
0 | 1742 do |
1743 { | |
1744 ++v19; | |
1745 *v20 = v18; | |
17 | 1746 ++pTextureNum; |
0 | 1747 ++v20; |
1748 v18 = *v19; | |
1749 } | |
1750 while ( *v19 ); | |
1751 } | |
17 | 1752 pButton->uNumTextures = pTextureNum; |
0 | 1753 v21 = this->pControlsTail; |
1754 if ( v21 ) | |
17 | 1755 v21->pNext = pButton; |
0 | 1756 else |
17 | 1757 this->pControlsHead = pButton; |
1758 pButton->pPrev = this->pControlsTail; | |
1759 this->pControlsTail = pButton; | |
1760 pButton->pNext = 0; | |
0 | 1761 ++this->uNumControls; |
17 | 1762 return pButton; |
0 | 1763 } |
1764 | |
1765 //----- (00459C2B) -------------------------------------------------------- | |
1766 void GUIWindow::DrawFlashingInputCursor(signed int a3, int a4, GUIFont *a2) | |
1767 { | |
1768 signed int v4; // esi@1 | |
1769 GUIWindow *v5; // edi@1 | |
1770 | |
1771 v4 = a3; | |
1772 v5 = this; | |
1773 if ( GetTickCount() % 1000 > 500 ) | |
1774 DrawText(a2, v4, a4, 0, "_", 0, 0, 0); | |
1775 } | |
1776 | |
1777 | |
1778 //----- (0041C432) -------------------------------------------------------- | |
11 | 1779 GUIWindow *GUIWindow::Create(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, WindowType eWindowType, int pButton, int a5) |
0 | 1780 { |
1781 unsigned int uNextFreeWindowID; // ebp@1 | |
1782 //int *v8; // eax@1 | |
1783 //GUIWindow *pWindow; // esi@4 | |
1784 int v10; // eax@4 | |
1785 unsigned int v11; // ebx@15 | |
1786 NPCData *v12; // ebp@15 | |
1787 void *v13; // ecx@18 | |
1788 bool v14; // eax@20 | |
1789 void *v15; // ecx@23 | |
1790 bool v16; // eax@25 | |
1791 void *v17; // ecx@28 | |
1792 bool v18; // eax@30 | |
1793 void *v19; // ecx@33 | |
1794 bool v20; // eax@35 | |
1795 void *v21; // ecx@38 | |
1796 bool v22; // eax@40 | |
1797 void *v23; // ecx@43 | |
1798 bool v24; // eax@45 | |
1799 int v25; // eax@65 | |
1800 unsigned int v26; // ebx@65 | |
1801 char *v27; // eax@71 | |
1802 const char *v29; // [sp-8h] [bp-18h]@68 | |
1803 char *v30; // [sp-4h] [bp-14h]@68 | |
1804 int uWidtha; // [sp+14h] [bp+4h]@66 | |
1805 int a4a; // [sp+20h] [bp+10h]@15 | |
1806 | |
1807 uNextFreeWindowID = 0; | |
1808 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID) | |
1809 { | |
1810 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null) | |
1811 break; | |
1812 } | |
1813 | |
1814 auto pWindow = &pWindowList[uNextFreeWindowID]; | |
1815 pWindow->uFrameWidth = uWidth; | |
1816 pWindow->uFrameZ = uX + uWidth - 1; | |
1817 pWindow->uFrameW = uY + uHeight - 1; | |
11 | 1818 pWindow->ptr_1C = (void *)pButton; |
0 | 1819 pWindow->Hint = (char *)a5; |
1820 v10 = uNumVisibleWindows; | |
1821 pWindow->uFrameX = uX; | |
1822 ++v10; | |
1823 pWindow->uFrameY = uY; | |
1824 pWindow->uFrameHeight = uHeight; | |
1825 pWindow->eWindowType = eWindowType; | |
1826 pWindow->field_44 = 0; | |
1827 uNumVisibleWindows = v10; | |
1828 pWindow->field_3C = v10; | |
1829 pVisibleWindowsIdxs[v10] = uNextFreeWindowID + 1; | |
1830 if ( (signed int)eWindowType <= 20 ) | |
1831 { | |
1832 if (eWindowType != WINDOW_Chest) | |
1833 { | |
1834 switch (eWindowType) | |
1835 { | |
1836 case WINDOW_Book: | |
1837 pWindow->InitializeBookView(); | |
1838 break; | |
165 | 1839 case WINDOW_Dialogue: |
11 | 1840 pMainScreenNum = pCurrentScreen; |
151 | 1841 pCurrentScreen = SCREEN_NPC_DIALOGUE; |
11 | 1842 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, 0x71u, 0, 0, pGlobalTXT_LocalizationStrings[79], //"Exit" |
1843 (Texture *)(uTextureID_506438 != -1 ? &pIcons_LOD->pTextures[uTextureID_506438] : 0), 0); | |
0 | 1844 if ( pWindow->ptr_1C != (void *)1 ) |
1845 { | |
1846 a4a = 0; | |
1847 v11 = LOBYTE(pFontArrus->uFontHeight) - 3; | |
1848 v12 = GetNPCData(uDialogue_SpeakingActorNPC_ID); | |
1849 if ( sub_445C8B(uDialogue_SpeakingActorNPC_ID) == 1 ) | |
1850 { | |
1851 if ( v12->joins ) | |
1852 { | |
11 | 1853 pWindow->CreateButton(480, 130, 140, v11, 1, 0, 0x88u, 0xDu, 0, "", 0); |
0 | 1854 a4a = 1; |
1855 } | |
1856 v13 = (void *)v12->bDrawSomeAnim; | |
1857 if ( v13 ) | |
1858 { | |
1859 if ( a4a < 4 ) | |
1860 { | |
1861 v14 = sub_4466C4(v13); | |
1862 if ( v14 == 1 || v14 == 2 ) | |
11 | 1863 pWindow->CreateButton(0x1E0u, a4a++ * v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x13u, 0, "", 0); |
0 | 1864 } |
1865 } | |
130 | 1866 v15 = (void *)v12->_anim_current_time; |
0 | 1867 if ( v15 ) |
1868 { | |
1869 if ( a4a < 4 ) | |
1870 { | |
1871 v16 = sub_4466C4(v15); | |
1872 if ( v16 == 1 || v16 == 2 ) | |
11 | 1873 pWindow->CreateButton(0x1E0u, a4a++ * v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x14u, 0, "", 0); |
0 | 1874 } |
1875 } | |
130 | 1876 v17 = (void *)v12->_anim_end_time; |
0 | 1877 if ( v17 ) |
1878 { | |
1879 if ( a4a < 4 ) | |
1880 { | |
1881 v18 = sub_4466C4(v17); | |
1882 if ( v18 == 1 || v18 == 2 ) | |
11 | 1883 pWindow->CreateButton( 0x1E0u, a4a++ * v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x15u, 0, "", 0); |
0 | 1884 } |
1885 } | |
1886 v19 = (void *)v12->evtd; | |
1887 if ( v19 ) | |
1888 { | |
1889 if ( a4a < 4 ) | |
1890 { | |
1891 v20 = sub_4466C4(v19); | |
1892 if ( v20 == 1 || v20 == 2 ) | |
11 | 1893 pWindow->CreateButton(0x1E0u, a4a++ * v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x16u, 0, "", 0); |
0 | 1894 } |
1895 } | |
1896 v21 = (void *)v12->evte; | |
1897 if ( v21 ) | |
1898 { | |
1899 if ( a4a < 4 ) | |
1900 { | |
1901 v22 = sub_4466C4(v21); | |
1902 if ( v22 == 1 || v22 == 2 ) | |
11 | 1903 pWindow->CreateButton(0x1E0u, a4a++ * v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x17u, 0, "", 0); |
0 | 1904 } |
1905 } | |
1906 v23 = (void *)v12->evtf; | |
1907 if ( v23 ) | |
1908 { | |
1909 if ( a4a < 4 ) | |
1910 { | |
1911 v24 = sub_4466C4(v23); | |
1912 if ( v24 == 1 || v24 == 2 ) | |
11 | 1913 pWindow->CreateButton(0x1E0u, a4a++ * v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x18u, 0, "", 0); |
0 | 1914 } |
1915 } | |
1916 } | |
1917 else | |
1918 { | |
1919 if ( v12->joins ) | |
1920 { | |
11 | 1921 pWindow->CreateButton(0x1E0u, 0x82u, 0x8Cu, v11, 1, 0, 0x88u, 0x4Du, 0, pGlobalTXT_LocalizationStrings[407], 0);//Подробнее |
0 | 1922 if ( v12->uFlags & 0x80 ) |
1923 { | |
11 | 1924 sprintf(pTmpBuf, pGlobalTXT_LocalizationStrings[408], v12->pName); //Отпустить |
0 | 1925 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x4Cu, 0, pTmpBuf, 0); |
1926 } | |
1927 else | |
1928 { | |
11 | 1929 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x4Cu, 0, pGlobalTXT_LocalizationStrings[406], 0);//Нанять |
0 | 1930 } |
1931 a4a = 2; | |
1932 } | |
1933 } | |
1934 pWindow->_41D08F(a4a, 1, 0, 1); | |
1935 } | |
1936 break; | |
11 | 1937 case WINDOW_ChangeLocation: |
1938 pMainScreenNum = pCurrentScreen; | |
151 | 1939 pCurrentScreen = SCREEN_CHANGE_LOCATION; |
11 | 1940 pBtn_ExitCancel = pWindow->CreateButton(0x236u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, 0x5Bu, 0, 0x4Eu, pGlobalTXT_LocalizationStrings[156],//Остаться в этой области |
1941 (Texture *)(uTextureID_BUTTDESC2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTDESC2] : 0), 0); | |
1942 pBtn_YES = pWindow->CreateButton(0x1E6u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, 0x5Au, 0, 0x59u, pWindow->Hint, | |
1943 (Texture *)(uTextureID_BUTTYES2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTYES2] : 0), 0); | |
165 | 1944 pWindow->CreateButton(pNPCPortraits_x, pNPCPortraits_y, 0x3Fu, 0x49u, 1, 0, 0x5Au, 1u, 0x20u, pWindow->Hint, 0, 0, 0); |
0 | 1945 pWindow->CreateButton(8u, 8u, 0x1CCu, 0x158u, 1, 0, 0x5Au, 1u, 0, pWindow->Hint, 0); |
1946 break; | |
11 | 1947 case WINDOW_SpellBook: // окно книги заклов |
0 | 1948 InitializeBookTextures(); |
11 | 1949 pWindow->OpenSpellBook(); |
0 | 1950 break; |
11 | 1951 case WINDOW_GreetingNPC: // окно приветствия НПС |
1952 pMainScreenNum = pCurrentScreen; | |
3 | 1953 pKeyActionMap->EnterText(0, 15, pWindow); |
151 | 1954 pCurrentScreen = SCREEN_BRANCHLESS_NPC_DIALOG; |
0 | 1955 break; |
1956 } | |
1957 return pWindow; | |
1958 } | |
11 | 1959 //LABEL_62: |
0 | 1960 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 1u, 0x31u, "", 0); |
1961 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 2u, 0x32u, "", 0); | |
1962 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 3u, 0x33u, "", 0); | |
1963 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 4u, 0x34u, "", 0); | |
1964 pWindow->CreateButton(0, 0, 0, 0, 1, 0, 0xB0u, 0, 9u, "", 0); | |
1965 return pWindow; | |
1966 } | |
1967 if (eWindowType == WINDOW_HouseInterior) | |
1968 { | |
151 | 1969 pCurrentScreen = SCREEN_HOUSE; |
11 | 1970 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, 0x71u, 0, 0, pGlobalTXT_LocalizationStrings[80],//Выйти из здания |
1971 (Texture *)(uTextureID_506438 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_506438] : 0), 0); | |
0 | 1972 v25 = uNumDialogueNPCPortraits; |
1973 v26 = 0; | |
1974 if ( uNumDialogueNPCPortraits > 0 ) | |
1975 { | |
1976 do | |
1977 { | |
1978 uWidtha = v26 + 1; | |
1979 if ( v26 + 1 == v25 && uHouse_ExitPic ) | |
1980 { | |
1981 v30 = pMapStats->pInfos[uHouse_ExitPic].pName; | |
11 | 1982 v29 = pGlobalTXT_LocalizationStrings[411];//Войти в ^Pv[%s] |
0 | 1983 } |
1984 else | |
1985 { | |
1986 if ( v26 || !dword_591080 ) | |
1987 v27 = array_5913D8[v26 - (dword_591080 != 0)]->pName; | |
1988 else | |
1989 //v27 = (char *)p2DEvents_minus1_::08[13 * a4]; | |
11 | 1990 v27 = (char *)p2DEvents[pButton - 1].pProprieterName; |
0 | 1991 v30 = v27; |
11 | 1992 v29 = pGlobalTXT_LocalizationStrings[435];//Побеседовать с ^Pt[%s] |
0 | 1993 } |
1994 sprintf(&byte_591180[100 * v26], v29, v30); | |
165 | 1995 array_5913D8[v26 + 7] = (NPCData *)pWindow->CreateButton(*(&pNPCPortraits_x + v26 + 6 * uNumDialogueNPCPortraits - 6), |
1996 *(&pNPCPortraits_y + v26 + 6 * uNumDialogueNPCPortraits - 6), | |
11 | 1997 0x3Fu, 0x49u, 1, 0, 0x19Au, v26, 0, &byte_591180[100 * v26], 0, 0, 0); |
0 | 1998 ++v26; |
1999 v25 = uNumDialogueNPCPortraits; | |
2000 } | |
2001 while ( uWidtha < uNumDialogueNPCPortraits ); | |
2002 } | |
2003 if ( v25 == 1 ) | |
2004 { | |
2005 ptr_507BC0 = &pWindowList[uNextFreeWindowID]; | |
2006 _4B4224_UpdateNPCTopics(0); | |
2007 } | |
2008 } | |
2009 else | |
2010 { | |
158 | 2011 if (eWindowType == WINDOW_Transition) |
0 | 2012 { |
11 | 2013 pMainScreenNum = pCurrentScreen; |
151 | 2014 pCurrentScreen = SCREEN_INPUT_BLV; |
11 | 2015 pBtn_ExitCancel = pWindow->CreateButton(0x236u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, 0x19Cu, 0, 0x4Eu, pGlobalTXT_LocalizationStrings[34],//Отмена |
2016 (Texture *)(uTextureID_BUTTDESC2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTDESC2] : 0), 0); | |
2017 pBtn_YES = pWindow->CreateButton(0x1E6u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, 0x19Bu, 0, 0x59u, pWindow->Hint, | |
2018 (Texture *)(uTextureID_BUTTYES2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTYES2] : 0), 0); | |
165 | 2019 pWindow->CreateButton(pNPCPortraits_x, pNPCPortraits_y, 0x3Fu, 0x49u, 1, 0, 0x19Bu, 1, 0x20u, pWindow->Hint, 0); |
0 | 2020 pWindow->CreateButton(8u, 8u, 0x1CCu, 0x158u, 1, 0, 0x19Bu, 1u, 0, pWindow->Hint, 0); |
2021 return pWindow; | |
2022 } | |
2023 if (eWindowType == WINDOW_1B) | |
2024 { | |
2025 pEventTimer->Pause(); | |
2026 pAudioPlayer->StopChannels(-1, -1); | |
2027 pMouse->SetCursorBitmap("MICON2"); | |
11 | 2028 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);//Выберите цель |
0 | 2029 return pWindow; |
2030 } | |
158 | 2031 if (eWindowType == WINDOW_Scroll) |
11 | 2032 //goto LABEL_62; |
2033 { | |
2034 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 1u, 0x31u, "", 0); | |
2035 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 2u, 0x32u, "", 0); | |
2036 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 3u, 0x33u, "", 0); | |
2037 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 4u, 0x34u, "", 0); | |
2038 pWindow->CreateButton(0, 0, 0, 0, 1, 0, 0xB0u, 0, 9u, "", 0); | |
2039 return pWindow; | |
2040 } | |
0 | 2041 if (eWindowType == WINDOW_1F) |
2042 { | |
2043 pMouse->SetCursorBitmap("MICON2"); | |
11 | 2044 pBtn_ExitCancel = pWindow->CreateButton(0x188u, 0x13Eu, 0x4Bu, 0x21u, 1, 0, 0x71u, 0, 0, pGlobalTXT_LocalizationStrings[34],//Отмена |
2045 (Texture *)(uTextureID_BUTTDESC2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTDESC2] : 0), 0); | |
2046 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2);//Выбрать цель | |
0 | 2047 ++pIcons_LOD->uTexturePacksCount; |
2048 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103; | |
151 | 2049 pCurrentScreen = SCREEN_CASTING; |
0 | 2050 if ( !pIcons_LOD->uNumPrevLoadedFiles ) |
2051 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
2052 } | |
2053 } | |
2054 return pWindow; | |
2055 } |