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