annotate UI/UIShops.cpp @ 2377:6eb63623cbe8

Слияние
author Ritor1
date Mon, 02 Jun 2014 12:31:28 +0600
parents bddcaf5d5db2
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: 2250
diff changeset
1 #define _CRT_SECURE_NO_WARNINGS
2350
7c10dfb6d802 Finishing moving all known UI functions to their appropriate headers
Grumpy7
parents: 2336
diff changeset
2 #include "UIShops.h"
2336
d6887ee81068 header file include cleanup
Grumpy7
parents: 2334
diff changeset
3 #include "..\mm7_unsorted_subs.h"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
4 #include "..\Items.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
5 #include "..\GUIWindow.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
6 #include "..\mm7_data.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
7 #include "..\texts.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
8 #include "UIHouses.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
9 #include "..\GUIFont.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
10 #include "..\Render.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
11 #include "..\Party.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
12 #include "..\Texture.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
13 #include "..\Mouse.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
14 #include "..\Events2D.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
15 #include "..\AudioPlayer.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
16 #include "..\MapInfo.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
17 #include "..\Viewport.h"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
18
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
19 //----- (004B910F) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1429
diff changeset
20 void WeaponShopDialog()
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
21 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
22 int phrases_id; // eax@16
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
23 int v19; // edi@25
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
24 GUIButton *pButton; // esi@27
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
25 unsigned int pColorText; // ax@27
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
26 signed int v32; // esi@41
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
27 const char *pText; // ecx@84
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
28 int all_text_height; // esi@96
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
29 ItemGen *item;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
30 int pItemID;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
31 POINT mouse; // [sp+64h] [bp-94h]@8
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
32 GUIWindow dialog_window; // [sp+7Ch] [bp-7Ch]@1
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
33 __int32 v103; // [sp+D4h] [bp-24h]@25
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
34 int pPrice; // [sp+ECh] [bp-Ch]@26
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
35 unsigned int v109;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
36 int pNumString;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
37 int item_X;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
38
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
39 memcpy(&dialog_window, window_SpeakInHouse, sizeof(dialog_window));
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
40 dialog_window.uFrameX = 483;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
41 dialog_window.uFrameWidth = 148;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
42 dialog_window.uFrameZ = 334;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
43
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
44 switch(dialog_menu_id)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
45 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
46 case HOUSE_DIALOGUE_MAIN:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
47 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
48 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
49 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
50 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[134]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
51 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[152]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
52 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[159]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
53 pShopOptions[3] = const_cast<char *>(pGlobalTXT_LocalizationStrings[160]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
54 all_text_height = 0;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
55 for ( int i = 0; i < 4; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
56 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
57 v103 = (174 - all_text_height) / 4;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
58 v19 = (174 - 4 * (174 - all_text_height) / 4 - all_text_height) / 2 - (174 - all_text_height) / 4 / 2 + 138;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
59 pNumString = 0;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
60 for ( int i = pDialogueWindow->pStartingPosActiveItem; i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
61 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
62 pButton = pDialogueWindow->GetControl(i);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
63 pButton->uY = v103 + v19;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
64 pButton->uHeight = pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
65 v19 = pButton->uY + pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0) - 1;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
66 pButton->uW = v19;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
67 pColorText = Color16(0xE1u, 0xCDu, 0x23u);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
68 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
69 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
70 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, (const char *)pShopOptions[pNumString], 3);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
71 ++pNumString;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
72 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
73 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
74 break;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
75 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
76 case HOUSE_DIALOGUE_SHOP_BUY_STANDARD:
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
77 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
78 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
79 item_X = 0;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
80 for ( uint i = 0; i < 6; ++i )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
81 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
82 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
83 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
84 pRenderer->DrawTextureTransparent((60 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) + item_X, weapons_Ypos[i] + 30, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
85 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[(60 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) + item_X + window->GetWidth() * (weapons_Ypos[i] + 30)], ItemsInShopTexture[i], i + 1);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
86 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
87 item_X += 70;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
88 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
89 if ( HouseUI_CheckIfPlayerCanInteract() )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
90 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
91 uint item_num = 0;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
92 for ( uint i = 0; i < 6; ++i )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
93 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
94 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
95 ++item_num;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
96 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
97 if ( GetAsyncKeyState(17) && pPlayers[uActiveCharacter]->CanSteal() )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
98 pText = pGlobalTXT_LocalizationStrings[185];//
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
99 else
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
100 pText = pGlobalTXT_LocalizationStrings[195];//
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
101 DrawTextAtStatusBar(pText, 0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
102 if ( item_num )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
103 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
104 pMouse->GetCursorPos(&mouse);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
105 if ( pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
106 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
107 item = &pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
108 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal() )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
109 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
110 pText = BuildDialogueString(pMerchantsBuyPhrases[pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_WeaponShop, (int)window_SpeakInHouse->ptr_1C, 2)],
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
111 uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
112 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
113 }
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
114 else
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
115 {
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
116 pText = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
117 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
118 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
119 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
120 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
121 else
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
122 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[(unsigned int)window_SpeakInHouse->ptr_1C] - pParty->uTimePlayed);// 7
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
123 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
124 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
125 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
126
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
127 case HOUSE_DIALOGUE_SHOP_BUY_SPECIAL:
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
128 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
129 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
130 item_X = 0;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
131 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
132 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
133 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
134 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
135 pRenderer->DrawTextureTransparent((60 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) + item_X, weapons_Ypos[i] + 30, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
136 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[(60 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) + item_X + window->GetWidth() * (weapons_Ypos[i] + 30)], ItemsInShopTexture[i], i + 1);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
137 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
138 item_X += 70;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
139 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
140 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
141 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
142 uint item_num = 0;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
143 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
144 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
145 if ( pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
146 ++item_num;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
147 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
148 if ( GetAsyncKeyState(17) && pPlayers[uActiveCharacter]->CanSteal() )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
149 pText = pGlobalTXT_LocalizationStrings[185];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
150 else
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
151 pText = pGlobalTXT_LocalizationStrings[196];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
152 DrawTextAtStatusBar(pText, 0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
153 if ( item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
154 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
155 pMouse->GetCursorPos(&mouse);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
156 if ( pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
157 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
158 item = &pParty->SpecialItemsInShops[(int)window_SpeakInHouse->ptr_1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
159 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
160 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
161 pText = BuildDialogueString(pMerchantsBuyPhrases[pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_WeaponShop, (int)window_SpeakInHouse->ptr_1C, 2)],
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
162 uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
163 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
164 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
165 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
166 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
167 pText = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
168 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
169 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
170 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
171 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
172 else
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
173 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[(unsigned int)window_SpeakInHouse->ptr_1C] - pParty->uTimePlayed);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
174 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
175 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
176 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
177
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
178 case HOUSE_DIALOGUE_SHOP_SELL:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
179 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
180 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
181 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
182 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[199], 0);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
183 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
184 return;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
185 pMouse->GetCursorPos(&mouse);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
186 v109 = ((mouse.x + 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
187 if( mouse.x <= 13 || mouse.x >= 462 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
188 return;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
189 pItemID = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v109);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
190 if ( !pItemID )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
191 return;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
192 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pItemID - 1];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
193 phrases_id = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_WeaponShop, (int)window_SpeakInHouse->ptr_1C, 3);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
194 pText = BuildDialogueString(pMerchantsSellPhrases[phrases_id], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 3, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
195 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
196 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
197 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
198 case HOUSE_DIALOGUE_SHOP_IDENTIFY:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
199 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
200 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
201 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
202 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[197], 0);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
203 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
204 return;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
205 pMouse->GetCursorPos(&mouse);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
206 v109 = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
207 if( mouse.x <= 13 || mouse.x >= 462 )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
208 return;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
209 pItemID = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v109);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
210 if ( !pItemID )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
211 return;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
212 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pItemID - 1];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
213 if (!item->IsIdentified())
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
214 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
215 phrases_id = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_WeaponShop, (int)window_SpeakInHouse->ptr_1C, 4);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
216 pText = BuildDialogueString(pMerchantsIdentifyPhrases[phrases_id], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
217 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
218 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
219 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
220 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
221 pText = BuildDialogueString("%24", uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
222 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
223 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
224 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
225 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
226
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
227 case HOUSE_DIALOGUE_SHOP_REPAIR:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
228 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
229 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
230 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
231 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[198], 0);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
232 if ( !HouseUI_CheckIfPlayerCanInteract())
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
233 return;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
234 pMouse->GetCursorPos(&mouse);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
235 v109 = ((mouse.x - 14) >> 5) + 14 * (mouse.y - 17) >> 5;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
236 if( ( mouse.x <= 13) || mouse.x >= 462 )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
237 return;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
238 pItemID = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v109);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
239 if ( !pItemID || (!(pPlayers[uActiveCharacter]->pOwnItems[pItemID - 1].uAttributes & 2)) )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
240 return;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
241 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pItemID - 1];
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
242 phrases_id = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_ArmorShop, (int)window_SpeakInHouse->ptr_1C, 5);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
243 pText = BuildDialogueString(pMerchantsRepairPhrases[phrases_id], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 5, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
244 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
245 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
246 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
247 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
248
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
249 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
250 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
251 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
252 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
253 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[200]);//sell
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
254 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[113]);//identify
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
255 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[179]);//repair
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
256 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
257 for ( int i = 0; i < 3; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
258 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
259 v103 = (174 - all_text_height) / 3;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
260 v19 = (3 * (58 - (signed int)v103) - all_text_height) / 2 - ((174 - all_text_height) / 3) / 2 + 138;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
261 pNumString = 0;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
262 for ( int i = pDialogueWindow->pStartingPosActiveItem; i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
263 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
264 pButton = pDialogueWindow->GetControl(i);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
265 pButton->uY = v103 + v19;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
266 pButton->uHeight = pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
267 v19 = pButton->uY + pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0) - 1;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
268 pButton->uW = v19;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
269 pColorText = Color16(0xE1u, 0xCDu, 0x23u);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
270 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
271 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
272 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, (const char *)pShopOptions[pNumString], 3);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
273 ++pNumString;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
274 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
275 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
276 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
277
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
278 case HOUSE_DIALOGUE_LEARN_SKILLS:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
279 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
280 if (!HouseUI_CheckIfPlayerCanInteract())
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
281 return;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
282 uint item_num = 0;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
283 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
284 v32 = (signed __int64)(p2DEvents[(signed int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
285 pPrice = v32 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
286 if ( pPrice < v32 / 3 )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
287 pPrice = v32 / 3;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
288 for ( int i = pDialogueWindow->pStartingPosActiveItem;
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
289 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
290 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
291 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pDialogueWindow->GetControl(i)->msg_param - 36]
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
292 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
293 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
294 all_text_height += pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &dialog_window, 0, 0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
295 item_num++;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
296 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
297 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
298 if ( item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
299 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
300 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPrice);// : %lu
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
301 dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
302 v103 = (149 - all_text_height) / item_num;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
303 if ( (149 - all_text_height) / item_num > 32 )
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
304 v103 = 32;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
305 v19 = (149 - item_num * v103 - all_text_height) / 2 - v103 / 2 + 162;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
306 for ( uint i = pDialogueWindow->pStartingPosActiveItem;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
307 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
308 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
309 pButton = pDialogueWindow->GetControl(i);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
310 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36] || pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
311 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
312 pButton->uW = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
313 pButton->uHeight = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
314 pButton->uY = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
315 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
316 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
317 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
318 pButton->uY = v103 + v19;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
319 pButton->uHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
320 v19 = pButton->uY + pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0) - 1;
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
321 pButton->uW = v19;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
322 pColorText = Color16(0xE1u, 0xCDu, 0x23u);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
323 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
324 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
325 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, pSkillNames[pButton->msg_param - 36], 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
326 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
327 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
328 break;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
329 }
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
330 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]);
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
331 strcat(pTmpBuf.data(), "\n \n");
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
332 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);// .
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
333 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0)) / 2 + 138, Color16(0xE1u, 0xCDu, 0x23u), pTmpBuf.data(), 3);
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
334 return;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
335 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
336 default:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
337 {
1739
1776d4f033a7 WeaponShop cleared
Ritor1
parents: 1729
diff changeset
338 __debugbreak();
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
339 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
340 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
341 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
342 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
343
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
344 //----- (004BA928) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1429
diff changeset
345 void ArmorShopDialog()
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
346 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
347 int phrases_id; // eax@20
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
348 int all_text_height; // ebx@22
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
349 int v146; // [sp+E4h] [bp-20h]@24
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
350 int v23; // ebx@24
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
351 GUIButton *pButton; // eax@26
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
352 signed int v38; // esi@42
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
353 int v59; // eax@68
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
354 const char *pText; // ecx@91
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
355 ItemGen *selected_item; // ecx@99
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
356 int pNumString; // edx@109
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
357 unsigned __int16 pTextColor; // ax@109
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
358 POINT mouse; // [sp+4Ch] [bp-B8h]@97
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
359 GUIWindow dialog_window; // [sp+8Ch] [bp-78h]@1
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
360 __int32 pItemCount; // [sp+F0h] [bp-14h]@8
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
361 int item_x; // [sp+100h] [bp-4h]@44
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
362 int pPrice;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
363 unsigned int v153;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
364
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
365 memcpy(&dialog_window, window_SpeakInHouse, sizeof(dialog_window));
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
366 dialog_window.uFrameX = 483;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
367 dialog_window.uFrameWidth = 148;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
368 dialog_window.uFrameZ = 334;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
369 switch (dialog_menu_id)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
370 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
371 case HOUSE_DIALOGUE_MAIN:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
372 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
373 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
374 return;
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
375 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[134]); //"Buy Standard"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
376 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[152]); //"Buy Special"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
377 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[159]); //"Display Inventory"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
378 pShopOptions[3] = const_cast<char *>(pGlobalTXT_LocalizationStrings[160]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
379 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
380 for( int i = 0; i < 4; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
381 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
382 v146 = ( 174 - all_text_height ) / 4;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
383 v23 = ( 174 - 4 * ( 174 - all_text_height ) / 4 - all_text_height ) / 2 - ( 174 - all_text_height ) / 4 / 2 + 138;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
384 pNumString = 0;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
385 for (int i = pDialogueWindow->pStartingPosActiveItem;
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
386 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
387 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
388 pButton = pDialogueWindow->GetControl(i);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
389 pButton->uY = v146 + v23;
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
390 pButton->uHeight = pFontArrus->CalcTextHeight(pShopOptions[pNumString], &dialog_window, 0, 0);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
391 v23 = pButton->uY + pFontArrus->CalcTextHeight(pShopOptions[pNumString], &dialog_window, 0, 0) - 1;
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
392 pButton->uW = v23;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
393 pTextColor = Color16(0xE1u, 0xCDu, 0x23u);
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
394 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
395 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
396 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pShopOptions[pNumString], 3);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
397 ++pNumString;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
398 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
399 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
400 break;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
401
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
402 case HOUSE_DIALOGUE_SHOP_BUY_STANDARD:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
403 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
404 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);//
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
405 item_x = 0;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
406 for ( int i = 0; i < 8; ++i )//
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
407 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
408 if ( pParty->StandartItemsInShops[window_SpeakInHouse->par1C][i].uItemID)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
409 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
410 if ( i >= 4 ) //low row
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
411 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
412 pRenderer->DrawTextureTransparent((90 - (ItemsInShopTexture[i]->uTextureWidth / 2)) + item_x - 420, 126, ItemsInShopTexture[i]);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
413 v59 = (90 - (ItemsInShopTexture[i]->uTextureWidth / 2)) + item_x + 80220;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
414 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
415 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
416 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
417 pRenderer->DrawTextureTransparent(( 86 - (ItemsInShopTexture[i]->uTextureWidth / 2)) + item_x, 98 - ItemsInShopTexture[i]->uTextureHeight, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
418 v59 = item_x + (86 - (ItemsInShopTexture[i]->uTextureWidth / 2)) + window->GetWidth() * (98 - ItemsInShopTexture[i]->uTextureHeight);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
419 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
420 ZBuffer_DoFill(&pRenderer->pActiveZBuffer[v59], ItemsInShopTexture[i], i + 1);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
421 }
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
422 item_x += 105;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
423 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
424 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
425 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
426 pItemCount = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
427 for ( int i = 0; i < 8; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
428 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
429 if ( pParty->StandartItemsInShops[window_SpeakInHouse->par1C][i].uItemID )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
430 ++pItemCount;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
431 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
432 if ( GetAsyncKeyState(17) == 0 || pPlayers[uActiveCharacter]->CanSteal() == 0 )
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
433 pText = pGlobalTXT_LocalizationStrings[195]; //"Select the Item to Buy"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
434 else
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
435 pText = pGlobalTXT_LocalizationStrings[185];//"Steal item"
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
436 DrawTextAtStatusBar(pText, 0);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
437 if ( pItemCount )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
438 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
439 pMouse->GetCursorPos(&mouse);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
440 if ( !(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
441 return;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
442 selected_item = &pParty->StandartItemsInShops[window_SpeakInHouse->par1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
443 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal())
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
444 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
445 pText = BuildDialogueString(pMerchantsBuyPhrases[pPlayers[uActiveCharacter]->SelectPhrasesTransaction(selected_item, BuildingType_ArmorShop, window_SpeakInHouse->par1C, 2)],
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
446 uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
447 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
448 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
449 else
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
450 {
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
451 pText = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 2, 0); //"Steal %24"
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
452 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
453 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
454 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
455 }
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
456 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[window_SpeakInHouse->par1C]- pParty->uTimePlayed);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
457 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
458 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
459 break;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
460
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
461 case HOUSE_DIALOGUE_SHOP_BUY_SPECIAL:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
462 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
463 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
464 item_x = 0;
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
465 for ( int i = 0; i < 8; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
466 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
467 if ( pParty->SpecialItemsInShops[window_SpeakInHouse->par1C][i].uItemID )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
468 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
469 if ( i >= 4 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
470 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
471 pRenderer->DrawTextureTransparent(item_x + (90 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) - 420, 126, ItemsInShopTexture[i]);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
472 v59 = item_x + (90 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) + 80220;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
473 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
474 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
475 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
476 pRenderer->DrawTextureTransparent(86 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2) + item_x, 98 - ItemsInShopTexture[i]->uTextureHeight, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
477 v59 = (86 - ((signed int)ItemsInShopTexture[i]->uTextureWidth / 2)) + item_x + window->GetWidth() * (98 - ItemsInShopTexture[i]->uTextureHeight);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
478 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
479 ZBuffer_DoFill(&pRenderer->pActiveZBuffer[v59], ItemsInShopTexture[i], i + 1);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
480 }
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
481 item_x += 105;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
482 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
483 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
484 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
485 pItemCount = 0;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
486 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
487 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
488 if (pParty->SpecialItemsInShops[window_SpeakInHouse->par1C][i].uItemID)
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
489 ++pItemCount;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
490 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
491 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal() )
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
492 pText = pGlobalTXT_LocalizationStrings[196]; //Select the Special Item to Buy"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
493 else
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
494 pText = pGlobalTXT_LocalizationStrings[185];
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
495 DrawTextAtStatusBar(pText, 0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
496 if ( pItemCount )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
497 {
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
498 pMouse->GetCursorPos(&mouse);
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
499 if ( !(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
500 return;
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
501 pItemCount = (pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
502 if ( dialog_menu_id == 2 )
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
503 selected_item = &pParty->StandartItemsInShops[window_SpeakInHouse->par1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
504 else
1741
4b0e19d91505 ArmorShop cleaning(continue)
Ritor1
parents: 1739
diff changeset
505 selected_item = &pParty->SpecialItemsInShops[window_SpeakInHouse->par1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
506 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal() )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
507 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
508 pText = BuildDialogueString(pMerchantsBuyPhrases[pPlayers[uActiveCharacter]->SelectPhrasesTransaction(selected_item, BuildingType_ArmorShop, window_SpeakInHouse->par1C, 2)],
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
509 uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
510 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
511 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
512 else
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
513 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
514 pText = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);//"Steal %24"
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
515 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
516 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
517 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
518 }
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
519 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[window_SpeakInHouse->par1C]- pParty->uTimePlayed);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
520 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
521 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
522 break;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
523
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
524 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
525 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
526 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
527 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
528 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[200]); //"Sell"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
529 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[113]); //"Identify"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
530 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[179]); //"Repair"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
531 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
532 for ( int i = 0; i < 3; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
533 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
534 v146 = (174 - all_text_height) / 3;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
535 v23 = (3 * (58 - v146) - all_text_height) / 2 - v146 / 2 + 138;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
536 pNumString = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
537 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
538 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
539 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
540 pButton = pDialogueWindow->GetControl(i);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
541 pButton->uY = v146 + v23;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
542 pButton->uHeight = pFontArrus->CalcTextHeight(pShopOptions[pNumString], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
543 v23 = pButton->uY + pFontArrus->CalcTextHeight(pShopOptions[pNumString], &dialog_window, 0, 0) - 1;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
544 pButton->uW = v23;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
545 pTextColor = Color16(0xE1u, 0xCDu, 0x23u);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
546 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
547 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
548 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pShopOptions[pNumString], 3);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
549 ++pNumString;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
550 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
551 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
552 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
553 break;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
554
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
555 case HOUSE_DIALOGUE_SHOP_SELL:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
556 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
557 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
558 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
559 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[199], 0);//"Select the Item to Sell"
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
560 if ( !HouseUI_CheckIfPlayerCanInteract())
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
561 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
562 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
563 v153 = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
564 if ( mouse.x <= 13 || mouse.x >= 462 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
565 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
566 if ( !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
567 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
568 selected_item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153) - 1];
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
569 pText = BuildDialogueString(pMerchantsSellPhrases[pPlayers[uActiveCharacter]->SelectPhrasesTransaction(selected_item, BuildingType_ArmorShop, window_SpeakInHouse->par1C, 3)],
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
570 uActiveCharacter - 1, selected_item, (char *) window_SpeakInHouse->par1C, 3, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
571 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
572 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
573 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
574 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
575 case HOUSE_DIALOGUE_SHOP_IDENTIFY:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
576 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
577 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
578 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
579 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[197], 0); //"Select the Item to Identify"
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
580 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
581 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
582 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
583 v153 = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
584 if ( mouse.x > 13 && mouse.x < 462 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
585 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
586 if ( pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
587 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
588 selected_item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153)-1];
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
589 if (selected_item->IsIdentified())
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
590 pText = BuildDialogueString("%24", uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
591 else
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
592 pText = BuildDialogueString(pMerchantsIdentifyPhrases[pPlayers[uActiveCharacter]->SelectPhrasesTransaction(selected_item, BuildingType_ArmorShop,
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
593 (int)window_SpeakInHouse->ptr_1C, 4)], uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
594 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
595 return;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
596 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
597 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
598 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
599 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
600 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
601 case HOUSE_DIALOGUE_SHOP_REPAIR:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
602 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
603 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
604 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
605 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[198], 0);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
606 if ( !HouseUI_CheckIfPlayerCanInteract())
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
607 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
608 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
609 v153 = ((mouse.x -14) >> 5) + 14 * ((mouse.y - 17) >> 5);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
610 if( mouse.x <= 13 || mouse.x >= 462 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
611 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
612 if ( !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153)
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
613 || (!(pPlayers[uActiveCharacter]->pOwnItems[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153) - 1].uAttributes& 2)) )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
614 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
615 selected_item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153) - 1];
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
616 phrases_id = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(&pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v153) - 1],
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
617 BuildingType_ArmorShop, window_SpeakInHouse->par1C, 5);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
618 pText = BuildDialogueString(pMerchantsRepairPhrases[phrases_id], uActiveCharacter - 1, selected_item, (char *)window_SpeakInHouse->ptr_1C, 5, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
619 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
620 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
621 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
622 break;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
623
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
624 case HOUSE_DIALOGUE_LEARN_SKILLS:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
625 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
626 if (!HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
627 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
628 uint item_num = 0;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
629 v38 = (signed __int64)(p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
630 pPrice = v38 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
631 if ( (signed int)pPrice < v38 / 3 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
632 pPrice = v38 / 3;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
633 all_text_height = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
634 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
635 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
636 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
637 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pDialogueWindow->GetControl(i)->msg_param - 36]
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
638 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
639 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
640 all_text_height += pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
641 item_num ++;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
642 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
643 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
644 if ( item_num )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
645 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
646 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPrice);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
647 dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
648 v146 = (149 - all_text_height) / item_num;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
649 if ( (149 - all_text_height) / item_num > 32 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
650 v146 = 32;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
651 v23 = (149 - v146 * item_num - all_text_height) / 2 - v146 / 2 + 162;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
652 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
653 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
654 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
655 pButton = pDialogueWindow->GetControl(i);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
656 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36]
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
657 || pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
658 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
659 pButton->uW = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
660 pButton->uHeight = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
661 pButton->uY = 0;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
662 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
663 else
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
664 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
665 pButton->uY = v146 + v23;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
666 pButton->uHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
667 v23 = pButton->uY + pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0) - 1;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
668 pButton->uW = v23;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
669 pTextColor = Color16(0xE1u, 0xCDu, 0x23u);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
670 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
671 pTextColor = Color16(0xFFu, 0xFFu, 0xFFu);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
672 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pTextColor, pSkillNames[pButton->msg_param - 36], 3);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
673 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
674 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
675 return;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
676 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
677 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]); //"Seek knowledge elsewhere %s the %s"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
678 strcat(pTmpBuf.data(), "\n \n");
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
679 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]); //"I can offer you nothing further."
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
680 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0)) / 2 + 138, Color16(0xE1u, 0xCDu, 0x23u), pTmpBuf.data(), 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
681 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
682 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
683 break;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
684 default:
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
685 __debugbreak();
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
686 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
687 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
688 //----- (004B9CC6) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1429
diff changeset
689 void AlchemistDialog()
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
690 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
691 int index; // eax@7
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
692 signed int v5; // esi@9
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
693 int v18; // eax@23
1838
211dfe2d8db1 changing global char* vars to const char* vars
Grumpy7
parents: 1827
diff changeset
694 const char *pText; // edx@29
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
695 unsigned int product_height_1row; // edi@55
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
696 unsigned int product_width_1row; // esi@57
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
697 unsigned int product_height_2row; // edi@67
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
698 unsigned int product_width_2row; // esi@69
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
699 ItemGen *item; // esi@118
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
700 int v71; // eax@123
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
701 int all_text_height; // edi@125
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
702 GUIButton *pButton; // esi@129
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
703 unsigned int pColorText; // ax@129
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
704 POINT mouse; // [sp+2Ch] [bp-ACh]@117
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
705 GUIWindow dialog_window; // [sp+5Ch] [bp-7Ch]@1
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
706 int v105; // [sp+B0h] [bp-28h]@19
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
707 int pNumString; // [sp+C8h] [bp-10h]@9
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
708 int item_num; // [sp+D4h] [bp-4h]@11
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
709 int pPrice;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
710
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
711 memcpy(&dialog_window, window_SpeakInHouse, sizeof(dialog_window));
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
712 dialog_window.uFrameX = 483;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
713 dialog_window.uFrameWidth = 148;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
714 dialog_window.uFrameZ = 334;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
715 switch(dialog_menu_id)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
716 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
717 case HOUSE_DIALOGUE_MAIN:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
718 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
719 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
720 {
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
721 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[134]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
722 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[152]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
723 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[159]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
724 pShopOptions[3] = const_cast<char *>(pGlobalTXT_LocalizationStrings[160]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
725 all_text_height = 0;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
726 for ( int i = 0; i < 4; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
727 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
728 v18 = (174 - all_text_height) / 4;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
729 v105 = (174 - 4 * (174 - all_text_height) / 4 - all_text_height) / 2 - (174 - all_text_height) / 4 / 2 + 138;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
730 pNumString = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
731 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
732 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
733 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
734 pButton = pDialogueWindow->GetControl(i);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
735 pButton->uY = v18 + v105;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
736 pButton->uHeight = pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
737 v105 = pButton->uY + pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0) - 1;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
738 pButton->uW = v105;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
739 pColorText = Color16(0xE1u, 0xCDu, 0x23u);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
740 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
741 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
742 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, (const char *)pShopOptions[pNumString], 3);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
743 ++pNumString;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
744 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
745 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
746 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
747 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
748
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
749 case HOUSE_DIALOGUE_SHOP_BUY_STANDARD:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
750 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
751 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
752 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
753 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
754 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
755 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
756 product_height_1row = 152 - ItemsInShopTexture[i]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
757 if ( (signed int)product_height_1row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
758 product_height_1row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
759 product_width_1row = 75 * i - ItemsInShopTexture[i]->uTextureWidth / 2 + 40;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
760 if ( i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
761 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
762 if ( i == 5 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
763 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
764 if ( (signed int)product_width_1row > 457 - ItemsInShopTexture[5]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
765 product_width_1row = 457 - ItemsInShopTexture[5]->uTextureWidth;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
766 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
767 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
768 else if ( (signed int)product_width_1row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
769 product_width_1row = 18;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
770 pRenderer->DrawTextureTransparent(product_width_1row, product_height_1row, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
771 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_1row + window->GetWidth() * product_height_1row], ItemsInShopTexture[i], i + 1);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
772 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
773 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
774 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
775 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
776 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i + 6].uItemID )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
777 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
778 product_height_2row = 308 - ItemsInShopTexture[i + 6]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
779 if ( (signed int)product_height_2row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
780 product_height_2row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
781 product_width_2row = 75 * i - ItemsInShopTexture[i + 6]->uTextureWidth / 2 + 40;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
782 if ( i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
783 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
784 if ( i == 5 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
785 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
786 if ( (signed int)product_width_2row > 457 - ItemsInShopTexture[11]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
787 product_width_2row = 457 - ItemsInShopTexture[11]->uTextureWidth;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
788 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
789 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
790 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
791 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
792 if ( (signed int)product_width_2row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
793 product_width_2row = 18;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
794 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
795 pRenderer->DrawTextureTransparent(product_width_2row, product_height_2row, ItemsInShopTexture[i + 6]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
796 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_2row + window->GetWidth() * product_height_2row], ItemsInShopTexture[i + 6], i + 7);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
797 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
798 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
799 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
800 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
801 item_num = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
802 for ( uint i = 0; i < 12; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
803 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
804 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
805 ++item_num;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
806 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
807 if ( GetAsyncKeyState(17) && pPlayers[uActiveCharacter]->CanSteal() )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
808 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[185], 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
809 else
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
810 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[195], 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
811 if ( !item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
812 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
813 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[ (unsigned int)window_SpeakInHouse->ptr_1C] - pParty->uTimePlayed);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
814 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
815 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
816 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
817 if ( pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
818 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
819 item = &pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
820 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
821 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
822 v71 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_AlchemistShop, (int)window_SpeakInHouse->ptr_1C, 2);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
823 pText = BuildDialogueString(pMerchantsBuyPhrases[v71], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
824 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
825 else
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
826 pText = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
827 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
828 return ;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
829 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
830 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
831 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
832 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
833
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
834 case HOUSE_DIALOGUE_SHOP_BUY_SPECIAL:
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
835 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
836 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
837 for ( uint i = 0; i < 6; ++i )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
838 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
839 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
840 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
841 product_height_1row = 152 - ItemsInShopTexture[i]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
842 if ( (signed int)product_height_1row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
843 product_height_1row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
844 product_width_1row = 75 * i - ItemsInShopTexture[i]->uTextureWidth / 2 + 40;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
845 if ( i )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
846 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
847 if ( i == 5 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
848 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
849 if ( (signed int)product_width_1row > 457 - ItemsInShopTexture[5]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
850 product_width_1row = 457 - ItemsInShopTexture[5]->uTextureWidth;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
851 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
852 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
853 else
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
854 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
855 if ( (signed int)product_width_1row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
856 product_width_1row = 18;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
857 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
858 pRenderer->DrawTextureTransparent(product_width_1row, product_height_1row, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
859 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_1row + window->GetWidth() * product_height_1row], ItemsInShopTexture[i], i + 1);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
860 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
861 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
862 for ( uint i = 0; i < 6; ++i )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
863 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
864 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][(signed int)i + 6].uItemID) //not itemid
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
865 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
866 product_height_2row = 308 - ItemsInShopTexture[i + 6]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
867 if ( (signed int)product_height_2row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
868 product_height_2row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
869 product_width_2row = 75 * i - ItemsInShopTexture[i + 6]->uTextureWidth / 2 + 40;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
870 if ( i )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
871 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
872 if ( i == 5 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
873 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
874 if ( (signed int)product_width_2row > 457 - ItemsInShopTexture[11]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
875 product_width_2row = 457 - ItemsInShopTexture[11]->uTextureWidth;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
876 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
877 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
878 else
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
879 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
880 if ( (signed int)product_width_2row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
881 product_width_2row = 18;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
882 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
883 pRenderer->DrawTextureTransparent(product_width_2row, product_height_2row, ItemsInShopTexture[i + 6]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
884 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_2row + window->GetWidth() * product_height_2row], ItemsInShopTexture[i + 6], i + 7);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
885 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
886 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
887 if ( HouseUI_CheckIfPlayerCanInteract() )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
888 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
889 item_num = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
890 for ( uint i = 0; i < 12; ++i )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
891 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
892 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
893 ++item_num;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
894 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
895 if ( GetAsyncKeyState(17) && pPlayers[uActiveCharacter]->CanSteal() )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
896 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[185], 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
897 else
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
898 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[196], 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
899 if ( !item_num )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
900 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
901 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[ (unsigned int)window_SpeakInHouse->ptr_1C] - pParty->uTimePlayed);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
902 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
903 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
904 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
905 if ( pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
906 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
907 item = &pParty->SpecialItemsInShops[(int)window_SpeakInHouse->ptr_1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
908 if ( !GetAsyncKeyState(17) || !pPlayers[uActiveCharacter]->CanSteal() )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
909 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
910 v71 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_AlchemistShop, (int)window_SpeakInHouse->ptr_1C, 2);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
911 pText = BuildDialogueString(pMerchantsBuyPhrases[v71], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
912 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
913 else
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
914 pText = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
915 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
916 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
917 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
918 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
919 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
920 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
921
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
922 case HOUSE_DIALOGUE_SHOP_SELL:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
923 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
924 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
925 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
926 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[199], 0);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
927 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
928 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
929 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
930 index = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
931 if ( mouse.x <= 13 || mouse.x >= 462 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
932 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
933 if ( !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&index) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
934 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
935 v71 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(&pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&index) - 1],
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
936 BuildingType_AlchemistShop, (int)window_SpeakInHouse->ptr_1C, 3);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
937 pText = BuildDialogueString(pMerchantsSellPhrases[v71], uActiveCharacter - 1, &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&index) - 1],
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
938 (char *)window_SpeakInHouse->ptr_1C, 3, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
939 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
940 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
941 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
942
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
943 case HOUSE_DIALOGUE_SHOP_IDENTIFY:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
944 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
945 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
946 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
947 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[197], 0);
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
948 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
949 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
950 pMouse->GetCursorPos(&mouse);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
951 index = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
952 if ( mouse.x <= 13 || mouse.x >= 462 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
953 return;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
954 if ( !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&index) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
955 return;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
956 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&index) - 1];
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
957 if (!item->IsIdentified())
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
958 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
959 v71 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_AlchemistShop, (int)window_SpeakInHouse->ptr_1C, 4);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
960 pText = BuildDialogueString(pMerchantsIdentifyPhrases[v71], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
961 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
962 else
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
963 pText = BuildDialogueString("%24", uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
964 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pText, &dialog_window, 0, 0)) / 2 + 138, Color16(0xFFu, 0xFFu, 0xFFu), pText, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
965 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
966 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
967
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
968 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
969 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
970 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
971 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
972 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[200]);
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
973 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[113]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
974 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
975 for ( int i = 0; i < 2; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
976 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
977 v18 = (174 - all_text_height) / 2;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
978 v105 = (2 * (87 - (174 - all_text_height) / 2) - all_text_height) / 2 - (174 - all_text_height) / 2 / 2 + 138;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
979 pNumString = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
980 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
981 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
982 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
983 pButton = pDialogueWindow->GetControl(i);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
984 pButton->uY = v18 + v105;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
985 pButton->uHeight = pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
986 v105 = pButton->uY + pFontArrus->CalcTextHeight((const char *)pShopOptions[pNumString], &dialog_window, 0, 0) - 1;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
987 pButton->uW = v105;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
988 pColorText = Color16(0xE1u, 0xCDu, 0x23u);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
989 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
990 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
991 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, (const char *)pShopOptions[pNumString], 3);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
992 ++pNumString;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
993 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
994 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
995 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
996
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
997 case HOUSE_DIALOGUE_LEARN_SKILLS:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
998 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
999 if (!HouseUI_CheckIfPlayerCanInteract())
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1000 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1001 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1002 v5 = (signed __int64)(p2DEvents[(signed int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1003 pPrice = v5 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1004 if ( pPrice < v5 / 3 )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1005 pPrice = v5 / 3;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1006 item_num = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1007 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1008 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1009 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1010 pButton = pDialogueWindow->GetControl(i);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1011 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36]
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1012 && !pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1013 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1014 all_text_height = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1015 ++item_num;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1016 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1017 }
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1018 if ( !item_num )
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1019 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1020 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1021 strcat(pTmpBuf.data(), "\n \n");
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1022 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1023 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0)) / 2 + 138, Color16(0xE1u, 0xCDu, 0x23u), pTmpBuf.data(), 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1024 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1025 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1026 if ( item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1027 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1028 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPrice);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1029 dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1030 v18 = (149 - all_text_height) / item_num;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1031 if ( (149 - all_text_height) / item_num > 32 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1032 v18 = 32;
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1033 v105 = (149 - item_num * v18 - all_text_height) / 2 - v18 / 2 + 162;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1034 for ( int i = pDialogueWindow->pStartingPosActiveItem;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1035 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; i++ )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1036 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1037 pButton = pDialogueWindow->GetControl(i);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1038 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pButton->msg_param - 36]
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1039 || pPlayers[uActiveCharacter]->pActiveSkills[pButton->msg_param - 36] )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1040 {
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1041 pButton->uW = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1042 pButton->uHeight = 0;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1043 pButton->uY = 0;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1044 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1045 else
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1046 {
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1047 pButton->uY = v18 + v105;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1048 pButton->uHeight = pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1049 v105 = pButton->uY + pFontArrus->CalcTextHeight(pSkillNames[pButton->msg_param - 36], &dialog_window, 0, 0) - 1;
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1050 pButton->uW = v105;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1051 pColorText = Color16(0xE1u, 0xCDu, 0x23u);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1052 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1053 pColorText = Color16(0xFFu, 0xFFu, 0xFFu);
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1054 dialog_window.DrawTitleText(pFontArrus, 0, pButton->uY, pColorText, pSkillNames[pButton->msg_param - 36], 3);
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1055 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1056 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1057 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1058 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1059 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1060 default:
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1061 __debugbreak();
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1062 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1063 }
1746
f305a00a6d98 AlchemistDialog() cleared
Ritor1
parents: 1741
diff changeset
1064
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1065 //----- (004B4FCF) --------------------------------------------------------
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1066 void MagicShopDialog()
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1067 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1068 int all_text_height; // edi@21
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1069 GUIButton *control_button; // esi@25
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1070 int v23; // eax@25
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1071 unsigned __int16 text_color; // ax@25
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1072 char *v30; // edx@35
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1073 signed int v33; // esi@40
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1074 unsigned int product_height_1row; // edi@64
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1075 unsigned int product_width_1row; // esi@66
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1076 unsigned int product_height_2row; // edi@76
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1077 unsigned int product_width_2row; // esi@76
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1078 int v75; // eax@130
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1079 POINT mouse; // [sp+6Ch] [bp-8Ch]@30
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1080 GUIWindow dialog_window; // [sp+7Ch] [bp-7Ch]@1
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1081 int item_num; // [sp+E0h] [bp-18h]@8
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1082 int v117; // [sp+E4h] [bp-14h]@40
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1083 int pPrice; // [sp+E8h] [bp-10h]@24
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1084 int one_string; // [sp+ECh] [bp-Ch]@1
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1085 int pSrtingNum;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1086 ItemGen *item;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1087
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1088 memcpy(&dialog_window, window_SpeakInHouse, sizeof(dialog_window));
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1089 dialog_window.uFrameX = 483;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1090 dialog_window.uFrameWidth = 148;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1091 dialog_window.uFrameZ = 334;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1092 if ( dialog_menu_id == HOUSE_DIALOGUE_MAIN)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1093 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
1094 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1095 return;
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1096 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[134]); //"Buy Standard"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1097 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[152]); //"Buy Special"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1098 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[159]); //"Display Inventory"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1099 pShopOptions[3] = const_cast<char *>(pGlobalTXT_LocalizationStrings[160]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1100 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1101 for ( int i = 0; i < 4; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1102 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1103 one_string = (174 - all_text_height) / 4;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1104 v23 = (174 - 4 * one_string - all_text_height) / 2 - one_string / 2 + 138;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1105 int pNumString = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1106 for (int i = pDialogueWindow->pStartingPosActiveItem;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1107 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1108 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1109 control_button = pDialogueWindow->GetControl(i);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1110 control_button->uY = one_string + v23;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1111 control_button->uHeight = pFontArrus->CalcTextHeight(pShopOptions[pNumString], &dialog_window, 0, 0);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1112 v23 = control_button->uY + control_button->uHeight - 1;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1113 control_button->uW = v23;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1114 text_color = Color16(225, 205, 35);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1115 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1116 text_color = Color16(255, 255, 255);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1117 dialog_window.DrawTitleText(pFontArrus, 0, control_button->uY, text_color, pShopOptions[pNumString], 3);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1118 ++pNumString;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1119 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1120 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1121 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1122
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1123 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_STANDARD)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1124 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1125 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1126 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1127 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1128 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1129 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1130 product_height_1row = 152 - ItemsInShopTexture[i]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1131 if ( (signed int)product_height_1row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1132 product_height_1row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1133 product_width_1row = 75 * i - ItemsInShopTexture[i]->uTextureWidth / 2 + 40;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1134 if ( i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1135 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1136 if ( i == 5 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1137 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1138 if ( (signed int)product_width_1row > 457 - ItemsInShopTexture[5]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1139 product_width_1row = 457 - ItemsInShopTexture[5]->uTextureWidth;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1140 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1141 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1142 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1143 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1144 if ( (signed int)product_width_1row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1145 product_width_1row = 18;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1146 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1147 pRenderer->DrawTextureTransparent(product_width_1row, product_height_1row, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
1148 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_1row + window->GetWidth() * product_height_1row], ItemsInShopTexture[i], i + 1);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1149 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1150 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1151 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1152 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1153 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i + 6].uItemID)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1154 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1155 product_height_2row = 306 - ItemsInShopTexture[i + 6]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1156 product_width_2row = 75 * i - ItemsInShopTexture[i + 6]->uTextureWidth / 2 + 40;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1157 if ( i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1158 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1159 if ( i == 5 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1160 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1161 if ( (signed int)product_width_2row > 457 - ItemsInShopTexture[11]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1162 product_width_2row = 457 - ItemsInShopTexture[11]->uTextureWidth;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1163 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1164 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1165 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1166 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1167 if ( (signed int)product_width_2row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1168 product_width_2row = 18;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1169 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1170 pRenderer->DrawTextureTransparent(product_width_2row, product_height_2row, ItemsInShopTexture[i + 6]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
1171 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_2row + window->GetWidth() * product_height_2row], ItemsInShopTexture[i + 6], i + 7);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1172 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1173 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
1174 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1175 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1176 item_num = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1177 for ( uint i = 0; i < 12; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1178 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1179 if ( pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1180 ++item_num;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1181 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1182 if ( GetAsyncKeyState(VK_CONTROL) && pPlayers[uActiveCharacter]->CanSteal() )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1183 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[185], 0);// "Steal item"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1184 else
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1185 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[195], 0);// "Select the Item to Buy"
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1186 if ( !item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1187 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
1188 dialog_window.DrawShops_next_generation_time_string(pParty->PartyTimes.Shops_next_generation_time[(unsigned int)window_SpeakInHouse->ptr_1C] - pParty->uTimePlayed);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1189 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1190 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1191 pMouse->GetCursorPos(&mouse);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1192 if ( pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1193 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1194 item = &pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1195 if ( GetAsyncKeyState(VK_CONTROL) && pPlayers[uActiveCharacter]->CanSteal() )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1196 v30 = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);// "Steal %24"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1197 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1198 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1199 v75 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_MagicShop, (int)window_SpeakInHouse->ptr_1C, 2);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1200 v30 = BuildDialogueString(pMerchantsBuyPhrases[v75], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1201 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1202 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(v30, &dialog_window, 0, 0)) / 2 + 138, Color16(255, 255, 255), v30, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1203 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1204 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1205 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1206 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1207 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1208
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1209 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_SPECIAL)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1210 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1211 pRenderer->DrawTextureIndexed(8, 8, ShopTexture);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1212 for ( uint i = 0; i < 6; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1213 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1214 if ( pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1215 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1216 product_height_1row = 152 - ItemsInShopTexture[i]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1217 if ( (signed int)product_height_1row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1218 product_height_1row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1219 product_width_1row = 75 * i - ItemsInShopTexture[i]->uTextureWidth / 2 + 40;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1220 if ( i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1221 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1222 if ( i == 5 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1223 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1224 if ( (signed int)product_width_1row > 457 - ItemsInShopTexture[5]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1225 product_width_1row = 457 - ItemsInShopTexture[5]->uTextureWidth;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1226 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1227 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1228 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1229 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1230 if ( (signed int)product_width_1row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1231 product_width_1row = 18;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1232 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1233 pRenderer->DrawTextureTransparent(product_width_1row, product_height_1row, ItemsInShopTexture[i]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
1234 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_1row + window->GetWidth() * product_height_1row], ItemsInShopTexture[i], i + 1);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1235 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1236 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1237 for ( uint i = 0; i < 6; ++i )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1238 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1239 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i + 6].uItemID)
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1240 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1241 product_height_2row = 306 - ItemsInShopTexture[i + 6]->uTextureHeight;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1242 if ( (signed int)product_height_2row < 1 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1243 product_height_2row = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1244 product_width_2row = 75 * i - ItemsInShopTexture[i + 6]->uTextureWidth / 2 + 40;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1245 if ( i )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1246 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1247 if ( i == 5 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1248 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1249 if ( (signed int)product_width_2row > 457 - ItemsInShopTexture[11]->uTextureWidth )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1250 product_width_2row = 457 - ItemsInShopTexture[11]->uTextureWidth;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1251 }
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1252 }
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1253 else
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1254 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1255 if ( (signed int)product_width_2row < 18 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1256 product_width_2row = 18;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1257 }
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1258 pRenderer->DrawTextureTransparent(product_width_2row, product_height_2row, ItemsInShopTexture[i + 6]);
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 2182
diff changeset
1259 ZBuffer_DoFill2(&pRenderer->pActiveZBuffer[product_width_2row + window->GetWidth() * product_height_2row], ItemsInShopTexture[i + 6], i + 7);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1260 }
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1261 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
1262 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1263 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1264 item_num = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1265 for ( uint i = 0; i < 12; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1266 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1267 if (pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][i].uItemID)
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1268 ++item_num;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1269 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1270 if ( GetAsyncKeyState(VK_CONTROL) && pPlayers[uActiveCharacter]->CanSteal() )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1271 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[185], 0);// "Steal item"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1272 else
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1273 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[196], 0);// "Select the Special Item to Buy"
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1274 if ( !item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1275 {
1758
24e756a50073 DrawBuff_remaind_time_string and DrawShops_next_generation_time_string fix and cleared
Ritor1
parents: 1754
diff changeset
1276 dialog_window.DrawShops_next_generation_time_string( pParty->PartyTimes.Shops_next_generation_time[(unsigned int)window_SpeakInHouse->ptr_1C] - pParty->uTimePlayed);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1277 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1278 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1279 pMouse->GetCursorPos(&mouse);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1280 if ( pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1281 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1282 item = &pParty->SpecialItemsInShops[(int)window_SpeakInHouse->ptr_1C][(pRenderer->pActiveZBuffer[mouse.x + pSRZBufferLineOffsets[mouse.y]] & 0xFFFF) - 1];
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1283 if ( GetAsyncKeyState(VK_CONTROL) && pPlayers[uActiveCharacter]->CanSteal() )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1284 v30 = BuildDialogueString(pGlobalTXT_LocalizationStrings[181], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);// "Steal %24"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1285 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1286 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1287 v75 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_MagicShop, (int)window_SpeakInHouse->ptr_1C, 2);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1288 v30 = BuildDialogueString(pMerchantsBuyPhrases[v75], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 2, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1289 }
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1290 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(v30, &dialog_window, 0, 0)) / 2 + 138, Color16(255, 255, 255), v30, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1291 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1292 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1293 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1294 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1295 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1296
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1297 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1298 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1299 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1300 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1301 pShopOptions[0] = const_cast<char *>(pGlobalTXT_LocalizationStrings[200]);// "Sell"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1302 pShopOptions[1] = const_cast<char *>(pGlobalTXT_LocalizationStrings[113]);// "Identify"
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1303 pShopOptions[2] = const_cast<char *>(pGlobalTXT_LocalizationStrings[179]);// "Repair"
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1304 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1305 for ( uint i = 0; i < 3; ++i )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1306 all_text_height += pFontArrus->CalcTextHeight(pShopOptions[i], &dialog_window, 0, 0);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1307 one_string = ((174 - all_text_height) / 3);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1308 v23 = (3 * (58 - (signed int)one_string) - all_text_height) / 2 - (174 - all_text_height) / 3 / 2 + 138;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1309 pSrtingNum = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1310 for ( int i = pDialogueWindow->pStartingPosActiveItem;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1311 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1312 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1313 control_button = pDialogueWindow->GetControl(i);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1314 control_button->uY = one_string + v23;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1315 control_button->uHeight = pFontArrus->CalcTextHeight(pShopOptions[pSrtingNum], &dialog_window, 0, 0);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1316 v23 = control_button->uHeight + control_button->uY - 1;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1317 control_button->uW = v23;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1318 text_color = Color16(225, 205, 35);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1319 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1320 text_color = Color16(255, 255, 255);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1321 dialog_window.DrawTitleText(pFontArrus, 0, control_button->uY, text_color, pShopOptions[pSrtingNum], 3);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1322 ++pSrtingNum;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1323 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1324 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1325 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1326
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1327 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_SELL)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1328 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1329 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1330 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1331 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[199], 0);// "Select the Item to Sell"
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1332 if ( !HouseUI_CheckIfPlayerCanInteract() )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1333 return;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1334 pMouse->GetCursorPos(&mouse);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1335 v117 = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1336 if ( mouse.x <= 13 || mouse.x >= 462 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1337 return;
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1338 if ( !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117) )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1339 return;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1340 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117) - 1];
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1341 v75 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_MagicShop, (int)window_SpeakInHouse->ptr_1C, 3);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1342 v30 = BuildDialogueString(pMerchantsSellPhrases[v75], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 3, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1343 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(v30, &dialog_window, 0, 0)) / 2 + 138, Color16(255, 255, 255), v30, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1344 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1345 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1346
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1347 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_IDENTIFY)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1348 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1349 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1350 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1351 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[197], 0);// "Select the Item to Identify"
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
1352 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1353 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1354 pMouse->GetCursorPos(&mouse);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1355 v117 = ((mouse.x -14) >> 5) + 14 * ((mouse.y - 17) >> 5);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1356 if ( mouse.x > 13 && mouse.x < 462 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1357 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1358 if ( pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1359 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1360 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117) - 1];
2092
a869b0376b48 enums and BLV_UpdateDoors()
Ritor1
parents: 2069
diff changeset
1361 if ( item->uAttributes & ITEM_IDENTIFIED )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1362 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1363 dialog_window.DrawTitleText(pFontArrus, 0, (212 - pFontArrus->CalcTextHeight(BuildDialogueString("%24", uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0), &dialog_window, 0, 0)) / 2 + 101,
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1364 Color16(255, 255, 255), BuildDialogueString("%24", uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0), 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1365 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1366 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1367 v75 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(item, BuildingType_MagicShop, (int)window_SpeakInHouse->ptr_1C, 4);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1368 v30 = BuildDialogueString(pMerchantsIdentifyPhrases[v75], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 4, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1369 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(v30, &dialog_window, 0, 0)) / 2 + 138, Color16(255, 255, 255), v30, 3);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1370 return;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1371 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1372 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1373 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1374 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1375 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1376
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1377 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_REPAIR)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1378 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1379 draw_leather();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1380 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1381 DrawTextAtStatusBar(pGlobalTXT_LocalizationStrings[198], 0);// "Select the Item to Repair"
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1382 if ( !HouseUI_CheckIfPlayerCanInteract() )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1383 return;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1384 pMouse->GetCursorPos(&mouse);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1385 v117 = ((mouse.x - 14) >> 5) + 14 * ((mouse.y - 17) >> 5);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1386 if ( mouse.x <= 13 || mouse.x >= 462 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1387 return;
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1388 if ( !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117)
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1389 || !(pPlayers[uActiveCharacter]->pOwnItems[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117)-1].uAttributes& 2) )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1390 return;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1391 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117) - 1];
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1392 v75 = pPlayers[uActiveCharacter]->SelectPhrasesTransaction(&pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v117) - 1],
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1393 BuildingType_MagicShop, (int)window_SpeakInHouse->ptr_1C, 5);
1843
2e6d3cd052e0 some char* cast removal + adding const_casts where appropriate
Grumpy7
parents: 1838
diff changeset
1394 v30 = BuildDialogueString(pMerchantsRepairPhrases[v75], uActiveCharacter - 1, item, (char *)window_SpeakInHouse->ptr_1C, 5, 0);
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1395 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(v30, &dialog_window, 0, 0)) / 2 + 138, Color16(255, 255, 255), v30, 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1396 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1397 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1398
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1399 if ( dialog_menu_id == HOUSE_DIALOGUE_LEARN_SKILLS )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1400 {
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
1401 if ( HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1402 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1403 all_text_height = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1404 v33 = (signed __int64)(p2DEvents[(signed int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1405 pPrice = v33 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1406 if ( pPrice < v33 / 3 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1407 pPrice = v33 / 3;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1408 item_num = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1409 for ( int i = pDialogueWindow->pStartingPosActiveItem;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1410 i < pDialogueWindow->pNumPresenceButton + pDialogueWindow->pStartingPosActiveItem; ++i )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1411 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1412 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][pDialogueWindow->GetControl(i)->msg_param - 36]
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1413 && !pPlayers[uActiveCharacter]->pActiveSkills[pDialogueWindow->GetControl(i)->msg_param - 36] )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1414 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1415 all_text_height += pFontArrus->CalcTextHeight(pSkillNames[pDialogueWindow->GetControl(i)->msg_param - 36], &dialog_window, 0, 0);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1416 ++item_num;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1417 }
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1418 }
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1419 if ( !item_num )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1420 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1421 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[544], pPlayers[uActiveCharacter]->pName, pClassNames[pPlayers[uActiveCharacter]->classType]);//
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1422 // "Seek knowledge elsewhere %s the %s"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1423 strcat(pTmpBuf.data(), "\n \n");
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1424 strcat(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[528]);// "I can offer you nothing further."
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1425 dialog_window.DrawTitleText(pFontArrus, 0, (174 - pFontArrus->CalcTextHeight(pTmpBuf.data(), &dialog_window, 0, 0)) / 2 + 138, Color16(225, 205, 35), pTmpBuf.data(), 3);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1426 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1427 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1428 sprintf(pTmpBuf.data(), pGlobalTXT_LocalizationStrings[401], pPrice);// "Skill Cost: %lu"
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1429 dialog_window.DrawTitleText(pFontArrus, 0, 0x92u, 0, pTmpBuf.data(), 3);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1430 one_string = (149 - all_text_height) / item_num;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1431 if ( one_string > 32 )
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1432 one_string = 32;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1433 v23 = (149 - item_num * one_string - all_text_height) / 2 - one_string / 2 + 162;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1434 for ( int i = pDialogueWindow->pStartingPosActiveItem;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1435 i < pDialogueWindow->pStartingPosActiveItem + pDialogueWindow->pNumPresenceButton; ++i)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1436 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1437 control_button = pDialogueWindow->GetControl(i);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1438 if ( !byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][control_button->msg_param - 36]
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1439 || pPlayers[uActiveCharacter]->pActiveSkills[control_button->msg_param - 36] )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1440 {
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1441 control_button->uW = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1442 control_button->uHeight = 0;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1443 control_button->uY = 0;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1444 }
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1445 else
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1446 {
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1447 control_button->uY = one_string + v23;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1448 control_button->uHeight = pFontArrus->CalcTextHeight(pSkillNames[control_button->msg_param - 36], &dialog_window, 0, 0);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1449 v23 = control_button->uY + control_button->uHeight - 1;
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1450 control_button->uW = v23;
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1451 text_color = Color16(225, 205, 35);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1452 if ( pDialogueWindow->pCurrentPosActiveItem != i )
2069
259df09dfb50 32bits almost there
Nomad
parents: 1980
diff changeset
1453 text_color = Color16(255, 255, 255);
1752
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1454 dialog_window.DrawTitleText(pFontArrus, 0, control_button->uY, text_color, pSkillNames[control_button->msg_param - 36], 3);
07c7f446a929 MagicShop cleared
Ritor1
parents: 1746
diff changeset
1455 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1456 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1457 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1458 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1459 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1460 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1461 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1462 //----- (004BDB56) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1429
diff changeset
1463 void UIShop_Buy_Identify_Repair()
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1464 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1465 int v8; // eax@15
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1466 unsigned int pItemID; // esi@20
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1467 ItemGen *item; // esi@21
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1468 unsigned int v15; // eax@33
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1469 POINT *pCursorPos; // esi@37
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1470 int v18; // ecx@37
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1471 float pPriceMultiplier; // ST1C_4@38
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1472 int taken_item; // eax@40
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1473 ItemGen *bought_item; // esi@51
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1474 int party_reputation; // eax@55
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1475 int v39; // eax@63
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1476 int v42; // esi@74
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1477 signed int v43; // ebx@74
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1478 unsigned __int16 *pSkill; // esi@77
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1479 int v55; // [sp+0h] [bp-B4h]@26
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1480 POINT cursor; // [sp+40h] [bp-74h]@37
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1481 int a6; // [sp+98h] [bp-1Ch]@57
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1482 int a3; // [sp+9Ch] [bp-18h]@53
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1483 unsigned int uNumSeconds; // [sp+A4h] [bp-10h]@53
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1484 unsigned int v79; // [sp+A8h] [bp-Ch]@9
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1485 int uPriceItemService; // [sp+ACh] [bp-8h]@12
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1486
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1487 if ( pCurrentScreen == SCREEN_E )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1488 {
1683
96d567a7d15f moving OnInventoryLeftClick to Player::
Grumpy7
parents: 1567
diff changeset
1489 pPlayers[uActiveCharacter]->OnInventoryLeftClick();
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1490 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1491 }
1393
28f87f5234a1 More hardcoded UI colors moved to varibables.
Nomad
parents: 1384
diff changeset
1492 if ( !HouseUI_CheckIfPlayerCanInteract() )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1493 {
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1494 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1495 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1496 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1497
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1498 switch(dialog_menu_id)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1499 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1500 case HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1501 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1502 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103;
1683
96d567a7d15f moving OnInventoryLeftClick to Player::
Grumpy7
parents: 1567
diff changeset
1503 pPlayers[uActiveCharacter]->OnInventoryLeftClick();
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1504 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1505 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1506 case HOUSE_DIALOGUE_GUILD_BUY_BOOKS:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1507 {
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1508 pMouse->GetCursorPos(&cursor);
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1509 v18 = pRenderer->pActiveZBuffer[cursor.x + pSRZBufferLineOffsets[cursor.y]] & 0xFFFF;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1510 if ( !v18 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1511 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1512 bought_item = (ItemGen *)(&pParty->pPlayers[1].uExpressionTimeLength + 18 * (v18 + 12 * (int)window_SpeakInHouse->ptr_1C));
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1513 pPriceMultiplier = p2DEvents[(signed int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1514 uPriceItemService = pPlayers[uActiveCharacter]->GetBuyingPrice(bought_item->GetValue(), pPriceMultiplier);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1515 GetAsyncKeyState(VK_CONTROL);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1516 if ( pParty->uNumGold < uPriceItemService )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1517 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1518 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)2);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1519 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1520 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1521 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1522 taken_item = pPlayers[uActiveCharacter]->AddItem(-1, bought_item->uItemID);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1523 if ( taken_item )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1524 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1525 bought_item->SetIdentified();
1384
b51332ab228f changed a few member variables in Player to slightly less confusing names
Grumpy7
parents: 1300
diff changeset
1526 memcpy(&pPlayers[uActiveCharacter]->pInventoryItemList[taken_item - 1], bought_item, 0x24u);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1527 dword_F8B1E4 = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1528 Party::TakeGold(uPriceItemService);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1529 viewparams->bRedrawGameUI = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1530 bought_item->Reset();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1531 pRenderer->ClearZBuffer(0, 479);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1532 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_75, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1533 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1534 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1535 pPlayers[uActiveCharacter]->PlaySound(SPEECH_NoRoom, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1536 ShowStatusBarString(pGlobalTXT_LocalizationStrings[563], 5); // "Pack is Full!"
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1537 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1538 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1539 case HOUSE_DIALOGUE_SHOP_SELL:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1540 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1541 v79 = ((pMouse->GetCursorPos(&cursor)->x - 14) >> 5) + 14 * ((pMouse->GetCursorPos(&cursor)->y - 17) >> 5);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1542 if ( pMouse->GetCursorPos(&cursor)->x <= 13
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1543 || pMouse->GetCursorPos(&cursor)->x >= 462
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1544 || (v15 = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v79), !v15) )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1545 return;
2250
3cc3a29f073b moved MerchandiseTest to ItemGen::MerchandiseTest
Grumpy7
parents: 2248
diff changeset
1546 if ( pPlayers[uActiveCharacter]->pInventoryItemList[v15 - 1].MerchandiseTest((int)window_SpeakInHouse->ptr_1C) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1547 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1548 dword_F8B1E4 = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1549 pPlayers[uActiveCharacter]->SalesProcess(v79, v15 - 1, (int)window_SpeakInHouse->ptr_1C);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1550 viewparams->bRedrawGameUI = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1551 pRenderer->ClearZBuffer(0, 479);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1552 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)77, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1553 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1554 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1555 pPlayers[uActiveCharacter]->PlaySound(SPEECH_79, 0);
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1556 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1557 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1558 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1559 case HOUSE_DIALOGUE_SHOP_IDENTIFY:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1560 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1561 pMouse->GetCursorPos(&cursor);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1562 v79 = ((cursor.x - 14) >> 5) + 14 * ((cursor.y - 17) >> 5);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1563 if (cursor.x > 13 && cursor.x < 462)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1564 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1565 pItemID = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v79);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1566 if ( pItemID )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1567 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1568 uPriceItemService = pPlayers[uActiveCharacter]->GetPriceIdentification(p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier);
1384
b51332ab228f changed a few member variables in Player to slightly less confusing names
Grumpy7
parents: 1300
diff changeset
1569 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pItemID - 1];
2092
a869b0376b48 enums and BLV_UpdateDoors()
Ritor1
parents: 2069
diff changeset
1570 if ( !(item->uAttributes & ITEM_IDENTIFIED) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1571 {
2250
3cc3a29f073b moved MerchandiseTest to ItemGen::MerchandiseTest
Grumpy7
parents: 2248
diff changeset
1572 if ( item->MerchandiseTest((int)window_SpeakInHouse->ptr_1C) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1573 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1574 if ( pParty->uNumGold >= uPriceItemService )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1575 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1576 dword_F8B1E4 = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1577 Party::TakeGold(uPriceItemService);
2092
a869b0376b48 enums and BLV_UpdateDoors()
Ritor1
parents: 2069
diff changeset
1578 item->uAttributes |= ITEM_IDENTIFIED;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1579 pPlayers[uActiveCharacter]->PlaySound(SPEECH_73, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1580 ShowStatusBarString(pGlobalTXT_LocalizationStrings[569], 2);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1581 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1582 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1583 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)2);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1584 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1585 }
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1586 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1587 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)79, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1588 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1589 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1590 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)76, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1591 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1592 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1593 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1594 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1595 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1596 case HOUSE_DIALOGUE_SHOP_REPAIR:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1597 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1598 v79 = ((pMouse->GetCursorPos(&cursor)->x - 14) >> 5) + 14 * ((pMouse->GetCursorPos(&cursor)->y - 17) >> 5);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1599 if ( pMouse->GetCursorPos(&cursor)->x > 13 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1600 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1601 if ( pMouse->GetCursorPos(&cursor)->x < 462 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1602 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1603 pItemID = pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex((int *)&v79);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1604 if ( pItemID )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1605 {
1384
b51332ab228f changed a few member variables in Player to slightly less confusing names
Grumpy7
parents: 1300
diff changeset
1606 item = &pPlayers[uActiveCharacter]->pInventoryItemList[pItemID - 1];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1607 pPriceMultiplier = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier;
1980
c1c74df0a33e changing most of auto types to their actual types
Grumpy7
parents: 1843
diff changeset
1608 ItemGen* _v = &pPlayers[uActiveCharacter]->pInventoryItemList[pItemID - 1];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1609 uPriceItemService = pPlayers[uActiveCharacter]->GetPriceRepair(_v->GetValue(), pPriceMultiplier);
2092
a869b0376b48 enums and BLV_UpdateDoors()
Ritor1
parents: 2069
diff changeset
1610 if ( item->uAttributes & ITEM_BROKEN )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1611 {
2250
3cc3a29f073b moved MerchandiseTest to ItemGen::MerchandiseTest
Grumpy7
parents: 2248
diff changeset
1612 if ( item->MerchandiseTest((int)window_SpeakInHouse->ptr_1C) )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1613 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1614 if ( pParty->uNumGold >= uPriceItemService )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1615 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1616 dword_F8B1E4 = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1617 Party::TakeGold(uPriceItemService);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1618 v8 = item->uAttributes;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1619 LOBYTE(v8) = v8 & 0xFD;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1620 item->uAttributes = v8 | 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1621 pPlayers[uActiveCharacter]->PlaySound(SPEECH_74, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1622 ShowStatusBarString(pGlobalTXT_LocalizationStrings[570], 2);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1623 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1624 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1625 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)2);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1626 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1627 }
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1628 pAudioPlayer->PlaySound(SOUND_error, 0, 0, -1, 0, 0, 0, 0);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1629 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)79, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1630 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1631 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1632 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)76, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1633 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1634 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1635 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1636 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1637 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1638 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1639 case HOUSE_DIALOGUE_SHOP_BUY_STANDARD:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1640 case HOUSE_DIALOGUE_SHOP_BUY_SPECIAL:
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1641 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1642 pCursorPos = pMouse->GetCursorPos(&cursor);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1643 v18 = pRenderer->pActiveZBuffer[pCursorPos->x + pSRZBufferLineOffsets[pCursorPos->y]] & 0xFFFF;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1644 if ( !v18 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1645 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1646 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_STANDARD)
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1647 bought_item = (ItemGen *)&pParty->StandartItemsInShops[(int)window_SpeakInHouse->ptr_1C][v18 - 1];
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1648 else
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1649 bought_item = &pParty->SpecialItemsInShops[(int)window_SpeakInHouse->ptr_1C][v18 - 1];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1650 uPriceItemService = pPlayers[uActiveCharacter]->GetBuyingPrice(bought_item->GetValue(), p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].fPriceMultiplier);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1651 uNumSeconds = 0;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1652 a3 = 0;
1477
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1466
diff changeset
1653 if ( pMapStats->GetMapInfo(pCurrentMapName) )
7ef4b64f6329 * LODFile::LoadBitmaps & LODFile::LoadIconsOrEvents are merged into LODFile::Load
Nomad
parents: 1466
diff changeset
1654 a3 = pMapStats->pInfos[pMapStats->GetMapInfo(pCurrentMapName)]._steal_perm;
1827
0c75c3e7e436 cleaned up part of party.cpp, renamed byte_AE3368 to playerAlreadyPicked + 3 vars after it, moved them to party.cpp, some player.cpp bugfixes
Grumpy7
parents: 1758
diff changeset
1655 party_reputation = pParty->GetPartyReputation();
2246
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1656 if (pPlayers[uActiveCharacter]->CanSteal() && GetAsyncKeyState(VK_CONTROL))
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1657 {
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1658 uNumSeconds = pPlayers[uActiveCharacter]->StealFromShop(bought_item, a3, party_reputation, 0, &a6);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1659 if ( !uNumSeconds )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1660 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1661 sub_4B1447_party_fine((int)window_SpeakInHouse->ptr_1C, 0, a6);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1662 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1663 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1664 }
2248
8c5855b842dc changing shopt stealing condition a bit
Grumpy7
parents: 2246
diff changeset
1665 else if (pParty->uNumGold < uPriceItemService)
8c5855b842dc changing shopt stealing condition a bit
Grumpy7
parents: 2246
diff changeset
1666 {
8c5855b842dc changing shopt stealing condition a bit
Grumpy7
parents: 2246
diff changeset
1667 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)2);
8c5855b842dc changing shopt stealing condition a bit
Grumpy7
parents: 2246
diff changeset
1668 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);// "You don't have enough gold"
8c5855b842dc changing shopt stealing condition a bit
Grumpy7
parents: 2246
diff changeset
1669 return;
8c5855b842dc changing shopt stealing condition a bit
Grumpy7
parents: 2246
diff changeset
1670 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1671 v39 = pPlayers[uActiveCharacter]->AddItem(-1, bought_item->uItemID);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1672 if ( v39 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1673 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1674 bought_item->SetIdentified();
1384
b51332ab228f changed a few member variables in Player to slightly less confusing names
Grumpy7
parents: 1300
diff changeset
1675 memcpy(&pPlayers[uActiveCharacter]->pInventoryItemList[v39 - 1], bought_item, sizeof(ItemGen));
2246
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1676 if (uNumSeconds != 0)
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1677 {
2246
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1678 pPlayers[uActiveCharacter]->pInventoryItemList[v39 - 1].SetStolen();
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1679 sub_4B1447_party_fine((int)window_SpeakInHouse->ptr_1C, uNumSeconds, a6);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1680 }
2246
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1681 else
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1682 {
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1683 dword_F8B1E4 = 1;
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1684 Party::TakeGold(uPriceItemService);
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1685 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1686 viewparams->bRedrawGameUI = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1687 bought_item->Reset();
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1688 pRenderer->ClearZBuffer(0, 479);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1689 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)SPEECH_75, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1690 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1691 }
2246
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1692 else
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1693 {
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1694 pPlayers[uActiveCharacter]->PlaySound(SPEECH_NoRoom, 0);
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1695 ShowStatusBarString(pGlobalTXT_LocalizationStrings[563], 2); // "Pack is Full!"
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1696 return;
0be4f17b7986 shop stealing cleaned up a bit
Grumpy7
parents: 2233
diff changeset
1697 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1698 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1699 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1700 default:// if click video screen in shop
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1701 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1702 __debugbreak(); // please do record these dialogue ids to the HOUSE_DIALOGUE_MENU enum
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1703 if( dialog_menu_id >= 36 && dialog_menu_id <= 72 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1704 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1705 v42 = dialog_menu_id - 36;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1706 //v43 = (signed __int64)(*(float *)&p2DEvents_minus1__24[13 * (unsigned int)ptr_507BC0->ptr_1C] * 500.0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1707 v43 = (signed __int64)(p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].flt_24 * 500.0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1708 uPriceItemService = v43 * (100 - pPlayers[uActiveCharacter]->GetMerchant()) / 100;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1709 if ( uPriceItemService < v43 / 3 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1710 uPriceItemService = v43 / 3;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1711 if ( byte_4ED970_skill_learn_ability_by_class_table[pPlayers[uActiveCharacter]->classType][v42] )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1712 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1713 pSkill = &pPlayers[uActiveCharacter]->pActiveSkills[v42];
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1714 if ( !*pSkill )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1715 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1716 if ( pParty->uNumGold < uPriceItemService )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1717 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1718 ShowStatusBarString(pGlobalTXT_LocalizationStrings[155], 2);// "You don't have enough gold"
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1719 if ( in_current_building_type == BuildingType_Training )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1720 v55 = 4;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1721 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1722 v55 = 2;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1723 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)v55);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1724 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1725 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1726 Party::TakeGold(uPriceItemService);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1727 dword_F8B1E4 = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1728 *pSkill = 1;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1729 pPlayers[uActiveCharacter]->PlaySound((PlayerSpeech)78, 0);
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1730 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1731 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1732 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1733 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1734 break;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1735 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1736 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1737 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1738 //----- (004B1A2D) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1429
diff changeset
1739 void ShowPopupShopItem()
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1740 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1741 int v3; // ecx@5
2334
ddb803517a48 unused local variables I commented
Ritor1
parents: 2253
diff changeset
1742 // unsigned int v6; // eax@13
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1743 ItemGen *v7; // ecx@13
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1744 POINT cursor; // [sp+30h] [bp-1Ch]@17
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1745
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1746 if ( in_current_building_type <= 0 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1747 return;
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1748 if ( dialog_menu_id < HOUSE_DIALOGUE_SHOP_BUY_STANDARD)
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1749 return;
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1750 if ( in_current_building_type <= BuildingType_AlchemistShop )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1751 {
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1752 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_STANDARD || dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_SPECIAL )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1753 {
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1754 pMouse->GetCursorPos(&cursor);
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1755 v3 = pRenderer->pActiveZBuffer[cursor.x + pSRZBufferLineOffsets[cursor.y]] & 0xFFFF;
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1756 if ( !v3 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1757 return;
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1758 v7 = &pParty->StandartItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][v3 - 1];
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1759 if ( dialog_menu_id == HOUSE_DIALOGUE_SHOP_BUY_SPECIAL)
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1760 v7 = &pParty->SpecialItemsInShops[(unsigned int)window_SpeakInHouse->ptr_1C][v3 - 1];
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1761 GameUI_DrawItemInfo(v7);
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1762 return;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1763 }
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1764
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1765 if ( dialog_menu_id >= HOUSE_DIALOGUE_SHOP_SELL && dialog_menu_id <= HOUSE_DIALOGUE_SHOP_REPAIR
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1766 || dialog_menu_id == HOUSE_DIALOGUE_SHOP_DISPLAY_EQUIPMENT )
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1767 {
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1768 pMouse->GetCursorPos(&cursor);
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1769 v3 = ((cursor.x - 14) >> 5) + 14 * ((cursor.y - 17) >> 5);
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1770 if ( cursor.x <= 13 || cursor.x >= 462
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1771 || !pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex(&v3) )
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1772 return;
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1773 GameUI_DrawItemInfo(&pPlayers[uActiveCharacter]->pInventoryItemList[pPlayers[uActiveCharacter]->GetItemIDAtInventoryIndex(&v3) - 1]);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1774 return;
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1775 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1776 }
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1777 if ( in_current_building_type <= BuildingType_16 && dialog_menu_id == HOUSE_DIALOGUE_GUILD_BUY_BOOKS )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1778 {
1754
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1779 pMouse->GetCursorPos(&cursor);
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1780 v3 = pRenderer->pActiveZBuffer[cursor.x + pSRZBufferLineOffsets[cursor.y]] & 0xFFFF;
421c29d4ab3e UITransition.cpp cleaning(continue)
Ritor1
parents: 1753
diff changeset
1781 if ( v3 )
2231
8673f3aedfb9 sub_4B1523 to sub_4B1523_showSpellbookInfo, changed input type, some vars renamed
Grumpy7
parents: 2215
diff changeset
1782 {
8673f3aedfb9 sub_4B1523 to sub_4B1523_showSpellbookInfo, changed input type, some vars renamed
Grumpy7
parents: 2215
diff changeset
1783 unsigned int guildId = (unsigned int)window_SpeakInHouse->ptr_1C - 139;
8673f3aedfb9 sub_4B1523 to sub_4B1523_showSpellbookInfo, changed input type, some vars renamed
Grumpy7
parents: 2215
diff changeset
1784 sub_4B1523_showSpellbookInfo(pParty->SpellBooksInGuilds[guildId][v3].uItemID);
8673f3aedfb9 sub_4B1523 to sub_4B1523_showSpellbookInfo, changed input type, some vars renamed
Grumpy7
parents: 2215
diff changeset
1785 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1786 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1787 }
2233
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1788
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1789 //----- (004B1523) --------------------------------------------------------
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1790 void sub_4B1523_showSpellbookInfo(int spellItemId)
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1791 {
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1792 int spellId; // esi@1
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1793 int spellLevel; // edx@1
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1794 unsigned int v3; // eax@2
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1795 int v4; // eax@4
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1796 LONG v5; // ecx@4
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1797 int v6; // eax@10
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1798 char *v7; // ST44_4@12
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1799 unsigned __int16 v8; // ax@12
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1800 GUIWindow a1; // [sp+Ch] [bp-68h]@4
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1801 unsigned int spellSchool; // [sp+60h] [bp-14h]@1
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1802 POINT a2; // [sp+64h] [bp-10h]@1
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1803 int v13; // [sp+6Ch] [bp-8h]@4
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1804 int v14; // [sp+70h] [bp-4h]@4
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1805
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1806 spellId = spellItemId - 399;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1807 spellLevel = (spellItemId - 400) % 11 + 1;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1808 spellSchool = 4 * (spellItemId - 400) / 11;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1809 // sprintf(pTmpBuf.data(), "%s%03d", spellbook_texture_filename_suffices[v11 / 4], v2); not used
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1810 if ( pMouse->GetCursorPos(&a2)->y <= 320 )
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1811 v3 = pMouse->GetCursorPos(&a2)->y + 30;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1812 else
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1813 v3 = 30;
2369
bddcaf5d5db2 removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
Grumpy7
parents: 2350
diff changeset
1814 a1.Hint = nullptr;
2233
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1815 a1.uFrameY = v3;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1816 a1.uFrameWidth = 328;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1817 a1.uFrameHeight = 68;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1818 a1.uFrameX = 90;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1819 a1.uFrameZ = 417;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1820 a1.uFrameW = v3 + 67;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1821 a2.y = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[431]);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1822 v14 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[433]);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1823 v13 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[432]);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1824 v4 = pFontSmallnum->GetLineWidth(pGlobalTXT_LocalizationStrings[96]);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1825 v5 = a2.y;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1826 if ( v14 > a2.y )
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1827 v5 = v14;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1828 if ( v13 > v5 )
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1829 v5 = v13;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1830 if ( v4 > v5 )
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1831 v5 = v4;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1832 sprintf(pTmpBuf2.data(), "%s\n\n%s\t%03d:\t%03d%s\t000\n%s\t%03d:\t%03d%s\t000\n%s\t%03d:\t%03d%s\t000\n%s\t%03d:\t%03d%s",
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1833 pSpellStats->pInfos[spellId].pDescription, pGlobalTXT_LocalizationStrings[431], // "Normal"
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1834 v5 + 3, v5 + 10, pSpellStats->pInfos[spellId].pBasicSkillDesc, pGlobalTXT_LocalizationStrings[433], // "Expert"
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1835 v5 + 3, v5 + 10, pSpellStats->pInfos[spellId].pExpertSkillDesc, pGlobalTXT_LocalizationStrings[432], // "Master"
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1836 v5 + 3, v5 + 10, pSpellStats->pInfos[spellId].pMasterSkillDesc, pGlobalTXT_LocalizationStrings[96], // "Grand"
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1837 v5 + 3, v5 + 10, pSpellStats->pInfos[spellId].pGrandmasterSkillDesc);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1838 v6 = pFontSmallnum->CalcTextHeight(pTmpBuf2.data(), &a1, 0, 0);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1839 a1.uFrameHeight += v6;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1840 if ( (signed int)a1.uFrameHeight < 150 )
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1841 a1.uFrameHeight = 150;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1842 a1.uFrameWidth = game_viewport_width;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1843 a1.DrawMessageBox(0);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1844 a1.uFrameWidth -= 12;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1845 a1.uFrameHeight -= 12;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1846 v7 = pSpellStats->pInfos[spellId].pName;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1847 a1.uFrameZ = a1.uFrameX + a1.uFrameWidth - 1;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1848 a1.uFrameW = a1.uFrameHeight + a1.uFrameY - 1;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1849 v8 = Color16(0xFFu, 0xFFu, 0x9Bu);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1850 a1.DrawTitleText(pFontArrus, 0x78u, 0xCu, v8, v7, 3u);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1851 a1.DrawText(pFontSmallnum, 120, 44, 0, pTmpBuf2.data(), 0, 0, 0);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1852 a1.uFrameZ = a1.uFrameX + 107;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1853 a1.uFrameWidth = 108;
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1854 a1.DrawTitleText(pFontComic, 0xCu, 0x4Bu, 0, pSkillNames[spellSchool / 4 + 12], 3u);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1855 sprintfex(pTmpBuf.data(), "%s\n%d", pGlobalTXT_LocalizationStrings[522], *(&pSpellDatas[0].uNormalLevelMana + 10 * spellId));
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1856 a1.DrawTitleText(pFontComic, 0xCu, a1.uFrameHeight - LOBYTE(pFontComic->uFontHeight) - 16, 0, pTmpBuf.data(), 3);
a9fa57fda3ae sub_4B1523_showSpellbookInfo moved to UIShops
Grumpy7
parents: 2231
diff changeset
1857 }
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1858 //----- (004B1D27) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1429
diff changeset
1859 void GetHouseGoodbyeSpeech()
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1860 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1861 signed int v2; // edi@10
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1862 signed int v5; // edi@20
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1863 int v7[4]; // [sp+Ch] [bp-10h]@12
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1864
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1865 if ( in_current_building_type > 0 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1866 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1867 if ( in_current_building_type > BuildingType_MagicShop )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1868 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1869 if ( in_current_building_type == BuildingType_Bank )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1870 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1871 if ( !dword_F8B1E4 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1872 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1873 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1874 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1875 {
1411
2423bc2af692 +InitializaDialogueOptions
Nomad
parents: 1410
diff changeset
1876 if ( in_current_building_type != BuildingType_Temple )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1877 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1878 }
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1879 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Greeting_2);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1880 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1881 }
1749
42a1874a2171 Finishing member struct renaming
Grumpy7
parents: 1748
diff changeset
1882 if ( (signed __int64)pParty->PartyTimes._shop_ban_times[(unsigned int)window_SpeakInHouse->ptr_1C]<= (signed __int64)pParty->uTimePlayed )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1883 {
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1884 if ( pParty->uNumGold <= 10000 )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1885 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1886 if ( !dword_F8B1E4 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1887 return;
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1888 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, HouseSound_Goodbye);
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1889 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1890 }
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1891 PlayHouseSound((unsigned int)window_SpeakInHouse->ptr_1C, (HouseSoundID)(dword_F8B1E4 + 3));
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2092
diff changeset
1892 if ( !dword_F8B1E4 && !_A750D8_player_speech_timer )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1893 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1894 v5 = 0;
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1895 for ( uint i = 1; i <= 4; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1896 {
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1897 if ( pPlayers[i]->CanAct() )
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1898 v7[v5++] = i;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1899 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1900 if ( v5 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1901 {
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2092
diff changeset
1902 _A750D8_player_speech_timer = 256i64;
1406
d071e0e9ba75 Explosion Traps fix
Ritor1
parents: 1393
diff changeset
1903 PlayerSpeechID = SPEECH_80;
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1904 uSpeakingCharacter = v7[rand() % v5];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1905 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1906 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1907 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1908 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1909 else
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1910 {
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2092
diff changeset
1911 if ( !_A750D8_player_speech_timer )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1912 {
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1913 v2 = 0;
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1914 for ( uint i = 1; i <= 4; ++i )
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1915 {
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1916 if ( pPlayers[i]->CanAct() )
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1917 v7[v2++] = i;
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1918 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1919 if ( v2 )
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1920 {
2182
e1e4a8a20b5f _46А6АС_GetActorsInViewport
Ritor1
parents: 2092
diff changeset
1921 _A750D8_player_speech_timer = 256i64;
1406
d071e0e9ba75 Explosion Traps fix
Ritor1
parents: 1393
diff changeset
1922 PlayerSpeechID = SPEECH_80;
1407
d4f57df4c299 PlayerSpeechID and uSpeakingCharacter
Ritor1
parents: 1406
diff changeset
1923 uSpeakingCharacter = v7[rand() % v2];
1300
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1924 return;
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1925 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1926 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1927 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1928 }
bedc304ab617 new files in UI
Ritor1
parents:
diff changeset
1929 }