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