annotate GUIWindow.cpp @ 1429:c7489dd19f88

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