annotate GUIWindow.cpp @ 1924:8cd321994943

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