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