annotate GUIWindow.cpp @ 1024:d353bd3009d9

Слияние
author Ritor1
date Wed, 15 May 2013 09:32:39 +0600
parents dcdfbb6eede9
children eac5af72b614 c45d51b3f4f4
rev   line source
0
Ritor1
parents:
diff changeset
1 #include "GUIWindow.h"
Ritor1
parents:
diff changeset
2 #include "GUIFont.h"
Ritor1
parents:
diff changeset
3 #include "Party.h"
Ritor1
parents:
diff changeset
4 #include "LOD.h"
Ritor1
parents:
diff changeset
5 #include "Keyboard.h"
Ritor1
parents:
diff changeset
6 #include "IndoorCamera.h"
Ritor1
parents:
diff changeset
7 #include "Math.h"
Ritor1
parents:
diff changeset
8 #include "VideoPlayer.h"
Ritor1
parents:
diff changeset
9 #include "Allocator.h"
Ritor1
parents:
diff changeset
10 #include "MapInfo.h"
Ritor1
parents:
diff changeset
11 #include "Time.h"
Ritor1
parents:
diff changeset
12 #include "AudioPlayer.h"
Ritor1
parents:
diff changeset
13 #include "Mouse.h"
Ritor1
parents:
diff changeset
14 #include "Viewport.h"
Ritor1
parents:
diff changeset
15 #include "Render.h"
Ritor1
parents:
diff changeset
16 #include "PlayerFrameTable.h"
Ritor1
parents:
diff changeset
17 #include "SaveLoad.h"
Ritor1
parents:
diff changeset
18 #include "FactionTable.h"
Ritor1
parents:
diff changeset
19 #include "StorylineTextTable.h"
Ritor1
parents:
diff changeset
20 #include "Events2D.h"
629
59713bb36033 houses func moved to uihouses
Gloval
parents: 602
diff changeset
21 #include "UIHouses.h"
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
22 #include "texts.h"
81
377535d6e366 structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents: 74
diff changeset
23 #include "Autonotes.h"
949
Nomad
parents: 948
diff changeset
24 #include "Awards.h"
0
Ritor1
parents:
diff changeset
25
Ritor1
parents:
diff changeset
26
Ritor1
parents:
diff changeset
27 #include "mm7_data.h"
Ritor1
parents:
diff changeset
28
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30
Ritor1
parents:
diff changeset
31
Ritor1
parents:
diff changeset
32 int pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[1]; // idb
Ritor1
parents:
diff changeset
33 struct GUIWindow *pWindow_MainMenu;
Ritor1
parents:
diff changeset
34 struct GUIWindow pWindowList[20];
Ritor1
parents:
diff changeset
35
Ritor1
parents:
diff changeset
36 struct GUIMessageQueue *pMessageQueue_50CBD0 = new GUIMessageQueue;
Ritor1
parents:
diff changeset
37
Ritor1
parents:
diff changeset
38
783
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
39 // inlined
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
40 //----- (mm6c::00420520) --------------------------------------------------
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
41 void GUIMessageQueue::Flush()
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
42 {
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
43 if (uNumMessages)
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
44 uNumMessages = pMessages[0].field_8 != 0;
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
45 }
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
46
b27dd658ea77 Taveling by foot fixed.
Nomad
parents: 762
diff changeset
47
0
Ritor1
parents:
diff changeset
48 //----- (004356B9) --------------------------------------------------------
Ritor1
parents:
diff changeset
49 void GUIMessageQueue::PopMessage(enum UIMessageType *pType, int *pParam, int *a4)
Ritor1
parents:
diff changeset
50 {
Ritor1
parents:
diff changeset
51 signed int v4; // edx@1
Ritor1
parents:
diff changeset
52 GUIMessage *v5; // eax@2
Ritor1
parents:
diff changeset
53
Ritor1
parents:
diff changeset
54 v4 = 0;
Ritor1
parents:
diff changeset
55 if ( this->uNumMessages )
Ritor1
parents:
diff changeset
56 {
Ritor1
parents:
diff changeset
57 v5 = this->pMessages;
Ritor1
parents:
diff changeset
58 *pType = this->pMessages[0].eType;
Ritor1
parents:
diff changeset
59 *pParam = this->pMessages[0].param;
Ritor1
parents:
diff changeset
60 *a4 = this->pMessages[0].field_8;
Ritor1
parents:
diff changeset
61 if ( (signed int)(this->uNumMessages - 1) > 0 )
Ritor1
parents:
diff changeset
62 {
Ritor1
parents:
diff changeset
63 do
Ritor1
parents:
diff changeset
64 {
Ritor1
parents:
diff changeset
65 v5->eType = v5[1].eType;
Ritor1
parents:
diff changeset
66 v5->param = v5[1].param;
Ritor1
parents:
diff changeset
67 v5->field_8 = v5[1].field_8;
Ritor1
parents:
diff changeset
68 ++v4;
Ritor1
parents:
diff changeset
69 ++v5;
Ritor1
parents:
diff changeset
70 }
Ritor1
parents:
diff changeset
71 while ( v4 < (signed int)(this->uNumMessages - 1) );
Ritor1
parents:
diff changeset
72 }
Ritor1
parents:
diff changeset
73 --this->uNumMessages;
Ritor1
parents:
diff changeset
74 }
Ritor1
parents:
diff changeset
75 }
Ritor1
parents:
diff changeset
76
Ritor1
parents:
diff changeset
77
Ritor1
parents:
diff changeset
78
994
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
79
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
80
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
81
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
82 //----- (0041B4E1) --------------------------------------------------------
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
83 int __fastcall GUI_ReplaceHotkey(unsigned __int8 uOldHotkey, unsigned __int8 uNewHotkey, char bFirstCall)
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
84 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
85 unsigned __int8 v3; // bl@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
86 int result; // eax@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
87 int i; // edx@2
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
88 GUIButton *j; // ecx@3
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
89 int k; // edx@7
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
90 GUIButton *l; // ecx@8
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
91 unsigned __int8 v9; // [sp+4h] [bp-8h]@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
92 char v10; // [sp+8h] [bp-4h]@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
93
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
94 v3 = uNewHotkey;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
95 v10 = toupper(uOldHotkey);
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
96 result = toupper(v3);
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
97 v9 = result;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
98 if ( bFirstCall )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
99 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
100 for ( i = uNumVisibleWindows; i >= 0; --i )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
101 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
102 result = 84 * pVisibleWindowsIdxs[i];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
103 //for ( j = *(GUIButton **)((char *)pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_ + result); j; j = j->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
104 for ( j = pWindowList[pVisibleWindowsIdxs[i] - 1].pControlsHead; j; j = j->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
105 j->field_28 = 0;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
106 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
107 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
108 for ( k = uNumVisibleWindows; k >= 0; --k )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
109 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
110 result = 84 * pVisibleWindowsIdxs[k];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
111 //for ( l = *(GUIButton **)((char *)pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_ + result); l; l = l->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
112 for ( l = pWindowList[pVisibleWindowsIdxs[k] - 1].pControlsHead; l; l = l->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
113 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
114 LOBYTE(result) = v10;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
115 if ( l->uHotkey == v10 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
116 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
117 if ( !l->field_28 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
118 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
119 LOBYTE(result) = v9;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
120 l->field_28 = 1;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
121 l->uHotkey = v9;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
122 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
123 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
124 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
125 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
126 return result;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
127 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
128
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
129
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
130
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
131
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
132 //----- (0041B438) --------------------------------------------------------
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
133 GUIButton *__fastcall GUI_HandleHotkey(unsigned __int8 uHotkey)
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
134 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
135 char v1; // al@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
136 int v2; // esi@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
137 char v3; // dl@1
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
138 GUIWindow *v4; // ecx@2
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
139 GUIButton *result; // eax@2
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
140 //int v6; // edx@12
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
141
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
142 v1 = toupper(uHotkey);
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
143 v2 = uNumVisibleWindows;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
144 v3 = v1;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
145 if ( uNumVisibleWindows >= 0 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
146 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
147 while ( 2 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
148 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
149 v4 = &pWindowList[pVisibleWindowsIdxs[v2] - 1];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
150 for ( result = v4->pControlsHead; result; result = result->pNext )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
151 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
152 if ( result->uHotkey == v3 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
153 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
154 pMessageQueue_50CBD0->AddMessage(result->msg, result->msg_param, 0);
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
155 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
156 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
157 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = (UIMessageType)result->uControlID;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
158 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v6;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
159 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
160 ++pMessageQueue_50CBD0->uNumMessages;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
161 }*/
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
162 return result;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
163 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
164 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
165 if ( v4->uFrameX || v4->uFrameY || !(v4->uFrameWidth == 640 & v4->uFrameHeight == 480) )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
166 {
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
167 --v2;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
168 if ( v2 >= 0 )
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
169 continue;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
170 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
171 break;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
172 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
173 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
174 return 0;
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
175 }
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
176 // 5075E0: using guessed type int pVisibleWindowsIdxs[20];
3431f6abc786 GameUI clean
Nomad
parents: 987
diff changeset
177
0
Ritor1
parents:
diff changeset
178 //----- (0041D73D) --------------------------------------------------------
Ritor1
parents:
diff changeset
179 char GUIWindow::_41D73D_draw_buff_tooltip()
Ritor1
parents:
diff changeset
180 {
Ritor1
parents:
diff changeset
181 GUIFont *v1; // esi@1
Ritor1
parents:
diff changeset
182 GUIWindow *v2; // edi@1
Ritor1
parents:
diff changeset
183 SpellBuff *v3; // eax@1
Ritor1
parents:
diff changeset
184 unsigned int v4; // eax@5
Ritor1
parents:
diff changeset
185 int v5; // ecx@5
Ritor1
parents:
diff changeset
186 unsigned int v6; // eax@5
Ritor1
parents:
diff changeset
187 unsigned int v7; // ecx@5
Ritor1
parents:
diff changeset
188 char *v8; // ebx@7
Ritor1
parents:
diff changeset
189 unsigned int v9; // eax@8
Ritor1
parents:
diff changeset
190 unsigned int v10; // ecx@8
Ritor1
parents:
diff changeset
191 __int64 v11; // ST28_8@11
Ritor1
parents:
diff changeset
192 int v12; // esi@11
Ritor1
parents:
diff changeset
193 const char *v13; // ST0C_4@11
Ritor1
parents:
diff changeset
194 unsigned int v14; // eax@11
Ritor1
parents:
diff changeset
195 char **v16; // [sp+14h] [bp-10h]@7
Ritor1
parents:
diff changeset
196 GUIFont *a2; // [sp+18h] [bp-Ch]@1
Ritor1
parents:
diff changeset
197 SpellBuff *v18; // [sp+1Ch] [bp-8h]@7
Ritor1
parents:
diff changeset
198 int v19; // [sp+20h] [bp-4h]@1
Ritor1
parents:
diff changeset
199 int v20; // [sp+20h] [bp-4h]@7
Ritor1
parents:
diff changeset
200
Ritor1
parents:
diff changeset
201 v1 = pFontComic;
Ritor1
parents:
diff changeset
202 v2 = this;
Ritor1
parents:
diff changeset
203 a2 = pFontComic;
Ritor1
parents:
diff changeset
204 v19 = 0;
Ritor1
parents:
diff changeset
205 v3 = pParty->pPartyBuffs;
Ritor1
parents:
diff changeset
206 do
Ritor1
parents:
diff changeset
207 {
Ritor1
parents:
diff changeset
208 if ( (signed __int64)v3->uExpireTime > 0 )
Ritor1
parents:
diff changeset
209 ++v19;
Ritor1
parents:
diff changeset
210 ++v3;
Ritor1
parents:
diff changeset
211 }
Ritor1
parents:
diff changeset
212 while ( (signed int)v3 < (signed int)pParty->pPlayers );
Ritor1
parents:
diff changeset
213 v4 = LOBYTE(pFontArrus->uFontHeight) + 72;
Ritor1
parents:
diff changeset
214 this->uFrameHeight = v4;
Ritor1
parents:
diff changeset
215 v5 = v4 + (v19 - 1) * LOBYTE(pFontArrus->uFontHeight);
Ritor1
parents:
diff changeset
216 v6 = v2->uFrameWidth;
Ritor1
parents:
diff changeset
217 v2->uFrameHeight = v5;
Ritor1
parents:
diff changeset
218 v7 = v2->uFrameHeight;
Ritor1
parents:
diff changeset
219 v2->uFrameZ = v6 + v2->uFrameX - 1;
Ritor1
parents:
diff changeset
220 v2->uFrameW = v2->uFrameY + v7 - 1;
Ritor1
parents:
diff changeset
221 v2->DrawMessageBox(0);
Ritor1
parents:
diff changeset
222 v2->DrawTitleText(pFontArrus, 0, 0xCu, 0, pGlobalTXT_LocalizationStrings[451], 3u);
Ritor1
parents:
diff changeset
223 if ( !v19 )
Ritor1
parents:
diff changeset
224 v2->DrawTitleText(v1, 0, 0x28u, 0, pGlobalTXT_LocalizationStrings[153], 3u);
Ritor1
parents:
diff changeset
225 v20 = 0;
Ritor1
parents:
diff changeset
226 GetTickCount();
Ritor1
parents:
diff changeset
227 v8 = &_4E2B21_buff_spell_tooltip_colors[1];
Ritor1
parents:
diff changeset
228 v16 = aSpellNames;
Ritor1
parents:
diff changeset
229 v18 = pParty->pPartyBuffs;
Ritor1
parents:
diff changeset
230 do
Ritor1
parents:
diff changeset
231 {
Ritor1
parents:
diff changeset
232 v9 = LODWORD(v18->uExpireTime);
Ritor1
parents:
diff changeset
233 v10 = HIDWORD(v18->uExpireTime);
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
234 if ( (v10 & 0x80000000u) == 0 && ((signed int)v10 > 0 || v9) )//!!!
0
Ritor1
parents:
diff changeset
235 {
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
236 v11 = __PAIR__(v10, v9) - pParty->uTimePlayed;//!!!
0
Ritor1
parents:
diff changeset
237 v12 = v20 * LOBYTE(v1->uFontHeight) + 40;
Ritor1
parents:
diff changeset
238 v13 = *v16;
Ritor1
parents:
diff changeset
239 ++v20;
949
Nomad
parents: 948
diff changeset
240 v14 = TargetColor(
0
Ritor1
parents:
diff changeset
241 (unsigned __int8)*(v8 - 1),
Ritor1
parents:
diff changeset
242 (unsigned __int8)*v8,
Ritor1
parents:
diff changeset
243 (unsigned __int8)v8[1]);
Ritor1
parents:
diff changeset
244 v2->DrawText(a2, 52, v12, v14, v13, 0, 0, 0);
Ritor1
parents:
diff changeset
245 LOBYTE(v9) = sub_41D20D_buff_remaining_time_string(v12, v2, v11, a2);
Ritor1
parents:
diff changeset
246 v1 = a2;
Ritor1
parents:
diff changeset
247 }
Ritor1
parents:
diff changeset
248 ++v18;
Ritor1
parents:
diff changeset
249 ++v16;
Ritor1
parents:
diff changeset
250 v8 += 3;
Ritor1
parents:
diff changeset
251 }
Ritor1
parents:
diff changeset
252 while ( (signed int)v18 < (signed int)pParty->pPlayers );
Ritor1
parents:
diff changeset
253 return v9;
Ritor1
parents:
diff changeset
254 }
Ritor1
parents:
diff changeset
255
Ritor1
parents:
diff changeset
256
Ritor1
parents:
diff changeset
257 //----- (0041D3B7) --------------------------------------------------------
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
258 void GUIWindow::DrawQuickCharRecord()
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
259 {
0
Ritor1
parents:
diff changeset
260 Player *pPlayer; // esi@1
Ritor1
parents:
diff changeset
261 int v6; // eax@5
Ritor1
parents:
diff changeset
262 int v7; // ebx@5
Ritor1
parents:
diff changeset
263 unsigned int v8; // ecx@5
Ritor1
parents:
diff changeset
264 int v9; // ebx@5
Ritor1
parents:
diff changeset
265 unsigned int v10; // eax@5
Ritor1
parents:
diff changeset
266 int v11; // eax@5
Ritor1
parents:
diff changeset
267 unsigned int v12; // ecx@5
Ritor1
parents:
diff changeset
268 Texture *v13; // eax@6
Ritor1
parents:
diff changeset
269 unsigned int v14; // eax@12
Ritor1
parents:
diff changeset
270 PlayerFrame *v15; // eax@12
Ritor1
parents:
diff changeset
271 unsigned int v16; // eax@15
Ritor1
parents:
diff changeset
272 unsigned int v20; // eax@15
Ritor1
parents:
diff changeset
273 unsigned int v24; // eax@15
Ritor1
parents:
diff changeset
274 unsigned int v25; // eax@15
Ritor1
parents:
diff changeset
275 unsigned __int8 v28; // al@15
Ritor1
parents:
diff changeset
276 char *v29; // eax@16
Ritor1
parents:
diff changeset
277 __int64 v35; // ST38_8@22
Ritor1
parents:
diff changeset
278 int v36; // esi@22
Ritor1
parents:
diff changeset
279 unsigned int v38; // eax@22
Ritor1
parents:
diff changeset
280 char *v39; // eax@24
Ritor1
parents:
diff changeset
281 signed int uFramesetID; // [sp+20h] [bp-8h]@9
Ritor1
parents:
diff changeset
282 int uFramesetIDa; // [sp+20h] [bp-8h]@18
Ritor1
parents:
diff changeset
283
Ritor1
parents:
diff changeset
284 pPlayer = &pParty->pPlayers[(unsigned int)ptr_1C];
Ritor1
parents:
diff changeset
285
Ritor1
parents:
diff changeset
286 uint numActivePlayerBuffs = 0;
Ritor1
parents:
diff changeset
287
Ritor1
parents:
diff changeset
288 for (uint i = 0; i < 24; ++i)
Ritor1
parents:
diff changeset
289 if (pPlayer->pPlayerBuffs[i].uExpireTime > 0)
Ritor1
parents:
diff changeset
290 ++numActivePlayerBuffs;
Ritor1
parents:
diff changeset
291
Ritor1
parents:
diff changeset
292 v6 = pFontArrus->uFontHeight + 162;
Ritor1
parents:
diff changeset
293 uFrameHeight = v6;
Ritor1
parents:
diff changeset
294 v7 = (numActivePlayerBuffs - 1) * pFontArrus->uFontHeight;
Ritor1
parents:
diff changeset
295 v8 = uFrameX;
Ritor1
parents:
diff changeset
296 v9 = v6 + v7;
Ritor1
parents:
diff changeset
297 v10 = uFrameWidth;
Ritor1
parents:
diff changeset
298 uFrameHeight = v9;
Ritor1
parents:
diff changeset
299 v11 = v10 + v8 - 1;
Ritor1
parents:
diff changeset
300 v12 = uFrameY;
Ritor1
parents:
diff changeset
301 uFrameZ = v11;
Ritor1
parents:
diff changeset
302 uFrameW = v9 + v12 - 1;
Ritor1
parents:
diff changeset
303 DrawMessageBox(0);
Ritor1
parents:
diff changeset
304 if (pPlayer->Eradicated())
Ritor1
parents:
diff changeset
305 v13 = pTexture_PlayerFaceEradicated;
Ritor1
parents:
diff changeset
306 else if (pPlayer->Dead())
Ritor1
parents:
diff changeset
307 v13 = pTexture_PlayerFaceDead;
Ritor1
parents:
diff changeset
308 else
Ritor1
parents:
diff changeset
309 {
130
1c471f3629fb Party expressions update
Nomad
parents: 99
diff changeset
310 uFramesetID = pPlayerFrameTable->GetFrameIdByExpression(pPlayer->expression);
0
Ritor1
parents:
diff changeset
311 if ( !uFramesetID )
Ritor1
parents:
diff changeset
312 uFramesetID = 1;
130
1c471f3629fb Party expressions update
Nomad
parents: 99
diff changeset
313 if ( pPlayer->expression == CHARACTER_EXPRESSION_21)
0
Ritor1
parents:
diff changeset
314 {
554
9caf59edb1ee Cave and Temple load and even doesn't crash (for a while).
Nomad
parents: 526
diff changeset
315 v15 = pPlayerFrameTable->GetFrameBy_y(&pPlayer->_expression21_frameset, &pPlayer->_expression21_animtime, pMiscTimer->uTimeElapsed);
0
Ritor1
parents:
diff changeset
316 }
Ritor1
parents:
diff changeset
317 else
Ritor1
parents:
diff changeset
318 {
Ritor1
parents:
diff changeset
319 v14 = pMiscTimer->Time();
Ritor1
parents:
diff changeset
320 v15 = pPlayerFrameTable->GetFrameBy_x(uFramesetID, v14);
Ritor1
parents:
diff changeset
321 }
Ritor1
parents:
diff changeset
322 pPlayer->field_1AA2 = v15->uTextureID - 1;
312
6581a2cc21b4 player tooltip face
zipi
parents: 291
diff changeset
323 v13 = pTextures_PlayerFaces[(unsigned int)ptr_1C][v15->uTextureID-1];
0
Ritor1
parents:
diff changeset
324 }
Ritor1
parents:
diff changeset
325
Ritor1
parents:
diff changeset
326 pRenderer->DrawTextureTransparent(uFrameX + 24, uFrameY + 24, v13);
949
Nomad
parents: 948
diff changeset
327 v16 = TargetColor(0xFFu, 0xFFu, 0x9Bu);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
328 sprintf(pTmpBuf, "\f%05d", v16);
264
fb890fb66cad ^Pi[%s]%s
Ritor1
parents: 254
diff changeset
329 sprintfex(pTmpBuf2, pGlobalTXT_LocalizationStrings[429], pPlayer->pName, pClassNames[pPlayer->classType]);
0
Ritor1
parents:
diff changeset
330 strcat(pTmpBuf, pTmpBuf2);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
331 strcat(pTmpBuf, "\f00000\n");
0
Ritor1
parents:
diff changeset
332 v20 = UI_GetHealthManaStringColor(pPlayer->sHealth, pPlayer->GetMaxHealth());
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
333 sprintf(pTmpBuf2, "%s : \f%05u%d\f00000 / %d\n", pGlobalTXT_LocalizationStrings[108],
0
Ritor1
parents:
diff changeset
334 v20, pPlayer->sHealth, pPlayer->GetMaxHealth());
Ritor1
parents:
diff changeset
335 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
336 v24 = UI_GetHealthManaStringColor(pPlayer->sMana, pPlayer->GetMaxMana());
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
337 sprintf(pTmpBuf2, "%s : \f%05u%d\f00000 / %d\n", pGlobalTXT_LocalizationStrings[212],
0
Ritor1
parents:
diff changeset
338 v24, pPlayer->sMana, pPlayer->GetMaxMana());
Ritor1
parents:
diff changeset
339 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
340 v25 = pPlayer->GetMajorConditionIdx();
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
341 sprintf(pTmpBuf2, "%s: \f%05d%s\f00000\n", pGlobalTXT_LocalizationStrings[47],
0
Ritor1
parents:
diff changeset
342 GetConditionDrawColor(v25), aCharacterConditionNames[v25]);
Ritor1
parents:
diff changeset
343 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
344 v28 = pPlayer->uQuickSpell;
Ritor1
parents:
diff changeset
345 if ( v28 )
Ritor1
parents:
diff changeset
346 v29 = pSpellStats->pInfos[v28].pShortName;
Ritor1
parents:
diff changeset
347 else
Ritor1
parents:
diff changeset
348 v29 = pGlobalTXT_LocalizationStrings[153];
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
349 sprintf((char*)pTmpBuf2, "%s: %s", (char*)pGlobalTXT_LocalizationStrings[172], v29);
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
350 strcat((char*)pTmpBuf, (char*)pTmpBuf2);
0
Ritor1
parents:
diff changeset
351 DrawText(pFontArrus, 120, 22, 0, pTmpBuf, 0, 0, 0);
Ritor1
parents:
diff changeset
352
Ritor1
parents:
diff changeset
353 uFramesetIDa = 0;
Ritor1
parents:
diff changeset
354 for (uint i = 0; i < 24; ++i)
Ritor1
parents:
diff changeset
355 {
Ritor1
parents:
diff changeset
356 auto buff = pPlayer->pPlayerBuffs + i;
Ritor1
parents:
diff changeset
357 if (buff->uExpireTime > 0)
Ritor1
parents:
diff changeset
358 {
Ritor1
parents:
diff changeset
359 v35 = buff->uExpireTime - pParty->uTimePlayed;
Ritor1
parents:
diff changeset
360 v36 = uFramesetIDa++ * pFontComic->uFontHeight + 134;
949
Nomad
parents: 948
diff changeset
361 v38 = TargetColor(
0
Ritor1
parents:
diff changeset
362 _4E2AD8_ui_colors[i * 3],
Ritor1
parents:
diff changeset
363 _4E2AD8_ui_colors[i * 3 + 1],
Ritor1
parents:
diff changeset
364 _4E2AD8_ui_colors[i * 3 + 2]);
Ritor1
parents:
diff changeset
365 DrawText(pFontComic, 52, v36, v38, aSpellNames[20 + i], 0, 0, 0);
Ritor1
parents:
diff changeset
366 sub_41D20D_buff_remaining_time_string(v36, this, v35, pFontComic);
Ritor1
parents:
diff changeset
367 }
Ritor1
parents:
diff changeset
368 }
Ritor1
parents:
diff changeset
369
Ritor1
parents:
diff changeset
370 v39 = "";
Ritor1
parents:
diff changeset
371 if ( uFramesetIDa == 0 )
Ritor1
parents:
diff changeset
372 v39 = pGlobalTXT_LocalizationStrings[153];
Ritor1
parents:
diff changeset
373 sprintf(pTmpBuf, pGlobalTXT_LocalizationStrings[450], v39);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
374 DrawText(pFontArrus, 14, 114, 0, pTmpBuf, 0, 0, 0);
0
Ritor1
parents:
diff changeset
375 }
Ritor1
parents:
diff changeset
376
Ritor1
parents:
diff changeset
377 //----- (0041D08F) --------------------------------------------------------
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
378 void GUIWindow::_41D08F_set_keyboard_control_group(int a2, int a3, int a4, int a5)
0
Ritor1
parents:
diff changeset
379 {
Ritor1
parents:
diff changeset
380 if ( a2 )
Ritor1
parents:
diff changeset
381 {
Ritor1
parents:
diff changeset
382 this->pNumPresenceButton = a2;
Ritor1
parents:
diff changeset
383 this->field_30 = a3;
Ritor1
parents:
diff changeset
384 this->field_34 = a4;
Ritor1
parents:
diff changeset
385 this->pCurrentPosActiveItem = a5;
Ritor1
parents:
diff changeset
386 this->pStartingPosActiveItem = a5;
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
387 this->receives_keyboard_input = true;
0
Ritor1
parents:
diff changeset
388 }
Ritor1
parents:
diff changeset
389 else
Ritor1
parents:
diff changeset
390 {
Ritor1
parents:
diff changeset
391 this->pNumPresenceButton = 0;
Ritor1
parents:
diff changeset
392 this->field_30 = a3;
Ritor1
parents:
diff changeset
393 this->field_34 = a4;
Ritor1
parents:
diff changeset
394 this->pCurrentPosActiveItem = 0;
Ritor1
parents:
diff changeset
395 this->pStartingPosActiveItem = 0;
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
396 this->receives_keyboard_input = false;
0
Ritor1
parents:
diff changeset
397 }
Ritor1
parents:
diff changeset
398 }
Ritor1
parents:
diff changeset
399
Ritor1
parents:
diff changeset
400
Ritor1
parents:
diff changeset
401 //----- (0041C26A) --------------------------------------------------------
Ritor1
parents:
diff changeset
402 void GUIWindow::Release()
Ritor1
parents:
diff changeset
403 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
404 //GUIWindow *v1; // esi@1
0
Ritor1
parents:
diff changeset
405 int i; // edi@20
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
406 //GUIButton *v8; // eax@26
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
407 GUIButton *pNextBtn; // edi@27
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
408 //int v10; // esi@28
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
409 //int v11; // ecx@28
0
Ritor1
parents:
diff changeset
410 int v12; // edx@29
Ritor1
parents:
diff changeset
411
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
412 //v1 = this;
0
Ritor1
parents:
diff changeset
413 if ( !this )
Ritor1
parents:
diff changeset
414 return;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
415
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
416 switch( this->eWindowType )
0
Ritor1
parents:
diff changeset
417 {
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
418 case WINDOW_GreetingNPC:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
419 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
420 pIcons_LOD->_40F9C5();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
421 pCurrentScreen = pMainScreenNum;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
422 pKeyActionMap->_459ED1(3);
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
423 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
424 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
425 case WINDOW_HouseInterior:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
426 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
427 for ( i = 0; i < uNumDialogueNPCPortraits; ++i )
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
428 pDialogueNPCPortraits[i]->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
429 uNumDialogueNPCPortraits = 0;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
430 pTexture_Dialogue_Background->Release();
0
Ritor1
parents:
diff changeset
431
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
432 pIcons_LOD->_40F9C5();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
433 pIcons_LOD->_4114F2();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
434 dword_5C35D4 = 0;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
435 if ( bFlipOnExit )
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
436 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
437 pIndoorCamera->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (stru_5C6E00->uIntegerPi
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
438 + pIndoorCamera->sRotationY);
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
439 pParty->sRotationY = pIndoorCamera->sRotationY;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
440 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
441 pParty->uFlags |= 2u;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
442 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
443 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
444 case WINDOW_Transition:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
445 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
446 pVideoPlayer->Unload();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
447 pTexture_outside->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
448 pTexture_Dialogue_Background->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
449 pIcons_LOD->_40F9C5();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
450 pCurrentScreen = pMainScreenNum;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
451 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
452 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
453 case WINDOW_SpellBook:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
454 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
455 sub_41140B();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
456 sub_411473();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
457 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
458 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
459 case WINDOW_Book:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
460 {
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 949
diff changeset
461 OnCloseSpellBook();
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
462 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
463 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
464 case WINDOW_ChangeLocation:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
465 {
0
Ritor1
parents:
diff changeset
466 pTexture_outside->Release();
Ritor1
parents:
diff changeset
467 pTexture_Dialogue_Background->Release();
Ritor1
parents:
diff changeset
468 pIcons_LOD->_40F9C5();
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
469 pCurrentScreen = pMainScreenNum;
696
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
470 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
471 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
472 case WINDOW_Dialogue:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
473 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
474 if ( !dword_591084 )
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
475 pDialogueNPCPortraits[0]->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
476 uNumDialogueNPCPortraits = 0;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
477 pTexture_Dialogue_Background->Release();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
478
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
479 pIcons_LOD->_40F9C5();
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
480 pCurrentScreen = pMainScreenNum;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
481 }
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
482 default:
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
483 {
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
484 break;
4e1b2a24a6e3 GUIWindow::Release clean
zipi
parents: 693
diff changeset
485 }
0
Ritor1
parents:
diff changeset
486 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
487 //v8 = this->pControlsHead;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
488 if ( this->pControlsHead )
0
Ritor1
parents:
diff changeset
489 {
Ritor1
parents:
diff changeset
490 do
Ritor1
parents:
diff changeset
491 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
492 pNextBtn = this->pControlsHead->pNext;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
493 pAllocator->FreeChunk(this->pControlsHead);
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
494 this->pControlsHead = pNextBtn;
0
Ritor1
parents:
diff changeset
495 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
496 while ( pNextBtn );
0
Ritor1
parents:
diff changeset
497 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
498 this->pControlsHead = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
499 this->pControlsTail = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
500 this->uNumControls = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
501 this->eWindowType = WINDOW_null;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
502 while ( this->numVisibleWindows < uNumVisibleWindows )
0
Ritor1
parents:
diff changeset
503 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
504 v12 = pVisibleWindowsIdxs[this->numVisibleWindows + 1];
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
505 pVisibleWindowsIdxs[this->numVisibleWindows] = v12;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
506 --pWindowList[v12 - 1].numVisibleWindows;
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
507 ++this->numVisibleWindows;
0
Ritor1
parents:
diff changeset
508 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
509 pVisibleWindowsIdxs[uNumVisibleWindows] = 0;
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
510 uNumVisibleWindows = uNumVisibleWindows - 1;
0
Ritor1
parents:
diff changeset
511 }
Ritor1
parents:
diff changeset
512
Ritor1
parents:
diff changeset
513
Ritor1
parents:
diff changeset
514
Ritor1
parents:
diff changeset
515
Ritor1
parents:
diff changeset
516
Ritor1
parents:
diff changeset
517
Ritor1
parents:
diff changeset
518 //----- (0041CD3B) --------------------------------------------------------
Ritor1
parents:
diff changeset
519 GUIButton *GUIWindow::GetControl(unsigned int uID)
Ritor1
parents:
diff changeset
520 {
Ritor1
parents:
diff changeset
521 GUIButton *result; // eax@1
Ritor1
parents:
diff changeset
522 unsigned int v3; // ecx@1
Ritor1
parents:
diff changeset
523
Ritor1
parents:
diff changeset
524 result = this->pControlsHead;
Ritor1
parents:
diff changeset
525 v3 = uID;
Ritor1
parents:
diff changeset
526 if ( (signed int)uID > 0 )
Ritor1
parents:
diff changeset
527 {
Ritor1
parents:
diff changeset
528 do
Ritor1
parents:
diff changeset
529 {
Ritor1
parents:
diff changeset
530 result = result->pNext;
Ritor1
parents:
diff changeset
531 --v3;
Ritor1
parents:
diff changeset
532 }
Ritor1
parents:
diff changeset
533 while ( v3 );
Ritor1
parents:
diff changeset
534 }
Ritor1
parents:
diff changeset
535 return result;
Ritor1
parents:
diff changeset
536 }
Ritor1
parents:
diff changeset
537
Ritor1
parents:
diff changeset
538 //----- (00411BFC) --------------------------------------------------------
Ritor1
parents:
diff changeset
539 void GUIWindow::InitializeBookView()
Ritor1
parents:
diff changeset
540 {
Ritor1
parents:
diff changeset
541 GUIWindow *v1; // ebp@1
Ritor1
parents:
diff changeset
542 signed int v2; // ecx@8
Ritor1
parents:
diff changeset
543 __int64 *v3; // ebp@9
Ritor1
parents:
diff changeset
544 char *v4; // ecx@10
Ritor1
parents:
diff changeset
545 char *v5; // eax@12
Ritor1
parents:
diff changeset
546 int v6; // eax@12
Ritor1
parents:
diff changeset
547 __int64 v7; // qax@12
Ritor1
parents:
diff changeset
548 unsigned int v8; // esi@12
Ritor1
parents:
diff changeset
549 GUIButton *v9; // eax@19
Ritor1
parents:
diff changeset
550 signed int v10; // esi@19
Ritor1
parents:
diff changeset
551 int v11; // eax@24
Ritor1
parents:
diff changeset
552 int v12; // eax@27
Ritor1
parents:
diff changeset
553 int i; // esi@28
Ritor1
parents:
diff changeset
554 char *v14; // ebp@29
Ritor1
parents:
diff changeset
555 int v15; // eax@31
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
556 //unsigned int v16; // esi@35
0
Ritor1
parents:
diff changeset
557 Player *v17; // esi@38
Ritor1
parents:
diff changeset
558 unsigned __int16 v18; // ax@38
Ritor1
parents:
diff changeset
559 unsigned int v19; // edi@43
Ritor1
parents:
diff changeset
560 unsigned int v20; // edi@45
Ritor1
parents:
diff changeset
561 void *v21; // esi@45
Ritor1
parents:
diff changeset
562 signed int v23; // [sp+10h] [bp-5Ch]@38
Ritor1
parents:
diff changeset
563 char *v25; // [sp+14h] [bp-58h]@21
Ritor1
parents:
diff changeset
564 GUIWindow v26; // [sp+18h] [bp-54h]@8
Ritor1
parents:
diff changeset
565
Ritor1
parents:
diff changeset
566 v1 = this;
Ritor1
parents:
diff changeset
567 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
568 InitializeBookFonts();
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
569 v1->CreateButton(0x1DBu, 0x1BDu, 0x9Eu, 0x22u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0); // Close
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
570 pCurrentScreen = SCREEN_BOOKS;
949
Nomad
parents: 948
diff changeset
571 num_achieved_awards_2 = 0;
0
Ritor1
parents:
diff changeset
572 dword_506528 = 0;
Ritor1
parents:
diff changeset
573 dword_50651C = 0;
949
Nomad
parents: 948
diff changeset
574 num_achieved_awards = 0;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
575 switch (v1->par1C)
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
576 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
577 case WINDOW_LloydsBeacon:{
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
578 byte_506360 = 0;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
579 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("lb_bordr", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
580 pTexture_LloydBeacons[0] = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
581 pTexture_50635C = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
582 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
583 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
584
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
585 pBtn_Book_1 = v1->CreateButton(415, 13, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 0, 0, pGlobalTXT_LocalizationStrings[375], 0); // Set Beacon
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
586 pBtn_Book_2 = v1->CreateButton(415, 48, 39, 36, 1, 0, UIMSG_LloydsBeacon_FlippingBtn, 1, 0, pGlobalTXT_LocalizationStrings[523], 0); // Recall Beacon
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
587
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
588 v17 = &pParty->pPlayers[_506348_current_lloyd_playerid];
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
589 v23 = 1;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
590 v18 = v17->pActiveSkills[14];
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
591 if ( HIBYTE(v18) & 1 || (v18 & 0x80u) != 0 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
592 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
593 v23 = 5;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
594 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
595 else
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
596 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
597 if ( v18 & 0x40 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
598 v23 = 3;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
599 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
600 v19 = 0;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
601 if ( v23 > 0 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
602 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
603 do
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
604 {
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
605 v1->CreateButton(pLloydsBeaconsPreviewXs[v19], pLloydsBeaconsPreviewYs[v19], 0x5Cu, 0x44u, 1, 180, UIMSG_InstallBeacon, v19, 0, "", 0);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
606 ++v19;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
607 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
608 while ( (signed int)v19 < v23 );
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
609 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
610 v20 = 0;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
611 v21 = v17->pInstalledBeacons;
0
Ritor1
parents:
diff changeset
612 do
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
613 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
614 if ( *(_QWORD *)v21 >= (signed __int64)pParty->uTimePlayed )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
615 LoadThumbnailLloydTexture(v20, _506348_current_lloyd_playerid + 1);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
616 else
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
617 memset(v21, 0, 0x1Cu);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
618 ++v20;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
619 v21 = (char *)v21 + 28;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
620 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
621 while ( (signed int)v20 < 5 );
0
Ritor1
parents:
diff changeset
622 }
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
623 break;
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
624
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
625 case WINDOW_TownPortal:
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
626 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
627 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("townport", TEXTURE_16BIT_PALETTE);
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
628 pTexture_TownPortalIcons[0] = pIcons_LOD->LoadTexturePtr("tpharmndy", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
629 pTexture_TownPortalIcons[1] = pIcons_LOD->LoadTexturePtr("tpelf", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
630 pTexture_TownPortalIcons[2] = pIcons_LOD->LoadTexturePtr("tpwarlock", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
631 pTexture_TownPortalIcons[3] = pIcons_LOD->LoadTexturePtr("tpisland", TEXTURE_16BIT_PALETTE);
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
632 pTexture_TownPortalIcons[4] = pIcons_LOD->LoadTexturePtr("tpheaven", TEXTURE_16BIT_PALETTE);
730
79ad0526166c Some data movements.
Nomad
parents: 710
diff changeset
633 pTexture_TownPortalIcons[5] = pIcons_LOD->LoadTexturePtr("tphell", TEXTURE_16BIT_PALETTE);
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
634
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
635 for (uint i = 0; i < 6; ++i)
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
636 v1->CreateButton(pTownPortalBook_xs[i], pTownPortalBook_ys[i], pTownPortalBook_ws[i], pTownPortalBook_hs[i], 1, 182, UIMSG_ClickTownInTP, i, 0, "", nullptr);
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
637 /*v16 = 0;
0
Ritor1
parents:
diff changeset
638 do
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
639 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
640 v1->CreateButton(pTownPortalBook_xs[v16], pTownPortalBook_ys[v16], pTownPortalBook_ws[v16], pTownPortalBook_hs[v16], 1, 182, 0xB7u, v16, 0, "", 0);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
641 ++v16;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
642 }
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
643 while ( (signed int)v16 < 6 );*/
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
644 }
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
645 break;
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
646
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
647 case WINDOW_QuestBook:
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
648 {
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
649 pTexture_CurrentBook = pIcons_LOD->LoadTexturePtr("sbquiknot", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
650 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr( "divbar", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
651 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
652 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
653 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
654 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
655 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1,
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
656 pTex_tab_an_6b__zoom_on->uTextureWidth, pTex_tab_an_6b__zoom_on->uTextureHeight,
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
657 1, 0, UIMSG_ClickBooksBtn, 0xBu, 0, pGlobalTXT_LocalizationStrings[192],// "Scroll Up"
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
658 pTex_tab_an_6b__zoom_on, 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
659 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38,
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
660 pTex_tab_an_7b__zoot_on->uTextureHeight, pTex_tab_an_7b__zoot_on->uTextureHeight,
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
661 1, 0, UIMSG_ClickBooksBtn, 0xAu, 0, pGlobalTXT_LocalizationStrings[193],// "Scroll Down"
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
662 pTex_tab_an_7b__zoot_on, 0);
949
Nomad
parents: 948
diff changeset
663 num_achieved_awards = 0;
Nomad
parents: 948
diff changeset
664 memset(achieved_awards, 0, 4000);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
665 for ( i = dword_506528; i < 512; ++i )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
666 {
81
377535d6e366 structure boundaries fixed in many places. fixed quests, notes, awards, calendar.
zipi
parents: 74
diff changeset
667 v14 = (char *)pQuestTable[i-1];//(&dword_722F10)[4 * i];
521
663c4f618f56 Awards tab corrrection
Gloval
parents: 502
diff changeset
668 if ( _449B57_test_bit(pParty->_quest_bits, i) && v14 )
0
Ritor1
parents:
diff changeset
669 {
949
Nomad
parents: 948
diff changeset
670 v15 = num_achieved_awards++;
Nomad
parents: 948
diff changeset
671 achieved_awards[v15] = (AwardType)i;
0
Ritor1
parents:
diff changeset
672 }
Ritor1
parents:
diff changeset
673 }
949
Nomad
parents: 948
diff changeset
674 v12 = num_achieved_awards;
Nomad
parents: 948
diff changeset
675 num_achieved_awards = 0;
Nomad
parents: 948
diff changeset
676 num_achieved_awards_2 = v12;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
677 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
678 break;
981
a6ef7125f6e4 Autonotes & GameState
Nomad
parents: 972
diff changeset
679
a6ef7125f6e4 Autonotes & GameState
Nomad
parents: 972
diff changeset
680
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
681 case WINDOW_AutonotesBook:
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
682 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
683 pTexture_AutonotesBook = pIcons_LOD->LoadTexturePtr("sbautnot", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
684 pSpellBookPagesTextr_10 = pIcons_LOD->LoadTexturePtr("divbar", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
685 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
686 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
687 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
688 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
689 pTexture_506394 = pIcons_LOD->LoadTexturePtr("tab-an-1b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
690 pTexture_506390 = pIcons_LOD->LoadTexturePtr("tab-an-1a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
691 pTexture_50638C = pIcons_LOD->LoadTexturePtr("tab-an-2b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
692 pTexture_506388 = pIcons_LOD->LoadTexturePtr("tab-an-2a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
693 pTexture_506384 = pIcons_LOD->LoadTexturePtr("tab-an-3b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
694 pTexture_506380 = pIcons_LOD->LoadTexturePtr("tab-an-3a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
695 pTexture_50637C = pIcons_LOD->LoadTexturePtr("tab-an-5b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
696 pTexture_506378 = pIcons_LOD->LoadTexturePtr("tab-an-5a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
697 pTexture_506374 = pIcons_LOD->LoadTexturePtr("tab-an-4b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
698 pTexture_506370 = pIcons_LOD->LoadTexturePtr("tab-an-4a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
699 pTexture_50636C = pIcons_LOD->LoadTexturePtr("tab-an-8b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
700 pTexture_506368 = pIcons_LOD->LoadTexturePtr("tab-an-8a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
701
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
702 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[193], pTex_tab_an_6b__zoom_on, 0);
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
703 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[192], pTex_tab_an_7b__zoot_on, 0);
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
704 pBtn_Book_3 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[85], pTexture_506394, 0); // "Potion Notes"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
705 pBtn_Book_4 = v1->CreateButton(pViewport->uViewportTL_X + 399, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[137], pTexture_50638C, 0); // "Fountain Notes"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
706 pBtn_Book_5 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[8], pTexture_506384, 0); // "Obelisk Notes"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
707 pBtn_Book_6 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[141], pTexture_50637C, 0); // "Seer Notes"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
708 pBtn_Autonotes_Misc = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 264, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 6, 0, pGlobalTXT_LocalizationStrings[123], pTexture_506374, 0); // "Miscellaneous Notes"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
709 pBtn_Autonotes_Instructors = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 302, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 7, 0, pGlobalTXT_LocalizationStrings[662], pTexture_50636C, 0); // "Instructors"
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
710
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
711 v9 = pBtn_Autonotes_Instructors;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
712 v10 = dword_506528;
949
Nomad
parents: 948
diff changeset
713 num_achieved_awards = 0;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
714 while ( v10 < 196 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
715 {
981
a6ef7125f6e4 Autonotes & GameState
Nomad
parents: 972
diff changeset
716 if ( _506568_autonote_type == pAutonoteTxt[v10-1].eType)//dword_72371C[2 * v10] )
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
717 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
718 //v25 = (&dword_723718_autonote_related)[8 * (signed __int16)v10];
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
719 v25 = (char *)pAutonoteTxt[v10-1].pText;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
720 if ( (short)v10 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
721 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
722 if ( _449B57_test_bit(pParty->_autonote_bits, v10) && v25 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
723 {
949
Nomad
parents: 948
diff changeset
724 v11 = num_achieved_awards++;
Nomad
parents: 948
diff changeset
725 achieved_awards[v11] = (AwardType)v10;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
726 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
727 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
728 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
729 ++v10;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
730 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
731 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
732 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
733
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
734 case WINDOW_MapsBook:
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
735 {
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
736 dword_506364 = 1;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
737 pSpellBookPagesTextr_12 = pIcons_LOD->LoadTexturePtr("sbmap", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
738 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("zoom-on", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
739 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("zoot-on", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
740 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("zoom-off", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
741 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("zoot-off", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
742 pTexture_506394 = pIcons_LOD->LoadTexturePtr("tabNon", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
743 pTexture_506390 = pIcons_LOD->LoadTexturePtr("tabNoff", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
744 pTexture_50638C = pIcons_LOD->LoadTexturePtr("tabSon", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
745 pTexture_506388 = pIcons_LOD->LoadTexturePtr("tabSoff", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
746 pTexture_506384 = pIcons_LOD->LoadTexturePtr("tabEon", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
747 pTexture_506380 = pIcons_LOD->LoadTexturePtr("tabEoff", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
748 pTexture_50637C = pIcons_LOD->LoadTexturePtr("tabWon", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
749 pTexture_506378 = pIcons_LOD->LoadTexturePtr("tabWoff", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
750
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
751 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 0, 0, pGlobalTXT_LocalizationStrings[251], pTex_tab_an_6b__zoom_on, 0);// "Zoom In"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
752 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 1, 0, pGlobalTXT_LocalizationStrings[252], pTex_tab_an_7b__zoot_on, 0);// "Zoom Out"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
753 pBtn_Book_3 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 113, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 2, 0, pGlobalTXT_LocalizationStrings[192], (Texture *)"", 0);// Scroll Up
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
754 pBtn_Book_4 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 150, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 3, 0, pGlobalTXT_LocalizationStrings[193], (Texture *)"", 0);// Scroll Down
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
755 pBtn_Book_5 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 188, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 4, 0, pGlobalTXT_LocalizationStrings[573], (Texture *)"", 0);// "Scroll Right"
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
756 pBtn_Book_6 = v1->CreateButton(pViewport->uViewportTL_X + 397, pViewport->uViewportTL_Y + 226, 50, 34, 1, 0, UIMSG_ClickBooksBtn, 5, 0, pGlobalTXT_LocalizationStrings[572], (Texture *)"", 0);// "Scroll Left"
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
757 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
758 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
759
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
760 case WINDOW_CalendarBook:
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
761 {
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
762 pSpellBookPagesTextr_13 = pIcons_LOD->LoadTexturePtr("sbdate-time", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
763 pTex_moon_new = pIcons_LOD->LoadTexturePtr("moon_new", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
764 pTex_moon_4 = pIcons_LOD->LoadTexturePtr("moon_4", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
765 pTex_moon_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
766 pTex_moon_2_2 = pIcons_LOD->LoadTexturePtr("moon_2", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
767 pTex_moon_ful = pIcons_LOD->LoadTexturePtr("moon_ful", TEXTURE_16BIT_PALETTE);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
768 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
769 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
770
710
735dab8d3c9a Town portal screen + misc gui const replacements
Nomad
parents: 696
diff changeset
771 case WINDOW_HistoryBook:
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
772 {
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
773 pSpellBookPagesTextr_11 = pIcons_LOD->LoadTexturePtr("sbplayrnot", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
774 pTex_tab_an_6b__zoom_on = pIcons_LOD->LoadTexturePtr("tab-an-6b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
775 pTex_tab_an_7b__zoot_on = pIcons_LOD->LoadTexturePtr("tab-an-7b", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
776 pTex_tab_an_6a__zoom_off = pIcons_LOD->LoadTexturePtr("tab-an-6a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
777 pTex_tab_an_7a__zoot_off = pIcons_LOD->LoadTexturePtr("tab-an-7a", TEXTURE_16BIT_PALETTE);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
778
996
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
779 pBtn_Book_1 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 1, pTex_tab_an_6b__zoom_on->uTextureWidth, pTex_tab_an_6b__zoom_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 11, 0, pGlobalTXT_LocalizationStrings[192], pTex_tab_an_6b__zoom_on, 0);
bdbbdfa77ea6 UIMSG_ClickBooksBtn
Ritor1
parents: 987
diff changeset
780 pBtn_Book_2 = v1->CreateButton(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 38, pTex_tab_an_7b__zoot_on->uTextureHeight, pTex_tab_an_7b__zoot_on->uTextureHeight, 1, 0, UIMSG_ClickBooksBtn, 10, 0, pGlobalTXT_LocalizationStrings[193], pTex_tab_an_7b__zoot_on, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
781
949
Nomad
parents: 948
diff changeset
782 num_achieved_awards = 0;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
783 v26.uFrameX = 48;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
784 v26.uFrameY = 70;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
785 v26.uFrameWidth = 360;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
786 v26.uFrameHeight = 264;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
787 v2 = LOBYTE(pAutonoteFont->uFontHeight) - 3;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
788 v26.uFrameZ = 407;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
789 v26.uFrameHeight = v2 * 264 / v2;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
790 v26.uFrameW = v26.uFrameHeight + 69;
949
Nomad
parents: 948
diff changeset
791 memset(&achieved_awards, 0, 4000);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
792 memset(byte_5C6D50, 0, 0x64u);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
793 if ( dword_506528 < 29 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
794 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
795 v3 = (__int64 *)&pParty->field_3C.field_4F0[2 * dword_506528];
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
796 for(int i=dword_506528+1;i<dword_506528+31;i++)
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
797 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
798 v4 = pStorylineText->StoreLine[i].pText;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
799 if ( *v3 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
800 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
801 if ( v4 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
802 {
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
803 v5 = BuilDialogueString(v4, uActiveCharacter - 1, 0, 0, 0, v3);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
804 v6 = pAutonoteFont->CalcTextHeight(v5, &v26, 1, 0);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
805 v7 = (v6 - 3) / (signed int)v26.uFrameHeight;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
806 v8 = v7 + 1;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
807 if ( (signed int)v7 + 1 > 0 )
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
808 {
949
Nomad
parents: 948
diff changeset
809 memset32((char *)&achieved_awards + 4 * num_achieved_awards , i, v8);
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
810 do
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
811 {
949
Nomad
parents: 948
diff changeset
812 LODWORD(v7) = num_achieved_awards++;
688
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
813 byte_5C6D50[(int)v7] = BYTE4(v7);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
814 ++HIDWORD(v7);
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
815 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
816 while ( SHIDWORD(v7) < (signed int)v8 );
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
817 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
818 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
819 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
820 ++i;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
821 ++v3;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
822 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
823 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
824
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
825 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
826 break;
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
827 }
c0bfb386b15f some ui cleanup
Gloval
parents: 629
diff changeset
828
0
Ritor1
parents:
diff changeset
829 }
Ritor1
parents:
diff changeset
830
Ritor1
parents:
diff changeset
831
Ritor1
parents:
diff changeset
832
Ritor1
parents:
diff changeset
833
Ritor1
parents:
diff changeset
834 //----- (00415551) --------------------------------------------------------
Ritor1
parents:
diff changeset
835 void GUIWindow::DrawMessageBox(int arg0)
Ritor1
parents:
diff changeset
836 {
Ritor1
parents:
diff changeset
837 unsigned int v2; // edi@1
Ritor1
parents:
diff changeset
838 GUIWindow *v3; // ebx@1
Ritor1
parents:
diff changeset
839 signed int v4; // esi@2
Ritor1
parents:
diff changeset
840 unsigned int v5; // eax@2
Ritor1
parents:
diff changeset
841 unsigned int v6; // edx@4
Ritor1
parents:
diff changeset
842 unsigned int v7; // ecx@6
Ritor1
parents:
diff changeset
843 unsigned int v8; // eax@9
Ritor1
parents:
diff changeset
844 __int32 v9; // eax@10
Ritor1
parents:
diff changeset
845 unsigned int v10; // eax@18
Ritor1
parents:
diff changeset
846 LONG v11; // ecx@18
Ritor1
parents:
diff changeset
847 unsigned int v12; // edx@18
Ritor1
parents:
diff changeset
848 unsigned int v13; // eax@18
Ritor1
parents:
diff changeset
849 const char *v14; // ecx@18
Ritor1
parents:
diff changeset
850 int v15; // eax@19
Ritor1
parents:
diff changeset
851 unsigned int v16; // esi@19
Ritor1
parents:
diff changeset
852 const char *v17; // ebx@25
Ritor1
parents:
diff changeset
853 int v18; // eax@26
Ritor1
parents:
diff changeset
854 GUIWindow v19; // [sp+Ch] [bp-60h]@18
Ritor1
parents:
diff changeset
855 POINT a2; // [sp+60h] [bp-Ch]@8
Ritor1
parents:
diff changeset
856 unsigned int v21; // [sp+68h] [bp-4h]@18
Ritor1
parents:
diff changeset
857 unsigned int v22; // [sp+74h] [bp+8h]@2
Ritor1
parents:
diff changeset
858 unsigned int v23; // [sp+74h] [bp+8h]@18
Ritor1
parents:
diff changeset
859
Ritor1
parents:
diff changeset
860 v2 = 0;
Ritor1
parents:
diff changeset
861 v3 = this;
Ritor1
parents:
diff changeset
862 if ( arg0 )
Ritor1
parents:
diff changeset
863 {
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
864 v4 = pViewport->uViewportTL_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
865 v5 = pViewport->uViewportBR_X;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
866 v2 = pViewport->uViewportTL_Y;
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
867 v22 = pViewport->uViewportBR_Y;
0
Ritor1
parents:
diff changeset
868 }
Ritor1
parents:
diff changeset
869 else
Ritor1
parents:
diff changeset
870 {
Ritor1
parents:
diff changeset
871 v4 = 0;
Ritor1
parents:
diff changeset
872 v5 = 640;
Ritor1
parents:
diff changeset
873 v22 = 480;
Ritor1
parents:
diff changeset
874 }
Ritor1
parents:
diff changeset
875 v6 = this->uFrameX;
Ritor1
parents:
diff changeset
876 if ( (signed int)this->uFrameX >= v4 )
Ritor1
parents:
diff changeset
877 {
Ritor1
parents:
diff changeset
878 v7 = this->uFrameWidth;
Ritor1
parents:
diff changeset
879 if ( (signed int)(v7 + v6) <= (signed int)v5 )
Ritor1
parents:
diff changeset
880 goto LABEL_9;
Ritor1
parents:
diff changeset
881 v3->uFrameX = v5 - v7;
Ritor1
parents:
diff changeset
882 }
Ritor1
parents:
diff changeset
883 else
Ritor1
parents:
diff changeset
884 {
Ritor1
parents:
diff changeset
885 this->uFrameX = v4;
Ritor1
parents:
diff changeset
886 }
Ritor1
parents:
diff changeset
887 v3->uFrameY = pMouse->GetCursorPos(&a2)->y + 30;
Ritor1
parents:
diff changeset
888 LABEL_9:
Ritor1
parents:
diff changeset
889 v8 = v3->uFrameY;
Ritor1
parents:
diff changeset
890 if ( (signed int)v8 >= (signed int)v2 )
Ritor1
parents:
diff changeset
891 {
Ritor1
parents:
diff changeset
892 if ( (signed int)(v8 + v3->uFrameHeight) <= (signed int)v22 )
Ritor1
parents:
diff changeset
893 goto LABEL_14;
Ritor1
parents:
diff changeset
894 v9 = pMouse->GetCursorPos(&a2)->y - v3->uFrameHeight - 30;
Ritor1
parents:
diff changeset
895 }
Ritor1
parents:
diff changeset
896 else
Ritor1
parents:
diff changeset
897 {
Ritor1
parents:
diff changeset
898 v9 = pMouse->GetCursorPos(&a2)->y + 30;
Ritor1
parents:
diff changeset
899 }
Ritor1
parents:
diff changeset
900 v3->uFrameY = v9;
Ritor1
parents:
diff changeset
901 LABEL_14:
Ritor1
parents:
diff changeset
902 if ( (signed int)v3->uFrameY < (signed int)v2 )
Ritor1
parents:
diff changeset
903 v3->uFrameY = v2;
Ritor1
parents:
diff changeset
904 if ( (signed int)v3->uFrameX < v4 )
Ritor1
parents:
diff changeset
905 v3->uFrameX = v4;
Ritor1
parents:
diff changeset
906 v10 = v3->uFrameWidth;
Ritor1
parents:
diff changeset
907 v11 = v3->uFrameX;
Ritor1
parents:
diff changeset
908 v12 = v3->uFrameY;
Ritor1
parents:
diff changeset
909 v21 = v10;
Ritor1
parents:
diff changeset
910 a2.y = v11;
Ritor1
parents:
diff changeset
911 v3->uFrameZ = v10 + v11 - 1;
Ritor1
parents:
diff changeset
912 v13 = v3->uFrameHeight;
Ritor1
parents:
diff changeset
913 v3->uFrameW = v13 + v12 - 1;
Ritor1
parents:
diff changeset
914 memcpy(&v19, v3, sizeof(v19));
Ritor1
parents:
diff changeset
915 v19.uFrameX += 12;
Ritor1
parents:
diff changeset
916 v19.uFrameWidth -= 24;
Ritor1
parents:
diff changeset
917 v19.uFrameY += 12;
Ritor1
parents:
diff changeset
918 v19.uFrameHeight -= 12;
Ritor1
parents:
diff changeset
919 v19.uFrameZ = v19.uFrameWidth + v19.uFrameX - 1;
Ritor1
parents:
diff changeset
920 v23 = v12;
Ritor1
parents:
diff changeset
921 v19.uFrameW = v19.uFrameHeight + v19.uFrameY - 1;
Ritor1
parents:
diff changeset
922 v14 = v3->Hint;
Ritor1
parents:
diff changeset
923 if ( v14 )
Ritor1
parents:
diff changeset
924 {
Ritor1
parents:
diff changeset
925 v15 = pFontLucida->CalcTextHeight(v14, &v19, 0, 0);
Ritor1
parents:
diff changeset
926 v12 = v23;
Ritor1
parents:
diff changeset
927 v16 = v15 + 24;
Ritor1
parents:
diff changeset
928 }
Ritor1
parents:
diff changeset
929 else
Ritor1
parents:
diff changeset
930 {
Ritor1
parents:
diff changeset
931 v16 = v13;
Ritor1
parents:
diff changeset
932 }
Ritor1
parents:
diff changeset
933 if ( (signed int)v16 < 64 )
Ritor1
parents:
diff changeset
934 v16 = 64;
Ritor1
parents:
diff changeset
935 if ( (signed int)(v16 + v12) > 479 )
Ritor1
parents:
diff changeset
936 v16 = 479 - v12;
Ritor1
parents:
diff changeset
937 DrawPopupWindow(a2.y, v12, v21, v16);
Ritor1
parents:
diff changeset
938 v17 = v3->Hint;
Ritor1
parents:
diff changeset
939 if ( v17 )
Ritor1
parents:
diff changeset
940 {
Ritor1
parents:
diff changeset
941 v18 = pFontLucida->CalcTextHeight(v17, &v19, 0, 0);
Ritor1
parents:
diff changeset
942 v19.DrawTitleText(pFontLucida, 0, (signed int)(v16 - v18) / 2 - 14, 0, v17, 3u);
Ritor1
parents:
diff changeset
943 }
Ritor1
parents:
diff changeset
944 }
Ritor1
parents:
diff changeset
945
Ritor1
parents:
diff changeset
946
Ritor1
parents:
diff changeset
947
Ritor1
parents:
diff changeset
948
Ritor1
parents:
diff changeset
949 //----- (00411B59) --------------------------------------------------------
Ritor1
parents:
diff changeset
950 void __fastcall LoadThumbnailLloydTexture(unsigned int uSlot, unsigned int uPlayer)
Ritor1
parents:
diff changeset
951 {
Ritor1
parents:
diff changeset
952 unsigned int v2; // esi@1
Ritor1
parents:
diff changeset
953 unsigned int v3; // edi@1
Ritor1
parents:
diff changeset
954 FILE *v4; // ebx@1
Ritor1
parents:
diff changeset
955 FILE *v5; // eax@2
Ritor1
parents:
diff changeset
956 char pContainerName[64]; // [sp+Ch] [bp-44h]@1
Ritor1
parents:
diff changeset
957 unsigned int v7; // [sp+4Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
958
Ritor1
parents:
diff changeset
959 v2 = uSlot;
Ritor1
parents:
diff changeset
960 v7 = uPlayer;
Ritor1
parents:
diff changeset
961 v3 = uSlot + 1;
Ritor1
parents:
diff changeset
962 sprintf(pContainerName, "data\\lloyd%d%d.pcx", uPlayer, uSlot + 1);
Ritor1
parents:
diff changeset
963 v4 = fopen(pContainerName, "rb");
Ritor1
parents:
diff changeset
964 if ( v4 )
Ritor1
parents:
diff changeset
965 {
Ritor1
parents:
diff changeset
966 pSavegameThumbnails[v2].LoadFromFILE(v4, 0, 1u);
Ritor1
parents:
diff changeset
967 fclose(v4);
Ritor1
parents:
diff changeset
968 }
Ritor1
parents:
diff changeset
969 else
Ritor1
parents:
diff changeset
970 {
Ritor1
parents:
diff changeset
971 sprintf(pContainerName, "lloyd%d%d.pcx", v7, v3);
Ritor1
parents:
diff changeset
972 v5 = pNew_LOD->FindContainer(pContainerName, 1);
Ritor1
parents:
diff changeset
973 if ( v5 )
Ritor1
parents:
diff changeset
974 pSavegameThumbnails[v2].LoadFromFILE(v5, 0, 0);
Ritor1
parents:
diff changeset
975 else
Ritor1
parents:
diff changeset
976 *((int *)&pSavegameThumbnails->pPixels + 10 * v2) = 0;
Ritor1
parents:
diff changeset
977 }
Ritor1
parents:
diff changeset
978 }
Ritor1
parents:
diff changeset
979
Ritor1
parents:
diff changeset
980
Ritor1
parents:
diff changeset
981 //----- (00411621) --------------------------------------------------------
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
982 void GUIWindow::OpenSpellBook()
0
Ritor1
parents:
diff changeset
983 {
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
984 Player *pPlayer; // edi@1
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
985 //GUIWindow *pWindow; // esi@1
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
986 //unsigned int v3; // ebp@1
0
Ritor1
parents:
diff changeset
987 int v4; // eax@3
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
988 ///GUIButton *result; // eax@25
0
Ritor1
parents:
diff changeset
989 int a2; // [sp+10h] [bp-8h]@1
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
990 //int v7; // [sp+14h] [bp-4h]@1
0
Ritor1
parents:
diff changeset
991
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
992 pPlayer = pPlayers[uActiveCharacter];
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
993 //pWindow = this;
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
994 LoadSpellbook(pPlayer->lastOpenedSpellbookPage);
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
995 //v3 = 0;
0
Ritor1
parents:
diff changeset
996 a2 = 0;
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
997
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
998 auto chapter = &pPlayer->spellbook.pChapters[pPlayer->lastOpenedSpellbookPage];
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
999 for (uint i = 0; i < 11; ++i)
0
Ritor1
parents:
diff changeset
1000 {
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1001 if (!chapter->bIsSpellAvailable[i])
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1002 continue;
363
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
1003 v4= pPlayer->lastOpenedSpellbookPage;
2bc1c8d68f41 Allocator and SpellCost Tip
Gloval
parents: 357
diff changeset
1004 //v4 = (12 * pPlayer->lastOpenedSpellbookPage + pSpellbookSpellIndices[pPlayer->lastOpenedSpellbookPage][i + 1]);
693
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
1005 CreateButton(pViewport->uViewportTL_X + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Xpos,
e0a1fccc89b1 map render fixes
Gloval
parents: 688
diff changeset
1006 pViewport->uViewportTL_Y + pIconPos[v4][pSpellbookSpellIndices[v4][i+1]].Ypos, //dword_4E20D0
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1007 dword_506408[i + 1]->uTextureWidth,
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1008 dword_506408[i + 1]->uTextureHeight,
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1009 1, 79, UIMSG_SelectSpell, i, 0, "", 0);
0
Ritor1
parents:
diff changeset
1010 ++a2;
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1011 //++v3;
0
Ritor1
parents:
diff changeset
1012 }
198
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1013 //while ( (signed int)v3 < 11 );
e6e348d66a75 Some work on spellbook
Nomad
parents: 189
diff changeset
1014
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1015 CreateButton(0, 0, 0, 0, 1, 0, UIMSG_33, 0, '\t', "", 0);
0
Ritor1
parents:
diff changeset
1016 if ( a2 )
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
1017 _41D08F_set_keyboard_control_group(a2, 0, 0, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1018
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1019 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
1020 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
1021 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
1022 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
1023 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
1024 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
1025 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
1026 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
1027 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
1028
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 949
diff changeset
1029 CreateButton(476, 450, pTexture_506444->uTextureWidth, pTexture_506444->uTextureHeight, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", 0);
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 949
diff changeset
1030 pBtn_InstallRemoveSpell = CreateButton(476, 450, 48, 32, 1, 78, UIMSG_ClickInstallRemoveQuickSpellBtn, 0, 0, "", pTexture_506444, 0);
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1031 CreateButton(561, 450, ptr_506440->uTextureWidth, ptr_506440->uTextureHeight, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1032 pBtn_CloseBook = CreateButton(561, 450, 48, 32, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[79], ptr_506440, 0);
0
Ritor1
parents:
diff changeset
1033 }
Ritor1
parents:
diff changeset
1034 // 50640C: using guessed type int dword_50640C[];
Ritor1
parents:
diff changeset
1035
Ritor1
parents:
diff changeset
1036 //----- (004B3157) --------------------------------------------------------
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
1037 void GUIWindow::HouseDialogManager()
0
Ritor1
parents:
diff changeset
1038 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1039 unsigned __int16 pWhiteColor; // di@2
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1040 const char *pHouseName; // edx@4
0
Ritor1
parents:
diff changeset
1041 signed int v3; // edx@5
Ritor1
parents:
diff changeset
1042 char *v4; // edi@9
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1043 int pTextHeight; // eax@45
0
Ritor1
parents:
diff changeset
1044 int v6; // edi@45
Ritor1
parents:
diff changeset
1045 char *v7; // eax@45
Ritor1
parents:
diff changeset
1046 int v8; // edi@46
Ritor1
parents:
diff changeset
1047 int v9; // eax@50
Ritor1
parents:
diff changeset
1048 unsigned int v10; // [sp-10h] [bp-C8h]@53
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1049 char *pTitleText; // [sp-8h] [bp-C0h]@50
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1050 GUIWindow pDialogWindow; // [sp+Ch] [bp-ACh]@4
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1051 GUIWindow pWindow; // [sp+60h] [bp-58h]@2
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1052 int pColor2; // [sp+B4h] [bp-4h]@2
0
Ritor1
parents:
diff changeset
1053
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1054 if ( !window_SpeakInHouse )
0
Ritor1
parents:
diff changeset
1055 return;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1056 memcpy(&pWindow, this, sizeof(pWindow));
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1057 pWindow.uFrameWidth -= 18;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1058 pWindow.uFrameZ -= 18;
949
Nomad
parents: 948
diff changeset
1059 pWhiteColor = TargetColor(0xFFu, 0xFFu, 0xFFu);
Nomad
parents: 948
diff changeset
1060 pColor2 = TargetColor(0x15u, 0x99u, 0xE9u);
0
Ritor1
parents:
diff changeset
1061 pRenderer->DrawTextureIndexed(0x1DDu, 0, pTexture_Dialogue_Background);
910
Ritor1
parents: 898
diff changeset
1062 pRenderer->DrawTextureTransparent(0x1D4u, 0, &pIcons_LOD->pTextures[uTextureID_right_panel_loop]);
457
Ritor1
parents: 454
diff changeset
1063 if ( pDialogueNPCCount != uNumDialogueNPCPortraits || !uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
1064 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1065 pDialogWindow.uFrameWidth = 130;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1066 pDialogWindow.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1067 pHouseName = p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1068 if ( pHouseName )
0
Ritor1
parents:
diff changeset
1069 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1070 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(pHouseName, &pDialogWindow, 0, 0);
0
Ritor1
parents:
diff changeset
1071 if ( v3 < 0 )
Ritor1
parents:
diff changeset
1072 v3 = 0;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1073 pWindow.DrawTitleText(pFontCreate, 0x1EAu, v3 / 2 + 4, pWhiteColor,
0
Ritor1
parents:
diff changeset
1074 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C],
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1075 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pName, 3);
0
Ritor1
parents:
diff changeset
1076 }
Ritor1
parents:
diff changeset
1077 }
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1078 pWindow.uFrameWidth += 8;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1079 pWindow.uFrameZ += 8;
457
Ritor1
parents: 454
diff changeset
1080 if ( !pDialogueNPCCount )
0
Ritor1
parents:
diff changeset
1081 {
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
1082 if ( in_current_building_type == BildingType_Jail )
0
Ritor1
parents:
diff changeset
1083 {
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1084 JailDialog();
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1085 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1086 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1087 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1088 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1089 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1090 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1091 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1092 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1093 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1094 return;
0
Ritor1
parents:
diff changeset
1095 }
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 783
diff changeset
1096 if ( current_npc_text )
0
Ritor1
parents:
diff changeset
1097 {
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1098 pDialogWindow.uFrameWidth = 458;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1099 pDialogWindow.uFrameZ = 457;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1100 pTextHeight = pFontArrus->CalcTextHeight(current_npc_text, &pDialogWindow, 13, 0);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1101 v6 = pTextHeight + 7;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1102 pRenderer->_4A6A68(8, 352 - (pTextHeight + 7), &pIcons_LOD->pTextures[uTextureID_Leather],
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1103 pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight - (pTextHeight + 7));
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1104 pRenderer->DrawTextureIndexed(8, 347 - v6, pTexture_591428);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1105 v7 = FitTextInAWindow(current_npc_text, pFontArrus, &pDialogWindow, 0xDu, 0);
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1106 window_SpeakInHouse->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0);
0
Ritor1
parents:
diff changeset
1107 }
Ritor1
parents:
diff changeset
1108 if ( uNumDialogueNPCPortraits <= 0 )
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1109 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1110 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1111 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1112 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1113 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1114 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1115 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1116 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1117 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1118 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1119 return;
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1120 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1121 for ( v8 = 0; v8 < uNumDialogueNPCPortraits; ++v8 )
0
Ritor1
parents:
diff changeset
1122 {
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
1123 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8] - 4,
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
1124 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8] - 4, &pIcons_LOD->pTextures[uTextureID_50795C]);
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
1125 pRenderer->DrawTextureIndexed(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v8],
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
1126 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v8], pDialogueNPCPortraits[v8]);
0
Ritor1
parents:
diff changeset
1127 if ( uNumDialogueNPCPortraits < 4 )
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1128 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1129 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic )
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1130 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1131 pTitleText = pMapStats->pInfos[uHouse_ExitPic].pName;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1132 v9 = 94 * v8 + 113;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1133 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1134 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1135 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1136 if ( !v8 && dword_591080 )
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1137 {
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1138 pTitleText = (char *)p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1139 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 113, pColor2, pTitleText, 3);
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1140 continue;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1141 }
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1142 pTitleText = HouseNPCData[v8 - (dword_591080 != 0)]->pName;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1143 v9 = pNPCPortraits_x[6 + (uNumDialogueNPCPortraits - 1)][v8] + pDialogueNPCPortraits[v8]->uTextureHeight + 2;
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1144 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1145 v10 = v9;
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1146 pWindow.DrawTitleText(pFontCreate, 0x1E3u, v10, pColor2, pTitleText, 3);
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1147 }
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
1148 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1149 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
1150 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1151 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1152 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
0
Ritor1
parents:
diff changeset
1153 }
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1154 else
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1155 {
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1156 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1157 }
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1158 return;
0
Ritor1
parents:
diff changeset
1159 }
457
Ritor1
parents: 454
diff changeset
1160 v4 = (char *)pDialogueNPCCount - 1;
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
1161 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
1162 pRenderer->DrawTextureIndexed(pNPCPortraits_x[0][0], pNPCPortraits_y[0][0], pDialogueNPCPortraits[(signed int)v4]);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1163 if ( pCurrentScreen == SCREEN_E )
0
Ritor1
parents:
diff changeset
1164 {
984
d982fffb8b96 CharacterUI_InventoryTab_Draw cleaned.
Nomad
parents: 981
diff changeset
1165 CharacterUI_InventoryTab_Draw(pPlayers[uActiveCharacter], true);
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1166 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1167 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1168 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1169 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1170 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1171 else
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1172 {
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1173 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1174 }
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1175 return;
0
Ritor1
parents:
diff changeset
1176 }
Ritor1
parents:
diff changeset
1177 if ( v4 || !dword_591080 )
Ritor1
parents:
diff changeset
1178 {
445
Ritor1
parents: 443
diff changeset
1179 SimpleHouseAndBoatsDialog();
0
Ritor1
parents:
diff changeset
1180 }
Ritor1
parents:
diff changeset
1181 else
Ritor1
parents:
diff changeset
1182 {
264
fb890fb66cad ^Pi[%s]%s
Ritor1
parents: 254
diff changeset
1183 sprintfex( pTmpBuf, pGlobalTXT_LocalizationStrings[429],
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1184 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterName,
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1185 p2DEvents[(unsigned int)window_SpeakInHouse->ptr_1C - 1].pProprieterTitle);
854
06fc66ceecd6 for Arcomage game
Ritor1
parents: 832
diff changeset
1186 pWindow.DrawTitleText(pFontCreate, 0x1E3u, 0x71u, pColor2, pTmpBuf, 3);
484
4bd56919f075 avard quest guild bits
Gloval
parents: 481
diff changeset
1187 switch ( in_current_building_type )
0
Ritor1
parents:
diff changeset
1188 {
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1189 case BildingType_WeaponShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
1190 WeaponShopDialog();
0
Ritor1
parents:
diff changeset
1191 break;
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1192 case BildingType_ArmorShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
1193 ArmorShopDialog();
0
Ritor1
parents:
diff changeset
1194 break;
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1195 case BildingType_MagicShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
1196 MagicShopDialog();
0
Ritor1
parents:
diff changeset
1197 break;
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1198 case BildingType_AlchemistShop:
405
c0700eaabeb8 AnimatedRooms fix and change name of function
Ritor1
parents: 384
diff changeset
1199 AlchemistDialog();
0
Ritor1
parents:
diff changeset
1200 break;
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1201 case BildingType_FireGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1202 case BildingType_AirGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1203 case BildingType_WaterGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1204 case BildingType_EarthGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1205 case BildingType_SpiritGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1206 case BildingType_MindGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1207 case BildingType_BodyGuild:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1208 case BildingType_LightGuild:
495
90fdb47bfcba guilds ...
Gloval
parents: 484
diff changeset
1209 case BildingType_DarkGuild:
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1210 GuildDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1211 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1212 case BildingType_18:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1213 __debugbreak(); //What over the dialog?
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1214 sub_4B6478();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1215 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1216 case BildingType_TownHall:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1217 TownHallDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1218 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1219 case BildingType_Tavern:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1220 TavernDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1221 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1222 case BildingType_Bank:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1223 BankDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1224 break;
481
5b6e2021c6fe HOUSE_ID
Ritor1
parents: 480
diff changeset
1225 case BildingType_Temple:
495
90fdb47bfcba guilds ...
Gloval
parents: 484
diff changeset
1226 TempleDialog();
480
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1227 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1228 case BildingType_Stables:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1229 TravelByTransport();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1230 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1231 case BildingType_Training:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1232 TrainingDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1233 break;
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1234 case BildingType_Jail:
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1235 JailDialog();
d4ea191229ff BildingType
Ritor1
parents: 473
diff changeset
1236 break;
0
Ritor1
parents:
diff changeset
1237 default:
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1238 __debugbreak();//New BildingType
0
Ritor1
parents:
diff changeset
1239 break;
Ritor1
parents:
diff changeset
1240 }
Ritor1
parents:
diff changeset
1241 }
457
Ritor1
parents: 454
diff changeset
1242 if ( pDialogueNPCCount == uNumDialogueNPCPortraits && uHouse_ExitPic )
0
Ritor1
parents:
diff changeset
1243 {
370
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 366
diff changeset
1244 pRenderer->DrawTextureIndexed(556, 451, &pIcons_LOD->pTextures[uTextureID_x_x_u]);
7f817679b60e _42777D_CastSpell_UseWand_ShootArrow
Nomad
parents: 366
diff changeset
1245 pRenderer->DrawTextureIndexed(476, 451, &pIcons_LOD->pTextures[uTextureID_x_ok_u]);
0
Ritor1
parents:
diff changeset
1246 }
Ritor1
parents:
diff changeset
1247 else
Ritor1
parents:
diff changeset
1248 {
526
214d9d47cf1f Chest working, but items are not laid correctly
Gloval
parents: 524
diff changeset
1249 pRenderer->DrawTextureIndexed(471, 445, &pIcons_LOD->pTextures[uExitCancelTextureId]);
0
Ritor1
parents:
diff changeset
1250 }
Ritor1
parents:
diff changeset
1251 }
Ritor1
parents:
diff changeset
1252
Ritor1
parents:
diff changeset
1253 //----- (004B1854) --------------------------------------------------------
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1254 void GUIWindow::DrawCurrentTime( __int64 a2 )
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1255 {
0
Ritor1
parents:
diff changeset
1256 unsigned int v2; // edi@1
Ritor1
parents:
diff changeset
1257 unsigned int v3; // esi@1
Ritor1
parents:
diff changeset
1258 unsigned int v4; // ebp@1
Ritor1
parents:
diff changeset
1259 unsigned int v5; // ebx@1
Ritor1
parents:
diff changeset
1260 signed __int64 v6; // ST2C_8@1
Ritor1
parents:
diff changeset
1261 signed __int64 v7; // kr00_8@1
Ritor1
parents:
diff changeset
1262 char *v8; // eax@2
Ritor1
parents:
diff changeset
1263 char *v9; // eax@7
Ritor1
parents:
diff changeset
1264 char *v10; // eax@13
Ritor1
parents:
diff changeset
1265 char *v11; // eax@19
Ritor1
parents:
diff changeset
1266 unsigned __int16 v12; // ST0C_2@22
Ritor1
parents:
diff changeset
1267 int v13; // eax@22
Ritor1
parents:
diff changeset
1268 GUIWindow *v15; // [sp+0h] [bp-1Ch]@1
Ritor1
parents:
diff changeset
1269 signed __int64 v16; // [sp+Ch] [bp-10h]@1
Ritor1
parents:
diff changeset
1270 signed __int64 v17; // [sp+14h] [bp-8h]@1
Ritor1
parents:
diff changeset
1271 unsigned int v18; // [sp+20h] [bp+4h]@1
Ritor1
parents:
diff changeset
1272
Ritor1
parents:
diff changeset
1273 v15 = this;
Ritor1
parents:
diff changeset
1274 v2 = (unsigned __int64)(signed __int64)((double)a2 * 0.234375) >> 32;
Ritor1
parents:
diff changeset
1275 v3 = (signed __int64)((double)a2 * 0.234375);
Ritor1
parents:
diff changeset
1276 v4 = (unsigned __int64)((signed __int64)((double)a2 * 0.234375) / 60) >> 32;
Ritor1
parents:
diff changeset
1277 v5 = (signed __int64)((double)a2 * 0.234375) / 60;
Ritor1
parents:
diff changeset
1278 v6 = (signed __int64)((double)a2 * 0.234375) / 60 / 60;
Ritor1
parents:
diff changeset
1279 v18 = (unsigned int)v6 / 0x18;
Ritor1
parents:
diff changeset
1280 v17 = (signed __int64)__PAIR__(v2, v3) % 60;
Ritor1
parents:
diff changeset
1281 v16 = (signed __int64)__PAIR__(v4, v5) % 60;
Ritor1
parents:
diff changeset
1282 v7 = v6 % 24;
Ritor1
parents:
diff changeset
1283 strcpy(pTmpBuf, pGlobalTXT_LocalizationStrings[532]);
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1284 if ( (unsigned int)v6 /24 )
0
Ritor1
parents:
diff changeset
1285 {
Ritor1
parents:
diff changeset
1286 v8 = pGlobalTXT_LocalizationStrings[57];
Ritor1
parents:
diff changeset
1287 if ( v18 <= 1 )
Ritor1
parents:
diff changeset
1288 v8 = pGlobalTXT_LocalizationStrings[56];
Ritor1
parents:
diff changeset
1289 sprintf(pTmpBuf2, "%d %s ", v18, v8);
Ritor1
parents:
diff changeset
1290 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
1291 }
Ritor1
parents:
diff changeset
1292 if ( v7 )
Ritor1
parents:
diff changeset
1293 {
Ritor1
parents:
diff changeset
1294 if ( v7 <= 1 )
Ritor1
parents:
diff changeset
1295 v9 = pGlobalTXT_LocalizationStrings[109];
Ritor1
parents:
diff changeset
1296 else
Ritor1
parents:
diff changeset
1297 v9 = pGlobalTXT_LocalizationStrings[110];
Ritor1
parents:
diff changeset
1298 sprintf(pTmpBuf2, "%d %s ", v7, v9);
Ritor1
parents:
diff changeset
1299 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
1300 }
Ritor1
parents:
diff changeset
1301 if ( v16 && !v18 )
Ritor1
parents:
diff changeset
1302 {
Ritor1
parents:
diff changeset
1303 if ( v16 <= 1 )
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1304 v10 = pGlobalTXT_LocalizationStrings[437];//"Minute"
0
Ritor1
parents:
diff changeset
1305 else
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1306 v10 = pGlobalTXT_LocalizationStrings[436]; //"Minutes"
0
Ritor1
parents:
diff changeset
1307 sprintf(pTmpBuf2, "%d %s ", v16, v10);
Ritor1
parents:
diff changeset
1308 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
1309 }
Ritor1
parents:
diff changeset
1310 if ( v17 && !v7 )
Ritor1
parents:
diff changeset
1311 {
Ritor1
parents:
diff changeset
1312 if ( v17 <= 1 )
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1313 v11 = pGlobalTXT_LocalizationStrings[439]; //"Second"
0
Ritor1
parents:
diff changeset
1314 else
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1315 v11 = pGlobalTXT_LocalizationStrings[438]; //"Seconds"
0
Ritor1
parents:
diff changeset
1316 sprintf(pTmpBuf2, "%d %s ", v17, v11);
Ritor1
parents:
diff changeset
1317 strcat(pTmpBuf, pTmpBuf2);
Ritor1
parents:
diff changeset
1318 }
949
Nomad
parents: 948
diff changeset
1319 v12 = TargetColor(0xFFu, 0xFFu, 0x9Bu);
0
Ritor1
parents:
diff changeset
1320 v13 = pFontArrus->CalcTextHeight(pTmpBuf, v15, 0, 0);
471
c43f156a95c9 ArmorShopDialog crash fixed. All shops show its items
Gloval
parents: 457
diff changeset
1321 v15->DrawTitleText(pFontArrus, 0, (212 - v13) / 2 + 101, v12, pTmpBuf, 3u);
0
Ritor1
parents:
diff changeset
1322 }
Ritor1
parents:
diff changeset
1323
Ritor1
parents:
diff changeset
1324
Ritor1
parents:
diff changeset
1325
Ritor1
parents:
diff changeset
1326 //----- (0044D406) --------------------------------------------------------
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1327 void GUIWindow::DrawTitleText( GUIFont *a2, signed int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor, const char *pInString, unsigned int uLineSpacing )
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1328 {
0
Ritor1
parents:
diff changeset
1329 GUIWindow *pWindow; // esi@1
Ritor1
parents:
diff changeset
1330 unsigned int v8; // ebx@1
Ritor1
parents:
diff changeset
1331 char *v9; // eax@1
Ritor1
parents:
diff changeset
1332 unsigned int v11; // edi@1
Ritor1
parents:
diff changeset
1333 signed int v12; // esi@1
Ritor1
parents:
diff changeset
1334 int v13; // eax@2
Ritor1
parents:
diff changeset
1335 GUIFont *pFont; // [sp+Ch] [bp-4h]@1
Ritor1
parents:
diff changeset
1336 const char *Stra; // [sp+24h] [bp+14h]@5
Ritor1
parents:
diff changeset
1337
Ritor1
parents:
diff changeset
1338 pWindow = this;
Ritor1
parents:
diff changeset
1339 pFont = a2;
Ritor1
parents:
diff changeset
1340 v8 = this->uFrameWidth - uHorizontalMargin;
Ritor1
parents:
diff changeset
1341 ui_current_text_color = uDefaultColor;
Ritor1
parents:
diff changeset
1342 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0);
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1343 Stra = strtok(v9, "\n");
0
Ritor1
parents:
diff changeset
1344 v11 = uHorizontalMargin + pWindow->uFrameX;
Ritor1
parents:
diff changeset
1345 v12 = uVerticalMargin + pWindow->uFrameY;
Ritor1
parents:
diff changeset
1346 while ( 1 )
Ritor1
parents:
diff changeset
1347 {
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1348 if ( !Stra )
0
Ritor1
parents:
diff changeset
1349 break;
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1350 v13 = (signed int)(v8 - pFont->GetLineWidth(Stra)) >> 1;
0
Ritor1
parents:
diff changeset
1351 if ( v13 < 0 )
Ritor1
parents:
diff changeset
1352 v13 = 0;
Ritor1
parents:
diff changeset
1353 pFont->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, 640);
49
5a08b193507f 22.01.13
Ritor1
parents: 24
diff changeset
1354 v12 += pFont->uFontHeight - uLineSpacing;
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 735
diff changeset
1355 Stra = strtok(0, "\n");
0
Ritor1
parents:
diff changeset
1356 }
Ritor1
parents:
diff changeset
1357 }
Ritor1
parents:
diff changeset
1358 // 5C6DB4: using guessed type int ui_current_text_color;
Ritor1
parents:
diff changeset
1359
Ritor1
parents:
diff changeset
1360
Ritor1
parents:
diff changeset
1361
Ritor1
parents:
diff changeset
1362 //----- (0044CE08) --------------------------------------------------------
Ritor1
parents:
diff changeset
1363 char GUIWindow::DrawText(GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, unsigned int uFontShadowColor)
Ritor1
parents:
diff changeset
1364 {
Ritor1
parents:
diff changeset
1365 GUIWindow *v9; // edi@1
Ritor1
parents:
diff changeset
1366 GUIFont *v10; // ebx@1
Ritor1
parents:
diff changeset
1367 int v11; // eax@2
Ritor1
parents:
diff changeset
1368 signed int v12; // esi@9
Ritor1
parents:
diff changeset
1369 signed int v13; // edi@9
Ritor1
parents:
diff changeset
1370 int v14; // edx@9
Ritor1
parents:
diff changeset
1371 int v15; // eax@25
Ritor1
parents:
diff changeset
1372 unsigned int v16; // ecx@25
Ritor1
parents:
diff changeset
1373 int v17; // eax@27
Ritor1
parents:
diff changeset
1374 int v18; // edi@32
Ritor1
parents:
diff changeset
1375 int v19; // esi@38
Ritor1
parents:
diff changeset
1376 std::string v21; // [sp-18h] [bp-50h]@2
Ritor1
parents:
diff changeset
1377 const char *v22; // [sp-8h] [bp-40h]@2
Ritor1
parents:
diff changeset
1378 int v23; // [sp-4h] [bp-3Ch]@2
Ritor1
parents:
diff changeset
1379 char Dest[6]; // [sp+Ch] [bp-2Ch]@32
Ritor1
parents:
diff changeset
1380 //char v25; // [sp+Fh] [bp-29h]@32
Ritor1
parents:
diff changeset
1381 //char v26; // [sp+11h] [bp-27h]@34
Ritor1
parents:
diff changeset
1382 const char *v27; // [sp+20h] [bp-18h]@25
Ritor1
parents:
diff changeset
1383 int v28; // [sp+24h] [bp-14h]@25
Ritor1
parents:
diff changeset
1384 int v29; // [sp+28h] [bp-10h]@1
Ritor1
parents:
diff changeset
1385 size_t v30; // [sp+2Ch] [bp-Ch]@4
Ritor1
parents:
diff changeset
1386 GUIWindow *v31; // [sp+30h] [bp-8h]@1
Ritor1
parents:
diff changeset
1387 const char *v32; // [sp+34h] [bp-4h]@7
Ritor1
parents:
diff changeset
1388 size_t pInString; // [sp+4Ch] [bp+14h]@11
Ritor1
parents:
diff changeset
1389
Ritor1
parents:
diff changeset
1390 auto a1 = this;
Ritor1
parents:
diff changeset
1391 v29 = 0;
Ritor1
parents:
diff changeset
1392 v9 = a1;
Ritor1
parents:
diff changeset
1393 v10 = a2;
Ritor1
parents:
diff changeset
1394 v31 = a1;
Ritor1
parents:
diff changeset
1395 if ( !Str )
Ritor1
parents:
diff changeset
1396 {
Ritor1
parents:
diff changeset
1397 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0);
Ritor1
parents:
diff changeset
1398 return v11;
Ritor1
parents:
diff changeset
1399 }
Ritor1
parents:
diff changeset
1400 v11 = strcmp(Str, "null");
Ritor1
parents:
diff changeset
1401 if ( v11 )
Ritor1
parents:
diff changeset
1402 {
Ritor1
parents:
diff changeset
1403 v30 = strlen(Str);
Ritor1
parents:
diff changeset
1404 LOBYTE(v11) = 0;
Ritor1
parents:
diff changeset
1405 if ( !uX )
Ritor1
parents:
diff changeset
1406 uX = 12;
Ritor1
parents:
diff changeset
1407 if ( a8 )
Ritor1
parents:
diff changeset
1408 {
Ritor1
parents:
diff changeset
1409 v32 = Str;
Ritor1
parents:
diff changeset
1410 }
Ritor1
parents:
diff changeset
1411 else
Ritor1
parents:
diff changeset
1412 {
Ritor1
parents:
diff changeset
1413 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0);
Ritor1
parents:
diff changeset
1414 v32 = (const char *)v11;
Ritor1
parents:
diff changeset
1415 }
Ritor1
parents:
diff changeset
1416 v12 = uX + v9->uFrameX;
Ritor1
parents:
diff changeset
1417 v13 = uY + v9->uFrameY;
Ritor1
parents:
diff changeset
1418 v14 = 0;
Ritor1
parents:
diff changeset
1419 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) )
Ritor1
parents:
diff changeset
1420 {
Ritor1
parents:
diff changeset
1421 pInString = 0;
Ritor1
parents:
diff changeset
1422 if ( (signed int)v30 > 0 )
Ritor1
parents:
diff changeset
1423 {
Ritor1
parents:
diff changeset
1424 do
Ritor1
parents:
diff changeset
1425 {
Ritor1
parents:
diff changeset
1426 LOBYTE(v11) = v32[v14];
Ritor1
parents:
diff changeset
1427 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar
Ritor1
parents:
diff changeset
1428 || (char)v11 == 12
Ritor1
parents:
diff changeset
1429 || (char)v11 == 13
Ritor1
parents:
diff changeset
1430 || (char)v11 == 9
Ritor1
parents:
diff changeset
1431 || (char)v11 == 10 )
Ritor1
parents:
diff changeset
1432 {
Ritor1
parents:
diff changeset
1433 switch ( (unsigned __int8)v11 )
Ritor1
parents:
diff changeset
1434 {
Ritor1
parents:
diff changeset
1435 case 9u:
Ritor1
parents:
diff changeset
1436 strncpy(Dest, &v32[v14 + 1], 3u);
Ritor1
parents:
diff changeset
1437 Dest[3] = 0;
Ritor1
parents:
diff changeset
1438 pInString += 3;
Ritor1
parents:
diff changeset
1439 v29 = atoi(Dest);
Ritor1
parents:
diff changeset
1440 v19 = atoi(Dest);
Ritor1
parents:
diff changeset
1441 LOBYTE(v11) = (char)v31;
Ritor1
parents:
diff changeset
1442 v12 = uX + v31->uFrameX + v19;
Ritor1
parents:
diff changeset
1443 break;
Ritor1
parents:
diff changeset
1444 case 0xAu:
Ritor1
parents:
diff changeset
1445 v11 = LOBYTE(v10->uFontHeight);
Ritor1
parents:
diff changeset
1446 uY = uY + v11 - 3;
Ritor1
parents:
diff changeset
1447 v13 = uY + v31->uFrameY;
Ritor1
parents:
diff changeset
1448 v12 = uX + v29 + v31->uFrameX;
Ritor1
parents:
diff changeset
1449 if ( a8 )
Ritor1
parents:
diff changeset
1450 goto LABEL_36;
Ritor1
parents:
diff changeset
1451 break;
Ritor1
parents:
diff changeset
1452 case 0xCu:
Ritor1
parents:
diff changeset
1453 strncpy(Dest, &v32[v14 + 1], 5u);
Ritor1
parents:
diff changeset
1454 Dest[5] = 0;
Ritor1
parents:
diff changeset
1455 v11 = atoi(Dest);
Ritor1
parents:
diff changeset
1456 pInString += 5;
Ritor1
parents:
diff changeset
1457 uFontColor = v11;
Ritor1
parents:
diff changeset
1458 break;
Ritor1
parents:
diff changeset
1459 case 0xDu:
Ritor1
parents:
diff changeset
1460 strncpy(Dest, &v32[v14 + 1], 3u);
Ritor1
parents:
diff changeset
1461 Dest[3] = 0;
Ritor1
parents:
diff changeset
1462 pInString += 3;
Ritor1
parents:
diff changeset
1463 v18 = atoi(Dest);
Ritor1
parents:
diff changeset
1464 v11 = v10->GetLineWidth(&v32[pInString]);
Ritor1
parents:
diff changeset
1465 v12 = v31->uFrameZ - v11 - v18;
Ritor1
parents:
diff changeset
1466 v13 = uY + v31->uFrameY;
Ritor1
parents:
diff changeset
1467 if ( a8 )
Ritor1
parents:
diff changeset
1468 {
Ritor1
parents:
diff changeset
1469 v11 = LOBYTE(v10->uFontHeight);
Ritor1
parents:
diff changeset
1470 LABEL_36:
Ritor1
parents:
diff changeset
1471 v11 = v11 + v13 - 3;
Ritor1
parents:
diff changeset
1472 if ( v11 > a8 )
Ritor1
parents:
diff changeset
1473 return v11;
Ritor1
parents:
diff changeset
1474 break;
Ritor1
parents:
diff changeset
1475 }
Ritor1
parents:
diff changeset
1476 break;
Ritor1
parents:
diff changeset
1477 default:
Ritor1
parents:
diff changeset
1478 if ( (char)v11 == 34 && v32[v14 + 1] == 34 )
Ritor1
parents:
diff changeset
1479 {
Ritor1
parents:
diff changeset
1480 ++v14;
Ritor1
parents:
diff changeset
1481 pInString = v14;
Ritor1
parents:
diff changeset
1482 }
Ritor1
parents:
diff changeset
1483 v27 = &v32[v14];
Ritor1
parents:
diff changeset
1484 v15 = (unsigned __int8)v32[v14];
Ritor1
parents:
diff changeset
1485 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9);
Ritor1
parents:
diff changeset
1486 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9);
Ritor1
parents:
diff changeset
1487 if ( v14 > 0 )
Ritor1
parents:
diff changeset
1488 v12 += v10->pMetrics[v15].uLeftSpacing;
Ritor1
parents:
diff changeset
1489 v17 = (int)((char *)&v10[1] + v10->field_C20[v15]);
Ritor1
parents:
diff changeset
1490 if ( (short)uFontColor )
Ritor1
parents:
diff changeset
1491 pRenderer->DrawText(
Ritor1
parents:
diff changeset
1492 v12,
Ritor1
parents:
diff changeset
1493 v13,
Ritor1
parents:
diff changeset
1494 (unsigned __int8 *)v17,
Ritor1
parents:
diff changeset
1495 v16,
Ritor1
parents:
diff changeset
1496 LOBYTE(v10->uFontHeight),
Ritor1
parents:
diff changeset
1497 v10->pFontPalettes[0],
Ritor1
parents:
diff changeset
1498 uFontColor,
Ritor1
parents:
diff changeset
1499 uFontShadowColor);
Ritor1
parents:
diff changeset
1500 else
Ritor1
parents:
diff changeset
1501 pRenderer->DrawTextPalette(
Ritor1
parents:
diff changeset
1502 v12,
Ritor1
parents:
diff changeset
1503 v13,
Ritor1
parents:
diff changeset
1504 v17,
Ritor1
parents:
diff changeset
1505 v16,
Ritor1
parents:
diff changeset
1506 LOBYTE(v10->uFontHeight),
Ritor1
parents:
diff changeset
1507 v10->pFontPalettes[0],
Ritor1
parents:
diff changeset
1508 a7);
Ritor1
parents:
diff changeset
1509 LOBYTE(v11) = v30;
Ritor1
parents:
diff changeset
1510 v12 += v28;
Ritor1
parents:
diff changeset
1511 if ( (signed int)pInString < (signed int)v30 )
Ritor1
parents:
diff changeset
1512 {
Ritor1
parents:
diff changeset
1513 LOBYTE(v11) = 3 * *v27;
Ritor1
parents:
diff changeset
1514 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing;
Ritor1
parents:
diff changeset
1515 }
Ritor1
parents:
diff changeset
1516 break;
Ritor1
parents:
diff changeset
1517 }
Ritor1
parents:
diff changeset
1518 }
Ritor1
parents:
diff changeset
1519 v14 = pInString++ + 1;
Ritor1
parents:
diff changeset
1520 }
Ritor1
parents:
diff changeset
1521 while ( (signed int)pInString < (signed int)v30 );
Ritor1
parents:
diff changeset
1522 }
Ritor1
parents:
diff changeset
1523 }
Ritor1
parents:
diff changeset
1524 }
Ritor1
parents:
diff changeset
1525 return v11;
Ritor1
parents:
diff changeset
1526 }
Ritor1
parents:
diff changeset
1527
Ritor1
parents:
diff changeset
1528
Ritor1
parents:
diff changeset
1529 //----- (0044CB4F) --------------------------------------------------------
Ritor1
parents:
diff changeset
1530 int GUIWindow::DrawTextInRect(GUIFont *a2, unsigned int uX, unsigned int uY, unsigned int uColor, const char *Str1, int Source, int a8)
Ritor1
parents:
diff changeset
1531 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1532 GUIFont *pFont; // edi@1
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1533 int pLineWidth; // ebx@1
0
Ritor1
parents:
diff changeset
1534 int v11; // esi@3
Ritor1
parents:
diff changeset
1535 unsigned __int8 v12; // cl@7
Ritor1
parents:
diff changeset
1536 signed int v13; // esi@19
Ritor1
parents:
diff changeset
1537 signed int v14; // ebx@19
Ritor1
parents:
diff changeset
1538 unsigned __int8 v15; // cl@21
Ritor1
parents:
diff changeset
1539 int v16; // eax@22
Ritor1
parents:
diff changeset
1540 int v17; // ecx@22
Ritor1
parents:
diff changeset
1541 int v18; // ecx@23
Ritor1
parents:
diff changeset
1542 int v19; // ecx@24
Ritor1
parents:
diff changeset
1543 unsigned int v20; // ecx@26
Ritor1
parents:
diff changeset
1544 int v21; // eax@28
Ritor1
parents:
diff changeset
1545 int v22; // ebx@34
Ritor1
parents:
diff changeset
1546 int v23; // eax@34
Ritor1
parents:
diff changeset
1547 int v24; // ebx@36
Ritor1
parents:
diff changeset
1548 char Str; // [sp+Ch] [bp-20h]@34
Ritor1
parents:
diff changeset
1549 char v26; // [sp+Fh] [bp-1Dh]@34
Ritor1
parents:
diff changeset
1550 char v27; // [sp+11h] [bp-1Bh]@35
Ritor1
parents:
diff changeset
1551 int v28; // [sp+20h] [bp-Ch]@17
Ritor1
parents:
diff changeset
1552 GUIWindow *pWindow; // [sp+24h] [bp-8h]@1
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1553 size_t pNumLen; // [sp+28h] [bp-4h]@1
0
Ritor1
parents:
diff changeset
1554 size_t Str1a; // [sp+40h] [bp+14h]@5
Ritor1
parents:
diff changeset
1555 size_t Str1b; // [sp+40h] [bp+14h]@19
Ritor1
parents:
diff changeset
1556 const char *Sourcea; // [sp+44h] [bp+18h]@20
Ritor1
parents:
diff changeset
1557 int v34; // [sp+48h] [bp+1Ch]@26
Ritor1
parents:
diff changeset
1558
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1559 pFont = a2;
0
Ritor1
parents:
diff changeset
1560 pWindow = this;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1561 pNumLen = strlen(Str1);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1562 pLineWidth = pFont->GetLineWidth(Str1);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1563 if ( pLineWidth < Source )
0
Ritor1
parents:
diff changeset
1564 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1565 pWindow->DrawText(pFont, uX, uY, uColor, Str1, 0, 0, 0);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1566 return pLineWidth;
0
Ritor1
parents:
diff changeset
1567 }
Ritor1
parents:
diff changeset
1568 strcpy(pTmpBuf2, Str1);
Ritor1
parents:
diff changeset
1569 v11 = 0;
Ritor1
parents:
diff changeset
1570 if ( a8 )
Ritor1
parents:
diff changeset
1571 _strrev(pTmpBuf2);
Ritor1
parents:
diff changeset
1572 Str1a = 0;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1573 if ( (signed int)pNumLen > 0 )
0
Ritor1
parents:
diff changeset
1574 {
Ritor1
parents:
diff changeset
1575 do
Ritor1
parents:
diff changeset
1576 {
Ritor1
parents:
diff changeset
1577 if ( v11 >= Source )
Ritor1
parents:
diff changeset
1578 break;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1579 if ( pFont->IsCharValid(v12 = pTmpBuf2[Str1a]) )
0
Ritor1
parents:
diff changeset
1580 {
Ritor1
parents:
diff changeset
1581 if ( v12 < 9u )
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1582 {
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1583 if ( (signed int)Str1a > 0 )
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1584 v11 += pFont->pMetrics[v12].uLeftSpacing;
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1585 v11 += *((int *)&pFont->cFirstChar + 3 * v12 + 9);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1586 if ( (signed int)Str1a < (signed int)pNumLen )
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1587 v11 += pFont->pMetrics[v12].uRightSpacing;
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1588 goto LABEL_16;
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1589 }
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1590 if ( v12 > 0xAu )//10
0
Ritor1
parents:
diff changeset
1591 {
Ritor1
parents:
diff changeset
1592 if ( v12 == 12 )
Ritor1
parents:
diff changeset
1593 {
Ritor1
parents:
diff changeset
1594 Str1a += 5;
Ritor1
parents:
diff changeset
1595 }
Ritor1
parents:
diff changeset
1596 else
Ritor1
parents:
diff changeset
1597 {
Ritor1
parents:
diff changeset
1598 if ( v12 != 13 )
Ritor1
parents:
diff changeset
1599 {
Ritor1
parents:
diff changeset
1600 if ( (signed int)Str1a > 0 )
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1601 v11 += pFont->pMetrics[v12].uLeftSpacing;
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1602 v11 += *((int *)&pFont->cFirstChar + 3 * v12 + 9);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1603 if ( (signed int)Str1a < (signed int)pNumLen )
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1604 v11 += pFont->pMetrics[v12].uRightSpacing;
0
Ritor1
parents:
diff changeset
1605 }
Ritor1
parents:
diff changeset
1606 }
Ritor1
parents:
diff changeset
1607 }
Ritor1
parents:
diff changeset
1608 }
Ritor1
parents:
diff changeset
1609 LABEL_16:
Ritor1
parents:
diff changeset
1610 ++Str1a;
Ritor1
parents:
diff changeset
1611 }
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1612 while ( (signed int)Str1a < (signed int)pNumLen );
0
Ritor1
parents:
diff changeset
1613 }
566
fcbb3c281217 QuickRef reputation string fix
Nomad
parents: 554
diff changeset
1614 pTmpBuf2[Str1a - 1] = 0;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1615 pNumLen = strlen(pTmpBuf2);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1616 v28 = pFont->GetLineWidth(pTmpBuf2);
0
Ritor1
parents:
diff changeset
1617 if ( a8 )
Ritor1
parents:
diff changeset
1618 _strrev(pTmpBuf2);
Ritor1
parents:
diff changeset
1619 Str1b = 0;
Ritor1
parents:
diff changeset
1620 v13 = uX + pWindow->uFrameX;
Ritor1
parents:
diff changeset
1621 v14 = uY + pWindow->uFrameY;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1622 if ( (signed int)pNumLen > 0 )
0
Ritor1
parents:
diff changeset
1623 {
Ritor1
parents:
diff changeset
1624 Sourcea = &pTmpBuf2[1];
Ritor1
parents:
diff changeset
1625 do
Ritor1
parents:
diff changeset
1626 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1627 if ( pFont->IsCharValid(v15 = pTmpBuf2[Str1b]) )
0
Ritor1
parents:
diff changeset
1628 {
Ritor1
parents:
diff changeset
1629 v16 = v15;
Ritor1
parents:
diff changeset
1630 v17 = v15 - 9;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1631 if ( v17 )//>0
0
Ritor1
parents:
diff changeset
1632 {
Ritor1
parents:
diff changeset
1633 v18 = v17 - 1;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1634 if ( v18 )//>0
0
Ritor1
parents:
diff changeset
1635 {
Ritor1
parents:
diff changeset
1636 v19 = v18 - 2;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1637 if ( v19 )//>0
0
Ritor1
parents:
diff changeset
1638 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1639 if ( v19 == 1 )//v15 == 13
0
Ritor1
parents:
diff changeset
1640 {
Ritor1
parents:
diff changeset
1641 strncpy(&Str, Sourcea, 3u);
Ritor1
parents:
diff changeset
1642 v26 = 0;
Ritor1
parents:
diff changeset
1643 Str1b += 3;
Ritor1
parents:
diff changeset
1644 Sourcea += 3;
Ritor1
parents:
diff changeset
1645 v22 = atoi(&Str);
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1646 v23 = pFont->GetLineWidth(&pTmpBuf2[Str1b]);
0
Ritor1
parents:
diff changeset
1647 v13 = pWindow->uFrameZ - v23 - v22;
Ritor1
parents:
diff changeset
1648 v14 = uY;
Ritor1
parents:
diff changeset
1649 }
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1650 else//v15 > 13
0
Ritor1
parents:
diff changeset
1651 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1652 v20 = *((int *)&pFont->cFirstChar + 3 * v16 + 9);
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1653 v34 = *((int *)&pFont->cFirstChar + 3 * v16 + 9);
0
Ritor1
parents:
diff changeset
1654 if ( (signed int)Str1b > 0 )
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1655 v13 += pFont->pMetrics[v16].uLeftSpacing;
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1656 v21 = (int)((char *)&pFont[1] + pFont->field_C20[v16]);
0
Ritor1
parents:
diff changeset
1657 if ( (short)uColor )
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1658 pRenderer->DrawText(v13, v14, (unsigned __int8 *)v21, v20, LOBYTE(pFont->uFontHeight), pFont->pFontPalettes[0], uColor, 0);
0
Ritor1
parents:
diff changeset
1659 else
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1660 pRenderer->DrawTextPalette(v13, v14, v21, v20, LOBYTE(pFont->uFontHeight), pFont->pFontPalettes[0], 0);
0
Ritor1
parents:
diff changeset
1661 v13 += v34;
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1662 if ( (signed int)Str1b < (signed int)pNumLen )
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1663 v13 += pFont->pMetrics[(unsigned __int8)pTmpBuf2[Str1b]].uRightSpacing;
0
Ritor1
parents:
diff changeset
1664 }
Ritor1
parents:
diff changeset
1665 }
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1666 else//v15 == 12
0
Ritor1
parents:
diff changeset
1667 {
Ritor1
parents:
diff changeset
1668 strncpy(&Str, Sourcea, 5u);
Ritor1
parents:
diff changeset
1669 v27 = 0;
Ritor1
parents:
diff changeset
1670 Str1b += 5;
Ritor1
parents:
diff changeset
1671 Sourcea += 5;
Ritor1
parents:
diff changeset
1672 uColor = atoi(&Str);
Ritor1
parents:
diff changeset
1673 }
Ritor1
parents:
diff changeset
1674 }
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1675 else//v15 == 10
0
Ritor1
parents:
diff changeset
1676 {
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1677 v24 = LOBYTE(pFont->uFontHeight);
0
Ritor1
parents:
diff changeset
1678 v13 = uX;
Ritor1
parents:
diff changeset
1679 uY = uY + v24 - 3;
Ritor1
parents:
diff changeset
1680 v14 = v24 + uY - 3;
Ritor1
parents:
diff changeset
1681 }
Ritor1
parents:
diff changeset
1682 }
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1683 else//v15 == 9
0
Ritor1
parents:
diff changeset
1684 {
Ritor1
parents:
diff changeset
1685 strncpy(&Str, Sourcea, 3u);
Ritor1
parents:
diff changeset
1686 v26 = 0;
Ritor1
parents:
diff changeset
1687 atoi(&Str);
Ritor1
parents:
diff changeset
1688 Str1b += 3;
Ritor1
parents:
diff changeset
1689 Sourcea += 3;
Ritor1
parents:
diff changeset
1690 }
Ritor1
parents:
diff changeset
1691 }
Ritor1
parents:
diff changeset
1692 ++Str1b;
Ritor1
parents:
diff changeset
1693 ++Sourcea;
Ritor1
parents:
diff changeset
1694 }
24
352b15291822 18.01.13 (PlaySound work)
Ritor1
parents: 17
diff changeset
1695 while ( (signed int)Str1b < (signed int)pNumLen );
0
Ritor1
parents:
diff changeset
1696 }
Ritor1
parents:
diff changeset
1697 return v28;
Ritor1
parents:
diff changeset
1698 }
Ritor1
parents:
diff changeset
1699
Ritor1
parents:
diff changeset
1700 //----- (0041D12F) --------------------------------------------------------
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1701 GUIButton *GUIWindow::CreateButton(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight,
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1702 int a6, int a7, UIMessageType msg, unsigned int msg_param, unsigned __int8 uHotkey, const char *pName, Texture *pTextures, ...)
0
Ritor1
parents:
diff changeset
1703 {
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1704 GUIButton *pButton; // esi@1
0
Ritor1
parents:
diff changeset
1705 unsigned int v13; // eax@1
Ritor1
parents:
diff changeset
1706 unsigned int v14; // ebx@4
Ritor1
parents:
diff changeset
1707 unsigned int v15; // eax@4
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1708 unsigned int TextureNum=0; // ebx@4
0
Ritor1
parents:
diff changeset
1709 unsigned int v17; // eax@4
Ritor1
parents:
diff changeset
1710 Texture *v18; // eax@4
Ritor1
parents:
diff changeset
1711 Texture **v19; // ecx@5
Ritor1
parents:
diff changeset
1712 Texture **v20; // edx@5
Ritor1
parents:
diff changeset
1713 GUIButton *v21; // eax@7
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1714 va_list texturs_ptr;
0
Ritor1
parents:
diff changeset
1715
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1716 pButton = (GUIButton *)pAllocator->AllocNamedChunk(0, 0xBCu, "BUTTON");
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1717 pButton->pParent = this;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1718 pButton->uX = uX + this->uFrameX;
0
Ritor1
parents:
diff changeset
1719 v13 = uY + this->uFrameY;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1720 pButton->uHeight = uHeight;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1721 pButton->uY = v13;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1722 pButton->uWidth = uWidth;
0
Ritor1
parents:
diff changeset
1723 if ( a6 == 2 && !uHeight )
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1724 pButton->uHeight = uWidth;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1725 v14 = pButton->uX;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1726 pButton->uButtonType = a6;
0
Ritor1
parents:
diff changeset
1727 v15 = v14 + uWidth - 1;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1728 pButton->uZ = v15;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1729 v17 = pButton->uY;
271
1f0af5cac2dd _42ECB5_PlayerAttacksActor
Nomad
parents: 264
diff changeset
1730 pButton->field_2C_is_pushed = 0;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1731 pButton->uW = v17 + uHeight - 1;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1732 pButton->field_1C = a7;
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1733 pButton->msg = msg;
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1734 pButton->msg_param = msg_param;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1735 pButton->uHotkey = uHotkey;
0
Ritor1
parents:
diff changeset
1736 strlen(pName);
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1737 strcpy(pButton->pButtonName, pName);
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1738 va_start(texturs_ptr, pName);
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1739 while (NULL!=(pTextures=va_arg(texturs_ptr, Texture *)))
0
Ritor1
parents:
diff changeset
1740 {
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1741 pButton->pTextures[TextureNum]=pTextures;
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1742 ++TextureNum;
0
Ritor1
parents:
diff changeset
1743 }
189
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1744 va_end(texturs_ptr);
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1745 pButton->uNumTextures = TextureNum;
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1746 if ( this->pControlsTail )
038a4d09406f new texts file, fix text rendender error
Gloval
parents: 180
diff changeset
1747 this->pControlsTail->pNext = pButton;
0
Ritor1
parents:
diff changeset
1748 else
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1749 this->pControlsHead = pButton;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1750 pButton->pPrev = this->pControlsTail;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1751 this->pControlsTail = pButton;
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1752 pButton->pNext = 0;
0
Ritor1
parents:
diff changeset
1753 ++this->uNumControls;
17
fe0d9a98213f 17.01.13 (fix Hint error)
Ritor1
parents: 11
diff changeset
1754 return pButton;
0
Ritor1
parents:
diff changeset
1755 }
Ritor1
parents:
diff changeset
1756
Ritor1
parents:
diff changeset
1757 //----- (00459C2B) --------------------------------------------------------
Ritor1
parents:
diff changeset
1758 void GUIWindow::DrawFlashingInputCursor(signed int a3, int a4, GUIFont *a2)
Ritor1
parents:
diff changeset
1759 {
Ritor1
parents:
diff changeset
1760 signed int v4; // esi@1
Ritor1
parents:
diff changeset
1761 GUIWindow *v5; // edi@1
Ritor1
parents:
diff changeset
1762
Ritor1
parents:
diff changeset
1763 v4 = a3;
Ritor1
parents:
diff changeset
1764 v5 = this;
Ritor1
parents:
diff changeset
1765 if ( GetTickCount() % 1000 > 500 )
Ritor1
parents:
diff changeset
1766 DrawText(a2, v4, a4, 0, "_", 0, 0, 0);
Ritor1
parents:
diff changeset
1767 }
Ritor1
parents:
diff changeset
1768
Ritor1
parents:
diff changeset
1769 //----- (0041C432) --------------------------------------------------------
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1770 GUIWindow *GUIWindow::Create(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, WindowType eWindowType, int pButton, int a5)
0
Ritor1
parents:
diff changeset
1771 {
Ritor1
parents:
diff changeset
1772 unsigned int uNextFreeWindowID; // ebp@1
Ritor1
parents:
diff changeset
1773 //int *v8; // eax@1
Ritor1
parents:
diff changeset
1774 //GUIWindow *pWindow; // esi@4
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
1775 //int v10; // eax@4
0
Ritor1
parents:
diff changeset
1776 unsigned int v11; // ebx@15
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1777 NPCData *speakingNPC; // ebp@15
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1778 int v14; // eax@20
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1779 int v16; // eax@25
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1780 int v18; // eax@30
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1781 int v20; // eax@35
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1782 int v22; // eax@40
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1783 int v24; // eax@45
0
Ritor1
parents:
diff changeset
1784 int v25; // eax@65
Ritor1
parents:
diff changeset
1785 unsigned int v26; // ebx@65
Ritor1
parents:
diff changeset
1786 char *v27; // eax@71
Ritor1
parents:
diff changeset
1787 const char *v29; // [sp-8h] [bp-18h]@68
Ritor1
parents:
diff changeset
1788 char *v30; // [sp-4h] [bp-14h]@68
Ritor1
parents:
diff changeset
1789 int uWidtha; // [sp+14h] [bp+4h]@66
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1790 int num_menu_buttons; // [sp+20h] [bp+10h]@15
0
Ritor1
parents:
diff changeset
1791
Ritor1
parents:
diff changeset
1792 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID)
Ritor1
parents:
diff changeset
1793 {
Ritor1
parents:
diff changeset
1794 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null)
Ritor1
parents:
diff changeset
1795 break;
Ritor1
parents:
diff changeset
1796 }
Ritor1
parents:
diff changeset
1797
Ritor1
parents:
diff changeset
1798 auto pWindow = &pWindowList[uNextFreeWindowID];
Ritor1
parents:
diff changeset
1799 pWindow->uFrameWidth = uWidth;
Ritor1
parents:
diff changeset
1800 pWindow->uFrameZ = uX + uWidth - 1;
Ritor1
parents:
diff changeset
1801 pWindow->uFrameW = uY + uHeight - 1;
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1802 pWindow->ptr_1C = (void *)pButton;
0
Ritor1
parents:
diff changeset
1803 pWindow->Hint = (char *)a5;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
1804 //v10 = uNumVisibleWindows;
0
Ritor1
parents:
diff changeset
1805 pWindow->uFrameX = uX;
962
0423c40d7e88 UpdateWindows and pWindow->Release
Ritor1
parents: 961
diff changeset
1806 //++v10;
0
Ritor1
parents:
diff changeset
1807 pWindow->uFrameY = uY;
Ritor1
parents:
diff changeset
1808 pWindow->uFrameHeight = uHeight;
Ritor1
parents:
diff changeset
1809 pWindow->eWindowType = eWindowType;
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
1810 pWindow->receives_keyboard_input = false;
496
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1811 ++uNumVisibleWindows;
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1812 pWindow->numVisibleWindows = uNumVisibleWindows;
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1813 pVisibleWindowsIdxs[uNumVisibleWindows] = uNextFreeWindowID + 1;
0
Ritor1
parents:
diff changeset
1814 if ( (signed int)eWindowType <= 20 )
Ritor1
parents:
diff changeset
1815 {
Ritor1
parents:
diff changeset
1816 if (eWindowType != WINDOW_Chest)
Ritor1
parents:
diff changeset
1817 {
Ritor1
parents:
diff changeset
1818 switch (eWindowType)
Ritor1
parents:
diff changeset
1819 {
Ritor1
parents:
diff changeset
1820 case WINDOW_Book:
Ritor1
parents:
diff changeset
1821 pWindow->InitializeBookView();
Ritor1
parents:
diff changeset
1822 break;
165
Ritor1
parents: 158
diff changeset
1823 case WINDOW_Dialogue:
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1824 pMainScreenNum = pCurrentScreen;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1825 pCurrentScreen = SCREEN_NPC_DIALOGUE;
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1826 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
1827 pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
496
0e20e886365d guilds ....
Gloval
parents: 495
diff changeset
1828 if ( pWindow->par1C != 1 )
0
Ritor1
parents:
diff changeset
1829 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1830 num_menu_buttons = 0;
0
Ritor1
parents:
diff changeset
1831 v11 = LOBYTE(pFontArrus->uFontHeight) - 3;
602
628694cd5744 Margaret working
zipi
parents: 566
diff changeset
1832 speakingNPC = GetNPCData(sDialogue_SpeakingActorNPC_ID);
827
085eb19b7ffd mr.Malvik
Ritor1
parents: 783
diff changeset
1833 if ( GetGreetType(sDialogue_SpeakingActorNPC_ID) == 1 )//QuestsNPC_greet
0
Ritor1
parents:
diff changeset
1834 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1835 if ( speakingNPC->joins )
0
Ritor1
parents:
diff changeset
1836 {
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1837 pWindow->CreateButton(480, 130, 140, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0xDu, 0, "", 0);
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1838 num_menu_buttons = 1;
0
Ritor1
parents:
diff changeset
1839 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1840 if ( speakingNPC->evt_A )
0
Ritor1
parents:
diff changeset
1841 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1842 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1843 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1844 v14 = NPC_EventProcessor(speakingNPC->evt_A);
0
Ritor1
parents:
diff changeset
1845 if ( v14 == 1 || v14 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1846 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x13u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1847 }
Ritor1
parents:
diff changeset
1848 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1849 if ( speakingNPC->evt_B )
0
Ritor1
parents:
diff changeset
1850 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1851 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1852 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1853 v16 = NPC_EventProcessor(speakingNPC->evt_B);
0
Ritor1
parents:
diff changeset
1854 if ( v16 == 1 || v16 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1855 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x14u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1856 }
Ritor1
parents:
diff changeset
1857 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1858 if ( speakingNPC->evt_C )
0
Ritor1
parents:
diff changeset
1859 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1860 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1861 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1862 v18 = NPC_EventProcessor(speakingNPC->evt_C);
0
Ritor1
parents:
diff changeset
1863 if ( v18 == 1 || v18 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1864 pWindow->CreateButton( 0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x15u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1865 }
Ritor1
parents:
diff changeset
1866 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1867 if ( speakingNPC->evt_D )
0
Ritor1
parents:
diff changeset
1868 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1869 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1870 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1871 v20 = NPC_EventProcessor(speakingNPC->evt_D);
0
Ritor1
parents:
diff changeset
1872 if ( v20 == 1 || v20 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1873 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x16u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1874 }
Ritor1
parents:
diff changeset
1875 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1876 if ( speakingNPC->evt_E )
0
Ritor1
parents:
diff changeset
1877 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1878 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1879 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1880 v22 = NPC_EventProcessor(speakingNPC->evt_E);
0
Ritor1
parents:
diff changeset
1881 if ( v22 == 1 || v22 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1882 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x17u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1883 }
Ritor1
parents:
diff changeset
1884 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1885 if (speakingNPC->evt_F )
0
Ritor1
parents:
diff changeset
1886 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1887 if ( num_menu_buttons < 4 )
0
Ritor1
parents:
diff changeset
1888 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1889 v24 = NPC_EventProcessor(speakingNPC->evt_F);
0
Ritor1
parents:
diff changeset
1890 if ( v24 == 1 || v24 == 2 )
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1891 pWindow->CreateButton(0x1E0u, num_menu_buttons++ * v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x18u, 0, "", 0);
0
Ritor1
parents:
diff changeset
1892 }
Ritor1
parents:
diff changeset
1893 }
Ritor1
parents:
diff changeset
1894 }
Ritor1
parents:
diff changeset
1895 else
Ritor1
parents:
diff changeset
1896 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1897 if ( speakingNPC->joins )
0
Ritor1
parents:
diff changeset
1898 {
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1899 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
1900 if (speakingNPC->Hired())
0
Ritor1
parents:
diff changeset
1901 {
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1902 sprintf(pTmpBuf, pGlobalTXT_LocalizationStrings[408], speakingNPC->pName); //
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1903 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pTmpBuf, 0);
0
Ritor1
parents:
diff changeset
1904 }
Ritor1
parents:
diff changeset
1905 else
Ritor1
parents:
diff changeset
1906 {
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1907 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, UIMSG_SelectNPCDialogueOption, 0x4Cu, 0, pGlobalTXT_LocalizationStrings[406], 0);//
0
Ritor1
parents:
diff changeset
1908 }
423
88c30918eef7 NPC_EventProcessor
Gloval
parents: 405
diff changeset
1909 num_menu_buttons = 2;
0
Ritor1
parents:
diff changeset
1910 }
Ritor1
parents:
diff changeset
1911 }
972
c8a0f6d89c70 Some inqury on selecting Knight bug.
Nomad
parents: 962
diff changeset
1912 pWindow->_41D08F_set_keyboard_control_group(num_menu_buttons, 1, 0, 1);
0
Ritor1
parents:
diff changeset
1913 }
Ritor1
parents:
diff changeset
1914 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1915
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1916 case WINDOW_ChangeLocation:
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1917 pMainScreenNum = pCurrentScreen;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1918 pCurrentScreen = SCREEN_CHANGE_LOCATION;
987
9e132060ada3 UIMSG_CHEST_ClickItem
Ritor1
parents: 984
diff changeset
1919 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
1920 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
1921 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
1922 pWindow->CreateButton( 8, 8, 460, 344, 1, 0, UIMSG_OnTravelByFoot, 1, 0, pWindow->Hint, 0);
0
Ritor1
parents:
diff changeset
1923 break;
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1924
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1925 case WINDOW_SpellBook: //
0
Ritor1
parents:
diff changeset
1926 InitializeBookTextures();
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1927 pWindow->OpenSpellBook();
0
Ritor1
parents:
diff changeset
1928 break;
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1929 case WINDOW_GreetingNPC: //
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1930 pMainScreenNum = pCurrentScreen;
3
bf31c505f4d3 13.01.13(MainMenuMessageProc())
Ritor1
parents: 0
diff changeset
1931 pKeyActionMap->EnterText(0, 15, pWindow);
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1932 pCurrentScreen = SCREEN_BRANCHLESS_NPC_DIALOG;
0
Ritor1
parents:
diff changeset
1933 break;
Ritor1
parents:
diff changeset
1934 }
Ritor1
parents:
diff changeset
1935 return pWindow;
Ritor1
parents:
diff changeset
1936 }
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1937 //LABEL_62:
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1938 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1939 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1940 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
1941 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0);
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1942 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, 9u, "", 0);
0
Ritor1
parents:
diff changeset
1943 return pWindow;
Ritor1
parents:
diff changeset
1944 }
Ritor1
parents:
diff changeset
1945 if (eWindowType == WINDOW_HouseInterior)
Ritor1
parents:
diff changeset
1946 {
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1947 pCurrentScreen = SCREEN_HOUSE;
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
1948 pBtn_ExitCancel = pWindow->CreateButton(0x1D7u, 0x1BDu, 0xA9u, 0x23u, 1, 0, UIMSG_Escape, 0, 0, pGlobalTXT_LocalizationStrings[80],//
735
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 730
diff changeset
1949 pIcons_LOD->GetTexture(uExitCancelTextureId), 0);
0
Ritor1
parents:
diff changeset
1950 v25 = uNumDialogueNPCPortraits;
Ritor1
parents:
diff changeset
1951 v26 = 0;
Ritor1
parents:
diff changeset
1952 if ( uNumDialogueNPCPortraits > 0 )
Ritor1
parents:
diff changeset
1953 {
873
aa0172fd88c6 TavernDialog second NPCName fix
Ritor1
parents: 870
diff changeset
1954 for ( v26 = 0; v26 < uNumDialogueNPCPortraits; ++v26 )
0
Ritor1
parents:
diff changeset
1955 {
Ritor1
parents:
diff changeset
1956 if ( v26 + 1 == v25 && uHouse_ExitPic )
Ritor1
parents:
diff changeset
1957 {
Ritor1
parents:
diff changeset
1958 v30 = pMapStats->pInfos[uHouse_ExitPic].pName;
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
1959 v29 = (char*)pGlobalTXT_LocalizationStrings[LOCSTR_ENTER_S];
0
Ritor1
parents:
diff changeset
1960 }
Ritor1
parents:
diff changeset
1961 else
Ritor1
parents:
diff changeset
1962 {
Ritor1
parents:
diff changeset
1963 if ( v26 || !dword_591080 )
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
1964 v27 = HouseNPCData[v26 - (dword_591080 != 0)]->pName;
0
Ritor1
parents:
diff changeset
1965 else
Ritor1
parents:
diff changeset
1966 //v27 = (char *)p2DEvents_minus1_::08[13 * a4];
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1967 v27 = (char *)p2DEvents[pButton - 1].pProprieterName;
0
Ritor1
parents:
diff changeset
1968 v30 = v27;
874
231523a39203 Buy books(first)
Ritor1
parents: 873
diff changeset
1969 v29 = (char*)pGlobalTXT_LocalizationStrings[435];
0
Ritor1
parents:
diff changeset
1970 }
735
6daaa2f18d0d Fixed some house sounds & shop-related stuff
Nomad
parents: 730
diff changeset
1971 sprintfex(byte_591180[v26], v29, v30);
457
Ritor1
parents: 454
diff changeset
1972 HouseNPCData[v26 + 7] = (NPCData *)pWindow->CreateButton(pNPCPortraits_x[uNumDialogueNPCPortraits - 1][v26],
419
ad1e9c0bf6da Multi-npc house icons fixed
Nomad
parents: 405
diff changeset
1973 pNPCPortraits_y[uNumDialogueNPCPortraits - 1][v26],
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1974 0x3Fu, 0x49u, 1, 0, UIMSG_ClickHouseNPCPortrait, v26, 0, byte_591180[v26], 0, 0, 0);
0
Ritor1
parents:
diff changeset
1975 v25 = uNumDialogueNPCPortraits;
Ritor1
parents:
diff changeset
1976 }
Ritor1
parents:
diff changeset
1977 }
Ritor1
parents:
diff changeset
1978 if ( v25 == 1 )
Ritor1
parents:
diff changeset
1979 {
336
ea55d6414029 Event_proceccor preliminary
Gloval
parents: 312
diff changeset
1980 window_SpeakInHouse = &pWindowList[uNextFreeWindowID];
0
Ritor1
parents:
diff changeset
1981 _4B4224_UpdateNPCTopics(0);
Ritor1
parents:
diff changeset
1982 }
Ritor1
parents:
diff changeset
1983 }
Ritor1
parents:
diff changeset
1984 else
Ritor1
parents:
diff changeset
1985 {
158
f4ebd13c2a8e 13.02.13
Ritor1
parents: 151
diff changeset
1986 if (eWindowType == WINDOW_Transition)
0
Ritor1
parents:
diff changeset
1987 {
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
1988 pMainScreenNum = pCurrentScreen;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
1989 pCurrentScreen = SCREEN_INPUT_BLV;
960
9a5db2cf999a UIMSG and WINDOW_Type
Ritor1
parents: 949
diff changeset
1990 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
1991 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
1992 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
1993 pWindow->CreateButton(8, 8, 0x1CCu, 0x158u, 1, 0, UIMSG_TransitionUI_Confirm, 1u, 0, pWindow->Hint, 0);
0
Ritor1
parents:
diff changeset
1994 return pWindow;
Ritor1
parents:
diff changeset
1995 }
961
5a12082c803d UIMSG and WINDOW_Type(continue)
Ritor1
parents: 960
diff changeset
1996 if (eWindowType == WINDOW_CastSpell)
0
Ritor1
parents:
diff changeset
1997 {
Ritor1
parents:
diff changeset
1998 pEventTimer->Pause();
Ritor1
parents:
diff changeset
1999 pAudioPlayer->StopChannels(-1, -1);
Ritor1
parents:
diff changeset
2000 pMouse->SetCursorBitmap("MICON2");
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
2001 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);//
0
Ritor1
parents:
diff changeset
2002 return pWindow;
Ritor1
parents:
diff changeset
2003 }
158
f4ebd13c2a8e 13.02.13
Ritor1
parents: 151
diff changeset
2004 if (eWindowType == WINDOW_Scroll)
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
2005 //goto LABEL_62;
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
2006 {
948
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
2007 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 1u, '1', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
2008 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 2u, '2', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
2009 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 3u, '3', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
2010 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, UIMSG_SelectCharacter, 4u, '4', "", 0);
5a2dbb00c399 Code cleaning.
Nomad
parents: 945
diff changeset
2011 pWindow->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_CycleCharacters, 0, '\t', "", 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
2012 return pWindow;
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
2013 }
898
10fa7dad1391 DrawPaperdoll clean
Ritor1
parents: 874
diff changeset
2014 if (eWindowType == WINDOW_CastSpell_InInventory)
0
Ritor1
parents:
diff changeset
2015 {
Ritor1
parents:
diff changeset
2016 pMouse->SetCursorBitmap("MICON2");
832
dfd683c4f538 Hotkeys fixed
Nomad
parents: 827
diff changeset
2017 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
2018 pIcons_LOD->GetTexture(uTextureID_BUTTDESC2), 0);
11
66319a734368 16.01.13(work)
Ritor1
parents: 3
diff changeset
2019 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2);//
0
Ritor1
parents:
diff changeset
2020 ++pIcons_LOD->uTexturePacksCount;
Ritor1
parents:
diff changeset
2021 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103;
151
9abdd40a107b pCurrentScreen
Ritor1
parents: 142
diff changeset
2022 pCurrentScreen = SCREEN_CASTING;
0
Ritor1
parents:
diff changeset
2023 if ( !pIcons_LOD->uNumPrevLoadedFiles )
Ritor1
parents:
diff changeset
2024 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
Ritor1
parents:
diff changeset
2025 }
Ritor1
parents:
diff changeset
2026 }
Ritor1
parents:
diff changeset
2027 return pWindow;
Ritor1
parents:
diff changeset
2028 }