annotate UI/UIShops.cpp @ 2462:1d04e48651d4

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