Mercurial > mm7
annotate GUIWindow.cpp @ 1993:a9ca837744d7
sync with git
author | zipi |
---|---|
date | Sun, 03 Nov 2013 10:31:01 +0000 |
parents | c1c74df0a33e |
children | 2bcb4ec491cb |
rev | line source |
---|---|
1165
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
1 #ifdef _MSC_VER |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
2 #define _CRT_SECURE_NO_WARNINGS |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
3 #endif |
29a8defbad9e
temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents:
1160
diff
changeset
|
4 |
0 | 5 #include "GUIWindow.h" |
6 #include "GUIFont.h" | |
7 #include "Party.h" | |
8 #include "LOD.h" | |
9 #include "Keyboard.h" | |
10 #include "Math.h" | |
11 #include "VideoPlayer.h" | |
12 #include "MapInfo.h" | |
13 #include "Time.h" | |
14 #include "AudioPlayer.h" | |
15 #include "Mouse.h" | |
16 #include "Viewport.h" | |
17 #include "Render.h" | |
18 #include "PlayerFrameTable.h" | |
19 #include "SaveLoad.h" | |
20 #include "StorylineTextTable.h" | |
21 #include "Events2D.h" | |
1299 | 22 #include "UI\UIHouses.h" |
1310 | 23 #include "UI\UIBooks.h" |
189 | 24 #include "texts.h" |
81
377535d6e366
structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents:
74
diff
changeset
|
25 #include "Autonotes.h" |
949 | 26 #include "Awards.h" |
1297 | 27 #include "Chest.h" |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1591
diff
changeset
|
28 #include "Outdoor.h" |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1639
diff
changeset
|
29 #include "Game.h" |
1913 | 30 #include "IconFrameTable.h" |
0 | 31 |
32 | |
33 #include "mm7_data.h" | |
34 | |
1268 | 35 typedef struct _RGBColor |
36 { | |
37 unsigned char R; | |
38 unsigned char B; | |
39 unsigned char G; | |
40 }RGBColor; | |
0 | 41 |
42 | |
1268 | 43 std::array<RGBColor, 20> spell_tooltip_colors={{ |
44 {0x96, 0xD4, 0xFF}, | |
45 {0xFF, 0x80, 0x00}, | |
46 {0xFF, 0xFF, 0x9B}, | |
47 {0xE1, 0xE1, 0xE1}, | |
48 {0x80, 0x80, 0x80}, | |
49 {0x96, 0xD4, 0xFF}, | |
50 {0xFF, 0x55, 0x00}, | |
51 {0x96, 0xD4, 0xFF}, | |
52 {0xFF, 0x55, 0x00}, | |
53 {0xE1, 0xE1, 0xE1}, | |
54 {0xFF, 0x55, 0x00}, | |
55 {0x96, 0xD4, 0xFF}, | |
56 {0xEB, 0x0F, 0xFF}, | |
57 {0xFF, 0x80, 0x00}, | |
58 {0x96, 0xD4, 0xFF}, | |
59 {0x80, 0x80, 0x80}, | |
60 {0xFF, 0x55, 0x00}, | |
61 {0x00, 0x80, 0xFF}, | |
62 {0x00, 0x80, 0xFF}, | |
63 {0x96, 0xD4, 0xFF}}}; | |
64 | |
0 | 65 |
66 int pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[1]; // idb | |
67 struct GUIWindow *pWindow_MainMenu; | |
1202 | 68 std::array<struct GUIWindow, 20> pWindowList; |
0 | 69 |
70 struct GUIMessageQueue *pMessageQueue_50CBD0 = new GUIMessageQueue; | |
1012 | 71 struct GUIMessageQueue *pMessageQueue_50C9E8 = new GUIMessageQueue; |
0 | 72 |
1038 | 73 |
74 | |
75 | |
76 | |
77 | |
783 | 78 // inlined |
79 //----- (mm6c::00420520) -------------------------------------------------- | |
80 void GUIMessageQueue::Flush() | |
81 { | |
82 if (uNumMessages) | |
83 uNumMessages = pMessages[0].field_8 != 0; | |
84 } | |
85 | |
86 | |
0 | 87 //----- (004356B9) -------------------------------------------------------- |
88 void GUIMessageQueue::PopMessage(enum UIMessageType *pType, int *pParam, int *a4) | |
89 { | |
90 signed int v4; // edx@1 | |
91 GUIMessage *v5; // eax@2 | |
92 | |
93 v4 = 0; | |
94 if ( this->uNumMessages ) | |
95 { | |
96 v5 = this->pMessages; | |
97 *pType = this->pMessages[0].eType; | |
98 *pParam = this->pMessages[0].param; | |
99 *a4 = this->pMessages[0].field_8; | |
100 if ( (signed int)(this->uNumMessages - 1) > 0 ) | |
101 { | |
102 do | |
103 { | |
104 v5->eType = v5[1].eType; | |
105 v5->param = v5[1].param; | |
106 v5->field_8 = v5[1].field_8; | |
107 ++v4; | |
108 ++v5; | |
109 } | |
110 while ( v4 < (signed int)(this->uNumMessages - 1) ); | |
111 } | |
112 --this->uNumMessages; | |
113 } | |
114 } | |
115 | |
116 | |
117 | |
994 | 118 |
119 | |
120 | |
121 //----- (0041B4E1) -------------------------------------------------------- | |
122 int __fastcall GUI_ReplaceHotkey(unsigned __int8 uOldHotkey, unsigned __int8 uNewHotkey, char bFirstCall) | |
123 { | |
124 unsigned __int8 v3; // bl@1 | |
125 int result; // eax@1 | |
126 int i; // edx@2 | |
127 GUIButton *j; // ecx@3 | |
128 int k; // edx@7 | |
129 GUIButton *l; // ecx@8 | |
130 unsigned __int8 v9; // [sp+4h] [bp-8h]@1 | |
131 char v10; // [sp+8h] [bp-4h]@1 | |
132 | |
133 v3 = uNewHotkey; | |
134 v10 = toupper(uOldHotkey); | |
135 result = toupper(v3); | |
136 v9 = result; | |
137 if ( bFirstCall ) | |
138 { | |
139 for ( i = uNumVisibleWindows; i >= 0; --i ) | |
140 { | |
141 result = 84 * pVisibleWindowsIdxs[i]; | |
142 for ( j = pWindowList[pVisibleWindowsIdxs[i] - 1].pControlsHead; j; j = j->pNext ) | |
143 j->field_28 = 0; | |
144 } | |
145 } | |
146 for ( k = uNumVisibleWindows; k >= 0; --k ) | |
147 { | |
148 result = 84 * pVisibleWindowsIdxs[k]; | |
149 for ( l = pWindowList[pVisibleWindowsIdxs[k] - 1].pControlsHead; l; l = l->pNext ) | |
150 { | |
151 LOBYTE(result) = v10; | |
152 if ( l->uHotkey == v10 ) | |
153 { | |
154 if ( !l->field_28 ) | |
155 { | |
156 LOBYTE(result) = v9; | |
157 l->field_28 = 1; | |
158 l->uHotkey = v9; | |
159 } | |
160 } | |
161 } | |
162 } | |
163 return result; | |
164 } | |
165 | |
166 | |
167 | |
168 | |
169 //----- (0041B438) -------------------------------------------------------- | |
170 GUIButton *__fastcall GUI_HandleHotkey(unsigned __int8 uHotkey) | |
171 { | |
172 char v1; // al@1 | |
173 int v2; // esi@1 | |
174 char v3; // dl@1 | |
175 GUIWindow *v4; // ecx@2 | |
176 GUIButton *result; // eax@2 | |
177 //int v6; // edx@12 | |
178 | |
179 v1 = toupper(uHotkey); | |
180 v2 = uNumVisibleWindows; | |
181 v3 = v1; | |
1210 | 182 for( v2 = uNumVisibleWindows; v2 >= 0 && pVisibleWindowsIdxs[v2] > 0; v2-- ) |
994 | 183 { |
1210 | 184 v4 = &pWindowList[pVisibleWindowsIdxs[v2] - 1]; |
185 for ( result = v4->pControlsHead; result; result = result->pNext ) | |
186 { | |
187 if ( result->uHotkey == v3 ) | |
188 { | |
189 pMessageQueue_50CBD0->AddMessage(result->msg, result->msg_param, 0); | |
190 return result; | |
191 } | |
192 } | |
193 if ( !v4->uFrameX && !v4->uFrameY && (v4->uFrameWidth == 640 && v4->uFrameHeight == 480) ) | |
194 break; | |
994 | 195 } |
196 return 0; | |
197 } | |
198 // 5075E0: using guessed type int pVisibleWindowsIdxs[20]; | |
199 | |
0 | 200 //----- (0041D73D) -------------------------------------------------------- |
1006 | 201 void GUIWindow::_41D73D_draw_buff_tooltip() |
202 { | |
1268 | 203 |
204 __int64 remaing_time; // ST28_8@11 | |
205 unsigned short text_color; | |
206 int Y_pos; // esi@11 | |
207 int string_count; // [sp+20h] [bp-4h]@7 | |
208 | |
209 | |
210 string_count = 0; | |
211 for (int i=0; i<20; ++i) | |
212 if ( pParty->pPartyBuffs[i].uExpireTime > 0i64 ) | |
213 ++string_count; | |
0 | 214 |
1268 | 215 uFrameHeight = pFontArrus->uFontHeight + 72; |
216 uFrameHeight += (string_count - 1) * pFontArrus->uFontHeight; | |
217 uFrameZ = uFrameWidth + uFrameX - 1; | |
218 uFrameW = uFrameY + uFrameHeight - 1; | |
219 DrawMessageBox(0); | |
220 DrawTitleText(pFontArrus, 0, 12, 0, pGlobalTXT_LocalizationStrings[451], 3u); | |
221 if ( !string_count ) | |
222 DrawTitleText(pFontComic, 0, 40, 0, pGlobalTXT_LocalizationStrings[153], 3u); | |
223 | |
224 GetTickCount(); | |
225 string_count = 0; | |
226 for (int i=0; i<20; ++i) | |
0 | 227 { |
1268 | 228 if ( pParty->pPartyBuffs[i].uExpireTime>0i64 )//!!! |
229 { | |
230 remaing_time = pParty->pPartyBuffs[i].uExpireTime- pParty->uTimePlayed;//!!! | |
231 Y_pos = string_count * pFontComic->uFontHeight + 40; | |
232 text_color = TargetColor(spell_tooltip_colors[i].R, spell_tooltip_colors[i].G, spell_tooltip_colors[i].B); | |
233 DrawText(pFontComic, 52, Y_pos, text_color, aSpellNames[i], 0, 0, 0); | |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
234 DrawBuff_remaining_time_string(Y_pos, this, remaing_time, pFontComic); |
1268 | 235 ++string_count; |
236 } | |
0 | 237 } |
238 } | |
239 | |
240 | |
241 //----- (0041D08F) -------------------------------------------------------- | |
1411 | 242 void GUIWindow::_41D08F_set_keyboard_control_group(int num_buttons, int a3, int a4, int a5) |
0 | 243 { |
1411 | 244 if (num_buttons) |
0 | 245 { |
1411 | 246 this->pNumPresenceButton = num_buttons; |
0 | 247 this->field_30 = a3; |
248 this->field_34 = a4; | |
249 this->pCurrentPosActiveItem = a5; | |
250 this->pStartingPosActiveItem = a5; | |
972 | 251 this->receives_keyboard_input = true; |
0 | 252 } |
253 else | |
254 { | |
255 this->pNumPresenceButton = 0; | |
256 this->field_30 = a3; | |
257 this->field_34 = a4; | |
258 this->pCurrentPosActiveItem = 0; | |
259 this->pStartingPosActiveItem = 0; | |
972 | 260 this->receives_keyboard_input = false; |
0 | 261 } |
262 } | |
263 | |
264 | |
265 //----- (0041C26A) -------------------------------------------------------- | |
266 void GUIWindow::Release() | |
267 { | |
961 | 268 //GUIWindow *v1; // esi@1 |
0 | 269 int i; // edi@20 |
961 | 270 //GUIButton *v8; // eax@26 |
271 GUIButton *pNextBtn; // edi@27 | |
272 //int v10; // esi@28 | |
273 //int v11; // ecx@28 | |
0 | 274 int v12; // edx@29 |
275 | |
961 | 276 //v1 = this; |
0 | 277 if ( !this ) |
278 return; | |
696 | 279 |
280 switch( this->eWindowType ) | |
0 | 281 { |
696 | 282 case WINDOW_GreetingNPC: |
283 { | |
1006 | 284 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 285 pCurrentScreen = pMainScreenNum; |
1459 | 286 pKeyActionMap->SetWindowInputStatus(WINDOW_INPUT_CANCELLED); |
696 | 287 break; |
288 } | |
289 case WINDOW_HouseInterior: | |
290 { | |
291 for ( i = 0; i < uNumDialogueNPCPortraits; ++i ) | |
292 pDialogueNPCPortraits[i]->Release(); | |
293 uNumDialogueNPCPortraits = 0; | |
294 pTexture_Dialogue_Background->Release(); | |
0 | 295 |
1006 | 296 pIcons_LOD->SyncLoadedFilesCount(); |
1405
c0b273d33338
RemoveTexturesPackFromTextureList and RemoveTexturesFromTextureList
Ritor1
parents:
1404
diff
changeset
|
297 pIcons_LOD->RemoveTexturesPackFromTextureList(); |
696 | 298 dword_5C35D4 = 0; |
299 if ( bFlipOnExit ) | |
300 { | |
1638
ccde94f02b75
class IndoorCamera split into BLVRenderParams and ODMRenderParams
Nomad
parents:
1591
diff
changeset
|
301 pParty->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (stru_5C6E00->uIntegerPi + pParty->sRotationY); |
1640
afc1c3514dd5
Some common code from ODM and BLV RenderParams moved to IndoorCameraD3D
Nomad
parents:
1639
diff
changeset
|
302 pGame->pIndoorCameraD3D->sRotationY = pParty->sRotationY; |
696 | 303 } |
304 pParty->uFlags |= 2u; | |
305 break; | |
306 } | |
307 case WINDOW_Transition: | |
308 { | |
309 pVideoPlayer->Unload(); | |
310 pTexture_outside->Release(); | |
311 pTexture_Dialogue_Background->Release(); | |
1006 | 312 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 313 pCurrentScreen = pMainScreenNum; |
314 break; | |
315 } | |
316 case WINDOW_SpellBook: | |
317 { | |
1402 | 318 OnCloseSpellBookPage(); |
319 OnCloseSpellBook(); | |
696 | 320 break; |
321 } | |
322 case WINDOW_Book: | |
323 { | |
1402 | 324 OnCloseBook(); |
696 | 325 break; |
326 } | |
1402 | 327 case WINDOW_ChangeLocation: |
328 { | |
0 | 329 pTexture_outside->Release(); |
330 pTexture_Dialogue_Background->Release(); | |
1006 | 331 pIcons_LOD->SyncLoadedFilesCount(); |
11 | 332 pCurrentScreen = pMainScreenNum; |
696 | 333 break; |
334 } | |
335 case WINDOW_Dialogue: | |
336 { | |
337 if ( !dword_591084 ) | |
338 pDialogueNPCPortraits[0]->Release(); | |
339 uNumDialogueNPCPortraits = 0; | |
340 pTexture_Dialogue_Background->Release(); | |
341 | |
1006 | 342 pIcons_LOD->SyncLoadedFilesCount(); |
696 | 343 pCurrentScreen = pMainScreenNum; |
344 } | |
1942 | 345 case WINDOW_null: |
346 return; | |
696 | 347 default: |
348 { | |
349 break; | |
350 } | |
0 | 351 } |
961 | 352 //v8 = this->pControlsHead; |
353 if ( this->pControlsHead ) | |
0 | 354 { |
355 do | |
356 { | |
961 | 357 pNextBtn = this->pControlsHead->pNext; |
1583 | 358 free(this->pControlsHead); |
961 | 359 this->pControlsHead = pNextBtn; |
0 | 360 } |
961 | 361 while ( pNextBtn ); |
0 | 362 } |
961 | 363 this->pControlsHead = 0; |
364 this->pControlsTail = 0; | |
365 this->uNumControls = 0; | |
366 this->eWindowType = WINDOW_null; | |
367 while ( this->numVisibleWindows < uNumVisibleWindows ) | |
0 | 368 { |
961 | 369 v12 = pVisibleWindowsIdxs[this->numVisibleWindows + 1]; |
370 pVisibleWindowsIdxs[this->numVisibleWindows] = v12; | |
962 | 371 --pWindowList[v12 - 1].numVisibleWindows; |
961 | 372 ++this->numVisibleWindows; |
0 | 373 } |
961 | 374 pVisibleWindowsIdxs[uNumVisibleWindows] = 0; |
375 uNumVisibleWindows = uNumVisibleWindows - 1; | |
0 | 376 } |
377 | |
378 | |
379 | |
380 | |
381 | |
382 | |
383 //----- (0041CD3B) -------------------------------------------------------- | |
384 GUIButton *GUIWindow::GetControl(unsigned int uID) | |
385 { | |
386 GUIButton *result; // eax@1 | |
387 | |
388 result = this->pControlsHead; | |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1411
diff
changeset
|
389 for ( uID; uID; --uID ) |
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1411
diff
changeset
|
390 result = result->pNext; |
0 | 391 return result; |
392 } | |
393 | |
394 //----- (00411BFC) -------------------------------------------------------- | |
395 void GUIWindow::InitializeBookView() | |
396 { | |
1453 | 397 char *pString; // eax@12 |
398 int pTextHeight; // eax@12 | |
399 //__int64 page_count; // qax@12 | |
400 unsigned int page_count; // esi@12 | |
0 | 401 unsigned __int16 v18; // ax@38 |
1310 | 402 signed int max_beacons; // [sp+10h] [bp-5Ch]@38 |
1453 | 403 GUIWindow journal_window; // [sp+18h] [bp-54h]@8 |
0 | 404 |
405 pAudioPlayer->StopChannels(-1, -1); | |
406 InitializeBookFonts(); | |
1453 | 407 this->CreateButton(475, 445, 158, 34, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); // Close |
151 | 408 pCurrentScreen = SCREEN_BOOKS; |
1446 | 409 full_num_items_in_book = 0; |
410 books_primary_item_per_page = 0; | |
411 books_page_number = 0; | |
949 | 412 num_achieved_awards = 0; |
1453 | 413 switch (this->par1C) |
414 { | |
415 case WINDOW_LloydsBeacon: | |
416 { | |
688 | 417 byte_506360 = 0; |
948 | 418 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("lb_bordr", TEXTURE_16BIT_PALETTE); |
419 pTexture_LloydBeacons[0] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); | |
1310 | 420 pTexture_LloydBeacons[1] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); |
1453 | 421 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); |
422 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
948 | 423 |
1453 | 424 pBtn_Book_1 = this->CreateButton(415, 13, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 0, 0, pGlobalTXT_LocalizationStrings[375], 0); // Set Beacon |
425 pBtn_Book_2 = this->CreateButton(415, 48, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 1, 0, pGlobalTXT_LocalizationStrings[523], 0); // Recall Beacon | |
1310 | 426 |
427 max_beacons = 1; | |
1453 | 428 v18 = pParty->pPlayers[_506348_current_lloyd_playerid].pActiveSkills[PLAYER_SKILL_WATER]; |
1310 | 429 if ( v18 & 0x100 || (v18 & 0x80) ) |
430 max_beacons = 5; | |
431 else if ( v18 & 0x40 ) | |
432 max_beacons = 3; | |
433 | |
1453 | 434 for ( int i = 0; i < max_beacons; ++i ) |
1430 | 435 CreateButton(pLloydsBeaconsPreviewXs[i], pLloydsBeaconsPreviewYs[i], |
1310 | 436 92, 68, 1, 180, UIMSG_InstallBeacon, i, 0, "", 0); |
437 | |
1453 | 438 for ( int i = 0; i < 5; ++i ) |
439 { | |
440 if (pParty->pPlayers[_506348_current_lloyd_playerid].pInstalledBeacons[i].uBeaconTime >= (signed __int64)pParty->uTimePlayed) | |
441 LoadThumbnailLloydTexture(i, _506348_current_lloyd_playerid + 1); | |
442 else | |
443 memset(&pParty->pPlayers[_506348_current_lloyd_playerid].pInstalledBeacons[i], 0, sizeof(LloydBeacon)); | |
444 } | |
445 } | |
446 break; | |
710 | 447 |
448 case WINDOW_TownPortal: | |
449 { | |
948 | 450 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("townport", TEXTURE_16BIT_PALETTE); |
710 | 451 pTexture_TownPortalIcons[0] = pIcons_LOD->LoadTexturePtr("tpharmndy", TEXTURE_16BIT_PALETTE); |
452 pTexture_TownPortalIcons[1] = pIcons_LOD->LoadTexturePtr("tpelf", TEXTURE_16BIT_PALETTE); | |
453 pTexture_TownPortalIcons[2] = pIcons_LOD->LoadTexturePtr("tpwarlock", TEXTURE_16BIT_PALETTE); | |
454 pTexture_TownPortalIcons[3] = pIcons_LOD->LoadTexturePtr("tpisland", TEXTURE_16BIT_PALETTE); | |
455 pTexture_TownPortalIcons[4] = pIcons_LOD->LoadTexturePtr("tpheaven", TEXTURE_16BIT_PALETTE); | |
730 | 456 pTexture_TownPortalIcons[5] = pIcons_LOD->LoadTexturePtr("tphell", TEXTURE_16BIT_PALETTE); |
1393 | 457 |
458 static int pTownPortalBook_ws[6] = { 80, 66, 68, 72, 67, 74}; | |
459 static int pTownPortalBook_hs[6] = { 55, 56, 65, 67, 67, 59}; | |
1453 | 460 for ( uint i = 0; i < 6; ++i ) |
461 this->CreateButton(pTownPortalBook_xs[i], pTownPortalBook_ys[i], pTownPortalBook_ws[i], pTownPortalBook_hs[i], 1, 182, UIMSG_ClickTownInTP, i, 0, "", nullptr); | |
1310 | 462 |
710 | 463 } |
464 break; | |
465 | |
466 case WINDOW_QuestBook: | |
948 | 467 { |
468 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("sbquiknot", TEXTURE_16BIT_PALETTE); | |
469 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr( "divbar", TEXTURE_16BIT_PALETTE); | |
1453 | 470 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); |
471 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
472 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
473 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
474 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, | |
475 pTex_book_button1_on->uTextureWidth, pTex_book_button1_on->uTextureHeight, | |
996 | 476 1, 0, UIMSG_ClickBooksBtn, 0xBu, 0, pGlobalTXT_LocalizationStrings[192],// "Scroll Up" |
1453 | 477 pTex_book_button1_on, 0); |
478 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, | |
479 pTex_book_button2_on->uTextureHeight, pTex_book_button2_on->uTextureHeight, | |
996 | 480 1, 0, UIMSG_ClickBooksBtn, 0xAu, 0, pGlobalTXT_LocalizationStrings[193],// "Scroll Down" |
1453 | 481 pTex_book_button2_on, 0); |
949 | 482 num_achieved_awards = 0; |
1202 | 483 memset(achieved_awards.data(), 0, 4000); |
1453 | 484 for ( uint i = books_primary_item_per_page; i < 512; ++i ) |
485 { | |
486 if ( _449B57_test_bit(pParty->_quest_bits, i) && pQuestTable[i] ) | |
487 { | |
488 achieved_awards[num_achieved_awards] = (AwardType)i; | |
489 ++num_achieved_awards; | |
490 } | |
491 } | |
492 full_num_items_in_book = num_achieved_awards; | |
949 | 493 num_achieved_awards = 0; |
1453 | 494 } |
495 break; | |
981 | 496 |
1453 | 497 case WINDOW_AutonotesBook: |
498 { | |
948 | 499 pTexture_AutonotesBook = pIcons_LOD->LoadTexturePtr("sbautnot", TEXTURE_16BIT_PALETTE); |
500 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr("divbar", TEXTURE_16BIT_PALETTE); | |
1453 | 501 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); |
502 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
503 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
504 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
505 pTex_book_button3_on = pIcons_LOD->LoadTexturePtr("tab-an-1b", TEXTURE_16BIT_PALETTE); | |
506 pTex_book_button3_off = pIcons_LOD->LoadTexturePtr("tab-an-1a", TEXTURE_16BIT_PALETTE); | |
507 pTex_book_button4_on = pIcons_LOD->LoadTexturePtr("tab-an-2b", TEXTURE_16BIT_PALETTE); | |
508 pTex_book_button4_off = pIcons_LOD->LoadTexturePtr("tab-an-2a", TEXTURE_16BIT_PALETTE); | |
509 pTex_book_button5_on = pIcons_LOD->LoadTexturePtr("tab-an-3b", TEXTURE_16BIT_PALETTE); | |
510 pTex_book_button5_off = pIcons_LOD->LoadTexturePtr("tab-an-3a", TEXTURE_16BIT_PALETTE); | |
511 pTex_book_button6_on = pIcons_LOD->LoadTexturePtr("tab-an-5b", TEXTURE_16BIT_PALETTE); | |
512 pTex_book_button6_off = pIcons_LOD->LoadTexturePtr("tab-an-5a", TEXTURE_16BIT_PALETTE); | |
513 pTex_book_button7_on = pIcons_LOD->LoadTexturePtr("tab-an-4b", TEXTURE_16BIT_PALETTE); | |
514 pTex_book_button7_off = pIcons_LOD->LoadTexturePtr("tab-an-4a", TEXTURE_16BIT_PALETTE); | |
515 pTex_book_button8_on = pIcons_LOD->LoadTexturePtr("tab-an-8b", TEXTURE_16BIT_PALETTE); | |
516 pTex_book_button8_off = pIcons_LOD->LoadTexturePtr("tab-an-8a", TEXTURE_16BIT_PALETTE); | |
948 | 517 |
1453 | 518 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, |
519 UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[193], pTex_book_button1_on, 0); | |
520 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, | |
521 UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[192], pTex_book_button2_on, 0); | |
522 pBtn_Book_3 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, | |
523 UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[85], pTex_book_button3_on, 0); // "Potion Notes" | |
524 pBtn_Book_4 = this->CreateButton(pViewport->uViewportTL_X + 399, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, | |
525 UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[137], pTex_book_button4_on, 0); // "Fountain Notes" | |
526 pBtn_Book_5 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, | |
527 UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[8], pTex_book_button5_on, 0); // "Obelisk Notes" | |
528 pBtn_Book_6 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, | |
529 UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[141], pTex_book_button6_on, 0); // "Seer Notes" | |
530 pBtn_Autonotes_Misc = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 264, 50, 34, 1, 0, | |
531 UIMSG_ClickBooksBtn, 6, 0, pGlobalTXT_LocalizationStrings[123], pTex_book_button7_on, 0); // "Miscellaneous Notes" | |
532 pBtn_Autonotes_Instructors = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 302, 50, 34, 1, 0, | |
533 UIMSG_ClickBooksBtn, 7, 0, pGlobalTXT_LocalizationStrings[662], pTex_book_button8_on, 0); // "Instructors" | |
948 | 534 |
949 | 535 num_achieved_awards = 0; |
1453 | 536 for ( uint i = books_primary_item_per_page; i < 196; ++i ) |
537 { | |
538 if ( _506568_autonote_type == pAutonoteTxt[i].eType)//dword_72371C[2 * v10] ) | |
539 { | |
540 if ( i ) | |
541 { | |
542 if ( _449B57_test_bit(pParty->_autonote_bits, i) && pAutonoteTxt[i].pText ) | |
543 { | |
544 achieved_awards[num_achieved_awards] = (AwardType)i; | |
545 ++num_achieved_awards; | |
546 } | |
547 } | |
548 } | |
549 } | |
550 full_num_items_in_book = num_achieved_awards; | |
551 num_achieved_awards = 0; | |
552 } | |
553 break; | |
1310 | 554 |
1453 | 555 case WINDOW_MapsBook: |
556 { | |
688 | 557 dword_506364 = 1; |
948 | 558 pSpellBookPagesTextr_12 = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE); |
1453 | 559 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("zoom-on", TEXTURE_16BIT_PALETTE); |
560 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("zoot-on", TEXTURE_16BIT_PALETTE); | |
561 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("zoom-off", TEXTURE_16BIT_PALETTE); | |
562 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("zoot-off", TEXTURE_16BIT_PALETTE); | |
563 pTex_book_button3_on = pIcons_LOD->LoadTexturePtr("tabNon", TEXTURE_16BIT_PALETTE); | |
564 pTex_book_button3_off = pIcons_LOD->LoadTexturePtr("tabNoff", TEXTURE_16BIT_PALETTE); | |
565 pTex_book_button4_on = pIcons_LOD->LoadTexturePtr("tabSon", TEXTURE_16BIT_PALETTE); | |
566 pTex_book_button4_off = pIcons_LOD->LoadTexturePtr("tabSoff", TEXTURE_16BIT_PALETTE); | |
567 pTex_book_button5_on = pIcons_LOD->LoadTexturePtr("tabEon", TEXTURE_16BIT_PALETTE); | |
568 pTex_book_button5_off = pIcons_LOD->LoadTexturePtr("tabEoff", TEXTURE_16BIT_PALETTE); | |
569 pTex_book_button6_on = pIcons_LOD->LoadTexturePtr("tabWon", TEXTURE_16BIT_PALETTE); | |
570 pTex_book_button6_off = pIcons_LOD->LoadTexturePtr("tabWoff", TEXTURE_16BIT_PALETTE); | |
948 | 571 |
1453 | 572 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, |
573 UIMSG_ClickBooksBtn, 0, 0, pGlobalTXT_LocalizationStrings[251], pTex_book_button1_on, 0);// "Zoom In" | |
574 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, | |
575 UIMSG_ClickBooksBtn, 1, 0, pGlobalTXT_LocalizationStrings[252], pTex_book_button2_on, 0);// "Zoom Out" | |
576 pBtn_Book_3 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, | |
1310 | 577 UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[192], (Texture *)"", 0);// Scroll Up |
1453 | 578 pBtn_Book_4 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, |
1310 | 579 UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[193], (Texture *)"", 0);// Scroll Down |
1453 | 580 pBtn_Book_5 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, |
1310 | 581 UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[573], (Texture *)"", 0);// "Scroll Right" |
1453 | 582 pBtn_Book_6 = this->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, |
1310 | 583 UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[572], (Texture *)"", 0);// "Scroll Left" |
1453 | 584 } |
585 break; | |
948 | 586 |
1453 | 587 case WINDOW_CalendarBook: |
588 { | |
948 | 589 pSpellBookPagesTextr_13 = pIcons_LOD->LoadTexturePtr("sbdate-time", TEXTURE_16BIT_PALETTE); |
590 pTex_moon_new = pIcons_LOD->LoadTexturePtr("moon_new", TEXTURE_16BIT_PALETTE); | |
591 pTex_moon_4 = pIcons_LOD->LoadTexturePtr("moon_4", TEXTURE_16BIT_PALETTE); | |
592 pTex_moon_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE); | |
593 pTex_moon_2_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE); | |
594 pTex_moon_ful = pIcons_LOD->LoadTexturePtr("moon_ful", TEXTURE_16BIT_PALETTE); | |
1453 | 595 } |
596 break; | |
948 | 597 |
1453 | 598 case WINDOW_JournalBook: |
599 { | |
948 | 600 pSpellBookPagesTextr_11 = pIcons_LOD->LoadTexturePtr("sbplayrnot", TEXTURE_16BIT_PALETTE); |
1453 | 601 pTex_book_button1_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE); |
602 pTex_book_button2_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE); | |
603 pTex_book_button1_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE); | |
604 pTex_book_button2_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE); | |
948 | 605 |
1453 | 606 pBtn_Book_1 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, |
607 pTex_book_button1_on->uTextureWidth, pTex_book_button1_on->uTextureHeight, 1, 0, | |
608 UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[192], pTex_book_button1_on, 0); | |
609 pBtn_Book_2 = this->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, pTex_book_button2_on->uTextureHeight, | |
610 pTex_book_button2_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 10, 0, | |
611 pGlobalTXT_LocalizationStrings[193], pTex_book_button2_on, 0); | |
948 | 612 |
949 | 613 num_achieved_awards = 0; |
1453 | 614 journal_window.uFrameX = 48; |
615 journal_window.uFrameY = 70; | |
616 journal_window.uFrameWidth = 360; | |
617 journal_window.uFrameHeight = 264; | |
618 journal_window.uFrameZ = 407; | |
619 journal_window.uFrameHeight = (LOBYTE(pAutonoteFont->uFontHeight) - 3) * 264 / LOBYTE(pAutonoteFont->uFontHeight) - 3; | |
620 journal_window.uFrameW = journal_window.uFrameHeight + 69; | |
949 | 621 memset(&achieved_awards, 0, 4000); |
1453 | 622 memset(Journal_limitation_factor.data(), 0, 100); |
1446 | 623 if ( books_primary_item_per_page < 29 ) |
1453 | 624 { |
625 for ( int i = books_primary_item_per_page; i < books_primary_item_per_page + 31; i++ ) | |
626 { | |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1709
diff
changeset
|
627 if ( pParty->PartyTimes.HistoryEventTimes[i] > 0 ) |
688 | 628 { |
1453 | 629 if ( pStorylineText->StoreLine[i + 1].pText ) |
630 { | |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1709
diff
changeset
|
631 pString = BuildDialogueString(pStorylineText->StoreLine[i + 1].pText, uActiveCharacter - 1, 0, 0, 0, &pParty->PartyTimes.HistoryEventTimes[i]); |
1453 | 632 pTextHeight = pAutonoteFont->CalcTextHeight(pString, &journal_window, 1, 0); |
633 page_count = ((pTextHeight - (pAutonoteFont->uFontHeight - 3)) / (signed int)journal_window.uFrameHeight) + 1; | |
634 memset32((char *)&achieved_awards[num_achieved_awards] , i + 1, page_count); | |
635 for ( uint j = 0; j <= page_count - 1; ++j ) | |
636 Journal_limitation_factor[num_achieved_awards++] = j; | |
637 } | |
688 | 638 } |
1453 | 639 } |
688 | 640 } |
1453 | 641 full_num_items_in_book = num_achieved_awards; |
642 num_achieved_awards = 0; | |
643 } | |
644 break; | |
645 } | |
0 | 646 } |
647 | |
648 //----- (00415551) -------------------------------------------------------- | |
649 void GUIWindow::DrawMessageBox(int arg0) | |
650 { | |
651 unsigned int v2; // edi@1 | |
652 GUIWindow *v3; // ebx@1 | |
653 signed int v4; // esi@2 | |
654 unsigned int v5; // eax@2 | |
655 unsigned int v6; // edx@4 | |
656 unsigned int v7; // ecx@6 | |
657 unsigned int v8; // eax@9 | |
658 __int32 v9; // eax@10 | |
659 unsigned int v10; // eax@18 | |
660 LONG v11; // ecx@18 | |
661 unsigned int v12; // edx@18 | |
662 unsigned int v13; // eax@18 | |
663 const char *v14; // ecx@18 | |
664 int v15; // eax@19 | |
665 unsigned int v16; // esi@19 | |
666 const char *v17; // ebx@25 | |
667 int v18; // eax@26 | |
668 GUIWindow v19; // [sp+Ch] [bp-60h]@18 | |
669 POINT a2; // [sp+60h] [bp-Ch]@8 | |
670 unsigned int v21; // [sp+68h] [bp-4h]@18 | |
671 unsigned int v22; // [sp+74h] [bp+8h]@2 | |
672 unsigned int v23; // [sp+74h] [bp+8h]@18 | |
673 | |
674 v2 = 0; | |
675 v3 = this; | |
676 if ( arg0 ) | |
677 { | |
693 | 678 v4 = pViewport->uViewportTL_X; |
679 v5 = pViewport->uViewportBR_X; | |
680 v2 = pViewport->uViewportTL_Y; | |
681 v22 = pViewport->uViewportBR_Y; | |
0 | 682 } |
683 else | |
684 { | |
685 v4 = 0; | |
686 v5 = 640; | |
687 v22 = 480; | |
688 } | |
689 v6 = this->uFrameX; | |
690 if ( (signed int)this->uFrameX >= v4 ) | |
691 { | |
692 v7 = this->uFrameWidth; | |
693 if ( (signed int)(v7 + v6) <= (signed int)v5 ) | |
694 goto LABEL_9; | |
695 v3->uFrameX = v5 - v7; | |
696 } | |
697 else | |
698 { | |
699 this->uFrameX = v4; | |
700 } | |
701 v3->uFrameY = pMouse->GetCursorPos(&a2)->y + 30; | |
702 LABEL_9: | |
703 v8 = v3->uFrameY; | |
704 if ( (signed int)v8 >= (signed int)v2 ) | |
705 { | |
706 if ( (signed int)(v8 + v3->uFrameHeight) <= (signed int)v22 ) | |
707 goto LABEL_14; | |
708 v9 = pMouse->GetCursorPos(&a2)->y - v3->uFrameHeight - 30; | |
709 } | |
710 else | |
711 { | |
712 v9 = pMouse->GetCursorPos(&a2)->y + 30; | |
713 } | |
714 v3->uFrameY = v9; | |
715 LABEL_14: | |
716 if ( (signed int)v3->uFrameY < (signed int)v2 ) | |
717 v3->uFrameY = v2; | |
718 if ( (signed int)v3->uFrameX < v4 ) | |
719 v3->uFrameX = v4; | |
720 v10 = v3->uFrameWidth; | |
721 v11 = v3->uFrameX; | |
722 v12 = v3->uFrameY; | |
723 v21 = v10; | |
724 a2.y = v11; | |
725 v3->uFrameZ = v10 + v11 - 1; | |
726 v13 = v3->uFrameHeight; | |
727 v3->uFrameW = v13 + v12 - 1; | |
728 memcpy(&v19, v3, sizeof(v19)); | |
729 v19.uFrameX += 12; | |
730 v19.uFrameWidth -= 24; | |
731 v19.uFrameY += 12; | |
732 v19.uFrameHeight -= 12; | |
733 v19.uFrameZ = v19.uFrameWidth + v19.uFrameX - 1; | |
734 v23 = v12; | |
735 v19.uFrameW = v19.uFrameHeight + v19.uFrameY - 1; | |
736 v14 = v3->Hint; | |
737 if ( v14 ) | |
738 { | |
739 v15 = pFontLucida->CalcTextHeight(v14, &v19, 0, 0); | |
740 v12 = v23; | |
741 v16 = v15 + 24; | |
742 } | |
743 else | |
744 { | |
745 v16 = v13; | |
746 } | |
747 if ( (signed int)v16 < 64 ) | |
748 v16 = 64; | |
749 if ( (signed int)(v16 + v12) > 479 ) | |
750 v16 = 479 - v12; | |
751 DrawPopupWindow(a2.y, v12, v21, v16); | |
752 v17 = v3->Hint; | |
753 if ( v17 ) | |
754 { | |
755 v18 = pFontLucida->CalcTextHeight(v17, &v19, 0, 0); | |
1004 | 756 v19.DrawTitleText(pFontLucida, 0, (signed int)(v16 - v18) / 2 - 14, 0, v17, 3); |
0 | 757 } |
758 } | |
759 | |
760 | |
761 | |
762 | |
763 //----- (00411B59) -------------------------------------------------------- | |
764 void __fastcall LoadThumbnailLloydTexture(unsigned int uSlot, unsigned int uPlayer) | |
765 { | |
766 unsigned int v2; // esi@1 | |
767 unsigned int v3; // edi@1 | |
768 FILE *v4; // ebx@1 | |
769 FILE *v5; // eax@2 | |
770 char pContainerName[64]; // [sp+Ch] [bp-44h]@1 | |
771 unsigned int v7; // [sp+4Ch] [bp-4h]@1 | |
772 | |
773 v2 = uSlot; | |
774 v7 = uPlayer; | |
775 v3 = uSlot + 1; | |
776 sprintf(pContainerName, "data\\lloyd%d%d.pcx", uPlayer, uSlot + 1); | |
777 v4 = fopen(pContainerName, "rb"); | |
778 if ( v4 ) | |
779 { | |
780 pSavegameThumbnails[v2].LoadFromFILE(v4, 0, 1u); | |
781 fclose(v4); | |
782 } | |
783 else | |
784 { | |
785 sprintf(pContainerName, "lloyd%d%d.pcx", v7, v3); | |
786 v5 = pNew_LOD->FindContainer(pContainerName, 1); | |
787 if ( v5 ) | |
788 pSavegameThumbnails[v2].LoadFromFILE(v5, 0, 0); | |
789 else | |
1206
ab6560001f5b
arrays to std::arrays phase 2 - some more arrays converted
Grumpy7
parents:
1205
diff
changeset
|
790 *((int *)&pSavegameThumbnails.data()->pPixels + 10 * v2) = 0; |
0 | 791 } |
792 } | |
793 | |
794 | |
795 //----- (00411621) -------------------------------------------------------- | |
198 | 796 void GUIWindow::OpenSpellBook() |
0 | 797 { |
11 | 798 Player *pPlayer; // edi@1 |
198 | 799 //GUIWindow *pWindow; // esi@1 |
800 //unsigned int v3; // ebp@1 | |
0 | 801 int v4; // eax@3 |
198 | 802 ///GUIButton *result; // eax@25 |
0 | 803 int a2; // [sp+10h] [bp-8h]@1 |
198 | 804 //int v7; // [sp+14h] [bp-4h]@1 |
0 | 805 |
11 | 806 pPlayer = pPlayers[uActiveCharacter]; |
198 | 807 //pWindow = this; |
808 LoadSpellbook(pPlayer->lastOpenedSpellbookPage); | |
809 //v3 = 0; | |
0 | 810 a2 = 0; |
198 | 811 |
1980 | 812 PlayerSpellbookChapter* chapter = &pPlayer->spellbook.pChapters[pPlayer->lastOpenedSpellbookPage]; |
198 | 813 for (uint i = 0; i < 11; ++i) |
0 | 814 { |
198 | 815 if (!chapter->bIsSpellAvailable[i]) |
816 continue; | |
363 | 817 v4= pPlayer->lastOpenedSpellbookPage; |
818 //v4 = (12 * pPlayer->lastOpenedSpellbookPage + pSpellbookSpellIndices[pPlayer->lastOpenedSpellbookPage][i + 1]); | |
693 | 819 CreateButton(pViewport->uViewportTL_X + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Xpos, |
820 pViewport->uViewportTL_Y + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Ypos, //dword_4E20D0 | |
1402 | 821 SBPageSSpellsTextureList[i + 1]->uTextureWidth, |
822 SBPageSSpellsTextureList[i + 1]->uTextureHeight, | |
832 | 823 1, 79, UIMSG_SelectSpell, i, 0, "", 0); |
0 | 824 ++a2; |
198 | 825 //++v3; |
0 | 826 } |
198 | 827 //while ( (signed int)v3 < 11 ); |
828 | |
1118 | 829 CreateButton(0, 0, 0, 0, 1, 0, UIMSG_SpellBook_PressTab, 0, '\t', "", 0); |
0 | 830 if ( a2 ) |
972 | 831 _41D08F_set_keyboard_control_group(a2, 0, 0, 0); |
948 | 832 |
833 if (pPlayer->pActiveSkills[PLAYER_SKILL_FIRE]) CreateButton(399, 10, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 0, 0, aSpellSchoolNames[0], 0); | |
834 if (pPlayer->pActiveSkills[PLAYER_SKILL_AIR]) CreateButton(399, 46, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 1, 0, aSpellSchoolNames[1], 0); | |
835 if (pPlayer->pActiveSkills[PLAYER_SKILL_WATER]) CreateButton(399, 83, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 2, 0, aSpellSchoolNames[2], 0); | |
836 if (pPlayer->pActiveSkills[PLAYER_SKILL_EARTH]) CreateButton(399, 121, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 3, 0, aSpellSchoolNames[3], 0); | |
837 if (pPlayer->pActiveSkills[PLAYER_SKILL_SPIRIT]) CreateButton(399, 158, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 4, 0, aSpellSchoolNames[4], 0); | |
838 if (pPlayer->pActiveSkills[PLAYER_SKILL_MIND]) CreateButton(400, 196, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 5, 0, aSpellSchoolNames[5], 0); | |
839 if (pPlayer->pActiveSkills[PLAYER_SKILL_BODY]) CreateButton(400, 234, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 6, 0, aSpellSchoolNames[6], 0); | |
840 if (pPlayer->pActiveSkills[PLAYER_SKILL_LIGHT]) CreateButton(400, 271, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 7, 0, aSpellSchoolNames[7], 0); | |
841 if (pPlayer->pActiveSkills[PLAYER_SKILL_DARK]) CreateButton(400, 307, 50, 36, 1, 0, UIMSG_OpenSpellbookPage, 8, 0, aSpellSchoolNames[8], 0); | |
842 | |
1402 | 843 CreateButton(476, 450, pSBClickQuickSpellBtnTextr->uTextureWidth, pSBClickQuickSpellBtnTextr->uTextureHeight, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", 0); |
844 pBtn_InstallRemoveSpell = CreateButton(476, 450, 48, 32, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", pSBClickQuickSpellBtnTextr, 0); | |
845 CreateButton(561, 450, pSpellBookClickCloseBtnTextr->uTextureWidth, pSpellBookClickCloseBtnTextr->uTextureHeight, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); | |
846 pBtn_CloseBook = CreateButton(561, 450, 48, 32, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], pSpellBookClickCloseBtnTextr, 0); | |
0 | 847 } |
848 // 50640C: using guessed type int dword_50640C[]; | |
849 | |
850 //----- (004B3157) -------------------------------------------------------- | |
405 | 851 void GUIWindow::HouseDialogManager() |
0 | 852 { |
854 | 853 unsigned __int16 pWhiteColor; // di@2 |
854 const char *pHouseName; // edx@4 | |
0 | 855 signed int v3; // edx@5 |
856 char *v4; // edi@9 | |
854 | 857 int pTextHeight; // eax@45 |
0 | 858 int v6; // edi@45 |
859 char *v7; // eax@45 | |
860 int v8; // edi@46 | |
861 int v9; // eax@50 | |
862 unsigned int v10; // [sp-10h] [bp-C8h]@53 | |
873 | 863 char *pTitleText; // [sp-8h] [bp-C0h]@50 |
854 | 864 GUIWindow pDialogWindow; // [sp+Ch] [bp-ACh]@4 |
865 GUIWindow pWindow; // [sp+60h] [bp-58h]@2 | |
866 int pColor2; // [sp+B4h] [bp-4h]@2 | |
0 | 867 |
336 | 868 if ( !window_SpeakInHouse ) |
0 | 869 return; |
854 | 870 memcpy(&pWindow, this, sizeof(pWindow)); |
871 pWindow.uFrameWidth -= 18; | |
872 pWindow.uFrameZ -= 18; | |
949 | 873 pWhiteColor = TargetColor(0xFFu, 0xFFu, 0xFFu); |
874 pColor2 = TargetColor(0x15u, 0x99u, 0xE9u); | |
0 | 875 pRenderer->DrawTextureIndexed(0x1DDu, 0, pTexture_Dialogue_Background); |
910 | 876 pRenderer->DrawTextureTransparent(0x1D4u, 0, &pIcons_LOD->pTextures[uTextureID_right_panel_loop]); |
457 | 877 if ( pDialogueNPCCount != uNumDialogueNPCPortraits || !uHouse_ExitPic ) |
0 | 878 { |
854 | 879 pDialogWindow.uFrameWidth = 130; |
880 pDialogWindow.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight); | |
881 pHouseName = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName; | |
882 if ( pHouseName ) | |
0 | 883 { |
854 | 884 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(pHouseName, &pDialogWindow, 0, 0); |
0 | 885 if ( v3 < 0 ) |
886 v3 = 0; | |
854 | 887 pWindow.DrawTitleText(pFontCreate, 0x1EAu, v3 / 2 + 4, pWhiteColor, |
0 | 888 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C], |
336 | 889 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName, 3); |
0 | 890 } |
891 } | |
854 | 892 pWindow.uFrameWidth += 8; |
893 pWindow.uFrameZ += 8; | |
457 | 894 if ( !pDialogueNPCCount ) |
0 | 895 { |
1411 | 896 if ( in_current_building_type == BuildingType_Jail ) |
0 | 897 { |
480 | 898 JailDialog(); |
854 | 899 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
900 { | |
901 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
902 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
903 } | |
904 else | |
905 { | |
906 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
907 } | |
908 return; | |
0 | 909 } |
827 | 910 if ( current_npc_text ) |
0 | 911 { |
854 | 912 pDialogWindow.uFrameWidth = 458; |
913 pDialogWindow.uFrameZ = 457; | |
914 pTextHeight = pFontArrus->CalcTextHeight(current_npc_text, &pDialogWindow, 13, 0); | |
915 v6 = pTextHeight + 7; | |
1496 | 916 pRenderer->GetLeather(8, 352 - (pTextHeight + 7), &pIcons_LOD->pTextures[uTextureID_Leather], |
854 | 917 pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight - (pTextHeight + 7)); |
918 pRenderer->DrawTextureIndexed(8, 347 - v6, pTexture_591428); | |
919 v7 = FitTextInAWindow(current_npc_text, pFontArrus, &pDialogWindow, 0xDu, 0); | |
336 | 920 window_SpeakInHouse->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0); |
0 | 921 } |
922 if ( uNumDialogueNPCPortraits <= 0 ) | |
854 | 923 { |
924 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) | |
925 { | |
926 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
927 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
928 } | |
929 else | |
930 { | |
931 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
932 } | |
933 return; | |
934 } | |
873 | 935 for ( v8 = 0; v8 < uNumDialogueNPCPortraits; ++v8 ) |
0 | 936 { |
419 | 937 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8] - 4, |
874 | 938 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]); |
419 | 939 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8], |
940 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8], pDialogueNPCPortraits[v8]); | |
0 | 941 if ( uNumDialogueNPCPortraits < 4 ) |
854 | 942 { |
873 | 943 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
854 | 944 { |
873 | 945 pTitleText = pMapStats->pInfos[uHouse_ExitPic].pName; |
946 v9 = 94 * v8 + 113; | |
854 | 947 } |
948 else | |
949 { | |
873 | 950 if ( !v8 && dword_591080 ) |
951 { | |
952 pTitleText = (char *)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle; | |
953 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 113, pColor2, pTitleText, 3); | |
954 continue; | |
955 } | |
1211 | 956 pTitleText = HouseNPCData[v8 +1 - (dword_591080 != 0)]->pName; |
957 v9 = pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] + pDialogueNPCPortraits[v8]->uTextureHeight + 2; | |
854 | 958 } |
873 | 959 v10 = v9; |
1211 | 960 pWindow.DrawTitleText(pFontCreate, 483, v10, pColor2, pTitleText, 3); |
854 | 961 } |
874 | 962 } |
873 | 963 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 964 { |
873 | 965 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); |
966 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
0 | 967 } |
873 | 968 else |
969 { | |
970 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
971 } | |
972 return; | |
0 | 973 } |
457 | 974 v4 = (char *)pDialogueNPCCount - 1; |
419 | 975 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0] - 4, pNPCPortraits_y[0][0] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]); |
976 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], pDialogueNPCPortraits[(signed int)v4]); | |
151 | 977 if ( pCurrentScreen == SCREEN_E ) |
0 | 978 { |
984 | 979 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); |
854 | 980 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
981 { | |
982 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); | |
983 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
984 } | |
985 else | |
986 { | |
987 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); | |
988 } | |
989 return; | |
0 | 990 } |
1634 | 991 if ( v4 || !dword_591080 )//íà èçóìðóäíîì îñòðîâå çàõîäèò íà êîðàáëå ïîêà íå âûïîëíåíû êâåñòû |
0 | 992 { |
1634 | 993 SimpleHouseDialog(); |
0 | 994 } |
995 else | |
996 { | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
997 sprintfex( pTmpBuf.data(), pGlobalTXT_LocalizationStrings[429], |
336 | 998 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterName, |
999 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle); | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1000 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 0x71u, pColor2, pTmpBuf.data(), 3); |
484 | 1001 switch ( in_current_building_type ) |
0 | 1002 { |
1411 | 1003 case BuildingType_WeaponShop: |
405 | 1004 WeaponShopDialog(); |
0 | 1005 break; |
1411 | 1006 case BuildingType_ArmorShop: |
405 | 1007 ArmorShopDialog(); |
0 | 1008 break; |
1411 | 1009 case BuildingType_MagicShop: |
405 | 1010 MagicShopDialog(); |
0 | 1011 break; |
1411 | 1012 case BuildingType_AlchemistShop: |
405 | 1013 AlchemistDialog(); |
0 | 1014 break; |
1411 | 1015 case BuildingType_FireGuild: |
1016 case BuildingType_AirGuild: | |
1017 case BuildingType_WaterGuild: | |
1018 case BuildingType_EarthGuild: | |
1019 case BuildingType_SpiritGuild: | |
1020 case BuildingType_MindGuild: | |
1021 case BuildingType_BodyGuild: | |
1022 case BuildingType_LightGuild: | |
1023 case BuildingType_DarkGuild: | |
480 | 1024 GuildDialog(); |
1025 break; | |
1411 | 1026 case BuildingType_18: |
987 | 1027 __debugbreak(); //What over the dialog? |
480 | 1028 sub_4B6478(); |
1029 break; | |
1411 | 1030 case BuildingType_TownHall: |
480 | 1031 TownHallDialog(); |
1032 break; | |
1411 | 1033 case BuildingType_Tavern: |
480 | 1034 TavernDialog(); |
1035 break; | |
1411 | 1036 case BuildingType_Bank: |
480 | 1037 BankDialog(); |
1038 break; | |
1411 | 1039 case BuildingType_Temple: |
495 | 1040 TempleDialog(); |
480 | 1041 break; |
1411 | 1042 case BuildingType_Stables: |
1591 | 1043 case BuildingType_Boats: |
480 | 1044 TravelByTransport(); |
1045 break; | |
1411 | 1046 case BuildingType_Training: |
480 | 1047 TrainingDialog(); |
1048 break; | |
1411 | 1049 case BuildingType_Jail: |
480 | 1050 JailDialog(); |
1051 break; | |
0 | 1052 default: |
1429
c7489dd19f88
BuildingType_Tavern and CastSpellInfo_PushCastSpellInfo fix
Ritor1
parents:
1411
diff
changeset
|
1053 //__debugbreak();//New BuildingType (if enter Boat) |
0 | 1054 break; |
1055 } | |
1056 } | |
457 | 1057 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic ) |
0 | 1058 { |
370 | 1059 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]); |
1060 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]); | |
0 | 1061 } |
1062 else | |
1063 { | |
526 | 1064 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]); |
0 | 1065 } |
1066 } | |
1067 | |
1068 //----- (004B1854) -------------------------------------------------------- | |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1069 void GUIWindow::DrawShops_next_generation_time_string( __int64 next_generation_time ) |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1070 { |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1071 unsigned int full_time; // esi@1 |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1072 signed __int64 hours; // kr00_8@1 |
1838 | 1073 const char *text; // eax@2 |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1074 signed __int64 minutes; // [sp+Ch] [bp-10h]@1 |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1075 signed __int64 seconds; // [sp+14h] [bp-8h]@1 |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1076 unsigned int days; // [sp+20h] [bp+4h]@1 |
0 | 1077 |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1078 full_time = (signed __int64)((double)next_generation_time * 0.234375); |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1079 seconds = (signed __int64)full_time % 60; |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1080 minutes = (signed __int64)(full_time / 60) % 60; |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1081 hours = ((full_time / 60) / 60) % 24; |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1082 days = (unsigned int)((full_time / 60) / 60) / 24; |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1083 strcpy(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[532]); |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1084 if ( days ) |
0 | 1085 { |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1086 text = pGlobalTXT_LocalizationStrings[57];//Days |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1087 if ( days <= 1 ) |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1088 text = pGlobalTXT_LocalizationStrings[56];//Day |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1089 sprintfex(pTmpBuf2.data(), "%d %s ", days, text); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1090 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1091 } |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1092 if ( hours ) |
0 | 1093 { |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1094 if ( hours <= 1 ) |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1095 text = pGlobalTXT_LocalizationStrings[109];//Hour |
0 | 1096 else |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1097 text = pGlobalTXT_LocalizationStrings[110];//Hours |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1098 sprintfex(pTmpBuf2.data(), "%d %s ", (int)hours, text); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1099 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1100 } |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1101 if ( minutes && !days ) |
0 | 1102 { |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1103 if ( minutes <= 1 ) |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1104 text = pGlobalTXT_LocalizationStrings[437];//"Minute" |
0 | 1105 else |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1106 text = pGlobalTXT_LocalizationStrings[436]; //"Minutes" |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1107 sprintfex(pTmpBuf2.data(), "%d %s ", (int)minutes, text); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1108 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1109 } |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1110 if ( seconds && !hours ) |
0 | 1111 { |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1112 if ( seconds <= 1 ) |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1113 text = pGlobalTXT_LocalizationStrings[439]; //"Second" |
0 | 1114 else |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1115 text = pGlobalTXT_LocalizationStrings[438]; //"Seconds" |
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1116 sprintfex(pTmpBuf2.data(), "%d %s ", (int)seconds, text); |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1117 strcat(pTmpBuf.data(), pTmpBuf2.data()); |
0 | 1118 } |
1758
24e756a50073
DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents:
1747
diff
changeset
|
1119 this->DrawTitleText(pFontArrus, 0, (212 - pFontArrus->CalcTextHeight(pTmpBuf.data(), this, 0, 0)) / 2 + 101, TargetColor(0xFFu, 0xFFu, 0x9Bu), pTmpBuf.data(), 3); |
0 | 1120 } |
1121 | |
1122 | |
1123 | |
1124 //----- (0044D406) -------------------------------------------------------- | |
1268 | 1125 void GUIWindow::DrawTitleText( GUIFont *a2, signed int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor, |
1126 const char *pInString, unsigned int uLineSpacing ) | |
762 | 1127 { |
0 | 1128 GUIWindow *pWindow; // esi@1 |
1129 unsigned int v8; // ebx@1 | |
1130 char *v9; // eax@1 | |
1131 unsigned int v11; // edi@1 | |
1132 signed int v12; // esi@1 | |
1133 int v13; // eax@2 | |
1134 GUIFont *pFont; // [sp+Ch] [bp-4h]@1 | |
1135 const char *Stra; // [sp+24h] [bp+14h]@5 | |
1136 | |
1137 pWindow = this; | |
1138 pFont = a2; | |
1139 v8 = this->uFrameWidth - uHorizontalMargin; | |
1140 ui_current_text_color = uDefaultColor; | |
1141 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0); | |
762 | 1142 Stra = strtok(v9, "\n"); |
0 | 1143 v11 = uHorizontalMargin + pWindow->uFrameX; |
1144 v12 = uVerticalMargin + pWindow->uFrameY; | |
1145 while ( 1 ) | |
1146 { | |
762 | 1147 if ( !Stra ) |
0 | 1148 break; |
762 | 1149 v13 = (signed int)(v8 - pFont->GetLineWidth(Stra)) >> 1; |
0 | 1150 if ( v13 < 0 ) |
1151 v13 = 0; | |
1152 pFont->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, 640); | |
49 | 1153 v12 += pFont->uFontHeight - uLineSpacing; |
762 | 1154 Stra = strtok(0, "\n"); |
0 | 1155 } |
1156 } | |
1157 // 5C6DB4: using guessed type int ui_current_text_color; | |
1158 | |
1159 | |
1160 | |
1161 //----- (0044CE08) -------------------------------------------------------- | |
1006 | 1162 void GUIWindow::DrawText( GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, unsigned int uFontShadowColor ) |
1163 { | |
0 | 1164 GUIWindow *v9; // edi@1 |
1165 GUIFont *v10; // ebx@1 | |
1166 int v11; // eax@2 | |
1167 signed int v12; // esi@9 | |
1168 signed int v13; // edi@9 | |
1169 int v14; // edx@9 | |
1170 int v15; // eax@25 | |
1171 unsigned int v16; // ecx@25 | |
1172 int v17; // eax@27 | |
1173 int v18; // edi@32 | |
1174 int v19; // esi@38 | |
1175 std::string v21; // [sp-18h] [bp-50h]@2 | |
1176 const char *v22; // [sp-8h] [bp-40h]@2 | |
1177 int v23; // [sp-4h] [bp-3Ch]@2 | |
1178 char Dest[6]; // [sp+Ch] [bp-2Ch]@32 | |
1179 //char v25; // [sp+Fh] [bp-29h]@32 | |
1180 //char v26; // [sp+11h] [bp-27h]@34 | |
1181 const char *v27; // [sp+20h] [bp-18h]@25 | |
1182 int v28; // [sp+24h] [bp-14h]@25 | |
1183 int v29; // [sp+28h] [bp-10h]@1 | |
1184 size_t v30; // [sp+2Ch] [bp-Ch]@4 | |
1185 GUIWindow *v31; // [sp+30h] [bp-8h]@1 | |
1186 const char *v32; // [sp+34h] [bp-4h]@7 | |
1187 size_t pInString; // [sp+4Ch] [bp+14h]@11 | |
1188 | |
1980 | 1189 GUIWindow* a1 = this; |
0 | 1190 v29 = 0; |
1191 v9 = a1; | |
1192 v10 = a2; | |
1193 v31 = a1; | |
1194 if ( !Str ) | |
1195 { | |
1196 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0); | |
1006 | 1197 return; |
0 | 1198 } |
1199 v11 = strcmp(Str, "null"); | |
1200 if ( v11 ) | |
1201 { | |
1202 v30 = strlen(Str); | |
1203 LOBYTE(v11) = 0; | |
1204 if ( !uX ) | |
1205 uX = 12; | |
1206 if ( a8 ) | |
1207 { | |
1208 v32 = Str; | |
1209 } | |
1210 else | |
1211 { | |
1212 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0); | |
1213 v32 = (const char *)v11; | |
1214 } | |
1215 v12 = uX + v9->uFrameX; | |
1216 v13 = uY + v9->uFrameY; | |
1217 v14 = 0; | |
1218 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) ) | |
1219 { | |
1220 pInString = 0; | |
1221 if ( (signed int)v30 > 0 ) | |
1222 { | |
1223 do | |
1224 { | |
1225 LOBYTE(v11) = v32[v14]; | |
1226 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar | |
1227 || (char)v11 == 12 | |
1228 || (char)v11 == 13 | |
1229 || (char)v11 == 9 | |
1230 || (char)v11 == 10 ) | |
1231 { | |
1232 switch ( (unsigned __int8)v11 ) | |
1233 { | |
1234 case 9u: | |
1235 strncpy(Dest, &v32[v14 + 1], 3u); | |
1236 Dest[3] = 0; | |
1237 pInString += 3; | |
1238 v29 = atoi(Dest); | |
1239 v19 = atoi(Dest); | |
1240 LOBYTE(v11) = (char)v31; | |
1241 v12 = uX + v31->uFrameX + v19; | |
1242 break; | |
1243 case 0xAu: | |
1244 v11 = LOBYTE(v10->uFontHeight); | |
1245 uY = uY + v11 - 3; | |
1246 v13 = uY + v31->uFrameY; | |
1247 v12 = uX + v29 + v31->uFrameX; | |
1248 if ( a8 ) | |
1249 goto LABEL_36; | |
1250 break; | |
1251 case 0xCu: | |
1252 strncpy(Dest, &v32[v14 + 1], 5u); | |
1253 Dest[5] = 0; | |
1254 v11 = atoi(Dest); | |
1255 pInString += 5; | |
1256 uFontColor = v11; | |
1257 break; | |
1258 case 0xDu: | |
1259 strncpy(Dest, &v32[v14 + 1], 3u); | |
1260 Dest[3] = 0; | |
1261 pInString += 3; | |
1262 v18 = atoi(Dest); | |
1263 v11 = v10->GetLineWidth(&v32[pInString]); | |
1264 v12 = v31->uFrameZ - v11 - v18; | |
1265 v13 = uY + v31->uFrameY; | |
1266 if ( a8 ) | |
1267 { | |
1268 v11 = LOBYTE(v10->uFontHeight); | |
1269 LABEL_36: | |
1270 v11 = v11 + v13 - 3; | |
1271 if ( v11 > a8 ) | |
1006 | 1272 return; |
0 | 1273 break; |
1274 } | |
1275 break; | |
1276 default: | |
1277 if ( (char)v11 == 34 && v32[v14 + 1] == 34 ) | |
1278 { | |
1279 ++v14; | |
1280 pInString = v14; | |
1281 } | |
1282 v27 = &v32[v14]; | |
1283 v15 = (unsigned __int8)v32[v14]; | |
1284 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1285 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9); | |
1286 if ( v14 > 0 ) | |
1287 v12 += v10->pMetrics[v15].uLeftSpacing; | |
1160 | 1288 v17 = (int)((char *)&v10[1] + v10->font_pixels_offset[v15]); |
0 | 1289 if ( (short)uFontColor ) |
1290 pRenderer->DrawText( | |
1291 v12, | |
1292 v13, | |
1293 (unsigned __int8 *)v17, | |
1294 v16, | |
1295 LOBYTE(v10->uFontHeight), | |
1296 v10->pFontPalettes[0], | |
1297 uFontColor, | |
1298 uFontShadowColor); | |
1299 else | |
1300 pRenderer->DrawTextPalette( | |
1301 v12, | |
1302 v13, | |
1268 | 1303 (unsigned char*)v17, |
0 | 1304 v16, |
1305 LOBYTE(v10->uFontHeight), | |
1306 v10->pFontPalettes[0], | |
1307 a7); | |
1308 LOBYTE(v11) = v30; | |
1309 v12 += v28; | |
1310 if ( (signed int)pInString < (signed int)v30 ) | |
1311 { | |
1312 LOBYTE(v11) = 3 * *v27; | |
1313 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing; | |
1314 } | |
1315 break; | |
1316 } | |
1317 } | |
1318 v14 = pInString++ + 1; | |
1319 } | |
1320 while ( (signed int)pInString < (signed int)v30 ); | |
1321 } | |
1322 } | |
1323 } | |
1006 | 1324 return; |
0 | 1325 } |
1326 | |
1327 | |
1328 //----- (0044CB4F) -------------------------------------------------------- | |
1268 | 1329 int GUIWindow::DrawTextInRect( GUIFont *pFont, unsigned int uX, unsigned int uY, unsigned int uColor, const char *text, int rect_width, int reverse_text ) |
1330 { | |
1331 | |
24 | 1332 int pLineWidth; // ebx@1 |
1268 | 1333 int text_width; // esi@3 |
0 | 1334 unsigned __int8 v12; // cl@7 |
1335 signed int v13; // esi@19 | |
1336 signed int v14; // ebx@19 | |
1337 unsigned __int8 v15; // cl@21 | |
1338 int v16; // eax@22 | |
1339 int v17; // ecx@22 | |
1340 int v18; // ecx@23 | |
1341 int v19; // ecx@24 | |
1342 unsigned int v20; // ecx@26 | |
1268 | 1343 unsigned char* v21; // eax@28 |
0 | 1344 int v22; // ebx@34 |
1345 int v23; // eax@34 | |
1346 int v24; // ebx@36 | |
1268 | 1347 char Str[6]; // [sp+Ch] [bp-20h]@34 |
0 | 1348 char v26; // [sp+Fh] [bp-1Dh]@34 |
1349 char v27; // [sp+11h] [bp-1Bh]@35 | |
1350 int v28; // [sp+20h] [bp-Ch]@17 | |
1351 GUIWindow *pWindow; // [sp+24h] [bp-8h]@1 | |
24 | 1352 size_t pNumLen; // [sp+28h] [bp-4h]@1 |
0 | 1353 size_t Str1a; // [sp+40h] [bp+14h]@5 |
1354 size_t Str1b; // [sp+40h] [bp+14h]@19 | |
1355 const char *Sourcea; // [sp+44h] [bp+18h]@20 | |
1356 int v34; // [sp+48h] [bp+1Ch]@26 | |
1268 | 1357 int i; |
0 | 1358 |
1268 | 1359 |
0 | 1360 pWindow = this; |
1268 | 1361 pNumLen = strlen(text); |
1362 pLineWidth = pFont->GetLineWidth(text); | |
1363 if ( pLineWidth < rect_width ) | |
0 | 1364 { |
1268 | 1365 pWindow->DrawText(pFont, uX, uY, uColor, text, 0, 0, 0); |
24 | 1366 return pLineWidth; |
0 | 1367 } |
1268 | 1368 strcpy(pTmpBuf2.data(), text); |
1369 text_width = 0; | |
1370 if ( reverse_text ) | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1371 _strrev(pTmpBuf2.data()); |
0 | 1372 Str1a = 0; |
1268 | 1373 for (i=0; i<pNumLen; ++i) |
0 | 1374 { |
1268 | 1375 if ( text_width >= rect_width ) |
0 | 1376 break; |
1268 | 1377 v12 = pTmpBuf2[i]; |
1378 if ( pFont->IsCharValid(v12) ) | |
0 | 1379 { |
1268 | 1380 switch (v12) |
0 | 1381 { |
1268 | 1382 case '\t':// Horizontal tab 09 |
1383 case '\n': //Line Feed 0A 10 | |
1384 case '\r': //Form Feed, page eject 0C 12 | |
1385 break; | |
1386 case '\f': //Carriage Return 0D 13 | |
1387 i += 5; | |
1388 break; | |
1389 default: | |
1390 if ( i > 0 ) | |
1391 text_width += pFont->pMetrics[v12].uLeftSpacing; | |
1392 text_width += pFont->pMetrics[v12].uWidth; | |
1393 if ( i < pNumLen ) | |
1394 text_width += pFont->pMetrics[v12].uRightSpacing; | |
1395 } | |
0 | 1396 } |
1397 } | |
1268 | 1398 pTmpBuf2[i - 1] = 0; |
1399 | |
1400 | |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1401 pNumLen = strlen(pTmpBuf2.data()); |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1402 v28 = pFont->GetLineWidth(pTmpBuf2.data()); |
1268 | 1403 if ( reverse_text ) |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1404 _strrev(pTmpBuf2.data()); |
1268 | 1405 |
0 | 1406 v13 = uX + pWindow->uFrameX; |
1407 v14 = uY + pWindow->uFrameY; | |
1268 | 1408 for (i=0; i<pNumLen; ++i) |
0 | 1409 { |
1268 | 1410 v15 = pTmpBuf2[i]; |
1411 if ( pFont->IsCharValid(v15) ) | |
0 | 1412 { |
1268 | 1413 switch (v12) |
1414 { | |
1415 case '\t':// Horizontal tab 09 | |
1416 { | |
1417 strncpy(Str, &pTmpBuf2[i+1], 3); | |
1418 Str[3] = 0; | |
1419 // atoi(Str); | |
1420 i += 3; | |
1421 break; | |
1422 } | |
1423 case '\n': //Line Feed 0A 10 | |
1424 { | |
1425 v24 = pFont->uFontHeight; | |
1426 v13 = uX; | |
1427 uY = uY + pFont->uFontHeight - 3; | |
1428 v14 = uY+pFont->uFontHeight - 3; | |
1429 break; | |
1430 } | |
1431 case '\r': //Form Feed, page eject 0C 12 | |
0 | 1432 { |
1268 | 1433 strncpy(Str, &pTmpBuf2[i+1], 5); |
1434 Str[5] = 0; | |
1435 i += 5; | |
1436 uColor = atoi(Str); | |
1437 break; | |
1438 } | |
1439 case '\f': //Carriage Return 0D 13 | |
1440 { | |
1441 strncpy(Str, &pTmpBuf2[i+1], 3); | |
1442 Str[3] = 0; | |
1443 i += 3; | |
1444 v23 = pFont->GetLineWidth(&pTmpBuf2[i]); | |
1445 v13 = pWindow->uFrameZ - v23 - atoi(Str); | |
1446 v14 = uY; | |
1447 break; | |
0 | 1448 } |
1268 | 1449 default: |
1450 v20 = pFont->pMetrics[v15].uWidth; | |
1451 if ( i > 0 ) | |
1452 v13 += pFont->pMetrics[v15].uLeftSpacing; | |
1453 v21 = &pFont->pFontData[pFont->font_pixels_offset[v15]]; | |
1454 if ( uColor ) | |
1455 pRenderer->DrawText(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], uColor, 0); | |
1456 else | |
1457 pRenderer->DrawTextPalette(v13, v14, v21, v20, pFont->uFontHeight, pFont->pFontPalettes[0], 0); | |
1458 v13 += v20; | |
1459 if ( i < (signed int)pNumLen ) | |
1460 v13 += pFont->pMetrics[v15].uRightSpacing; | |
1461 } | |
0 | 1462 } |
1268 | 1463 |
1464 | |
0 | 1465 } |
1466 return v28; | |
1467 } | |
1468 | |
1469 //----- (0041D12F) -------------------------------------------------------- | |
189 | 1470 GUIButton *GUIWindow::CreateButton(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, |
832 | 1471 int a6, int a7, UIMessageType msg, unsigned int msg_param, unsigned __int8 uHotkey, const char *pName, Texture *pTextures, ...) |
0 | 1472 { |
17 | 1473 GUIButton *pButton; // esi@1 |
0 | 1474 unsigned int v13; // eax@1 |
1475 unsigned int v14; // ebx@4 | |
1476 unsigned int v15; // eax@4 | |
189 | 1477 unsigned int TextureNum=0; // ebx@4 |
0 | 1478 unsigned int v17; // eax@4 |
1479 Texture *v18; // eax@4 | |
1480 Texture **v19; // ecx@5 | |
1481 Texture **v20; // edx@5 | |
1482 GUIButton *v21; // eax@7 | |
189 | 1483 va_list texturs_ptr; |
0 | 1484 |
1583 | 1485 pButton = (GUIButton *)malloc(0xBC); |
17 | 1486 pButton->pParent = this; |
1268 | 1487 pButton->uWidth = uWidth; |
17 | 1488 pButton->uHeight = uHeight; |
1268 | 1489 |
0 | 1490 if ( a6 == 2 && !uHeight ) |
17 | 1491 pButton->uHeight = uWidth; |
1268 | 1492 |
17 | 1493 pButton->uButtonType = a6; |
1268 | 1494 pButton->uX = uX + this->uFrameX; |
1495 pButton->uY = uY + this->uFrameY; | |
1496 pButton->uZ = pButton->uX + uWidth - 1; | |
1497 pButton->uW = pButton->uY + uHeight - 1; | |
271 | 1498 pButton->field_2C_is_pushed = 0; |
17 | 1499 pButton->field_1C = a7; |
832 | 1500 pButton->msg = msg; |
1501 pButton->msg_param = msg_param; | |
17 | 1502 pButton->uHotkey = uHotkey; |
1268 | 1503 //strlen(pName); |
17 | 1504 strcpy(pButton->pButtonName, pName); |
189 | 1505 va_start(texturs_ptr, pName); |
1506 while (NULL!=(pTextures=va_arg(texturs_ptr, Texture *))) | |
0 | 1507 { |
189 | 1508 pButton->pTextures[TextureNum]=pTextures; |
1509 ++TextureNum; | |
0 | 1510 } |
189 | 1511 va_end(texturs_ptr); |
1512 pButton->uNumTextures = TextureNum; | |
1513 if ( this->pControlsTail ) | |
1514 this->pControlsTail->pNext = pButton; | |
0 | 1515 else |
17 | 1516 this->pControlsHead = pButton; |
1517 pButton->pPrev = this->pControlsTail; | |
1518 this->pControlsTail = pButton; | |
1519 pButton->pNext = 0; | |
0 | 1520 ++this->uNumControls; |
17 | 1521 return pButton; |
0 | 1522 } |
1523 | |
1524 //----- (00459C2B) -------------------------------------------------------- | |
1268 | 1525 void GUIWindow::DrawFlashingInputCursor( signed int uX, int uY, struct GUIFont *a2 ) |
1526 { | |
0 | 1527 if ( GetTickCount() % 1000 > 500 ) |
1268 | 1528 DrawText(a2, uX, uY, 0, "_", 0, 0, 0); |
0 | 1529 } |
1530 | |
1531 //----- (0041C432) -------------------------------------------------------- | |
1268 | 1532 GUIWindow * GUIWindow::Create( unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, enum WindowType eWindowType, int pButton, const char* hint ) |
1533 { | |
0 | 1534 unsigned int uNextFreeWindowID; // ebp@1 |
1535 //int *v8; // eax@1 | |
1536 //GUIWindow *pWindow; // esi@4 | |
962 | 1537 //int v10; // eax@4 |
0 | 1538 unsigned int v11; // ebx@15 |
423 | 1539 NPCData *speakingNPC; // ebp@15 |
1540 int v14; // eax@20 | |
1541 int v16; // eax@25 | |
1542 int v18; // eax@30 | |
1543 int v20; // eax@35 | |
1544 int v22; // eax@40 | |
1545 int v24; // eax@45 | |
0 | 1546 int v25; // eax@65 |
1547 unsigned int v26; // ebx@65 | |
1548 char *v27; // eax@71 | |
1549 const char *v29; // [sp-8h] [bp-18h]@68 | |
1550 char *v30; // [sp-4h] [bp-14h]@68 | |
1551 int uWidtha; // [sp+14h] [bp+4h]@66 | |
423 | 1552 int num_menu_buttons; // [sp+20h] [bp+10h]@15 |
0 | 1553 |
1554 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID) | |
1555 { | |
1556 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null) | |
1557 break; | |
1558 } | |
1559 | |
1980 | 1560 GUIWindow* pWindow = &pWindowList[uNextFreeWindowID]; |
0 | 1561 pWindow->uFrameWidth = uWidth; |
1268 | 1562 pWindow->uFrameHeight = uHeight; |
1563 | |
1564 pWindow->uFrameX = uX; | |
1565 pWindow->uFrameY = uY; | |
0 | 1566 pWindow->uFrameZ = uX + uWidth - 1; |
1567 pWindow->uFrameW = uY + uHeight - 1; | |
1268 | 1568 |
11 | 1569 pWindow->ptr_1C = (void *)pButton; |
1268 | 1570 pWindow->Hint = hint; |
1571 | |
0 | 1572 pWindow->eWindowType = eWindowType; |
972 | 1573 pWindow->receives_keyboard_input = false; |
496 | 1574 ++uNumVisibleWindows; |
1575 pWindow->numVisibleWindows = uNumVisibleWindows; | |
1576 pVisibleWindowsIdxs[uNumVisibleWindows] = uNextFreeWindowID + 1; | |
0 | 1577 if ( (signed int)eWindowType <= 20 ) |
1578 { | |
1579 if (eWindowType != WINDOW_Chest) | |
1580 { | |
1581 switch (eWindowType) | |
1582 { | |
1268 | 1583 case WINDOW_Book: { |
0 | 1584 pWindow->InitializeBookView(); |
1585 break; | |
1268 | 1586 } |
1587 case WINDOW_Dialogue: { | |
11 | 1588 pMainScreenNum = pCurrentScreen; |
151 | 1589 pCurrentScreen = SCREEN_NPC_DIALOGUE; |
832 | 1590 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], //"Exit" |
735 | 1591 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
496 | 1592 if ( pWindow->par1C != 1 ) |
0 | 1593 { |
423 | 1594 num_menu_buttons = 0; |
0 | 1595 v11 = LOBYTE(pFontArrus->uFontHeight) - 3; |
602 | 1596 speakingNPC = GetNPCData(sDialogue_SpeakingActorNPC_ID); |
827 | 1597 if ( GetGreetType(sDialogue_SpeakingActorNPC_ID) == 1 )//QuestsNPC_greet |
0 | 1598 { |
423 | 1599 if ( speakingNPC->joins ) |
0 | 1600 { |
832 | 1601 pWindow->CreateButton(480, 130, 140, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0xDu, 0, "", 0); |
423 | 1602 num_menu_buttons = 1; |
0 | 1603 } |
423 | 1604 if ( speakingNPC->evt_A ) |
0 | 1605 { |
423 | 1606 if ( num_menu_buttons < 4 ) |
0 | 1607 { |
423 | 1608 v14 = NPC_EventProcessor(speakingNPC->evt_A); |
0 | 1609 if ( v14 == 1 || v14 == 2 ) |
832 | 1610 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x13u, 0, "", 0); |
0 | 1611 } |
1612 } | |
423 | 1613 if ( speakingNPC->evt_B ) |
0 | 1614 { |
423 | 1615 if ( num_menu_buttons < 4 ) |
0 | 1616 { |
423 | 1617 v16 = NPC_EventProcessor(speakingNPC->evt_B); |
0 | 1618 if ( v16 == 1 || v16 == 2 ) |
832 | 1619 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x14u, 0, "", 0); |
0 | 1620 } |
1621 } | |
423 | 1622 if ( speakingNPC->evt_C ) |
0 | 1623 { |
423 | 1624 if ( num_menu_buttons < 4 ) |
0 | 1625 { |
423 | 1626 v18 = NPC_EventProcessor(speakingNPC->evt_C); |
0 | 1627 if ( v18 == 1 || v18 == 2 ) |
832 | 1628 pWindow->CreateButton( 0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x15u, 0, "", 0); |
0 | 1629 } |
1630 } | |
423 | 1631 if ( speakingNPC->evt_D ) |
0 | 1632 { |
423 | 1633 if ( num_menu_buttons < 4 ) |
0 | 1634 { |
423 | 1635 v20 = NPC_EventProcessor(speakingNPC->evt_D); |
0 | 1636 if ( v20 == 1 || v20 == 2 ) |
832 | 1637 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x16u, 0, "", 0); |
0 | 1638 } |
1639 } | |
423 | 1640 if ( speakingNPC->evt_E ) |
0 | 1641 { |
423 | 1642 if ( num_menu_buttons < 4 ) |
0 | 1643 { |
423 | 1644 v22 = NPC_EventProcessor(speakingNPC->evt_E); |
0 | 1645 if ( v22 == 1 || v22 == 2 ) |
832 | 1646 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x17u, 0, "", 0); |
0 | 1647 } |
1648 } | |
423 | 1649 if (speakingNPC->evt_F ) |
0 | 1650 { |
423 | 1651 if ( num_menu_buttons < 4 ) |
0 | 1652 { |
423 | 1653 v24 = NPC_EventProcessor(speakingNPC->evt_F); |
0 | 1654 if ( v24 == 1 || v24 == 2 ) |
832 | 1655 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x18u, 0, "", 0); |
0 | 1656 } |
1657 } | |
1658 } | |
1659 else | |
1660 { | |
423 | 1661 if ( speakingNPC->joins ) |
0 | 1662 { |
832 | 1663 pWindow->CreateButton(0x1E0u, 0x82u, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Du, 0, pGlobalTXT_LocalizationStrings[407], 0);//Ïîäðîáíåå |
423 | 1664 if (speakingNPC->Hired()) |
0 | 1665 { |
1205
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1666 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[408], speakingNPC->pName); //Îòïóñòèòü |
8c02e6f74b29
arrays to std::arrays phase 2 - mm7_data.h converted
Grumpy7
parents:
1202
diff
changeset
|
1667 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pTmpBuf.data(), 0); |
0 | 1668 } |
1669 else | |
1670 { | |
832 | 1671 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pGlobalTXT_LocalizationStrings[406], 0);//Íàíÿòü |
0 | 1672 } |
423 | 1673 num_menu_buttons = 2; |
0 | 1674 } |
1675 } | |
972 | 1676 pWindow->_41D08F_set_keyboard_control_group(num_menu_buttons, 1, 0, 1); |
0 | 1677 } |
1678 break; | |
1268 | 1679 } |
1680 case WINDOW_ChangeLocation: { | |
11 | 1681 pMainScreenNum = pCurrentScreen; |
151 | 1682 pCurrentScreen = SCREEN_CHANGE_LOCATION; |
987 | 1683 pBtn_ExitCancel = pWindow->CreateButton( 566, 445, 75, 33, 1, 0, UIMSG_CHANGE_LOCATION_ClickCencelBtn, 0, 'N', pGlobalTXT_LocalizationStrings[156], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);//Îñòàòüñÿ â ýòîé îáëàñòè |
948 | 1684 pBtn_YES = pWindow->CreateButton( 486, 445, 75, 33, 1, 0, UIMSG_OnTravelByFoot, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0); |
1685 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 63, 73, 1, 0, UIMSG_OnTravelByFoot, 1, ' ', pWindow->Hint, 0, 0, 0); | |
1686 pWindow->CreateButton( 8, 8, 460, 344, 1, 0, UIMSG_OnTravelByFoot, 1, 0, pWindow->Hint, 0); | |
0 | 1687 break; |
1268 | 1688 } |
1689 case WINDOW_SpellBook: {// îêíî êíèãè çàêëîâ | |
0 | 1690 InitializeBookTextures(); |
11 | 1691 pWindow->OpenSpellBook(); |
0 | 1692 break; |
1268 | 1693 } |
1694 case WINDOW_GreetingNPC: {// îêíî ïðèâåòñòâèÿ ÍÏÑ | |
11 | 1695 pMainScreenNum = pCurrentScreen; |
3 | 1696 pKeyActionMap->EnterText(0, 15, pWindow); |
151 | 1697 pCurrentScreen = SCREEN_BRANCHLESS_NPC_DIALOG; |
0 | 1698 break; |
1268 | 1699 } |
1700 | |
0 | 1701 } |
1702 return pWindow; | |
1703 } | |
11 | 1704 //LABEL_62: |
948 | 1705 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0); |
1706 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0); | |
1707 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0); | |
1708 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0); | |
832 | 1709 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, 9u, "", 0); |
0 | 1710 return pWindow; |
1711 } | |
1712 if (eWindowType == WINDOW_HouseInterior) | |
1713 { | |
151 | 1714 pCurrentScreen = SCREEN_HOUSE; |
1589 | 1715 pBtn_ExitCancel = pWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[80],//Âûéòè èç çäàíèÿ |
735 | 1716 pIcons_LOD->GetTexture(uExitCancelTextureId), 0); |
1589 | 1717 for ( v26 = 0; v26 < uNumDialogueNPCPortraits; ++v26 ) |
1718 { | |
1719 if ( v26 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic ) | |
0 | 1720 { |
1589 | 1721 v30 = pMapStats->pInfos[uHouse_ExitPic].pName; |
1722 v29 = (char*)pGlobalTXT_LocalizationStrings[LOCSTR_ENTER_S]; | |
1723 } | |
1724 else | |
1725 { | |
1726 if ( v26 || !dword_591080 ) | |
1727 v27 = HouseNPCData[v26 +1 - ((dword_591080 != 0)? 1:0)]->pName; | |
0 | 1728 else |
1589 | 1729 v27 = (char*)p2DEvents[pButton - 1].pProprieterName; |
1730 v30 = v27; | |
1731 v29 = (char*)pGlobalTXT_LocalizationStrings[435]; | |
0 | 1732 } |
1589 | 1733 sprintfex(byte_591180[v26].data(), v29, v30); |
1734 HouseNPCPortraitsButtonsList[v26] = pWindow->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v26], | |
1735 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v26], | |
1736 63, 73, 1, 0, UIMSG_ClickHouseNPCPortrait, v26, 0, byte_591180[v26].data(), 0, 0, 0); | |
1737 } | |
1211 | 1738 if ( uNumDialogueNPCPortraits == 1 ) |
0 | 1739 { |
336 | 1740 window_SpeakInHouse = &pWindowList[uNextFreeWindowID]; |
0 | 1741 _4B4224_UpdateNPCTopics(0); |
1742 } | |
1743 } | |
1744 else | |
1745 { | |
158 | 1746 if (eWindowType == WINDOW_Transition) |
0 | 1747 { |
11 | 1748 pMainScreenNum = pCurrentScreen; |
151 | 1749 pCurrentScreen = SCREEN_INPUT_BLV; |
960 | 1750 pBtn_ExitCancel = pWindow->CreateButton(0x236u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionWindowCloseBtn, 0, 'N', pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);//Îòìåíà |
948 | 1751 pBtn_YES = pWindow->CreateButton(0x1E6u, 0x1BDu, 0x4Bu, 0x21u, 1, 0, UIMSG_TransitionUI_Confirm, 0, 'Y', pWindow->Hint, pIcons_LOD->GetTexture(uTextureID_BUTTYES2), 0); |
1752 pWindow->CreateButton(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], 0x3Fu, 0x49u, 1, 0, UIMSG_TransitionUI_Confirm, 1, 0x20u, pWindow->Hint, 0); | |
1753 pWindow->CreateButton(8, 8, 0x1CCu, 0x158u, 1, 0, UIMSG_TransitionUI_Confirm, 1u, 0, pWindow->Hint, 0); | |
0 | 1754 return pWindow; |
1755 } | |
961 | 1756 if (eWindowType == WINDOW_CastSpell) |
0 | 1757 { |
1758 pEventTimer->Pause(); | |
1759 pAudioPlayer->StopChannels(-1, -1); | |
1760 pMouse->SetCursorBitmap("MICON2"); | |
11 | 1761 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);//Âûáåðèòå öåëü |
0 | 1762 return pWindow; |
1763 } | |
158 | 1764 if (eWindowType == WINDOW_Scroll) |
11 | 1765 { |
948 | 1766 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0); |
1767 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0); | |
1768 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0); | |
1769 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0); | |
1770 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0); | |
11 | 1771 return pWindow; |
1772 } | |
898 | 1773 if (eWindowType == WINDOW_CastSpell_InInventory) |
0 | 1774 { |
1775 pMouse->SetCursorBitmap("MICON2"); | |
832 | 1776 pBtn_ExitCancel = pWindow->CreateButton(0x188u, 0x13Eu, 0x4Bu, 0x21u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34],//Îòìåíà |
945 | 1777 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0); |
11 | 1778 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2);//Âûáðàòü öåëü |
0 | 1779 ++pIcons_LOD->uTexturePacksCount; |
1780 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103; | |
151 | 1781 pCurrentScreen = SCREEN_CASTING; |
0 | 1782 if ( !pIcons_LOD->uNumPrevLoadedFiles ) |
1783 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
1784 } | |
1785 } | |
1786 return pWindow; | |
1295 | 1787 } |
1788 //----- (004B3EF0) -------------------------------------------------------- | |
1789 void DrawJoinGuildWindow( int pEventCode ) | |
1790 { | |
1791 uDialogueType = 81;//enum JoinGuildDialog | |
1792 current_npc_text = (char *)pNPCTopics[pEventCode + 99].pText; | |
1793 ContractSelectText(pEventCode); | |
1794 pDialogueWindow->Release(); | |
1795 pDialogueWindow = GUIWindow::Create(0, 0, 640, 0x15E, WINDOW_MainMenu, pEventCode, 0); | |
1796 pBtn_ExitCancel = pDialogueWindow->CreateButton(471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[34], pIcons_LOD->GetTexture(uExitCancelTextureId), 0); // Cancel | |
1797 pDialogueWindow->CreateButton( 0, 0, 0, 0, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0); | |
1798 pDialogueWindow->CreateButton(480, 160, 140, 30, 1, 0, UIMSG_ClickNPCTopic, 0x52u, 0, pGlobalTXT_LocalizationStrings[122], 0); | |
1799 pDialogueWindow->_41D08F_set_keyboard_control_group(1, 1, 0, 2); | |
1800 dialog_menu_id = HOUSE_DIALOGUE_OTHER; | |
1801 } | |
1802 //----- (0044603D) -------------------------------------------------------- | |
1458 | 1803 void DialogueEnding() |
1295 | 1804 { |
1805 sDialogue_SpeakingActorNPC_ID = 0; | |
1806 pDialogueWindow->Release(); | |
1807 pDialogueWindow = 0; | |
1808 pMiscTimer->Resume(); | |
1809 pEventTimer->Resume(); | |
1297 | 1810 } |
1811 //----- (004156F0) -------------------------------------------------------- | |
1812 void GUI_UpdateWindows() | |
1813 { | |
1814 GUIWindow *pWindow; // esi@4 | |
1815 //unsigned int pWindowType; // eax@4 | |
1816 const char *pHint; // edx@66 | |
1817 GUIButton *pButtonPtr_1C; // ebp@79 | |
1818 char *pHint1; // edx@80 | |
1819 int v26; // eax@98 | |
1820 unsigned int v27; // ebp@106 | |
1821 GUIWindow *pGUIWindow2; // ecx@109 | |
1822 GUIFont *pGUIFont; // ST1C_4@115 | |
1823 int v31; // eax@115 | |
1824 GUIButton *pButton; // ebp@118 | |
1825 int v39; // eax@129 | |
1826 unsigned int pNumMessages; // eax@142 | |
1827 GUIButton *pGUIButton; // ebp@146 | |
1828 //unsigned int pX; // [sp-1Ch] [bp-124h]@17 | |
1829 //unsigned int pY; // [sp-18h] [bp-120h]@17 | |
1830 //Texture *pTexture; // [sp-14h] [bp-11Ch]@17 | |
1831 //Texture *pTexture2; // [sp-14h] [bp-11Ch]@86 | |
1832 int i; // [sp+0h] [bp-108h]@3 | |
1833 ItemGen pItemGen; // [sp+4h] [bp-104h]@98 | |
1834 GUIButton GUIButton2; // [sp+28h] [bp-E0h]@133 | |
1835 ItemGen ItemGen2; // [sp+E4h] [bp-24h]@129 | |
1836 | |
1837 if (GetCurrentMenuID() != MENU_CREATEPARTY) | |
1838 UI_OnKeyDown(VK_NEXT); | |
1839 | |
1840 for ( i = 1; i <= uNumVisibleWindows; ++i ) | |
1841 { | |
1842 pWindow = &pWindowList[pVisibleWindowsIdxs[i] - 1]; | |
1843 switch (pWindow->eWindowType) | |
1844 { | |
1845 case WINDOW_OptionsButtons: | |
1846 { | |
1847 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_Y, | |
1848 pViewport->uViewportTL_X, pIcons_LOD->GetTexture(uTextureID_Options)); | |
1849 viewparams->bRedrawGameUI = 1; | |
1850 continue; | |
1851 } | |
1852 case WINDOW_CharacterRecord: | |
1853 { | |
1854 CharacterUI_CharacterScreen_Draw(pPlayers[uActiveCharacter]); | |
1855 continue; | |
1856 } | |
1857 case WINDOW_Options: | |
1858 { | |
1859 GameMenuUI_Options_Draw(); | |
1860 continue; | |
1861 } | |
1862 case WINDOW_Book: | |
1863 { | |
1864 BookUI_Draw((WindowType)(int)pWindow->ptr_1C); | |
1865 continue; | |
1866 } | |
1867 case WINDOW_Dialogue: | |
1868 { | |
1869 GameUI_DrawDialogue(); | |
1870 continue; | |
1871 } | |
1872 case WINDOW_QuickReference: | |
1873 { | |
1874 GameUI_QuickRef_Draw(); | |
1875 continue; | |
1876 } | |
1877 case WINDOW_Rest: | |
1878 { | |
1879 RestUI_Draw(); | |
1880 continue; | |
1881 } | |
1882 case WINDOW_ChangeLocation: | |
1883 { | |
1884 TravelUI_Draw(); | |
1885 continue; | |
1886 } | |
1887 case WINDOW_SpellBook: | |
1888 { | |
1889 DrawSpellBookContent(pPlayers[uActiveCharacter]); | |
1890 continue; | |
1891 } | |
1892 case WINDOW_GreetingNPC: | |
1893 { | |
1894 GameUI_DrawBranchlessDialogue(); | |
1895 continue; | |
1896 } | |
1897 case WINDOW_Chest: | |
1898 { | |
1899 if ( pCurrentScreen == SCREEN_CHEST ) | |
1900 { | |
1312 | 1901 Chest::DrawChestUI(pWindow->par1C); |
1297 | 1902 } |
1903 else if ( pCurrentScreen == SCREEN_CHEST_INVENTORY ) | |
1904 { | |
1905 pRenderer->ClearZBuffer(0, 479); | |
1906 draw_leather(); | |
1907 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); | |
1908 pRenderer->DrawTextureIndexed(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pIcons_LOD->GetTexture(uExitCancelTextureId)); | |
1909 } | |
1910 continue; | |
1911 } | |
1912 case WINDOW_SaveLoadButtons: | |
1913 { | |
1914 SaveUI_Draw(); | |
1915 continue; | |
1916 } | |
1917 case WINDOW_MainMenu_Load: | |
1918 { | |
1919 LoadUI_Draw(); | |
1920 continue; | |
1921 } | |
1922 case WINDOW_HouseInterior: | |
1923 { | |
1924 pWindowList[pVisibleWindowsIdxs[i] - 1].HouseDialogManager(); | |
1925 if ( !window_SpeakInHouse ) | |
1926 continue; | |
1312 | 1927 if ( window_SpeakInHouse->par1C >= 53 ) |
1297 | 1928 continue; |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1709
diff
changeset
|
1929 if ( pParty->PartyTimes._shop_ban_times[window_SpeakInHouse->par1C] <=pParty->uTimePlayed ) |
1297 | 1930 { |
1312 | 1931 if ( window_SpeakInHouse->par1C < 53 ) |
1297 | 1932 { |
1747
cecb080929c4
Party_stru0 renamed to PartyTimeStruct, fixed its members, renamed Party::field_3C to Party::PartyTimes, started Player::SetVariable refactoring start
Grumpy7
parents:
1709
diff
changeset
|
1933 pParty->PartyTimes._shop_ban_times[window_SpeakInHouse->par1C] = 0; |
1297 | 1934 } |
1935 continue; | |
1936 } | |
1937 pNumMessages = pMessageQueue_50CBD0->uNumMessages; | |
1938 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
1939 continue; | |
1940 } | |
1941 case WINDOW_Transition: | |
1942 { | |
1943 TransitionUI_Draw(); | |
1944 continue; | |
1945 } | |
1946 case WINDOW_Scroll: | |
1947 { | |
1948 CreateScrollWindow(); | |
1949 continue; | |
1950 } | |
1951 case WINDOW_CastSpell_InInventory: | |
1952 { | |
1953 pRenderer->ClearZBuffer(0, 479); | |
1954 draw_leather(); | |
1955 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true); | |
1956 CharacterUI_DrawPaperdoll(pPlayers[uActiveCharacter]); | |
1957 pRenderer->DrawTextureTransparent(pBtn_ExitCancel->uX, pBtn_ExitCancel->uY, pIcons_LOD->GetTexture(uTextureID_x_x_u)); | |
1958 continue; | |
1959 } | |
1458 | 1960 case WINDOW_ModalWindow: |
1297 | 1961 { |
1458 | 1962 ModalWindow_ShowHint(); |
1297 | 1963 continue; |
1964 } | |
1965 case WINDOW_50: | |
1966 { | |
1967 v27 = TargetColor(255, 255, 255); | |
1968 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_IN_PROGRESS) | |
1969 { | |
1970 ptr_507BD0->DrawMessageBox(0); | |
1971 ptr_507BD0->DrawText(pFontCreate, 30, 40, v27, (const char *)pKeyActionMap->pPressedKeysBuffer, 0, 0, 0); | |
1972 v31 = pFontCreate->GetLineWidth((const char *)pKeyActionMap->pPressedKeysBuffer); | |
1973 ptr_507BD0->DrawFlashingInputCursor(v31 + 30, 40, pFontCreate); | |
1974 continue; | |
1975 } | |
1976 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_CONFIRMED) | |
1977 { | |
1978 pWindow->receives_keyboard_input_2 = WINDOW_INPUT_NONE; | |
1979 pMessageQueue_50CBD0->AddMessage((UIMessageType)(int)ptr_507BD0->ptr_1C, 0, 0); | |
1980 pEventTimer->Resume(); | |
1981 ptr_507BD0->Release(); | |
1982 pCurrentScreen = SCREEN_GAME; | |
1983 viewparams->bRedrawGameUI = true; | |
1984 continue; | |
1985 } | |
1986 if ( ptr_507BD0->receives_keyboard_input_2 == WINDOW_INPUT_CANCELLED) | |
1987 { | |
1988 pWindow->receives_keyboard_input_2 = WINDOW_INPUT_NONE; | |
1989 pEventTimer->Resume(); | |
1990 ptr_507BD0->Release(); | |
1991 continue; | |
1992 } | |
1993 } | |
1994 case WINDOW_59: | |
1995 { | |
1996 pWindow->DrawMessageBox(0); | |
1997 pWindow->DrawText(pFontLucida, 10, 20, 0, "Making item number", 0, 0, 0); | |
1998 pWindow->DrawText(pFontLucida, 10, 40, 0, (const char *)pKeyActionMap->pPressedKeysBuffer, 0, 0, 0); | |
1999 if ( !pKeyActionMap->field_204 ) | |
2000 { | |
2001 ItemGen2.Reset(); | |
2002 pWindow->Release(); | |
2003 pEventTimer->Resume(); | |
2004 pCurrentScreen = 0; | |
2005 viewparams->bRedrawGameUI = true; | |
2006 v26 = atoi((const char *)pKeyActionMap->pPressedKeysBuffer); | |
2007 if ( v26 > 0 ) | |
2008 { | |
2009 if ( v26 < 800 ) | |
2010 { | |
2011 ItemGen2.uAttributes |= 1u; | |
2012 ItemGen2.uItemID = v26; | |
2013 if ( pItemsTable->pItems[v26].uEquipType == 12 ) | |
2014 { | |
1709
8251e59fd7c1
ITEM_ENCHANTED to ITEM_HARDENED, created helper functions to get params from itemtable for ItemGens
Grumpy7
parents:
1640
diff
changeset
|
2015 ItemGen2.uNumCharges = rand() % 6 + ItemGen2.GetDamageMod() + 1; |
1297 | 2016 ItemGen2.uMaxCharges = LOBYTE(ItemGen2.uNumCharges); |
2017 } | |
2018 else | |
2019 { | |
2020 if ( v26 >= 221 && v26 < 271 ) | |
2021 ItemGen2.uEnchantmentType = rand() % 10 + 1; | |
2022 } | |
2023 pItemsTable->SetSpecialBonus(&ItemGen2); | |
2024 pParty->SetHoldingItem(&ItemGen2); | |
2025 } | |
2026 } | |
2027 } | |
2028 continue; | |
2029 } | |
2030 case WINDOW_PressedButton2: | |
2031 { | |
2032 if ( pWindow->Hint != (char *)1 ) | |
2033 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2034 pButton = (GUIButton *)pWindow->ptr_1C; | |
2035 if ( pButton->uX >= 0 && pButton->uX <= 640 ) | |
2036 { | |
2037 if ( pButton->uY >= 0 && pButton->uY <= 480 ) | |
2038 { | |
2039 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2040 viewparams->bRedrawGameUI = 1; | |
2041 if ( pWindow->Hint ) | |
2042 { | |
2043 if ( pWindow->Hint != (char *)1 ) | |
2044 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2045 } | |
2046 pWindow->Release(); | |
2047 continue; | |
2048 } | |
2049 } | |
2050 viewparams->bRedrawGameUI = 1; | |
2051 if ( pWindow->Hint ) | |
2052 { | |
2053 if ( pWindow->Hint != (char *)1 ) | |
2054 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2055 } | |
2056 pWindow->Release(); | |
2057 continue; | |
2058 } | |
2059 case WINDOW_CharactersPressedButton: | |
2060 { | |
2061 if ( pWindow->Hint != (char *)1 ) | |
2062 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2063 pButton = (GUIButton *)pWindow->ptr_1C; | |
2064 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]); | |
2065 viewparams->bRedrawGameUI = 1; | |
2066 if ( pWindow->Hint ) | |
2067 { | |
2068 if ( pWindow->Hint != (char *)1 ) | |
2069 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2070 } | |
2071 pWindow->Release(); | |
2072 continue; | |
2073 } | |
2074 case WINDOW_PressedButton: | |
2075 { | |
2076 if ( pWindow->Hint != (char *)1 ) | |
2077 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2078 pButton = (GUIButton *)pWindow->ptr_1C; | |
2079 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2080 viewparams->bRedrawGameUI = 1; | |
2081 if ( pWindow->Hint ) | |
2082 { | |
2083 if ( pWindow->Hint != (char *)1 ) | |
2084 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2085 } | |
2086 pWindow->Release(); | |
2087 continue; | |
2088 } | |
2089 case WINDOW_5D: | |
2090 { | |
2091 if ( pWindow->Hint != (char *)1 ) | |
2092 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2093 pButton = (GUIButton *)pWindow->ptr_1C; | |
2094 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]); | |
2095 viewparams->bRedrawGameUI = 1; | |
2096 pWindow->Release(); | |
2097 continue; | |
2098 } | |
2099 case WINDOW_SaveLoadBtn: | |
2100 { | |
2101 if (pWindow->Hint != (char *)1) | |
2102 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2103 pButton = (GUIButton *)pWindow->ptr_1C; | |
2104 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2105 pHint = pWindow->Hint; | |
2106 viewparams->bRedrawGameUI = 1; | |
2107 if ( pHint && pHint != (char *)1 ) | |
2108 pButton->DrawLabel(pHint, pFontCreate, 0, 0); | |
2109 pWindow->Release(); | |
2110 if (pCurrentScreen == SCREEN_SAVEGAME) | |
2111 pMessageQueue_50CBD0->AddMessage(UIMSG_SaveGame, 0, 0); | |
2112 else | |
2113 pMessageQueue_50CBD0->AddMessage(UIMSG_LoadGame, 0, 0); | |
2114 continue; | |
2115 } | |
2116 case WINDOW_LoadGame_CancelBtn: | |
2117 { | |
2118 if ( pWindow->Hint != (char *)1 ) | |
2119 pAudioPlayer->PlaySound((SoundID)75, 0, 0, -1, 0, 0, 0, 0); | |
2120 pButton = (GUIButton *)pWindow->ptr_1C; | |
2121 pRenderer->DrawTextureTransparent(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[0]); | |
2122 viewparams->bRedrawGameUI = 1; | |
2123 if ( pWindow->Hint && pWindow->Hint != (char *)1 ) | |
2124 pButton->DrawLabel(pWindow->Hint, pFontCreate, 0, 0); | |
2125 pWindow->Release(); | |
2126 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2127 continue; | |
2128 } | |
2129 case WINDOW_CloseRestWindowBtn: | |
2130 { | |
2131 if ( pWindow->Hint != (char *)1 ) | |
2132 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2133 pGUIButton = (GUIButton *)pWindow->ptr_1C; | |
2134 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pGUIButton->pTextures[0]); | |
2135 pHint = pWindow->Hint; | |
2136 viewparams->bRedrawGameUI = 1; | |
2137 if ( pHint && pHint != (char *)1 ) | |
2138 pGUIButton->DrawLabel(pHint, pFontCreate, 0, 0); | |
2139 pWindow->Release(); | |
2140 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2141 continue; | |
2142 } | |
2143 case WINDOW_ExitCharacterWindow: | |
2144 { | |
2145 if ( pWindow->Hint != (char *)1 ) | |
2146 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2147 pButton = (GUIButton *)pWindow->ptr_1C; | |
2148 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, pButton->pTextures[1]); | |
2149 pHint = pWindow->Hint; | |
2150 viewparams->bRedrawGameUI = 1; | |
2151 if ( pHint && pHint != (char *)1 ) | |
2152 pButton->DrawLabel(pHint, pFontCreate, 0, 0); | |
2153 pWindow->Release(); | |
2154 pNumMessages = pMessageQueue_50CBD0->uNumMessages; | |
2155 pMessageQueue_50CBD0->AddMessage(UIMSG_Escape, 0, 0); | |
2156 continue; | |
2157 } | |
2158 case WINDOW_RestWindow: | |
2159 { | |
2160 memset(&GUIButton2, 0, 0xBCu); | |
2161 GUIButton2.uZ = 197; | |
2162 GUIButton2.uW = 197; | |
2163 GUIButton2.uX = 27; | |
2164 GUIButton2.uY = 161; | |
2165 GUIButton2.uWidth = 171; | |
2166 GUIButton2.uHeight = 37; | |
2167 GUIButton2.pParent = pButton_RestUI_WaitUntilDawn->pParent; | |
2168 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0); | |
2169 pRenderer->DrawTextureIndexed(pWindow->uFrameX, pWindow->uFrameY, *((Texture **)pWindow->ptr_1C + 15)); | |
2170 viewparams->bRedrawGameUI = 1; | |
2171 GUIButton2.DrawLabel(pGlobalTXT_LocalizationStrings[183], pFontCreate, 0, 0);//Îòäûõ è ëå÷åíèå 8 ÷àñîâ | |
2172 GUIButton2.pParent = 0; | |
2173 pGUIWindow2 = pWindow; | |
2174 pGUIWindow2->Release(); | |
2175 continue; | |
2176 } | |
2177 case WINDOW_BooksWindow: | |
2178 { | |
2179 pButton = (GUIButton *)pWindow->ptr_1C; | |
2180 pRenderer->DrawTextureIndexed(pWindow->uFrameY, | |
2181 pWindow->uFrameX, pButton->pTextures[0]); | |
2182 viewparams->bRedrawGameUI = true; | |
2183 continue; | |
2184 } | |
2185 case WINDOW_CharacterWindow_Inventory: | |
2186 { | |
2187 pWindow->DrawMessageBox(0); | |
2188 pWindow->DrawText(pFontLucida, 10, 20, 0, "Making item number", 0, 0, 0); | |
2189 pWindow->DrawText(pFontLucida, 10, 40, 0, (const char *)pKeyActionMap->pPressedKeysBuffer, 0, 0, 0); | |
2190 if ( !pKeyActionMap->field_204 ) | |
2191 { | |
2192 ItemGen2.Reset(); | |
2193 pWindow->Release(); | |
2194 pEventTimer->Resume(); | |
2195 pCurrentScreen = SCREEN_GAME; | |
2196 viewparams->bRedrawGameUI = 1; | |
2197 v39 = atoi((const char *)pKeyActionMap->pPressedKeysBuffer); | |
2198 if ( v39 > 0 ) | |
2199 { | |
2200 if ( v39 < 800 ) | |
2201 SpawnActor(v39); | |
2202 } | |
2203 } | |
2204 continue; | |
2205 } | |
2206 case WINDOW_KeyMappingOptions: | |
2207 { | |
2208 GameMenuUI_DrawKeyBindings(); | |
2209 continue; | |
2210 } | |
2211 case WINDOW_VideoOptions: | |
2212 { | |
2213 GameMenuUI_DrawVideoOptions(); | |
2214 continue; | |
2215 } | |
2216 default: | |
2217 { | |
2218 continue; | |
2219 } | |
2220 } | |
2221 } | |
2222 if ( GetCurrentMenuID() == -1 ) | |
2223 GameUI_DrawFoodAndGold(); | |
2224 if ( sub_4637E0_is_there_popup_onscreen() ) | |
1802 | 2225 UI_OnMouseRightClick(0); |
1297 | 2226 } |
1916 | 2227 void LoadFonts_and_DrawCopyrightWindow() |
2228 { | |
2229 MainMenuUI_LoadFontsAndSomeStuff(); | |
2230 DrawCopyrightWindow(); | |
2231 } | |
1297 | 2232 //----- (00415485) -------------------------------------------------------- |
2233 void DrawCopyrightWindow() | |
2234 { | |
2235 GUIWindow Dst; // [sp+8h] [bp-54h]@1 | |
2236 | |
2237 memset(&Dst, 0, 0x54u); | |
2238 Dst.uFrameWidth = 624; | |
2239 Dst.uFrameHeight = 256; | |
2240 Dst.uFrameX = 8; | |
2241 Dst.uFrameY = 30; // c 1999 The 3DO Company. | |
2242 Dst.uFrameHeight = pFontSmallnum->CalcTextHeight(pGlobalTXT_LocalizationStrings[157], &Dst, 24, 0) | |
2243 + 2 * LOBYTE(pFontSmallnum->uFontHeight) | |
2244 + 24; | |
2245 Dst.uFrameY = 470 - Dst.uFrameHeight; | |
2246 Dst.uFrameZ = Dst.uFrameX + Dst.uFrameWidth - 1; | |
2247 Dst.uFrameW = 469; | |
2248 //Dst.Hint = "abcagfdsgsg ljsrengvlkjesnfkjwnef"; | |
2249 Dst.DrawMessageBox(0); | |
2250 | |
2251 Dst.uFrameWidth -= 24; | |
2252 Dst.uFrameX += 12; | |
2253 Dst.uFrameY += 12; | |
2254 Dst.uFrameHeight -= 12; | |
2255 Dst.uFrameZ = Dst.uFrameX + Dst.uFrameWidth - 1; | |
2256 Dst.uFrameW = Dst.uFrameY + Dst.uFrameHeight - 1; | |
2257 Dst.DrawTitleText(pFontSmallnum, 0, 0xCu, ui_mainmenu_copyright_color, pGlobalTXT_LocalizationStrings[157], 3); | |
2258 } | |
1458 | 2259 |
2260 | |
2261 | |
2262 | |
2263 int modal_window_prev_screen; | |
2264 | |
2265 //----- (004141CA) -------------------------------------------------------- | |
2266 void ModalWindow(const char *pStrHint, UIMessageType OnRelease_message) | |
2267 { | |
2268 pEventTimer->Pause(); | |
2269 modal_window_prev_screen = pCurrentScreen; | |
2270 pModalWindow = GUIWindow::Create(0, 0, 640, 480, WINDOW_ModalWindow, OnRelease_message, pStrHint); | |
2271 pCurrentScreen = SCREEN_MODAL_WINDOW; | |
2272 } | |
2273 | |
1297 | 2274 //----- (0041420D) -------------------------------------------------------- |
1458 | 2275 void ModalWindow_ShowHint() |
1297 | 2276 { |
2277 GUIWindow pWindow; // [sp+4h] [bp-54h]@1 | |
2278 | |
1458 | 2279 sprintf(pTmpBuf2.data(), "%s\n \n%s", pModalWindow->Hint, pGlobalTXT_LocalizationStrings[61]);// Press Escape |
1297 | 2280 pWindow.Hint = pTmpBuf2.data(); |
2281 pWindow.uFrameWidth = 400; | |
2282 pWindow.uFrameHeight = 100; | |
2283 pWindow.uFrameX = 120; | |
2284 pWindow.uFrameY = 140; | |
2285 pWindow.uFrameZ = 519; | |
2286 pWindow.uFrameW = 239; | |
2287 pWindow.DrawMessageBox(0); | |
2288 } | |
2289 | |
2290 //----- (0041426F) -------------------------------------------------------- | |
1458 | 2291 void ModalWindow_Release() |
1297 | 2292 { |
1458 | 2293 pMessageQueue_50CBD0->AddMessage((UIMessageType)pModalWindow->par1C, 0, 0); |
1297 | 2294 |
1458 | 2295 pModalWindow->Release(); |
2296 pModalWindow = nullptr; | |
1297 | 2297 |
1458 | 2298 pCurrentScreen = modal_window_prev_screen; |
1297 | 2299 pEventTimer->Resume(); |
2300 } | |
2301 | |
2302 //----- (00467FB6) -------------------------------------------------------- | |
2303 void CreateScrollWindow() | |
2304 { | |
2305 unsigned int v0; // eax@1 | |
2306 char *v1; // ST18_4@3 | |
2307 unsigned int v2; // eax@3 | |
2308 GUIWindow a1; // [sp+Ch] [bp-54h]@1 | |
2309 | |
2310 memcpy(&a1, pGUIWindow_ScrollWindow, sizeof(a1)); | |
2311 a1.Hint = 0; | |
2312 a1.uFrameX = 1; | |
2313 a1.uFrameY = 1; | |
2314 a1.uFrameWidth = 468; | |
1312 | 2315 v0 = pFontSmallnum->CalcTextHeight(pScrolls[pGUIWindow_ScrollWindow->par1C], &a1, 0, 0) |
1297 | 2316 + 2 * LOBYTE(pFontCreate->uFontHeight) |
2317 + 24; | |
2318 a1.uFrameHeight = v0; | |
2319 if ( (signed int)(v0 + a1.uFrameY) > 479 ) | |
2320 { | |
2321 v0 = 479 - a1.uFrameY; | |
2322 a1.uFrameHeight = 479 - a1.uFrameY; | |
2323 } | |
2324 a1.uFrameZ = a1.uFrameWidth + a1.uFrameX - 1; | |
2325 a1.uFrameW = v0 + a1.uFrameY - 1; | |
2326 a1.DrawMessageBox(0); | |
2327 a1.uFrameX += 12; | |
2328 a1.uFrameWidth -= 24; | |
2329 a1.uFrameY += 12; | |
2330 a1.uFrameHeight -= 12; | |
2331 a1.uFrameZ = a1.uFrameWidth + a1.uFrameX - 1; | |
2332 a1.uFrameW = a1.uFrameHeight + a1.uFrameY - 1; | |
2333 v1 = pItemsTable->pItems[(unsigned int)pGUIWindow_ScrollWindow->ptr_1C + 700].pName; | |
2334 v2 = TargetColor(0xFFu, 0xFFu, 0x9Bu); | |
2335 sprintf(pTmpBuf.data(), format_4E2D80, v2, v1); | |
2336 a1.DrawTitleText(pFontCreate, 0, 0, 0, pTmpBuf.data(), 3u); | |
2337 a1.DrawText( | |
2338 pFontSmallnum, | |
2339 1, | |
2340 LOBYTE(pFontCreate->uFontHeight) - 3, | |
2341 0, | |
2342 pScrolls[(unsigned int)pGUIWindow_ScrollWindow->ptr_1C], | |
2343 0, | |
2344 0, | |
2345 0); | |
2346 } | |
2347 //----- (00467F48) -------------------------------------------------------- | |
2348 void CreateMsgScrollWindow( signed int mscroll_id ) | |
2349 { | |
2350 signed int v1; // esi@1 | |
2351 | |
2352 v1 = mscroll_id; | |
2353 if ( !pGUIWindow_ScrollWindow && mscroll_id >= 700 ) | |
2354 { | |
2355 if ( mscroll_id <= 782 ) | |
2356 { | |
2357 uTextureID_720980 = pIcons_LOD->LoadTexture("leather", TEXTURE_16BIT_PALETTE); | |
2358 pGUIWindow_ScrollWindow = GUIWindow::Create(0, 0, 640, 480, WINDOW_Scroll, v1 - 700, 0); | |
2359 } | |
2360 } | |
2361 } | |
2362 //----- (00467F9F) -------------------------------------------------------- | |
1458 | 2363 void free_book_subwindow() |
1297 | 2364 { |
2365 if ( pGUIWindow_ScrollWindow ) | |
2366 { | |
2367 pGUIWindow_ScrollWindow->Release(); | |
2368 pGUIWindow_ScrollWindow = 0; | |
2369 } | |
1913 | 2370 } |
2371 //----- (004226EF) -------------------------------------------------------- | |
2372 void SetUserInterface(PartyAlignment align, bool bReplace) | |
2373 { | |
2374 extern void set_default_ui_skin(); | |
2375 set_default_ui_skin(); | |
2376 | |
2377 if (align == PartyAlignment_Evil) | |
2378 { | |
2379 if ( bReplace ) | |
2380 { | |
2381 pTexture_RightFrame->Reload("ib-r-C.pcx"); | |
2382 pTexture_BottomFrame->Reload("ib-b-C.pcx"); | |
2383 pTexture_TopFrame->Reload("ib-t-C.pcx"); | |
2384 pTexture_LeftFrame->Reload("ib-l-C.pcx"); | |
2385 pTexture_StatusBar->Reload("IB-Foot-c.pcx"); | |
2386 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-C", 2); | |
2387 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-c", 2); | |
2388 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-C", 2); | |
2389 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-c", 2); | |
2390 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-c", 2); | |
2391 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-c", 2); | |
2392 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-C", 2); | |
2393 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-C", 2); | |
2394 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-C", 2); | |
2395 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-C", 2); | |
2396 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-C", 2); | |
2397 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-c", 2); | |
2398 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-c", 2); | |
2399 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-c", 2); | |
2400 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-c", 2); | |
2401 | |
2402 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-c", 2); | |
2403 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-c", 2); | |
2404 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-c", 2); | |
2405 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-c", 2); | |
2406 | |
2407 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC"); | |
2408 pIconsFrameTable->InitializeAnimation(pUIAnim_WizardEye->uIconID); | |
2409 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC"); | |
2410 pIconsFrameTable->InitializeAnimation(pUIAnum_Torchlight->uIconID); | |
2411 | |
2412 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-c", 2); | |
2413 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-c", 2); | |
2414 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-c", 2); | |
2415 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2); | |
2416 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-c", 2); | |
2417 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-c", 2); | |
2418 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-c", 2); | |
2419 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-c", 2); | |
2420 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-c", 2); | |
2421 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-c", 2); | |
2422 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-c", 2); | |
2423 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-c", 2); | |
2424 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-c", 2); | |
2425 } | |
2426 else | |
2427 { | |
2428 pTexture_RightFrame->Load("ib-r-C.pcx", 0); | |
2429 pTexture_BottomFrame->Load("ib-b-c.pcx", 0); | |
2430 pTexture_TopFrame->Load("ib-t-C.pcx", 0); | |
2431 pTexture_LeftFrame->Load("ib-l-C.pcx", 0); | |
2432 pTexture_StatusBar->Load("IB-Foot-c.pcx", 0); | |
2433 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-C", TEXTURE_16BIT_PALETTE); | |
2434 uTextureID_Minimap_Loop = pIcons_LOD->LoadTexture("ib-autmask-c", TEXTURE_16BIT_PALETTE); | |
2435 uTextureID_Compas = pIcons_LOD->LoadTexture("IB-COMP-C", TEXTURE_16BIT_PALETTE); | |
2436 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-c", TEXTURE_16BIT_PALETTE); | |
2437 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-c", TEXTURE_16BIT_PALETTE); | |
2438 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-c", TEXTURE_16BIT_PALETTE); | |
2439 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-C", TEXTURE_16BIT_PALETTE); | |
2440 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-C", TEXTURE_16BIT_PALETTE); | |
2441 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-C", TEXTURE_16BIT_PALETTE); | |
2442 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-C", TEXTURE_16BIT_PALETTE); | |
2443 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-C", TEXTURE_16BIT_PALETTE); | |
2444 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-c", TEXTURE_16BIT_PALETTE); | |
2445 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-c", TEXTURE_16BIT_PALETTE); | |
2446 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-c", TEXTURE_16BIT_PALETTE); | |
2447 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-c", TEXTURE_16BIT_PALETTE); | |
2448 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-c", TEXTURE_16BIT_PALETTE); | |
2449 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-c", TEXTURE_16BIT_PALETTE); | |
2450 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-c", TEXTURE_16BIT_PALETTE); | |
2451 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-c", TEXTURE_16BIT_PALETTE); | |
2452 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-c", TEXTURE_16BIT_PALETTE); | |
2453 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc-c", TEXTURE_16BIT_PALETTE); | |
2454 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE); | |
2455 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeC"); | |
2456 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
2457 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchC"); | |
2458 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
2459 } | |
2460 uGameUIFontMain = TargetColor(0xC8u, 0, 0); | |
2461 uGameUIFontShadow = TargetColor(10, 0, 0); | |
2462 } | |
2463 else if (align == PartyAlignment_Neutral) | |
2464 { | |
2465 if ( bReplace ) | |
2466 { | |
2467 pTexture_RightFrame->Reload("ib-r-a.pcx"); | |
2468 pTexture_BottomFrame->Reload("ib-b-a.pcx"); | |
2469 pTexture_TopFrame->Reload("ib-t-a.pcx"); | |
2470 pTexture_LeftFrame->Reload("ib-l-a.pcx"); | |
2471 pTexture_StatusBar->Reload("IB-Foot-a.pcx"); | |
2472 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-a", 2); | |
2473 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-a", 2); | |
2474 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-a", 2); | |
2475 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-a", 2); | |
2476 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-a", 2); | |
2477 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-a", 2); | |
2478 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-a", 2); | |
2479 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-a", 2); | |
2480 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-a", 2); | |
2481 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-a", 2); | |
2482 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-a", 2); | |
2483 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-a", 2); | |
2484 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-a", 2); | |
2485 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-a", 2); | |
2486 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-a", 2); | |
2487 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-a", 2); | |
2488 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-a", 2); | |
2489 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-a", 2); | |
2490 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-a", 2); | |
2491 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA"); | |
2492 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
2493 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA"); | |
2494 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
2495 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-a", 2); | |
2496 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc", 2); | |
2497 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven", 2); | |
2498 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2); | |
2499 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll", 2); | |
2500 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr", 2); | |
2501 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul", 2); | |
2502 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur", 2); | |
2503 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm", 2); | |
2504 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf", 2); | |
2505 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt", 2); | |
2506 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top", 2); | |
2507 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap", 2); | |
2508 } | |
2509 else | |
2510 { | |
2511 pTexture_RightFrame->Load("ib-r-A.pcx", 0); | |
2512 pTexture_BottomFrame->Load("ib-b-A.pcx", 0); | |
2513 pTexture_TopFrame->Load("ib-t-A.pcx", 0); | |
2514 pTexture_LeftFrame->Load("ib-l-A.pcx", 0); | |
2515 pTexture_StatusBar->Load("IB-Foot-a.pcx", 0); | |
2516 uTextureID_right_panel = pIcons_LOD->LoadTexture("ib-mb-A", TEXTURE_16BIT_PALETTE); | |
2517 uTextureID_Minimap_Loop = pIcons_LOD->LoadTexture("ib-autmask-a", TEXTURE_16BIT_PALETTE); | |
2518 uTextureID_Compas = pIcons_LOD->LoadTexture("IB-COMP-A", TEXTURE_16BIT_PALETTE); | |
2519 dword_5079D0 = pIcons_LOD->LoadTexture("IB-InitG-a", TEXTURE_16BIT_PALETTE); | |
2520 dword_5079C8 = pIcons_LOD->LoadTexture("IB-InitY-a", TEXTURE_16BIT_PALETTE); | |
2521 dword_5079CC = pIcons_LOD->LoadTexture("IB-InitR-a", TEXTURE_16BIT_PALETTE); | |
2522 uTextureID_Btn_NPCLeft = pIcons_LOD->LoadTexture("IB-NPCLD-A", TEXTURE_16BIT_PALETTE); | |
2523 uTextureID_Btn_NPCRight = pIcons_LOD->LoadTexture("IB-NPCRD-A", TEXTURE_16BIT_PALETTE); | |
2524 uTextureID_GameUI_CharSelectionFrame = pIcons_LOD->LoadTexture("IB-selec-A", TEXTURE_16BIT_PALETTE); | |
2525 uTextureID_Btn_CastSpell = pIcons_LOD->LoadTexture("ib-m1d-a", TEXTURE_16BIT_PALETTE); | |
2526 uTextureID_Btn_Rest = pIcons_LOD->LoadTexture("ib-m2d-a", TEXTURE_16BIT_PALETTE); | |
2527 uTextureID_Btn_QuickReference = pIcons_LOD->LoadTexture("ib-m3d-a", TEXTURE_16BIT_PALETTE); | |
2528 uTextureID_Btn_GameSettings = pIcons_LOD->LoadTexture("ib-m4d-a", TEXTURE_16BIT_PALETTE); | |
2529 uTextureID_Btn_ZoomIn = pIcons_LOD->LoadTexture("ib-autout-a", TEXTURE_16BIT_PALETTE); | |
2530 uTextureID_Btn_ZoomOut = pIcons_LOD->LoadTexture("ib-autin-a", TEXTURE_16BIT_PALETTE); | |
2531 uExitCancelTextureId = pIcons_LOD->LoadTexture("ib-bcu-a", TEXTURE_16BIT_PALETTE); | |
2532 uTextureID_PlayerBuff_Bless = pIcons_LOD->LoadTexture("isg-01-a", TEXTURE_16BIT_PALETTE); | |
2533 uTextureID_PlayerBuff_Preservation = pIcons_LOD->LoadTexture("isg-02-a", TEXTURE_16BIT_PALETTE); | |
2534 uTextureID_PlayerBuff_Hammerhands = pIcons_LOD->LoadTexture("isg-03-a", TEXTURE_16BIT_PALETTE); | |
2535 uTextureID_PlayerBuff_PainReflection = pIcons_LOD->LoadTexture("isg-04-a", TEXTURE_16BIT_PALETTE); | |
2536 uTextureID_50795C = pIcons_LOD->LoadTexture("evtnpc", TEXTURE_16BIT_PALETTE); | |
2537 uTextureID_CharacterUI_InventoryBackground = pIcons_LOD->LoadTexture("fr_inven", TEXTURE_16BIT_PALETTE); | |
2538 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeA"); | |
2539 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
2540 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchA"); | |
2541 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
2542 uTextureID_Parchment = pIcons_LOD->LoadTexture("parchment", TEXTURE_16BIT_PALETTE); | |
2543 uTextureID_5076B4 = pIcons_LOD->LoadTexture("cornr_ll", TEXTURE_16BIT_PALETTE); | |
2544 uTextureID_5076B0 = pIcons_LOD->LoadTexture("cornr_lr", TEXTURE_16BIT_PALETTE); | |
2545 uTextureID_5076AC = pIcons_LOD->LoadTexture("cornr_ul", TEXTURE_16BIT_PALETTE); | |
2546 uTextureID_5076A8 = pIcons_LOD->LoadTexture("cornr_ur", TEXTURE_16BIT_PALETTE); | |
2547 uTextureID_5076A4 = pIcons_LOD->LoadTexture("edge_btm", TEXTURE_16BIT_PALETTE); | |
2548 uTextureID_5076A0 = pIcons_LOD->LoadTexture("edge_lf", TEXTURE_16BIT_PALETTE); | |
2549 uTextureID_50769C = pIcons_LOD->LoadTexture("edge_rt", TEXTURE_16BIT_PALETTE); | |
2550 uTextureID_507698 = pIcons_LOD->LoadTexture("edge_top", TEXTURE_16BIT_PALETTE); | |
2551 pTexture_591428 = pIcons_LOD->LoadTexturePtr("endcap", TEXTURE_16BIT_PALETTE); | |
2552 } | |
2553 uGameUIFontMain = TargetColor(0xAu, 0, 0); | |
2554 uGameUIFontShadow = TargetColor(230, 214, 193); | |
2555 } | |
2556 else if (align == PartyAlignment_Good) | |
2557 { | |
2558 if ( bReplace ) | |
2559 { | |
2560 pTexture_RightFrame->Reload("ib-r-B.pcx"); | |
2561 pTexture_BottomFrame->Reload("ib-b-B.pcx"); | |
2562 pTexture_TopFrame->Reload("ib-t-B.pcx"); | |
2563 pTexture_LeftFrame->Reload("ib-l-B.pcx"); | |
2564 pTexture_StatusBar->Reload("IB-Foot-b.pcx"); | |
2565 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_right_panel], "ib-mb-B", 2); | |
2566 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Minimap_Loop], "ib-autmask-b", 2); | |
2567 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Compas], "IB-COMP-B", 2); | |
2568 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079D0], "IB-InitG-b", 2); | |
2569 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079C8], "IB-InitY-b", 2); | |
2570 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[dword_5079CC], "IB-InitR-b", 2); | |
2571 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCLeft], "IB-NPCLD-B", 2); | |
2572 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_NPCRight], "IB-NPCRD-B", 2); | |
2573 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], "ib-autout-B", 2); | |
2574 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], "ib-autin-B", 2); | |
2575 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_GameUI_CharSelectionFrame], "IB-selec-B", 2); | |
2576 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_CastSpell], "ib-m1d-b", 2); | |
2577 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_Rest], "ib-m2d-b", 2); | |
2578 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_QuickReference], "ib-m3d-b", 2); | |
2579 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Btn_GameSettings], "ib-m4d-b", 2); | |
2580 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Bless], "isg-01-b", 2); | |
2581 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Preservation], "isg-02-b", 2); | |
2582 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_Hammerhands], "isg-03-b", 2); | |
2583 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_PlayerBuff_PainReflection], "isg-04-b", 2); | |
2584 pUIAnim_WizardEye->uIconID = pIconsFrameTable->FindIcon("wizeyeB"); | |
2585 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnim_WizardEye->uIconID); | |
2586 pUIAnum_Torchlight->uIconID = pIconsFrameTable->FindIcon("torchB"); | |
2587 pIconsFrameTable->InitializeAnimation((signed __int16)pUIAnum_Torchlight->uIconID); | |
2588 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uExitCancelTextureId], "ib-bcu-b", 2); | |
2589 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50795C], "evtnpc-b", 2); | |
2590 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_CharacterUI_InventoryBackground], "fr_inven-b", 2); | |
2591 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_Parchment], "parchment", 2); | |
2592 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B4], "cornr_ll-b", 2); | |
2593 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076B0], "cornr_lr-b", 2); | |
2594 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076AC], "cornr_ul-b", 2); | |
2595 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A8], "cornr_ur-b", 2); | |
2596 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A4], "edge_btm-b", 2); | |
2597 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_5076A0], "edge_lf-b", 2); | |
2598 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_50769C], "edge_rt-b", 2); | |
2599 pIcons_LOD->ReloadTexture(&pIcons_LOD->pTextures[uTextureID_507698], "edge_top-b", 2); | |
2600 pIcons_LOD->ReloadTexture(pTexture_591428, "endcap-b", 2); | |
2601 } | |
2602 uGameUIFontMain = TargetColor(0, 0, 0xC8u); | |
2603 uGameUIFontShadow = TargetColor(255, 255, 255); | |
2604 } | |
2605 else Error("Invalid alignment type: %u", align); | |
2606 } | |
2607 //----- (0041D20D) -------------------------------------------------------- | |
2608 void DrawBuff_remaining_time_string( int uY, struct GUIWindow *window, __int64 remaining_time, struct GUIFont *Font ) | |
2609 { | |
2610 unsigned int full_time; // esi@1 | |
2611 signed __int64 hours; // kr00_8@1 | |
2612 const char *text; // eax@2 | |
2613 signed __int64 minutes; // [sp+10h] [bp-10h]@1 | |
2614 signed __int64 seconds; // [sp+18h] [bp-8h]@1 | |
2615 unsigned int day; // [sp+24h] [bp+4h]@1 | |
2616 | |
2617 full_time = (signed __int64)((double)remaining_time * 0.234375); | |
2618 day = (unsigned int)((full_time / 60) / 60) / 24; | |
2619 hours = ((full_time / 60) / 60) % 24; | |
2620 minutes = (signed __int64)(full_time / 60) % 60; | |
2621 seconds = (signed __int64)full_time % 60; | |
2622 strcpy(pTmpBuf.data(), "\r020"); | |
2623 if ( day ) | |
2624 { | |
2625 text = pGlobalTXT_LocalizationStrings[57]; // Days | |
2626 if ( day <= 1 ) | |
2627 text = pGlobalTXT_LocalizationStrings[56]; // Day | |
2628 sprintfex(pTmpBuf2.data(), "%d %s ", (int)day, text); | |
2629 strcat(pTmpBuf.data(), pTmpBuf2.data()); | |
2630 } | |
2631 if ( hours ) | |
2632 { | |
2633 if ( hours <= 1 ) | |
2634 text = pGlobalTXT_LocalizationStrings[109];// Hour | |
2635 else | |
2636 text = pGlobalTXT_LocalizationStrings[110];// Hours | |
2637 sprintfex(pTmpBuf2.data(), "%d %s ", (int)hours, text); | |
2638 strcat(pTmpBuf.data(), pTmpBuf2.data()); | |
2639 } | |
2640 if ( minutes && !day ) | |
2641 { | |
2642 if ( minutes <= 1 ) | |
2643 text = pGlobalTXT_LocalizationStrings[437];// Minute | |
2644 else | |
2645 text = pGlobalTXT_LocalizationStrings[436];// Minutes | |
2646 sprintfex(pTmpBuf2.data(), "%d %s ", (int)minutes, text); | |
2647 strcat(pTmpBuf.data(), pTmpBuf2.data()); | |
2648 } | |
2649 if ( seconds && !hours ) | |
2650 { | |
2651 if ( seconds <= 1 ) | |
2652 text = pGlobalTXT_LocalizationStrings[439];// Second | |
2653 else | |
2654 text = pGlobalTXT_LocalizationStrings[438];// Seconds | |
2655 sprintfex(pTmpBuf2.data(), "%d %s ", (int)seconds, text); | |
2656 strcat(pTmpBuf.data(), pTmpBuf2.data()); | |
2657 } | |
2658 window->DrawText(Font, 32, uY, 0, pTmpBuf.data(), 0, 0, 0); | |
0 | 2659 } |