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