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