annotate GUIButton.cpp @ 2289:60293358b4b3

byte_5111F6 to byte_5111F6_OwnedArtifacts, changed magic numbers to enums in GetItemTextureFilename
author Grumpy7
date Sun, 16 Mar 2014 03:08:26 +0100
parents 0cd17b0d36c2
children 7ebc07cd6c53
rev   line source
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2215
diff changeset
1 #define _CRT_SECURE_NO_WARNINGS
0
Ritor1
parents:
diff changeset
2 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
3 #include "GUIFont.h"
Ritor1
parents:
diff changeset
4
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
5 #include "mm7_data.h"
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
6 #include "LOD.h"
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
7 #include "Texts.h"
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 1458
diff changeset
8 #include "OSWindow.h"
0
Ritor1
parents:
diff changeset
9
Ritor1
parents:
diff changeset
10
Ritor1
parents:
diff changeset
11
Ritor1
parents:
diff changeset
12 struct GUIButton *pBtn_CloseBook;
Ritor1
parents:
diff changeset
13 struct GUIButton *pBtn_InstallRemoveSpell;
Ritor1
parents:
diff changeset
14 struct GUIButton *pBtn_Autonotes_Instructors;
Ritor1
parents:
diff changeset
15 struct GUIButton *pBtn_Autonotes_Misc;
Ritor1
parents:
diff changeset
16 struct GUIButton *pBtn_Book_6;
Ritor1
parents:
diff changeset
17 struct GUIButton *pBtn_Book_5;
Ritor1
parents:
diff changeset
18 struct GUIButton *pBtn_Book_4;
Ritor1
parents:
diff changeset
19 struct GUIButton *pBtn_Book_3;
Ritor1
parents:
diff changeset
20 struct GUIButton *pBtn_Book_2;
Ritor1
parents:
diff changeset
21 struct GUIButton *pBtn_Book_1;
Ritor1
parents:
diff changeset
22
Ritor1
parents:
diff changeset
23
Ritor1
parents:
diff changeset
24 struct GUIButton *pPlayerCreationUI_BtnReset;
Ritor1
parents:
diff changeset
25 struct GUIButton *pPlayerCreationUI_BtnOK;
Ritor1
parents:
diff changeset
26 struct GUIButton *pBtn_ExitCancel;
Ritor1
parents:
diff changeset
27 struct GUIButton *pBtn_YES;
Ritor1
parents:
diff changeset
28 struct GUIButton *pPlayerCreationUI_BtnPlus;
Ritor1
parents:
diff changeset
29 struct GUIButton *pPlayerCreationUI_BtnMinus;
Ritor1
parents:
diff changeset
30
Ritor1
parents:
diff changeset
31
Ritor1
parents:
diff changeset
32 struct GUIButton *pButton_RestUI_Main;
Ritor1
parents:
diff changeset
33 struct GUIButton *pButton_RestUI_Exit;
Ritor1
parents:
diff changeset
34 struct GUIButton *pButton_RestUI_Wait5Minutes;
Ritor1
parents:
diff changeset
35 struct GUIButton *pButton_RestUI_WaitUntilDawn;
Ritor1
parents:
diff changeset
36 struct GUIButton *pButton_RestUI_Wait1Hour;
Ritor1
parents:
diff changeset
37
Ritor1
parents:
diff changeset
38
Ritor1
parents:
diff changeset
39 struct GUIButton *pCharacterScreen_ExitBtn;
Ritor1
parents:
diff changeset
40 struct GUIButton *pCharacterScreen_AwardsBtn;
Ritor1
parents:
diff changeset
41 struct GUIButton *pCharacterScreen_InventoryBtn;
Ritor1
parents:
diff changeset
42 struct GUIButton *pCharacterScreen_SkillsBtn;
Ritor1
parents:
diff changeset
43 struct GUIButton *pCharacterScreen_StatsBtn;
Ritor1
parents:
diff changeset
44 struct GUIButton *pCharacterScreen_DollBtn;
Ritor1
parents:
diff changeset
45 struct GUIButton *pCharacterScreen_DetalizBtn;
Ritor1
parents:
diff changeset
46
Ritor1
parents:
diff changeset
47
Ritor1
parents:
diff changeset
48 struct GUIButton *pBtn_NPCRight;
Ritor1
parents:
diff changeset
49 struct GUIButton *pBtn_NPCLeft;
Ritor1
parents:
diff changeset
50 struct GUIButton *pBtn_GameSettings;
Ritor1
parents:
diff changeset
51 struct GUIButton *pBtn_QuickReference;
Ritor1
parents:
diff changeset
52 struct GUIButton *pBtn_CastSpell;
Ritor1
parents:
diff changeset
53 struct GUIButton *pBtn_Rest;
Ritor1
parents:
diff changeset
54 struct GUIButton *pBtn_History;
Ritor1
parents:
diff changeset
55 struct GUIButton *pBtn_Calendar;
Ritor1
parents:
diff changeset
56 struct GUIButton *pBtn_Maps;
Ritor1
parents:
diff changeset
57 struct GUIButton *pBtn_Autonotes;
Ritor1
parents:
diff changeset
58 struct GUIButton *pBtn_Quests;
Ritor1
parents:
diff changeset
59
Ritor1
parents:
diff changeset
60
2278
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
61 struct GUIButton *pMMT_MainMenu_BtnMM6;
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
62 struct GUIButton *pMMT_MainMenu_BtnMM7;
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
63 struct GUIButton *pMMT_MainMenu_BtnMM8;
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
64 struct GUIButton *pMMT_MainMenu_BtnContinue;
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
65 struct GUIButton *pMMT_MainMenu_BtnExit;
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
66
0cd17b0d36c2 MMT_MainMenu
Ritor1
parents: 2268
diff changeset
67
0
Ritor1
parents:
diff changeset
68 struct GUIButton *pMainMenu_BtnExit;
Ritor1
parents:
diff changeset
69 struct GUIButton *pMainMenu_BtnCredits;
Ritor1
parents:
diff changeset
70 struct GUIButton *pMainMenu_BtnLoad;
Ritor1
parents:
diff changeset
71 struct GUIButton *pMainMenu_BtnNew;
Ritor1
parents:
diff changeset
72
Ritor1
parents:
diff changeset
73
Ritor1
parents:
diff changeset
74 struct GUIButton *pBtn_Up;
Ritor1
parents:
diff changeset
75 struct GUIButton *pBtn_Down;
Ritor1
parents:
diff changeset
76 struct GUIButton *ptr_507BA4;
Ritor1
parents:
diff changeset
77
Ritor1
parents:
diff changeset
78
Ritor1
parents:
diff changeset
79 struct GUIWindow *pPrimaryWindow;
Ritor1
parents:
diff changeset
80 struct GUIWindow *pChestWindow;
Ritor1
parents:
diff changeset
81 struct GUIWindow *pDialogueWindow;
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 2
diff changeset
82 struct GUIWindow *window_SpeakInHouse;
0
Ritor1
parents:
diff changeset
83 struct GUIWindow *pGUIWindow_ScrollWindow;
Ritor1
parents:
diff changeset
84 struct GUIWindow *ptr_507BC8;
Ritor1
parents:
diff changeset
85 struct GUIWindow *pGUIWindow_CurrentMenu;
Ritor1
parents:
diff changeset
86 struct GUIWindow *ptr_507BD0;
Ritor1
parents:
diff changeset
87 struct GUIWindow *pGUIWindow_Settings;
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
88 struct GUIWindow *pModalWindow;
0
Ritor1
parents:
diff changeset
89 struct GUIWindow *pGUIWindow_EscMessageWindow;
Ritor1
parents:
diff changeset
90 struct GUIWindow *pBooksWindow;
Ritor1
parents:
diff changeset
91 struct GUIWindow *pGUIWindow2;
Ritor1
parents:
diff changeset
92
Ritor1
parents:
diff changeset
93
Ritor1
parents:
diff changeset
94 struct GUIButton *pBtn_Resume;
Ritor1
parents:
diff changeset
95 struct GUIButton *pBtn_QuitGame;
Ritor1
parents:
diff changeset
96 struct GUIButton *pBtn_GameControls;
Ritor1
parents:
diff changeset
97 struct GUIButton *pBtn_LoadGame;
Ritor1
parents:
diff changeset
98 struct GUIButton *pBtn_SaveGame;
Ritor1
parents:
diff changeset
99 struct GUIButton *pBtn_NewGame;
Ritor1
parents:
diff changeset
100
Ritor1
parents:
diff changeset
101 struct GUIButton *pBtn_SliderRight;
Ritor1
parents:
diff changeset
102 struct GUIButton *pBtn_SliderLeft;
Ritor1
parents:
diff changeset
103
Ritor1
parents:
diff changeset
104
2
89240115d392 MainMenuBtn(work)
Ritor1
parents: 0
diff changeset
105 struct GUIButton *pBtnDownArrow;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 0
diff changeset
106 struct GUIButton *pBtnArrowUp;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 0
diff changeset
107 struct GUIButton *pBtnCancel;
89240115d392 MainMenuBtn(work)
Ritor1
parents: 0
diff changeset
108 struct GUIButton *pBtnLoadSlot;
0
Ritor1
parents:
diff changeset
109
Ritor1
parents:
diff changeset
110
1202
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1018
diff changeset
111 std::array<GUIButton*, 4> pCreationUI_BtnPressRight2;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1018
diff changeset
112 std::array<GUIButton*, 4> pCreationUI_BtnPressLeft2;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1018
diff changeset
113 std::array<GUIButton*, 4> pCreationUI_BtnPressLeft;
0dbf6c4dd029 arrays to std::arrays phase 1
Grumpy7
parents: 1018
diff changeset
114 std::array<GUIButton*, 4> pCreationUI_BtnPressRight;
0
Ritor1
parents:
diff changeset
115
Ritor1
parents:
diff changeset
116
Ritor1
parents:
diff changeset
117
Ritor1
parents:
diff changeset
118
Ritor1
parents:
diff changeset
119
Ritor1
parents:
diff changeset
120
Ritor1
parents:
diff changeset
121 //----- (0041D0D8) --------------------------------------------------------
697
2dfb67633b01 GUIButton Release
zipi
parents: 336
diff changeset
122 void GUIButton::Release()
0
Ritor1
parents:
diff changeset
123 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
124 if ( this )
0
Ritor1
parents:
diff changeset
125 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
126 if ( this == this->pParent->pControlsHead )
0
Ritor1
parents:
diff changeset
127 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
128 if ( this->pNext )
0
Ritor1
parents:
diff changeset
129 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
130 this->pParent->pControlsHead = this->pNext;
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
131 this->pNext->pPrev = 0;
0
Ritor1
parents:
diff changeset
132 }
Ritor1
parents:
diff changeset
133 else
Ritor1
parents:
diff changeset
134 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
135 this->pParent->pControlsHead = 0;
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
136 this->pParent->pControlsTail = 0;
0
Ritor1
parents:
diff changeset
137 }
Ritor1
parents:
diff changeset
138 }
Ritor1
parents:
diff changeset
139 else
Ritor1
parents:
diff changeset
140 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
141 if ( this->pNext )
0
Ritor1
parents:
diff changeset
142 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
143 this->pPrev->pNext = this->pNext;
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
144 this->pNext->pPrev = this->pPrev;
0
Ritor1
parents:
diff changeset
145 }
Ritor1
parents:
diff changeset
146 else
Ritor1
parents:
diff changeset
147 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
148 this->pPrev->pNext = 0;
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
149 this->pParent->pControlsTail = this->pPrev;
0
Ritor1
parents:
diff changeset
150 }
Ritor1
parents:
diff changeset
151 }
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
152 --this->pParent->uNumControls;
0
Ritor1
parents:
diff changeset
153 }
Ritor1
parents:
diff changeset
154 }
Ritor1
parents:
diff changeset
155
Ritor1
parents:
diff changeset
156 //----- (00415180) --------------------------------------------------------
1006
e865f349aa41 ui cleanup
Gloval
parents: 832
diff changeset
157 void GUIButton::DrawLabel( const char *label_text, struct GUIFont *pFont, int a5, int uFontShadowColor )
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
158 {
0
Ritor1
parents:
diff changeset
159 //strlen(edx0);
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
160 return pParent->DrawText(pFont,
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
161 this->uX + (signed int)(this->uWidth - pFont->GetLineWidth(label_text)) / 2,
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
162 this->uY + (signed int)(this->uHeight - pFont->uFontHeight) / 2,
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
163 a5, label_text, 0, 0, uFontShadowColor);
0
Ritor1
parents:
diff changeset
164 }
1295
86a83e12d795 moving files
Ritor1
parents: 1262
diff changeset
165 //----- (004B36CC) --------------------------------------------------------
86a83e12d795 moving files
Ritor1
parents: 1262
diff changeset
166 void CreateButtonInColumn( int column_pos, unsigned int control_id )
86a83e12d795 moving files
Ritor1
parents: 1262
diff changeset
167 {
2268
fd788d2e9585 EventProcessor cleaned and ODM_NearClip fix
Ritor1
parents: 2253
diff changeset
168 pDialogueWindow->CreateButton( 480, 30 * column_pos + 146, 140, 30, 1, 0, UIMSG_SelectShopDialogueOption, control_id, 0, "", 0);
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
169 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
170 //----- (00419379) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
171 void ReleaseAwardsScrollBar()
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
172 {
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
173 GUIButton *pButton; // esi@2
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
174
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
175 if ( awards_scroll_bar_created )
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
176 {
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
177 awards_scroll_bar_created = false;
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
178 ptr_507BA4->Release();
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
179 pBtn_Up->Release();
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
180 pBtn_Down->Release();
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
181 pBtn_Down = 0;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
182 pBtn_Up = 0;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
183 for ( pButton = pGUIWindow_CurrentMenu->pControlsHead; pButton; pButton = pButton->pNext )
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
184 {
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
185 if ( pButton->msg == UIMSG_InventoryLeftClick )
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
186 {
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
187 pButton->uX = dword_50698C_uX;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
188 pButton->uY = dword_506988_uY;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
189 pButton->uZ = dword_506984_uZ;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
190 pButton->uW = dword_506980_uW;
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
191 pGUIWindow_CurrentMenu->_41D08F_set_keyboard_control_group(1, 0, 0, 0);
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
192 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
193 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
194 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
195 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
196 //----- (00419220) --------------------------------------------------------
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
197 void CreateAwardsScrollBar()
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
198 {
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
199 GUIButton *pButton; // eax@2
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
200
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
201 if ( !awards_scroll_bar_created )
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
202 {
1458
934074e7fcc1 ModalWindow
Nomad
parents: 1455
diff changeset
203 awards_scroll_bar_created = 1;
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
204 for ( pButton = pGUIWindow_CurrentMenu->pControlsHead; pButton; pButton = pButton->pNext )
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
205 {
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
206 if ( pButton->msg == UIMSG_InventoryLeftClick )
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
207 {
1455
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
208 dword_50698C_uX = pButton->uX;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
209 dword_506988_uY = pButton->uY;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
210 dword_506984_uZ = pButton->uZ;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
211 dword_506980_uW = pButton->uW;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
212 pButton->uW = 0;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
213 pButton->uZ = 0;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
214 pButton->uY = 0;
bfe342ae0c1f DrawPaperdoll cleaning
Ritor1
parents: 1297
diff changeset
215 pButton->uX = 0;
1296
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
216 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
217 }
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
218 pBtn_Up = pGUIWindow_CurrentMenu->CreateButton(438, 46,
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
219 pIcons_LOD->GetTexture(uTextureID_ar_up_up)->uTextureWidth,
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
220 pIcons_LOD->GetTexture(uTextureID_ar_up_up)->uTextureHeight,
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
221 1, 0, UIMSG_ClickAwardsUpBtn, 0, 0, "",
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
222 pIcons_LOD->GetTexture(uTextureID_ar_up_up),
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
223 pIcons_LOD->GetTexture(uTextureID_ar_up_dn), 0);
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
224 pBtn_Down = pGUIWindow_CurrentMenu->CreateButton(438, 292,
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
225 pIcons_LOD->GetTexture(uTextureID_ar_dn_up)->uTextureWidth,
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
226 pIcons_LOD->GetTexture(uTextureID_ar_dn_up)->uTextureHeight,
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
227 1, 0, UIMSG_ClickAwardsDownBtn, 0, 0, "",
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
228 pIcons_LOD->GetTexture(uTextureID_ar_dn_up),
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
229 pIcons_LOD->GetTexture(uTextureID_ar_dn_dn), 0);
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
230 ptr_507BA4 = pGUIWindow_CurrentMenu->CreateButton(440, 62, 16, 232, 1, 0, UIMSG_ClickAwardScrollBar, 0, 0, "", 0);
c423f946dc99 moving files continue
Ritor1
parents: 1295
diff changeset
231 }
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
232 }
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
233 //----- (004BCA33) --------------------------------------------------------
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
234 void UI_CreateEndConversationButton()
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
235 {
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
236 pDialogueWindow->Release();
2215
e9625ad08541 fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents: 1458
diff changeset
237 pDialogueWindow = GUIWindow::Create(0, 0, window->GetWidth(), 345, WINDOW_MainMenu, 0, 0);
1297
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
238 pBtn_ExitCancel = pDialogueWindow->CreateButton( 471, 445, 169, 35, 1, 0, UIMSG_Escape, 0, 0,
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
239 pGlobalTXT_LocalizationStrings[74], //"End Conversation"
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
240 pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
5450af4f57ef moving files mm7_x ending
Ritor1
parents: 1296
diff changeset
241 pDialogueWindow->CreateButton(8, 8, 450, 320, 1, 0, UIMSG_BuyInShop_Identify_Repair, 0, 0, "", 0);
1295
86a83e12d795 moving files
Ritor1
parents: 1262
diff changeset
242 }