annotate GUIWindow.cpp @ 145:dac041fc74e8

19.11.12
author Ritor1
date Mon, 19 Nov 2012 09:41:10 +0600
parents b39bdc150e90
children 062e8a8e09bc
rev   line source
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1 #include "GUIWindow.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2 #include "GUIButton.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
3 #include "GUIFont.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
4 #include "Party.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
5 #include "LOD.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
6 #include "Keyboard.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
7 #include "IndoorCamera.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
8 #include "Math.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
9 #include "VideoPlayer.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
10 #include "Allocator.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
11 #include "MapInfo.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
12 #include "Time.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
13 #include "AudioPlayer.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
14 #include "Mouse.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
15 #include "Viewport.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
16 #include "Render.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
17 #include "PlayerFrameTable.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
18 #include "stru179.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
19 #include "SaveLoad.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
20 #include "FactionTable.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
21 #include "StorylineTextTable.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
22 #include "Events2D.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
23
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
25 #include "mm7_data.h"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
26
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
27
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
28
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
29
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
30 int pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[1]; // idb
3
540178ef9b18 Main menu functionality
Nomad
parents: 2
diff changeset
31 struct GUIWindow *pWindow_MainMenu;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
32 struct GUIWindow pWindowList[20];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
33
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
34 struct GUIMessageQueue *pMessageQueue_50CBD0 = new GUIMessageQueue;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
35
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
36
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
37 //----- (004356B9) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
38 void GUIMessageQueue::PopMessage(enum UIMessageType *pType, int *pParam, int *a4)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
39 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
40 signed int v4; // edx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
41 GUIMessage *v5; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
42
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
43 v4 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
44 if ( this->uNumMessages )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
45 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
46 v5 = this->pMessages;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
47 *pType = this->pMessages[0].eType;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
48 *pParam = this->pMessages[0].param;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
49 *a4 = this->pMessages[0].field_8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
50 if ( (signed int)(this->uNumMessages - 1) > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
51 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
52 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
53 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
54 v5->eType = v5[1].eType;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
55 v5->param = v5[1].param;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
56 v5->field_8 = v5[1].field_8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
57 ++v4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
58 ++v5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
59 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
60 while ( v4 < (signed int)(this->uNumMessages - 1) );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
61 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
62 --this->uNumMessages;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
63 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
64 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
65
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
66
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
67
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
68 //----- (0041D73D) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
69 char GUIWindow::_41D73D_draw_buff_tooltip()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
70 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
71 GUIFont *v1; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
72 GUIWindow *v2; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
73 SpellBuff *v3; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
74 unsigned int v4; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
75 int v5; // ecx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
76 unsigned int v6; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
77 unsigned int v7; // ecx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
78 char *v8; // ebx@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
79 unsigned int v9; // eax@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
80 unsigned int v10; // ecx@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
81 __int64 v11; // ST28_8@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
82 int v12; // esi@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
83 const char *v13; // ST0C_4@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
84 unsigned int v14; // eax@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
85 char **v16; // [sp+14h] [bp-10h]@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
86 GUIFont *a2; // [sp+18h] [bp-Ch]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
87 SpellBuff *v18; // [sp+1Ch] [bp-8h]@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
88 int v19; // [sp+20h] [bp-4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
89 int v20; // [sp+20h] [bp-4h]@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
90
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
91 v1 = pFontComic;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
92 v2 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
93 a2 = pFontComic;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
94 v19 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
95 v3 = pParty->pPartyBuffs;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
96 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
97 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
98 if ( (signed __int64)v3->uExpireTime > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
99 ++v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
100 ++v3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
101 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
102 while ( (signed int)v3 < (signed int)pParty->pPlayers );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
103 v4 = LOBYTE(pFontArrus->uFontHeight) + 72;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
104 this->uFrameHeight = v4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
105 v5 = v4 + (v19 - 1) * LOBYTE(pFontArrus->uFontHeight);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
106 v6 = v2->uFrameWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
107 v2->uFrameHeight = v5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
108 v7 = v2->uFrameHeight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
109 v2->uFrameZ = v6 + v2->uFrameX - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
110 v2->uFrameW = v2->uFrameY + v7 - 1;
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
111 v2->DrawMessageBox(0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
112 v2->DrawText2(pFontArrus, 0, 0xCu, 0, pGlobalTXT_LocalizationStrings[451], 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
113 if ( !v19 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
114 v2->DrawText2(v1, 0, 0x28u, 0, pGlobalTXT_LocalizationStrings[153], 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
115 v20 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
116 GetTickCount();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
117 v8 = &_4E2B21_buff_spell_tooltip_colors[1];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
118 v16 = aSpellNames;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
119 v18 = pParty->pPartyBuffs;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
120 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
121 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
122 v9 = LODWORD(v18->uExpireTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
123 v10 = HIDWORD(v18->uExpireTime);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
124 if ( (v10 & 0x80000000u) == 0 && ((signed int)v10 > 0 || v9) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
125 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
126 v11 = __PAIR__(v10, v9) - pParty->uTimePlayed;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
127 v12 = v20 * LOBYTE(v1->uFontHeight) + 40;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
128 v13 = *v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
129 ++v20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
130 v14 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
131 (unsigned __int8)*(v8 - 1),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
132 (unsigned __int8)*v8,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
133 (unsigned __int8)v8[1]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
134 v2->DrawText(a2, 52, v12, v14, v13, 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
135 LOBYTE(v9) = sub_41D20D_buff_remaining_time_string(v12, v2, v11, a2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
136 v1 = a2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
137 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
138 ++v18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
139 ++v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
140 v8 += 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
141 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
142 while ( (signed int)v18 < (signed int)pParty->pPlayers );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
143 return v9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
144 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
145
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
146
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
147 //----- (0041D3B7) --------------------------------------------------------
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
148 char GUIWindow::DrawQuickCharRecord()
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
149 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
150 Player *pPlayer; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
151 int v6; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
152 int v7; // ebx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
153 unsigned int v8; // ecx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
154 int v9; // ebx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
155 unsigned int v10; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
156 int v11; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
157 unsigned int v12; // ecx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
158 Texture *v13; // eax@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
159 unsigned int v14; // eax@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
160 PlayerFrame *v15; // eax@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
161 unsigned int v16; // eax@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
162 unsigned int v20; // eax@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
163 unsigned int v24; // eax@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
164 unsigned int v25; // eax@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
165 unsigned __int8 v28; // al@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
166 char *v29; // eax@16
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
167 __int64 v35; // ST38_8@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
168 int v36; // esi@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
169 unsigned int v38; // eax@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
170 char *v39; // eax@24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
171 signed int uFramesetID; // [sp+20h] [bp-8h]@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
172 int uFramesetIDa; // [sp+20h] [bp-8h]@18
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
173
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
174 pPlayer = &pParty->pPlayers[(unsigned int)ptr_1C];
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
175
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
176 uint numActivePlayerBuffs = 0;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
177
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
178 for (uint i = 0; i < 24; ++i)
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
179 if (pPlayer->pPlayerBuffs[i].uExpireTime > 0)
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
180 ++numActivePlayerBuffs;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
181
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
182 v6 = pFontArrus->uFontHeight + 162;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
183 uFrameHeight = v6;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
184 v7 = (numActivePlayerBuffs - 1) * pFontArrus->uFontHeight;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
185 v8 = uFrameX;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
186 v9 = v6 + v7;
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
187 v10 = uFrameWidth;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
188 uFrameHeight = v9;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
189 v11 = v10 + v8 - 1;
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
190 v12 = uFrameY;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
191 uFrameZ = v11;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
192 uFrameW = v9 + v12 - 1;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
193 DrawMessageBox(0);
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
194 if (pPlayer->Eradicated())
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
195 v13 = pTexture_PlayerFaceEradicated;
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
196 else if (pPlayer->Dead())
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
197 v13 = pTexture_PlayerFaceDead;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
198 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
199 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
200 uFramesetID = pPlayerFrameTable->GetFrameIdBy_field0(pPlayer->uExpressionID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
201 if ( !uFramesetID )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
202 uFramesetID = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
203 if ( pPlayer->uExpressionID == 21 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
204 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
205 v15 = pPlayerFrameTable->GetFrameBy_y(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
206 &pPlayer->field_1AA8,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
207 &pPlayer->field_1AA4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
208 pMiscTimer->uTimeElapsed);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
209 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
210 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
211 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
212 v14 = pMiscTimer->Time();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
213 v15 = pPlayerFrameTable->GetFrameBy_x(uFramesetID, v14);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
214 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
215 pPlayer->field_1AA2 = v15->uTextureID - 1;
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
216 v13 = pTextures_PlayerFaces[(unsigned int)ptr_1C][v15->uTextureID];
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
217 }
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
218
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
219 pRenderer->DrawTextureTransparent(uFrameX + 24, uFrameY + 24, v13);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
220 v16 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0xFFu, 0xFFu, 0x9Bu);
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
221 sprintf(pTmpBuf, "\xC%05d", v16);
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
222 sprintf(pTmpBuf2, pGlobalTXT_LocalizationStrings[429], pPlayer->pName, pClassNames[pPlayer->uClass]);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
223 strcat(pTmpBuf, pTmpBuf2);
45
bcc051713d20 BLV render & seffects
Nomad
parents: 26
diff changeset
224 strcat(pTmpBuf, "\xC" "00000\n");
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
225 v20 = UI_GetHealthManaStringColor(pPlayer->sHealth, pPlayer->GetMaxHealth());
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
226 sprintf(pTmpBuf2, "%s : \x0C" "%05u%d\x0C" "00000 / %d\n", pGlobalTXT_LocalizationStrings[108],
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
227 v20, pPlayer->sHealth, pPlayer->GetMaxHealth());
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
228 strcat(pTmpBuf, pTmpBuf2);
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
229 v24 = UI_GetHealthManaStringColor(pPlayer->sMana, pPlayer->GetMaxMana());
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
230 sprintf(pTmpBuf2, "%s : \x0C" "%05u%d\x0C" "00000 / %d\n", pGlobalTXT_LocalizationStrings[212],
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
231 v24, pPlayer->sMana, pPlayer->GetMaxMana());
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
232 strcat(pTmpBuf, pTmpBuf2);
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
233 v25 = pPlayer->GetMajorConditionIdx();
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
234 sprintf(pTmpBuf2, "%s: \x0C" "%05d%s\x0C" "00000\n", pGlobalTXT_LocalizationStrings[47],
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
235 GetConditionDrawColor(v25), aCharacterConditionNames[v25]);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
236 strcat(pTmpBuf, pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
237 v28 = pPlayer->uQuickSpell;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
238 if ( v28 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
239 v29 = pSpellStats->pInfos[v28].pShortName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
240 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
241 v29 = pGlobalTXT_LocalizationStrings[153];
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
242 sprintf(pTmpBuf2, "%s: %s", pGlobalTXT_LocalizationStrings[172], v29);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
243 strcat(pTmpBuf, pTmpBuf2);
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
244 DrawText(pFontArrus, 120, 22, 0, pTmpBuf, 0, 0, 0);
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
245
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
246 uFramesetIDa = 0;
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
247 for (uint i = 0; i < 24; ++i)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
248 {
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
249 auto buff = pPlayer->pPlayerBuffs + i;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
250 if (buff->uExpireTime > 0)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
251 {
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
252 v35 = buff->uExpireTime - pParty->uTimePlayed;
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
253 v36 = uFramesetIDa++ * pFontComic->uFontHeight + 134;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
254 v38 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
255 _4E2AD8_ui_colors[i * 3],
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
256 _4E2AD8_ui_colors[i * 3 + 1],
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
257 _4E2AD8_ui_colors[i * 3 + 2]);
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
258 DrawText(pFontComic, 52, v36, v38, aSpellNames[20 + i], 0, 0, 0);
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
259 sub_41D20D_buff_remaining_time_string(v36, this, v35, pFontComic);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
260 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
261 }
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
262
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
263 v39 = "";
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
264 if ( uFramesetIDa == 0 )
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
265 v39 = pGlobalTXT_LocalizationStrings[153];
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
266 sprintf(pTmpBuf, pGlobalTXT_LocalizationStrings[450], v39);
82
f9a33f75bae3 Qick Record
Nomad
parents: 60
diff changeset
267 return DrawText(pFontArrus, 14, 114, 0, pTmpBuf, 0, 0, 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
268 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
269
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
270 //----- (0041D08F) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
271 void GUIWindow::_41D08F(int a2, int a3, int a4, int a5)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
272 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
273 if ( a2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
274 {
48
6a62c4005f0e 23.10.12
Ritor1
parents: 44
diff changeset
275 this->pNumPresenceButton = a2;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
276 this->field_30 = a3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
277 this->field_34 = a4;
48
6a62c4005f0e 23.10.12
Ritor1
parents: 44
diff changeset
278 this->pCurrentPosActiveItem = a5;
6a62c4005f0e 23.10.12
Ritor1
parents: 44
diff changeset
279 this->pStartingPosActiveItem = a5;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
280 this->field_44 = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
281 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
282 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
283 {
48
6a62c4005f0e 23.10.12
Ritor1
parents: 44
diff changeset
284 this->pNumPresenceButton = 0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
285 this->field_30 = a3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
286 this->field_34 = a4;
48
6a62c4005f0e 23.10.12
Ritor1
parents: 44
diff changeset
287 this->pCurrentPosActiveItem = 0;
6a62c4005f0e 23.10.12
Ritor1
parents: 44
diff changeset
288 this->pStartingPosActiveItem = 0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
289 this->field_44 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
290 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
291 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
292
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
293
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
294 //----- (0041C26A) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
295 void GUIWindow::Release()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
296 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
297 GUIWindow *v1; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
298 unsigned int v2; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
299 int v3; // eax@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
300 int v4; // eax@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
301 int v5; // eax@14
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
302 int v6; // eax@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
303 int i; // edi@20
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
304 GUIButton *v8; // eax@26
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
305 GUIButton *v9; // edi@27
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
306 int v10; // esi@28
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
307 int v11; // ecx@28
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
308 int v12; // edx@29
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
309
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
310 v1 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
311 if ( !this )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
312 return;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
313 v2 = this->eWindowType;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
314 if ( (signed int)v2 > 18 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
315 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
316 v5 = v2 - 19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
317 if ( !v5 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
318 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
319 pIcons_LOD->_40F9C5();
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
320 pCurrentScreen = dword_506978;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
321 pKeyActionMap->_459ED1(3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
322 goto LABEL_26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
323 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
324 v6 = v5 - 6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
325 if ( !v6 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
326 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
327 for ( i = 0; i < uNumDialogueNPCPortraits; ++i )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
328 pDialogueNPCPortraits[i]->Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
329 uNumDialogueNPCPortraits = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
330 pTexture_Dialogue_Background->Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
331
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
332 pIcons_LOD->_40F9C5();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
333 pIcons_LOD->_4114F2();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
334 dword_5C35D4 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
335 if ( bFlipOnExit )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
336 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
337 pIndoorCamera->sRotationY = (stru_5C6E00->uIntegerDoublePi - 1) & (stru_5C6E00->uIntegerPi
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
338 + pIndoorCamera->sRotationY);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
339 pParty->sRotationY = pIndoorCamera->sRotationY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
340 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
341 pParty->uFlags |= 2u;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
342 goto LABEL_26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
343 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
344 if ( v6 == 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
345 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
346 pVideoPlayer->Unload();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
347 goto LABEL_18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
348 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
349 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
350 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
351 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
352 if ( v2 == 18 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
353 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
354 sub_41140B();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
355 sub_411473();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
356 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
357 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
358 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
359 if ( !v2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
360 return;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
361 v3 = v2 - 9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
362 if ( v3 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
363 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
364 v4 = v3 - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
365 if ( !v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
366 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
367 if ( !dword_591084 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
368 pDialogueNPCPortraits[0]->Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
369 uNumDialogueNPCPortraits = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
370 pTexture_Dialogue_Background->Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
371
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
372 pIcons_LOD->_40F9C5();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
373 goto LABEL_19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
374 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
375 if ( v4 != 7 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
376 goto LABEL_26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
377 LABEL_18:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
378 pTexture_outside->Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
379 pTexture_Dialogue_Background->Release();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
380 pIcons_LOD->_40F9C5();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
381 LABEL_19:
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
382 pCurrentScreen = dword_506978;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
383 goto LABEL_26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
384 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
385 OnCloseSpellook();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
386 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
387 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
388 LABEL_26:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
389 v8 = v1->pControlsHead;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
390 if ( v8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
391 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
392 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
393 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
394 v9 = v8->pNext;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
395 pAllocator->FreeChunk(v8);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
396 v8 = v9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
397 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
398 while ( v9 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
399 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
400 v1->pControlsHead = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
401 v1->pControlsTail = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
402 v1->uNumControls = 0;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
403 v1->eWindowType = WINDOW_null;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
404 v10 = v1->field_3C;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
405 v11 = uNumVisibleWindows;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
406 while ( v10 < v11 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
407 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
408 v12 = pVisibleWindowsIdxs[v10 + 1];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
409 pVisibleWindowsIdxs[v10] = v12;
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
410 --*((int *)&pTexture_PCX.field_18 + 21 * v12);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
411 ++v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
412 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
413 pVisibleWindowsIdxs[v11] = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
414 uNumVisibleWindows = v11 - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
415 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
416
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
417
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
418
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
419
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
420
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
421
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
422 //----- (0041CD3B) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
423 GUIButton *GUIWindow::GetControl(unsigned int uID)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
424 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
425 GUIButton *result; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
426 unsigned int v3; // ecx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
427
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
428 result = this->pControlsHead;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
429 v3 = uID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
430 if ( (signed int)uID > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
431 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
432 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
433 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
434 result = result->pNext;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
435 --v3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
436 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
437 while ( v3 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
438 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
439 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
440 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
441
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
442 //----- (00411BFC) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
443 void GUIWindow::InitializeBookView()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
444 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
445 GUIWindow *v1; // ebp@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
446 signed int v2; // ecx@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
447 __int64 *v3; // ebp@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
448 char *v4; // ecx@10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
449 char *v5; // eax@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
450 int v6; // eax@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
451 __int64 v7; // qax@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
452 unsigned int v8; // esi@12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
453 GUIButton *v9; // eax@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
454 signed int v10; // esi@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
455 int v11; // eax@24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
456 int v12; // eax@27
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
457 int i; // esi@28
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
458 char *v14; // ebp@29
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
459 int v15; // eax@31
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
460 unsigned int v16; // esi@35
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
461 Player *v17; // esi@38
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
462 unsigned __int16 v18; // ax@38
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
463 unsigned int v19; // edi@43
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
464 unsigned int v20; // edi@45
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
465 void *v21; // esi@45
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
466 char *v22; // [sp+10h] [bp-5Ch]@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
467 signed int v23; // [sp+10h] [bp-5Ch]@38
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
468 int v24; // [sp+14h] [bp-58h]@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
469 char *v25; // [sp+14h] [bp-58h]@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
470 GUIWindow v26; // [sp+18h] [bp-54h]@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
471
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
472 v1 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
473 pAudioPlayer->StopChannels(-1, -1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
474 InitializeBookFonts();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
475 v1->CreateButton(0x1DBu, 0x1BDu, 0x9Eu, 0x22u, 1, 0, 0x71u, 0, 0, pGlobalTXT_LocalizationStrings[79], 0);
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
476 pCurrentScreen = 3;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
477 dword_506524 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
478 dword_506528 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
479 dword_50651C = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
480 dword_506520 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
481 if ( v1->ptr_1C == (void *)177 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
482 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
483 byte_506360 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
484 pTexture_CurrentBook = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("lb_bordr", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
485 pTexture_LloydBeacons[0] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("sbmap", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
486 pTexture_50635C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("sbmap", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
487 pTex_tab_an_6b__zoom_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
488 pTex_tab_an_6a__zoom_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
489 pBtn_Book_1 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
490 415u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
491 13u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
492 39u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
493 36u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
494 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
495 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
496 0xB2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
497 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
498 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
499 pGlobalTXT_LocalizationStrings[375],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
500 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
501 pBtn_Book_2 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
502 415u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
503 48u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
504 39u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
505 36u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
506 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
507 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
508 0xB2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
509 1u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
510 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
511 pGlobalTXT_LocalizationStrings[523],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
512 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
513 v17 = &pParty->pPlayers[_506348_current_lloyd_playerid];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
514 v23 = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
515 v18 = v17->pActiveSkills[14];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
516 if ( HIBYTE(v18) & 1 || (v18 & 0x80u) != 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
517 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
518 v23 = 5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
519 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
520 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
521 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
522 if ( v18 & 0x40 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
523 v23 = 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
524 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
525 v19 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
526 if ( v23 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
527 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
528 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
529 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
530 v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
531 pLloydsBeaconsPreviewXs[v19],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
532 pLloydsBeaconsPreviewYs[v19],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
533 0x5Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
534 0x44u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
535 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
536 180,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
537 0xB3u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
538 v19,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
539 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
540 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
541 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
542 ++v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
543 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
544 while ( (signed int)v19 < v23 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
545 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
546 v20 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
547 v21 = v17->pInstalledBeacons;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
548 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
549 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
550 if ( *(_QWORD *)v21 >= (signed __int64)pParty->uTimePlayed )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
551 LoadThumbnailLloydTexture(v20, _506348_current_lloyd_playerid + 1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
552 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
553 memset(v21, 0, 0x1Cu);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
554 ++v20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
555 v21 = (char *)v21 + 28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
556 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
557 while ( (signed int)v20 < 5 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
558 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
559 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
560 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
561 if ( v1->ptr_1C == (void *)195 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
562 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
563 pTexture_CurrentBook = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("townport", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
564 pTexture_TownPortalHarmn = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tpharmndy", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
565 pTexture_TownPortalElf = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tpelf", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
566 pTexture_TownPortalWarlock = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tpwarlock", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
567 pTexture_TownPortalIsland = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tpisland", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
568 pTexture_TownPortalHeaven = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tpheaven", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
569 v16 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
570 pTexture_TownPortalHell = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture( "tphell", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
571 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
572 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
573 v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
574 pTownPortalBook_xs[v16],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
575 pTownPortalBook_ys[v16],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
576 pTownPortalBook_ws[v16],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
577 pTownPortalBook_hs[v16],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
578 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
579 182,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
580 0xB7u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
581 v16,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
582 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
583 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
584 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
585 ++v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
586 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
587 while ( (signed int)v16 < 6 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
588 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
589 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
590 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
591 if ( v1->ptr_1C == (void *)200 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
592 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
593 pTexture_CurrentBook = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture( "sbquiknot", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
594 pTextures_5064A0[10] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture( "divbar", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
595 pTex_tab_an_6b__zoom_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
596 pTex_tab_an_7b__zoot_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-7b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
597 pTex_tab_an_6a__zoom_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
598 pTex_tab_an_7a__zoot_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-7a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
599 pBtn_Book_1 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
600 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
601 pViewport->uViewportY + 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
602 pTex_tab_an_6b__zoom_on->uTextureWidth,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
603 pTex_tab_an_6b__zoom_on->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
604 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
605 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
606 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
607 0xBu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
608 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
609 pGlobalTXT_LocalizationStrings[192],// "Scroll Up"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
610 pTex_tab_an_6b__zoom_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
611 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
612 pBtn_Book_2 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
613 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
614 pViewport->uViewportY + 38,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
615 pTex_tab_an_7b__zoot_on->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
616 pTex_tab_an_7b__zoot_on->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
617 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
618 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
619 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
620 0xAu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
621 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
622 pGlobalTXT_LocalizationStrings[193],// "Scroll Down"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
623 pTex_tab_an_7b__zoot_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
624 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
625 dword_506520 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
626 memset(&pStru179, 0, 0xFA0u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
627 for ( i = dword_506528; i < 512; ++i )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
628 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
629 v14 = (&dword_722F10)[4 * i];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
630 if ( (unsigned __int16)_449B57_test_bit(pParty->_award_bits, i) && v14 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
631 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
632 v15 = dword_506520++;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
633 pStru179->field_0[v15] = i;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
634 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
635 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
636 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
637 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
638 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
639 if ( v1->ptr_1C == (void *)201 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
640 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
641 pTexture_AutonotesBook = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("sbautnot", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
642 pTextures_5064A0[10] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("divbar", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
643 pTex_tab_an_6b__zoom_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
644 pTex_tab_an_7b__zoot_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-7b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
645 pTex_tab_an_6a__zoom_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
646 pTex_tab_an_7a__zoot_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-7a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
647 pTexture_506394 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-1b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
648 pTexture_506390 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-1a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
649 pTexture_50638C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-2b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
650 pTexture_506388 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-2a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
651 pTexture_506384 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-3b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
652 pTexture_506380 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-3a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
653 pTexture_50637C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-5b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
654 pTexture_506378 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-5a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
655 pTexture_506374 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-4b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
656 pTexture_506370 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-4a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
657 pTexture_50636C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-8b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
658 pTexture_506368 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-8a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
659 pBtn_Book_1 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
660 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
661 pViewport->uViewportY + 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
662 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
663 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
664 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
665 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
666 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
667 0xBu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
668 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
669 pGlobalTXT_LocalizationStrings[193],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
670 pTex_tab_an_6b__zoom_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
671 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
672 pBtn_Book_2 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
673 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
674 pViewport->uViewportY + 38,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
675 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
676 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
677 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
678 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
679 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
680 0xAu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
681 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
682 pGlobalTXT_LocalizationStrings[192],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
683 pTex_tab_an_7b__zoot_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
684 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
685 pBtn_Book_3 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
686 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
687 pViewport->uViewportY + 113,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
688 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
689 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
690 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
691 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
692 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
693 2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
694 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
695 pGlobalTXT_LocalizationStrings[85],// "Potion Notes"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
696 pTexture_506394,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
697 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
698 pBtn_Book_4 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
699 pViewport->uViewportX + 399,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
700 pViewport->uViewportY + 150,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
701 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
702 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
703 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
704 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
705 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
706 3u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
707 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
708 pGlobalTXT_LocalizationStrings[137],// "Fountain Notes"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
709 pTexture_50638C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
710 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
711 pBtn_Book_5 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
712 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
713 pViewport->uViewportY + 188,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
714 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
715 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
716 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
717 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
718 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
719 4u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
720 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
721 pGlobalTXT_LocalizationStrings[8],// "Obelisk Notes"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
722 pTexture_506384,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
723 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
724 pBtn_Book_6 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
725 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
726 pViewport->uViewportY + 226,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
727 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
728 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
729 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
730 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
731 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
732 5u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
733 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
734 pGlobalTXT_LocalizationStrings[141],// "Seer Notes"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
735 pTexture_50637C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
736 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
737 pBtn_Autonotes_Misc = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
738 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
739 pViewport->uViewportY + 264,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
740 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
741 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
742 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
743 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
744 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
745 6u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
746 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
747 pGlobalTXT_LocalizationStrings[123],// "Miscellaneous Notes"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
748 pTexture_506374,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
749 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
750 v9 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
751 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
752 pViewport->uViewportY + 302,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
753 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
754 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
755 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
756 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
757 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
758 7u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
759 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
760 pGlobalTXT_LocalizationStrings[662],// "Instructors"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
761 pTexture_50636C,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
762 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
763 v10 = dword_506528;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
764 pBtn_Autonotes_Instructors = v9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
765 dword_506520 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
766 while ( v10 < 196 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
767 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
768 if ( dword_506568 == dword_72371C[2 * v10] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
769 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
770 v25 = (&dword_723718_autonote_related)[8 * (signed __int16)v10];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
771 if ( (short)v10 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
772 {
26
93bf1d5f6a6d Game loading.
Nomad
parents: 23
diff changeset
773 if ( (unsigned __int16)_449B57_test_bit(pParty->_autonote_bits, v10) && v25 )
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
774 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
775 v11 = dword_506520++;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
776 pStru179->field_0[v11] = (signed __int16)v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
777 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
778 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
779 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
780 ++v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
781 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
782 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
783 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
784 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
785 if ( v1->ptr_1C == (void *)202 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
786 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
787 dword_506364 = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
788 pTextures_5064A0[12] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("sbmap", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
789 pTex_tab_an_6b__zoom_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("zoom-on", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
790 pTex_tab_an_7b__zoot_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("zoot-on", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
791 pTex_tab_an_6a__zoom_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("zoom-off", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
792 pTex_tab_an_7a__zoot_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("zoot-off", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
793 pTexture_506394 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabNon", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
794 pTexture_506390 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabNoff", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
795 pTexture_50638C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabSon", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
796 pTexture_506388 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabSoff", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
797 pTexture_506384 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabEon", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
798 pTexture_506380 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabEoff", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
799 pTexture_50637C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabWon", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
800 pTexture_506378 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tabWoff", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
801 pBtn_Book_1 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
802 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
803 pViewport->uViewportY + 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
804 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
805 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
806 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
807 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
808 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
809 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
810 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
811 pGlobalTXT_LocalizationStrings[251],// "Zoom In"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
812 pTex_tab_an_6b__zoom_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
813 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
814 pBtn_Book_2 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
815 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
816 pViewport->uViewportY + 38,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
817 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
818 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
819 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
820 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
821 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
822 1u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
823 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
824 pGlobalTXT_LocalizationStrings[252],// "Zoom Out"
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
825 pTex_tab_an_7b__zoot_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
826 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
827 pBtn_Book_3 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
828 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
829 pViewport->uViewportY + 113,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
830 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
831 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
832 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
833 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
834 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
835 2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
836 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
837 pGlobalTXT_LocalizationStrings[192],// Scroll Up
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
838 (Texture *)"",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
839 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
840 pBtn_Book_4 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
841 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
842 pViewport->uViewportY + 150,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
843 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
844 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
845 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
846 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
847 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
848 3u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
849 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
850 pGlobalTXT_LocalizationStrings[193],// Scroll Down
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
851 (Texture *)"",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
852 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
853 pBtn_Book_5 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
854 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
855 pViewport->uViewportY + 188,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
856 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
857 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
858 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
859 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
860 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
861 4u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
862 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
863 pGlobalTXT_LocalizationStrings[573],// "Scroll Right"
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
864 (Texture *)"",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
865 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
866 pBtn_Book_6 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
867 pViewport->uViewportX + 397,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
868 pViewport->uViewportY + 226,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
869 0x32u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
870 0x22u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
871 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
872 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
873 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
874 5u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
875 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
876 pGlobalTXT_LocalizationStrings[572],// "Scroll Left"
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
877 (Texture *)"",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
878 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
879 return;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
880 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
881 if ( v1->ptr_1C == (void *)203 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
882 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
883 pTextures_5064A0[13] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("sbdate-time", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
884 pTex_moon_new = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("moon_new", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
885 pTex_moon_4 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("moon_4", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
886 pTex_moon_2 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("moon_2", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
887 pTex_moon_2_2 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("moon_2", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
888 pTex_moon_ful = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("moon_ful", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
889 return;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
890 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
891 if ( v1->ptr_1C != (void *)224 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
892 return;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
893 pTextures_5064A0[11] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("sbplayrnot", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
894 pTex_tab_an_6b__zoom_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
895 pTex_tab_an_7b__zoot_on = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-7b", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
896 pTex_tab_an_6a__zoom_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-6a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
897 pTex_tab_an_7a__zoot_off = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("tab-an-7a", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
898 pBtn_Book_1 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
899 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
900 pViewport->uViewportY + 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
901 pTex_tab_an_6b__zoom_on->uTextureWidth,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
902 pTex_tab_an_6b__zoom_on->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
903 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
904 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
905 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
906 0xBu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
907 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
908 pGlobalTXT_LocalizationStrings[192],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
909 pTex_tab_an_6b__zoom_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
910 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
911 pBtn_Book_2 = v1->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
912 pViewport->uViewportX + 398,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
913 pViewport->uViewportY + 38,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
914 pTex_tab_an_7b__zoot_on->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
915 pTex_tab_an_7b__zoot_on->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
916 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
917 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
918 0x47u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
919 0xAu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
920 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
921 pGlobalTXT_LocalizationStrings[193],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
922 pTex_tab_an_7b__zoot_on,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
923 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
924 dword_506520 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
925 v26.uFrameX = 48;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
926 v26.uFrameY = 70;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
927 v26.uFrameWidth = 360;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
928 v26.uFrameHeight = 264;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
929 v2 = LOBYTE(pAutonoteFont->uFontHeight) - 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
930 v26.uFrameZ = 407;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
931 v26.uFrameHeight = v2 * 264 / v2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
932 v26.uFrameW = v26.uFrameHeight + 69;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
933 memset(&pStru179, 0, 0xFA0u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
934 memset(byte_5C6D50, 0, 0x64u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
935 if ( dword_506528 < 29 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
936 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
937 v3 = (__int64 *)&pParty->field_3C.field_4F0[2 * dword_506528];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
938 v24 = dword_506528 + 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
939 v22 = (char *)&pStorylineText->field_4[3 * dword_506528 + 2];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
940 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
941 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
942 v4 = *(char **)v22;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
943 if ( *v3 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
944 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
945 if ( v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
946 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
947 v5 = sub_495461(v4, uActiveCharacter - 1, 0, 0, 0, v3);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
948 v6 = pAutonoteFont->CalcTextHeight(v5, &v26, 1, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
949 v7 = (v6 - 3) / (signed int)v26.uFrameHeight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
950 v8 = v7 + 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
951 if ( (signed int)v7 + 1 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
952 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
953 memset32((void *)(4 * dword_506520 + 6043152), v24, v8);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
954 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
955 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
956 LODWORD(v7) = dword_506520++;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
957 byte_5C6D50[(int)v7] = BYTE4(v7);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
958 ++HIDWORD(v7);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
959 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
960 while ( SHIDWORD(v7) < (signed int)v8 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
961 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
962 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
963 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
964 v22 += 12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
965 ++v3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
966 ++v24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
967 __debugbreak(); // fix condition
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
968 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
969 while ( (signed int)v22 < (signed int)&pFactionTable->relations + 8 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
970 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
971 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
972 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
973 v12 = dword_506520;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
974 dword_506520 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
975 dword_506524 = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
976 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
977 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
978 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
979
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
980
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
981
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
982
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
983 //----- (00415551) --------------------------------------------------------
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
984 void GUIWindow::DrawMessageBox(int arg0)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
985 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
986 unsigned int v2; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
987 GUIWindow *v3; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
988 signed int v4; // esi@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
989 unsigned int v5; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
990 unsigned int v6; // edx@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
991 unsigned int v7; // ecx@6
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
992 unsigned int v8; // eax@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
993 __int32 v9; // eax@10
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
994 unsigned int v10; // eax@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
995 LONG v11; // ecx@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
996 unsigned int v12; // edx@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
997 unsigned int v13; // eax@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
998 const char *v14; // ecx@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
999 int v15; // eax@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1000 unsigned int v16; // esi@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1001 const char *v17; // ebx@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1002 int v18; // eax@26
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1003 GUIWindow v19; // [sp+Ch] [bp-60h]@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1004 POINT a2; // [sp+60h] [bp-Ch]@8
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1005 unsigned int v21; // [sp+68h] [bp-4h]@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1006 unsigned int v22; // [sp+74h] [bp+8h]@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1007 unsigned int v23; // [sp+74h] [bp+8h]@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1008
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1009 v2 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1010 v3 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1011 if ( arg0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1012 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1013 v4 = pViewport->uViewportX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1014 v5 = pViewport->uViewportZ;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1015 v2 = pViewport->uViewportY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1016 v22 = pViewport->uViewportW;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1017 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1018 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1019 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1020 v4 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1021 v5 = 640;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1022 v22 = 480;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1023 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1024 v6 = this->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1025 if ( (signed int)this->uFrameX >= v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1026 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1027 v7 = this->uFrameWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1028 if ( (signed int)(v7 + v6) <= (signed int)v5 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1029 goto LABEL_9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1030 v3->uFrameX = v5 - v7;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1031 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1032 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1033 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1034 this->uFrameX = v4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1035 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1036 v3->uFrameY = pMouse->GetCursorPos(&a2)->y + 30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1037 LABEL_9:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1038 v8 = v3->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1039 if ( (signed int)v8 >= (signed int)v2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1040 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1041 if ( (signed int)(v8 + v3->uFrameHeight) <= (signed int)v22 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1042 goto LABEL_14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1043 v9 = pMouse->GetCursorPos(&a2)->y - v3->uFrameHeight - 30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1044 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1045 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1046 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1047 v9 = pMouse->GetCursorPos(&a2)->y + 30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1048 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1049 v3->uFrameY = v9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1050 LABEL_14:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1051 if ( (signed int)v3->uFrameY < (signed int)v2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1052 v3->uFrameY = v2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1053 if ( (signed int)v3->uFrameX < v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1054 v3->uFrameX = v4;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1055 v10 = v3->uFrameWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1056 v11 = v3->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1057 v12 = v3->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1058 v21 = v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1059 a2.y = v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1060 v3->uFrameZ = v10 + v11 - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1061 v13 = v3->uFrameHeight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1062 v3->uFrameW = v13 + v12 - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1063 memcpy(&v19, v3, sizeof(v19));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1064 v19.uFrameX += 12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1065 v19.uFrameWidth -= 24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1066 v19.uFrameY += 12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1067 v19.uFrameHeight -= 12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1068 v19.uFrameZ = v19.uFrameWidth + v19.uFrameX - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1069 v23 = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1070 v19.uFrameW = v19.uFrameHeight + v19.uFrameY - 1;
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
1071 v14 = v3->Hint;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1072 if ( v14 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1073 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1074 v15 = pFontLucida->CalcTextHeight(v14, &v19, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1075 v12 = v23;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1076 v16 = v15 + 24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1077 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1078 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1079 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1080 v16 = v13;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1081 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1082 if ( (signed int)v16 < 64 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1083 v16 = 64;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1084 if ( (signed int)(v16 + v12) > 479 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1085 v16 = 479 - v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1086 DrawPopupWindow(a2.y, v12, v21, v16);
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
1087 v17 = v3->Hint;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1088 if ( v17 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1089 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1090 v18 = pFontLucida->CalcTextHeight(v17, &v19, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1091 v19.DrawText2(pFontLucida, 0, (signed int)(v16 - v18) / 2 - 14, 0, v17, 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1092 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1093 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1094
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1095
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1096 //----- (0041192C) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1097 void __cdecl InitializeBookTextures()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1098 {
84
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1099 //signed int v0; // ebp@3
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1100 //Texture **v1; // ebx@3
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1101
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1102 pAudioPlayer->StopChannels(-1, -1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1103 ++pIcons_LOD->uTexturePacksCount;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1104 if ( !pIcons_LOD->uNumPrevLoadedFiles )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1105 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1106 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1107 pTextures_5064A0[9] = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("book", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1108 pTexture_pagemask = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("pagemask", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1109 pTexture_506448 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("ib-m5-u", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1110 ptr_506440 = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("ib-m5-d", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1111 pTexture_50643C = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("ib-m6-u",TEXTURE_16BIT_PALETTE)];
84
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1112 //v0 = 1;
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1113
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1114 static const char *texNames[9] =
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1115 {
84
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1116 "SBFB00", "SBAB00", "SBWB00", "SBEB00",
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1117 "SBSB00", "SBMB00", "SBBB00", "SBLB00",
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1118 };
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1119
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1120 pTexture_506444 = pIcons_LOD->LoadTexturePtr("ib-m6-d",TEXTURE_16BIT_PALETTE);
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1121 for (uint i = 0; i < 8; ++i)
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1122 {
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1123 pTextures_5064A0[i] = pIcons_LOD->LoadTexturePtr(texNames[i], TEXTURE_16BIT_PALETTE);
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1124
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1125 sprintf(pTmpBuf, "tab%da", i);
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1126 pTextures_tabs[i][0] = pIcons_LOD->LoadTexturePtr(pTmpBuf, TEXTURE_16BIT_PALETTE);
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1127 sprintf(pTmpBuf, "tab%db", i);
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1128 pTextures_tabs[i][1] = pIcons_LOD->LoadTexturePtr(pTmpBuf, TEXTURE_16BIT_PALETTE);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1129 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1130 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1131
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1132 //----- (00411AAA) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1133 void __cdecl InitializeBookFonts()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1134 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1135 pAudioPlayer->StopChannels(-1, -1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1136 ++pIcons_LOD->uTexturePacksCount;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1137 if ( !pIcons_LOD->uNumPrevLoadedFiles )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1138 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1139 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1140 pTexture_mapbordr = &pIcons_LOD->pTextures[pIcons_LOD->LoadTexture("mapbordr", TEXTURE_16BIT_PALETTE)];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1141 pBookFont = LoadFont("book.fnt", "FONTPAL", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1142 pBook2Font = LoadFont("book2.fnt", "FONTPAL", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1143 pAutonoteFont = LoadFont("autonote.fnt", "FONTPAL", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1144 pSpellFont = LoadFont("spell.fnt", "FONTPAL", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1145 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1146
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1147 //----- (00411B59) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1148 void __fastcall LoadThumbnailLloydTexture(unsigned int uSlot, unsigned int uPlayer)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1149 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1150 unsigned int v2; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1151 unsigned int v3; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1152 FILE *v4; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1153 FILE *v5; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1154 char pContainerName[64]; // [sp+Ch] [bp-44h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1155 unsigned int v7; // [sp+4Ch] [bp-4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1156
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1157 v2 = uSlot;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1158 v7 = uPlayer;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1159 v3 = uSlot + 1;
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1160 sprintf(pContainerName, "data\\lloyd%d%d.pcx", uPlayer, uSlot + 1);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1161 v4 = fopen(pContainerName, "rb");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1162 if ( v4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1163 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1164 pSavegameThumbnails[v2].LoadFromFILE(v4, 0, 1u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1165 fclose(v4);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1166 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1167 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1168 {
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1169 sprintf(pContainerName, "lloyd%d%d.pcx", v7, v3);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1170 v5 = pNew_LOD->FindContainer(pContainerName, 1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1171 if ( v5 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1172 pSavegameThumbnails[v2].LoadFromFILE(v5, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1173 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1174 *((int *)&pSavegameThumbnails->pPixels + 10 * v2) = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1175 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1176 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1177
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1178
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1179 //----- (00411621) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1180 GUIButton *GUIWindow::_411621()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1181 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1182 Player *v1; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1183 GUIWindow *v2; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1184 unsigned int v3; // ebp@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1185 int v4; // eax@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1186 GUIButton *result; // eax@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1187 int a2; // [sp+10h] [bp-8h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1188 int v7; // [sp+14h] [bp-4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1189
84
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1190 __debugbreak();
b39bdc150e90 Some inventory stuff
Nomad
parents: 83
diff changeset
1191
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1192 v1 = pPlayers[uActiveCharacter];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1193 v2 = this;
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 49
diff changeset
1194 LoadSpellbook(v1->pNumSpellBookPage);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1195 v3 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1196 a2 = 0;
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 49
diff changeset
1197 v7 = (int)(&v1->spellbook.pFireSpellbook + v1->pNumSpellBookPage);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1198 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1199 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1200 if ( *(char *)(v7 + v3) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1201 {
54
c28452924144 PLAYER_CLASS_TYPE
Ritor1
parents: 49
diff changeset
1202 v4 = 2 * (12 * v1->pNumSpellBookPage + (unsigned __int8)*(&byte_4E2431[12 * v1->pNumSpellBookPage] + v3));
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1203 v2->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1204 pViewport->uViewportX + dword_4E20D0[v4],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1205 pViewport->uViewportY + dword_4E20D0[v4 + 1],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1206 *(short *)(dword_50640C[v3] + 24),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1207 *(short *)(dword_50640C[v3] + 26),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1208 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1209 79,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1210 0x56u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1211 v3,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1212 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
1213 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1214 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1215 ++a2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1216 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1217 ++v3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1218 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1219 while ( (signed int)v3 < 11 );
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
1220 v2->CreateButton(0, 0, 0, 0, 1, 0, 0x33u, 0, 9u, "", 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1221 if ( a2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1222 v2->_41D08F(a2, 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1223 if ( v1->pActiveSkills[12] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1224 v2->CreateButton(0x18Fu, 0xAu, 0x32u, 0x24u, 1, 0, 0x57u, 0, 0, aSpellSchoolNames[0], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1225 if ( v1->pActiveSkills[13] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1226 v2->CreateButton(0x18Fu, 0x2Eu, 0x32u, 0x24u, 1, 0, 0x57u, 1u, 0, aSpellSchoolNames[1], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1227 if ( v1->pActiveSkills[14] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1228 v2->CreateButton(0x18Fu, 0x53u, 0x32u, 0x24u, 1, 0, 0x57u, 2u, 0, aSpellSchoolNames[2], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1229 if ( v1->pActiveSkills[15] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1230 v2->CreateButton(0x18Fu, 0x79u, 0x32u, 0x24u, 1, 0, 0x57u, 3u, 0, aSpellSchoolNames[3], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1231 if ( v1->pActiveSkills[16] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1232 v2->CreateButton(0x18Fu, 0x9Eu, 0x32u, 0x24u, 1, 0, 0x57u, 4u, 0, aSpellSchoolNames[4], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1233 if ( v1->pActiveSkills[17] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1234 v2->CreateButton(0x190u, 0xC4u, 0x32u, 0x24u, 1, 0, 0x57u, 5u, 0, aSpellSchoolNames[5], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1235 if ( v1->pActiveSkills[18] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1236 v2->CreateButton(0x190u, 0xEAu, 0x32u, 0x24u, 1, 0, 0x57u, 6u, 0, aSpellSchoolNames[6], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1237 if ( v1->pActiveSkills[19] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1238 v2->CreateButton(0x190u, 0x10Fu, 0x32u, 0x24u, 1, 0, 0x57u, 7u, 0, aSpellSchoolNames[7], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1239 if ( v1->pActiveSkills[20] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1240 v2->CreateButton(0x190u, 0x133u, 0x32u, 0x24u, 1, 0, 0x57u, 8u, 0, aSpellSchoolNames[8], 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1241 v2->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1242 0x1DCu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1243 0x1C2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1244 pTexture_506444->uTextureWidth,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1245 pTexture_506444->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1246 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1247 78,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1248 0x58u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1249 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1250 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
1251 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1252 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1253 ptr_5064F8 = v2->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1254 0x1DCu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1255 0x1C2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1256 0x30u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1257 0x20u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1258 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1259 78,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1260 0x58u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1261 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1262 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
1263 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1264 pTexture_506444,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1265 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1266 v2->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1267 0x231u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1268 0x1C2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1269 ptr_506440->uTextureWidth,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1270 ptr_506440->uTextureHeight,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1271 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1272 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1273 0x71u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1274 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1275 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1276 pGlobalTXT_LocalizationStrings[79],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1277 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1278 result = v2->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1279 0x231u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1280 0x1C2u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1281 0x30u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1282 0x20u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1283 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1284 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1285 0x71u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1286 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1287 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1288 pGlobalTXT_LocalizationStrings[79],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1289 ptr_506440,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1290 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1291 ptr_5064F4 = result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1292 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1293 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1294 // 50640C: using guessed type int dword_50640C[];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1295
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1296
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1297 //----- (004B3157) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1298 void GUIWindow::_4B3157()
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1299 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1300 unsigned __int16 v1; // di@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1301 const char *v2; // edx@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1302 signed int v3; // edx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1303 char *v4; // edi@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1304 int v5; // eax@45
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1305 int v6; // edi@45
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1306 char *v7; // eax@45
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1307 int v8; // edi@46
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1308 int v9; // eax@50
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1309 unsigned int v10; // [sp-10h] [bp-C8h]@53
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1310 unsigned __int16 v11; // [sp-Ch] [bp-C4h]@53
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1311 unsigned int v12; // [sp-Ch] [bp-C4h]@60
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1312 char *v13; // [sp-8h] [bp-C0h]@50
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1313 unsigned int v14; // [sp-8h] [bp-C0h]@60
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1314 unsigned int v15; // [sp-4h] [bp-BCh]@50
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1315 Texture *v16; // [sp-4h] [bp-BCh]@60
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1316 GUIWindow w; // [sp+Ch] [bp-ACh]@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1317 GUIWindow v18; // [sp+60h] [bp-58h]@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1318 int v19; // [sp+B4h] [bp-4h]@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1319
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1320 if ( !ptr_507BC0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1321 return;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1322 memcpy(&v18, this, sizeof(v18));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1323 v18.uFrameWidth -= 18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1324 v18.uFrameZ -= 18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1325 v1 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0xFFu, 0xFFu, 0xFFu);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1326 v19 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0x15u, 0x99u, 0xE9u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1327 pRenderer->DrawTextureIndexed(0x1DDu, 0, pTexture_Dialogue_Background);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1328 pRenderer->DrawTextureTransparent(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1329 0x1D4u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1330 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1331 (Texture *)(uTextureID_507B04 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_507B04] : 0));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1332 if ( array_5913D8[6] != (NPCData *)uNumDialogueNPCPortraits || !uHouse_ExitPic )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1333 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1334 w.uFrameWidth = 130;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1335 w.uFrameHeight = 2 * LOBYTE(pFontCreate->uFontHeight);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1336
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1337 //v2 = (const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1338 v2 = p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1339
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1340 if ( v2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1341 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1342 v3 = 2 * LOBYTE(pFontCreate->uFontHeight) - 6 - pFontCreate->CalcTextHeight(v2, &w, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1343 if ( v3 < 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1344 v3 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1345 v18.DrawText2(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1346 pFontCreate,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1347 0x1EAu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1348 v3 / 2 + 4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1349 v1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1350 //(const char *)p2DEvents_minus1_::04[13 * (unsigned int)ptr_507BC0->ptr_1C],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1351 p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pName,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1352 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1353 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1354 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1355 v18.uFrameWidth += 8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1356 v18.uFrameZ += 8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1357 if ( !array_5913D8[6] )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1358 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1359 if ( dword_F8B198 == 31 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1360 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1361 LABEL_36:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1362 sub_4B4F4F();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1363 goto LABEL_58;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1364 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1365 if ( ptr_F8B1E8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1366 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1367 w.uFrameWidth = 458;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1368 w.uFrameZ = 457;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1369 v5 = pFontArrus->CalcTextHeight(ptr_F8B1E8, &w, 13, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1370 v6 = v5 + 7;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1371 pRenderer->_4A6A68(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1372 8u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1373 352 - (v5 + 7),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1374 (Texture *)(uTextureID_Leather != -1 ? &pIcons_LOD->pTextures[uTextureID_Leather] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1375 (uTextureID_Leather != -1 ? pIcons_LOD->pTextures[uTextureID_Leather].uTextureHeight : 26) - (v5 + 7));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1376 pRenderer->DrawTextureIndexed(8u, 347 - v6, pTexture_591428);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1377 v7 = FitTextInAWindow(ptr_F8B1E8, pFontArrus, &w, 0xDu, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1378 ptr_507BC0->DrawText(pFontArrus, 13, 354 - v6, 0, v7, 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1379 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1380 v8 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1381 if ( uNumDialogueNPCPortraits <= 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1382 goto LABEL_58;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1383 while ( 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1384 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1385 pRenderer->DrawTextureIndexed(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1386 *(&_4E5E50_transui_x + v8 + 6 * uNumDialogueNPCPortraits - 6) - 4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1387 *(&_4E5EE0_transui_y + v8 + 6 * uNumDialogueNPCPortraits - 6) - 4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1388 (Texture *)(uTextureID_50795C != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_50795C] : 0));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1389 pRenderer->DrawTextureIndexed(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1390 *(&_4E5E50_transui_x + v8 + 6 * uNumDialogueNPCPortraits - 6),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1391 *(&_4E5EE0_transui_y + v8 + 6 * uNumDialogueNPCPortraits - 6),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1392 pDialogueNPCPortraits[v8]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1393 if ( uNumDialogueNPCPortraits < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1394 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1395 LABEL_57:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1396 ++v8;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1397 if ( v8 >= uNumDialogueNPCPortraits )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1398 goto LABEL_58;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1399 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1400 if ( v8 + 1 == uNumDialogueNPCPortraits && uHouse_ExitPic )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1401 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1402 v15 = 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1403 v13 = pMapStats->pInfos[uHouse_ExitPic].pName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1404 v9 = 94 * v8 + 113;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1405 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1406 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1407 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1408 if ( !v8 && dword_591080 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1409 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1410 v15 = 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1411 //v13 = (char *)p2DEvents_minus1__10[13 * (unsigned int)ptr_507BC0->ptr_1C];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1412 v13 = (char *)p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pProprieterTitle;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1413 v11 = v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1414 v10 = 113;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1415 LABEL_56:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1416 v18.DrawText2(pFontCreate, 0x1E3u, v10, v11, v13, v15);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1417 goto LABEL_57;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1418 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1419 v15 = 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1420 v13 = array_5913D8[v8 - (dword_591080 != 0)]->pName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1421 v9 = dword_4E5EC8[v8 + 6 * uNumDialogueNPCPortraits] + pDialogueNPCPortraits[v8]->uTextureHeight + 2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1422 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1423 v11 = v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1424 v10 = v9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1425 goto LABEL_56;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1426 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1427 v4 = (char *)array_5913D8[6] - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1428 pRenderer->DrawTextureIndexed(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1429 _4E5E50_transui_x - 4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1430 _4E5EE0_transui_y - 4,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1431 (Texture *)(uTextureID_50795C != -1 ? &pIcons_LOD->pTextures[uTextureID_50795C] : 0));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1432 pRenderer->DrawTextureIndexed(_4E5E50_transui_x, _4E5EE0_transui_y, pDialogueNPCPortraits[(signed int)v4]);
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
1433 if ( pCurrentScreen == 14 )
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1434 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1435 CharacterUI_InventoryTab_Draw(uActiveCharacter, 1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1436 goto LABEL_58;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1437 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1438 if ( v4 || !dword_591080 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1439 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1440 sub_4B2A74();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1441 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1442 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1443 {
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1444 sprintf(
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1445 pTmpBuf,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1446 pGlobalTXT_LocalizationStrings[429],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1447 //p2DEvents_minus1_::08[13 * (unsigned int)ptr_507BC0->ptr_1C],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1448 p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pProprieterName,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1449 //p2DEvents_minus1__10[13 * (unsigned int)ptr_507BC0->ptr_1C]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1450 p2DEvents[(unsigned int)ptr_507BC0->ptr_1C - 1].pProprieterTitle);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1451 v18.DrawText2(pFontCreate, 0x1E3u, 0x71u, v19, pTmpBuf, 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1452 if ( dword_F8B198 <= 18 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1453 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1454 switch ( dword_F8B198 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1455 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1456 case 18:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1457 sub_4B6478();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1458 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1459 case 1:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1460 sub_4B910F();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1461 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1462 case 2:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1463 sub_4BA928();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1464 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1465 case 3:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1466 ui_shop_teachers();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1467 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1468 case 4:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1469 sub_4B9CC6();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1470 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1471 default:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1472 if ( dword_F8B198 > 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1473 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1474 if ( dword_F8B198 <= 16 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1475 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1476 sub_4B5D7C();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1477 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1478 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1479 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1480 if ( dword_F8B198 == 17 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1481 sub_4B7911();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1482 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1483 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1484 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1485 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1486 goto LABEL_58;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1487 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1488 switch ( dword_F8B198 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1489 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1490 case 21:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1491 sub_4B8285_prolly_draw_arcomage_result();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1492 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1493 case 22:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1494 _4B7D7E_bank();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1495 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1496 case 23:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1497 sub_4B705E();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1498 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1499 default:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1500 if ( dword_F8B198 <= 26 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1501 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1502 if ( dword_F8B198 <= 28 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1503 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1504 TravelByTransport();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1505 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1506 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1507 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1508 if ( dword_F8B198 != 30 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1509 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1510 if ( dword_F8B198 != 31 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1511 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1512 goto LABEL_36;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1513 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1514 ui_training();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1515 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1516 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1517 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1518 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1519 LABEL_58:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1520 if ( array_5913D8[6] == (NPCData *)uNumDialogueNPCPortraits && uHouse_ExitPic )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1521 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1522 pRenderer->DrawTextureIndexed(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1523 0x22Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1524 0x1C3u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1525 (Texture *)(uTextureID_x_x_u != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_x_x_u] : 0));
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1526 v16 = (Texture *)(uTextureID_x_ok_u != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_x_ok_u] : 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1527 v14 = 451;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1528 v12 = 476;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1529 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1530 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1531 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1532 v16 = (Texture *)(uTextureID_506438 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_506438] : 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1533 v14 = 445;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1534 v12 = 471;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1535 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1536 pRenderer->DrawTextureIndexed(v12, v14, v16);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1537 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1538
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1539
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1540 //----- (004B1854) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1541 char *GUIWindow::_4B1854(__int64 a2)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1542 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1543 unsigned int v2; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1544 unsigned int v3; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1545 unsigned int v4; // ebp@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1546 unsigned int v5; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1547 signed __int64 v6; // ST2C_8@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1548 signed __int64 v7; // kr00_8@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1549 char *v8; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1550 char *v9; // eax@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1551 char *v10; // eax@13
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1552 char *v11; // eax@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1553 unsigned __int16 v12; // ST0C_2@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1554 int v13; // eax@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1555 GUIWindow *v15; // [sp+0h] [bp-1Ch]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1556 signed __int64 v16; // [sp+Ch] [bp-10h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1557 signed __int64 v17; // [sp+14h] [bp-8h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1558 unsigned int v18; // [sp+20h] [bp+4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1559
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1560 v15 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1561 v2 = (unsigned __int64)(signed __int64)((double)a2 * 0.234375) >> 32;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1562 v3 = (signed __int64)((double)a2 * 0.234375);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1563 v4 = (unsigned __int64)((signed __int64)((double)a2 * 0.234375) / 60) >> 32;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1564 v5 = (signed __int64)((double)a2 * 0.234375) / 60;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1565 v6 = (signed __int64)((double)a2 * 0.234375) / 60 / 60;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1566 v18 = (unsigned int)v6 / 0x18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1567 v17 = (signed __int64)__PAIR__(v2, v3) % 60;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1568 v16 = (signed __int64)__PAIR__(v4, v5) % 60;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1569 v7 = v6 % 24;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1570 strcpy(pTmpBuf, pGlobalTXT_LocalizationStrings[532]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1571 if ( (unsigned int)v6 / 0x18 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1572 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1573 v8 = pGlobalTXT_LocalizationStrings[57];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1574 if ( v18 <= 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1575 v8 = pGlobalTXT_LocalizationStrings[56];
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1576 sprintf(pTmpBuf2, "%d %s ", v18, v8);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1577 strcat(pTmpBuf, pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1578 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1579 if ( v7 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1580 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1581 if ( v7 <= 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1582 v9 = pGlobalTXT_LocalizationStrings[109];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1583 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1584 v9 = pGlobalTXT_LocalizationStrings[110];
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1585 sprintf(pTmpBuf2, "%d %s ", v7, v9);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1586 strcat(pTmpBuf, pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1587 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1588 if ( v16 && !v18 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1589 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1590 if ( v16 <= 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1591 v10 = pGlobalTXT_LocalizationStrings[437];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1592 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1593 v10 = pGlobalTXT_LocalizationStrings[436];
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1594 sprintf(pTmpBuf2, "%d %s ", v16, v10);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1595 strcat(pTmpBuf, pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1596 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1597 if ( v17 && !v7 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1598 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1599 if ( v17 <= 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1600 v11 = pGlobalTXT_LocalizationStrings[439];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1601 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1602 v11 = pGlobalTXT_LocalizationStrings[438];
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
1603 sprintf(pTmpBuf2, "%d %s ", v17, v11);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1604 strcat(pTmpBuf, pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1605 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1606 v12 = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0xFFu, 0xFFu, 0x9Bu);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1607 v13 = pFontArrus->CalcTextHeight(pTmpBuf, v15, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1608 return v15->DrawText2(pFontArrus, 0, (212 - v13) / 2 + 101, v12, pTmpBuf, 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1609 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1610
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1611
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1612
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1613 //----- (0044D406) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1614 char *GUIWindow::DrawText2(GUIFont *a2, unsigned int uHorizontalMargin, unsigned int uVerticalMargin, unsigned __int16 uDefaultColor, const char *pInString, unsigned int uLineSpacing)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1615 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1616 GUIWindow *v7; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1617 unsigned int v8; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1618 char *v9; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1619 char *result; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1620 unsigned int v11; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1621 signed int v12; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1622 int v13; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1623 GUIFont *v14; // [sp+Ch] [bp-4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1624 const char *Stra; // [sp+24h] [bp+14h]@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1625
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1626 v7 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1627 v14 = a2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1628 v8 = this->uFrameWidth - uHorizontalMargin;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1629 ui_current_text_color = uDefaultColor;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1630 v9 = FitTextInAWindow(pInString, a2, this, uHorizontalMargin, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1631 result = strtok(v9, "\n");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1632 v11 = uHorizontalMargin + v7->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1633 v12 = uVerticalMargin + v7->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1634 while ( 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1635 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1636 Stra = result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1637 if ( !result )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1638 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1639 v13 = (signed int)(v8 - v14->GetLineWidth(result)) >> 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1640 if ( v13 < 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1641 v13 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1642 v14->DrawTextLine(uDefaultColor, v11 + v13, v12, Stra, 640);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1643 v12 += LOBYTE(v14->uFontHeight) - uLineSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1644 result = strtok(0, "\n");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1645 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1646 return result;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1647 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1648 // 5C6DB4: using guessed type int ui_current_text_color;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1649
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1650
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1651
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1652 //----- (0044CE08) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1653 char GUIWindow::DrawText(GUIFont *a2, signed int uX, int uY, unsigned int uFontColor, const char *Str, int a7, int a8, unsigned int uFontShadowColor)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1654 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1655 GUIWindow *v9; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1656 GUIFont *v10; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1657 int v11; // eax@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1658 signed int v12; // esi@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1659 signed int v13; // edi@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1660 int v14; // edx@9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1661 int v15; // eax@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1662 unsigned int v16; // ecx@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1663 int v17; // eax@27
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1664 int v18; // edi@32
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1665 int v19; // esi@38
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1666 std::string v21; // [sp-18h] [bp-50h]@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1667 const char *v22; // [sp-8h] [bp-40h]@2
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1668 int v23; // [sp-4h] [bp-3Ch]@2
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1669 char Dest[6]; // [sp+Ch] [bp-2Ch]@32
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1670 //char v25; // [sp+Fh] [bp-29h]@32
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1671 //char v26; // [sp+11h] [bp-27h]@34
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1672 const char *v27; // [sp+20h] [bp-18h]@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1673 int v28; // [sp+24h] [bp-14h]@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1674 int v29; // [sp+28h] [bp-10h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1675 size_t v30; // [sp+2Ch] [bp-Ch]@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1676 GUIWindow *v31; // [sp+30h] [bp-8h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1677 const char *v32; // [sp+34h] [bp-4h]@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1678 size_t pInString; // [sp+4Ch] [bp+14h]@11
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1679
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1680 auto a1 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1681 v29 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1682 v9 = a1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1683 v10 = a2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1684 v31 = a1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1685 if ( !Str )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1686 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1687 MessageBoxW(nullptr, L"Invalid string passed!", L"E:\\WORK\\MSDEV\\MM7\\MM7\\Code\\Font.cpp:859", 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1688 return v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1689 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1690 v11 = strcmp(Str, "null");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1691 if ( v11 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1692 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1693 v30 = strlen(Str);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1694 LOBYTE(v11) = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1695 if ( !uX )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1696 uX = 12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1697 if ( a8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1698 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1699 v32 = Str;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1700 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1701 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1702 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1703 v11 = (int)FitTextInAWindow(Str, v10, v9, uX, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1704 v32 = (const char *)v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1705 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1706 v12 = uX + v9->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1707 v13 = uY + v9->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1708 v14 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1709 if ( !a8 || (v11 = v13 + LOBYTE(v10->uFontHeight), v11 <= a8) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1710 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1711 pInString = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1712 if ( (signed int)v30 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1713 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1714 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1715 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1716 LOBYTE(v11) = v32[v14];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1717 if ( (unsigned __int8)v11 >= v10->cFirstChar && (unsigned __int8)v11 <= v10->cLastChar
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1718 || (char)v11 == 12
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1719 || (char)v11 == 13
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1720 || (char)v11 == 9
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1721 || (char)v11 == 10 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1722 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1723 switch ( (unsigned __int8)v11 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1724 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1725 case 9u:
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1726 strncpy(Dest, &v32[v14 + 1], 3u);
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1727 Dest[3] = 0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1728 pInString += 3;
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1729 v29 = atoi(Dest);
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1730 v19 = atoi(Dest);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1731 LOBYTE(v11) = (char)v31;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1732 v12 = uX + v31->uFrameX + v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1733 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1734 case 0xAu:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1735 v11 = LOBYTE(v10->uFontHeight);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1736 uY = uY + v11 - 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1737 v13 = uY + v31->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1738 v12 = uX + v29 + v31->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1739 if ( a8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1740 goto LABEL_36;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1741 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1742 case 0xCu:
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1743 strncpy(Dest, &v32[v14 + 1], 5u);
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1744 Dest[5] = 0;
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1745 v11 = atoi(Dest);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1746 pInString += 5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1747 uFontColor = v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1748 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1749 case 0xDu:
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1750 strncpy(Dest, &v32[v14 + 1], 3u);
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1751 Dest[3] = 0;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1752 pInString += 3;
23
509744251c8e Player-related members
Nomad
parents: 3
diff changeset
1753 v18 = atoi(Dest);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1754 v11 = v10->GetLineWidth(&v32[pInString]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1755 v12 = v31->uFrameZ - v11 - v18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1756 v13 = uY + v31->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1757 if ( a8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1758 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1759 v11 = LOBYTE(v10->uFontHeight);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1760 LABEL_36:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1761 v11 = v11 + v13 - 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1762 if ( v11 > a8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1763 return v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1764 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1765 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1766 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1767 default:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1768 if ( (char)v11 == 34 && v32[v14 + 1] == 34 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1769 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1770 ++v14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1771 pInString = v14;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1772 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1773 v27 = &v32[v14];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1774 v15 = (unsigned __int8)v32[v14];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1775 v16 = *((int *)&v10->cFirstChar + 3 * v15 + 9);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1776 v28 = *((int *)&v10->cFirstChar + 3 * v15 + 9);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1777 if ( v14 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1778 v12 += v10->pMetrics[v15].uLeftSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1779 v17 = (int)((char *)&v10[1] + v10->field_C20[v15]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1780 if ( (short)uFontColor )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1781 pRenderer->DrawText(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1782 v12,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1783 v13,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1784 (unsigned __int8 *)v17,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1785 v16,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1786 LOBYTE(v10->uFontHeight),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1787 v10->pFontPalettes[0],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1788 uFontColor,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1789 uFontShadowColor);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1790 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1791 pRenderer->DrawTextPalette(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1792 v12,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1793 v13,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1794 v17,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1795 v16,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1796 LOBYTE(v10->uFontHeight),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1797 v10->pFontPalettes[0],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1798 a7);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1799 LOBYTE(v11) = v30;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1800 v12 += v28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1801 if ( (signed int)pInString < (signed int)v30 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1802 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1803 LOBYTE(v11) = 3 * *v27;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1804 v12 += v10->pMetrics[(unsigned __int8)*v27].uRightSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1805 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1806 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1807 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1808 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1809 v14 = pInString++ + 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1810 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1811 while ( (signed int)pInString < (signed int)v30 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1812 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1813 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1814 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1815 return v11;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1816 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1817
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1818
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1819 //----- (0044CB4F) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1820 int GUIWindow::DrawTextInRect(GUIFont *a2, unsigned int uX, unsigned int uY, unsigned int uColor, const char *Str1, int Source, int a8)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1821 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1822 GUIFont *v8; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1823 int v9; // ebx@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1824 int v11; // esi@3
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1825 unsigned __int8 v12; // cl@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1826 signed int v13; // esi@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1827 signed int v14; // ebx@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1828 unsigned __int8 v15; // cl@21
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1829 int v16; // eax@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1830 int v17; // ecx@22
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1831 int v18; // ecx@23
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1832 int v19; // ecx@24
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1833 unsigned int v20; // ecx@26
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1834 int v21; // eax@28
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1835 int v22; // ebx@34
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1836 int v23; // eax@34
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1837 int v24; // ebx@36
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1838 char Str; // [sp+Ch] [bp-20h]@34
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1839 char v26; // [sp+Fh] [bp-1Dh]@34
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1840 char v27; // [sp+11h] [bp-1Bh]@35
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1841 int v28; // [sp+20h] [bp-Ch]@17
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1842 GUIWindow *a1; // [sp+24h] [bp-8h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1843 size_t v30; // [sp+28h] [bp-4h]@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1844 size_t Str1a; // [sp+40h] [bp+14h]@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1845 size_t Str1b; // [sp+40h] [bp+14h]@19
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1846 const char *Sourcea; // [sp+44h] [bp+18h]@20
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1847 int v34; // [sp+48h] [bp+1Ch]@26
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1848
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1849 v8 = a2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1850 a1 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1851 v30 = strlen(Str1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1852 v9 = v8->GetLineWidth(Str1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1853 if ( v9 < Source )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1854 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1855 a1->DrawText(v8, uX, uY, uColor, Str1, 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1856 return v9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1857 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1858 strcpy(pTmpBuf2, Str1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1859 v11 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1860 if ( a8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1861 _strrev(pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1862 Str1a = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1863 if ( (signed int)v30 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1864 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1865 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1866 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1867 if ( v11 >= Source )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1868 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1869 if ( v8->IsCharValid(pTmpBuf2[Str1a]) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1870 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1871 if ( v12 < 9u )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1872 goto LABEL_12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1873 if ( v12 > 0xAu )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1874 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1875 if ( v12 == 12 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1876 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1877 Str1a += 5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1878 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1879 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1880 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1881 if ( v12 != 13 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1882 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1883 LABEL_12:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1884 if ( (signed int)Str1a > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1885 v11 += v8->pMetrics[v12].uLeftSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1886 v11 += *((int *)&v8->cFirstChar + 3 * v12 + 9);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1887 if ( (signed int)Str1a < (signed int)v30 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1888 v11 += v8->pMetrics[v12].uRightSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1889 goto LABEL_16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1890 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1891 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1892 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1893 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1894 LABEL_16:
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1895 ++Str1a;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1896 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1897 while ( (signed int)Str1a < (signed int)v30 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1898 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1899 pTmpBuf[Str1a + 1999] = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1900 v30 = strlen(pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1901 v28 = v8->GetLineWidth(pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1902 if ( a8 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1903 _strrev(pTmpBuf2);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1904 Str1b = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1905 v13 = uX + a1->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1906 v14 = uY + a1->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1907 if ( (signed int)v30 > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1908 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1909 Sourcea = &pTmpBuf2[1];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1910 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1911 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1912 if ( v8->IsCharValid(pTmpBuf2[Str1b]) )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1913 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1914 v16 = v15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1915 v17 = v15 - 9;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1916 if ( v17 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1917 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1918 v18 = v17 - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1919 if ( v18 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1920 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1921 v19 = v18 - 2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1922 if ( v19 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1923 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1924 if ( v19 == 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1925 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1926 strncpy(&Str, Sourcea, 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1927 v26 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1928 Str1b += 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1929 Sourcea += 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1930 v22 = atoi(&Str);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1931 v23 = v8->GetLineWidth(&pTmpBuf2[Str1b]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1932 v13 = a1->uFrameZ - v23 - v22;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1933 v14 = uY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1934 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1935 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1936 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1937 v20 = *((int *)&v8->cFirstChar + 3 * v16 + 9);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1938 v34 = *((int *)&v8->cFirstChar + 3 * v16 + 9);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1939 if ( (signed int)Str1b > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1940 v13 += v8->pMetrics[v16].uLeftSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1941 v21 = (int)((char *)&v8[1] + v8->field_C20[v16]);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1942 if ( (short)uColor )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1943 pRenderer->DrawText(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1944 v13,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1945 v14,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1946 (unsigned __int8 *)v21,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1947 v20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1948 LOBYTE(v8->uFontHeight),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1949 v8->pFontPalettes[0],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1950 uColor,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1951 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1952 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1953 pRenderer->DrawTextPalette(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1954 v13,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1955 v14,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1956 v21,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1957 v20,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1958 LOBYTE(v8->uFontHeight),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1959 v8->pFontPalettes[0],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1960 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1961 v13 += v34;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1962 if ( (signed int)Str1b < (signed int)v30 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1963 v13 += v8->pMetrics[(unsigned __int8)pTmpBuf2[Str1b]].uRightSpacing;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1964 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1965 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1966 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1967 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1968 strncpy(&Str, Sourcea, 5u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1969 v27 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1970 Str1b += 5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1971 Sourcea += 5;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1972 uColor = atoi(&Str);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1973 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1974 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1975 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1976 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1977 v24 = LOBYTE(v8->uFontHeight);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1978 v13 = uX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1979 uY = uY + v24 - 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1980 v14 = v24 + uY - 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1981 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1982 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1983 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1984 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1985 strncpy(&Str, Sourcea, 3u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1986 v26 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1987 atoi(&Str);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1988 Str1b += 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1989 Sourcea += 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1990 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1991 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1992 ++Str1b;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1993 ++Sourcea;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1994 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1995 while ( (signed int)Str1b < (signed int)v30 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1996 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1997 return v28;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1998 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
1999
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2000 //----- (0041D12F) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2001 GUIButton *GUIWindow::CreateButton(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, int a6, int a7, unsigned int uControlID, unsigned int uControlParam, unsigned __int8 uHotkey, const char *pName, Texture *pTextures, ...)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2002 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2003 GUIButton *v12; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2004 unsigned int v13; // eax@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2005 unsigned int v14; // ebx@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2006 unsigned int v15; // eax@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2007 unsigned int v16; // ebx@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2008 unsigned int v17; // eax@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2009 Texture *v18; // eax@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2010 Texture **v19; // ecx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2011 Texture **v20; // edx@5
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2012 GUIButton *v21; // eax@7
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2013
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2014 v12 = (GUIButton *)pAllocator->AllocNamedChunk(0, 0xBCu, "BUTTON");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2015 v12->pParent = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2016 v12->uX = uX + this->uFrameX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2017 v13 = uY + this->uFrameY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2018 v12->uHeight = uHeight;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2019 v12->uY = v13;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2020 v12->uWidth = uWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2021 if ( a6 == 2 && !uHeight )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2022 v12->uHeight = uWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2023 v14 = v12->uX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2024 v12->uButtonType = a6;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2025 v15 = v14 + uWidth - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2026 v16 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2027 v12->uZ = v15;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2028 v17 = v12->uY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2029 v12->field_2C = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2030 v12->uW = v17 + uHeight - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2031 v12->field_1C = a7;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2032 v12->uControlID = uControlID;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2033 v12->uControlParam = uControlParam;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2034 v12->uHotkey = uHotkey;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2035 strlen(pName);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2036 strcpy(v12->pButtonName, pName);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2037 v18 = pTextures;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2038 if ( pTextures )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2039 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2040 v19 = &pTextures;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2041 v20 = v12->pTextures;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2042 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2043 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2044 ++v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2045 *v20 = v18;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2046 ++v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2047 ++v20;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2048 v18 = *v19;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2049 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2050 while ( *v19 );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2051 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2052 v12->uNumTextures = v16;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2053 v21 = this->pControlsTail;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2054 if ( v21 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2055 v21->pNext = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2056 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2057 this->pControlsHead = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2058 v12->pPrev = this->pControlsTail;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2059 this->pControlsTail = v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2060 v12->pNext = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2061 ++this->uNumControls;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2062 return v12;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2063 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2064
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2065 //----- (00459C2B) --------------------------------------------------------
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2066 void GUIWindow::DrawFlashingInputCursor(signed int a3, int a4, GUIFont *a2)
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2067 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2068 signed int v4; // esi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2069 GUIWindow *v5; // edi@1
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2070
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2071 v4 = a3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2072 v5 = this;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2073 if ( GetTickCount() % 1000 > 500 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2074 DrawText(a2, v4, a4, 0, "_", 0, 0, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2075 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2076
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2077
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2078 //----- (0041C432) --------------------------------------------------------
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2079 GUIWindow *GUIWindow::Create(unsigned int uX, unsigned int uY, unsigned int uWidth, unsigned int uHeight, WindowType eWindowType, int a4, int a5)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2080 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2081 unsigned int uNextFreeWindowID; // ebp@1
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2082 //int *v8; // eax@1
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2083 //GUIWindow *pWindow; // esi@4
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2084 int v10; // eax@4
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2085 unsigned int v11; // ebx@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2086 NPCData *v12; // ebp@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2087 void *v13; // ecx@18
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2088 bool v14; // eax@20
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2089 void *v15; // ecx@23
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2090 bool v16; // eax@25
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2091 void *v17; // ecx@28
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2092 bool v18; // eax@30
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2093 void *v19; // ecx@33
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2094 bool v20; // eax@35
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2095 void *v21; // ecx@38
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2096 bool v22; // eax@40
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2097 void *v23; // ecx@43
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2098 bool v24; // eax@45
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2099 int v25; // eax@65
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2100 unsigned int v26; // ebx@65
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2101 char *v27; // eax@71
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2102 const char *v29; // [sp-8h] [bp-18h]@68
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2103 char *v30; // [sp-4h] [bp-14h]@68
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2104 int uWidtha; // [sp+14h] [bp+4h]@66
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2105 int a4a; // [sp+20h] [bp+10h]@15
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2106
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2107 uNextFreeWindowID = 0;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2108 for (uNextFreeWindowID = 0; uNextFreeWindowID < 20; ++uNextFreeWindowID)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2109 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2110 if (pWindowList[uNextFreeWindowID].eWindowType == WINDOW_null)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2111 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2112 }
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2113
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2114
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2115 auto pWindow = &pWindowList[uNextFreeWindowID];
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2116 pWindow->uFrameWidth = uWidth;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2117 pWindow->uFrameZ = uX + uWidth - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2118 pWindow->uFrameW = uY + uHeight - 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2119 pWindow->ptr_1C = (void *)a4;
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2120 pWindow->Hint = (char *)a5;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2121 v10 = uNumVisibleWindows;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2122 pWindow->uFrameX = uX;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2123 ++v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2124 pWindow->uFrameY = uY;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2125 pWindow->uFrameHeight = uHeight;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2126 pWindow->eWindowType = eWindowType;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2127 pWindow->field_44 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2128 uNumVisibleWindows = v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2129 pWindow->field_3C = v10;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2130 pVisibleWindowsIdxs[v10] = uNextFreeWindowID + 1;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2131 if ( (signed int)eWindowType <= 20 )
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2132 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2133 if (eWindowType != WINDOW_Chest)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2134 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2135 switch (eWindowType)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2136 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2137 case WINDOW_Book:
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2138 pWindow->InitializeBookView();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2139 break;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2140 case WINDOW_A:
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2141 dword_506978 = pCurrentScreen;
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2142 pCurrentScreen = 4;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2143 ptr_5076F4 = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2144 0x1D7u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2145 0x1BDu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2146 0xA9u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2147 0x23u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2148 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2149 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2150 0x71u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2151 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2152 0,
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2153 pGlobalTXT_LocalizationStrings[79], //"Exit"
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2154 (Texture *)(uTextureID_506438 != -1 ? &pIcons_LOD->pTextures[uTextureID_506438] : 0),
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2155 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2156 if ( pWindow->ptr_1C != (void *)1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2157 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2158 a4a = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2159 v11 = LOBYTE(pFontArrus->uFontHeight) - 3;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2160 v12 = GetNPCData(uDialogue_SpeakingActorNPC_ID);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2161 if ( sub_445C8B(uDialogue_SpeakingActorNPC_ID) == 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2162 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2163 if ( v12->joins )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2164 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2165 pWindow->CreateButton(0x1E0u, 0x82u, 0x8Cu, v11, 1, 0, 0x88u, 0xDu, 0, "", 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2166 a4a = 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2167 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2168 v13 = (void *)v12->bDrawSomeAnim;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2169 if ( v13 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2170 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2171 if ( a4a < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2172 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2173 v14 = sub_4466C4(v13);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2174 if ( v14 == 1 || v14 == 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2175 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2176 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2177 a4a++ * v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2178 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2179 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2180 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2181 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2182 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2183 0x13u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2184 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2185 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2186 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2187 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2188 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2189 v15 = (void *)v12->evtb;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2190 if ( v15 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2191 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2192 if ( a4a < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2193 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2194 v16 = sub_4466C4(v15);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2195 if ( v16 == 1 || v16 == 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2196 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2197 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2198 a4a++ * v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2199 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2200 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2201 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2202 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2203 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2204 0x14u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2205 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2206 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2207 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2208 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2209 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2210 v17 = (void *)v12->evtc;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2211 if ( v17 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2212 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2213 if ( a4a < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2214 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2215 v18 = sub_4466C4(v17);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2216 if ( v18 == 1 || v18 == 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2217 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2218 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2219 a4a++ * v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2220 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2221 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2222 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2223 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2224 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2225 0x15u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2226 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2227 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2228 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2229 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2230 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2231 v19 = (void *)v12->evtd;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2232 if ( v19 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2233 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2234 if ( a4a < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2235 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2236 v20 = sub_4466C4(v19);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2237 if ( v20 == 1 || v20 == 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2238 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2239 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2240 a4a++ * v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2241 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2242 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2243 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2244 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2245 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2246 0x16u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2247 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2248 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2249 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2250 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2251 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2252 v21 = (void *)v12->evte;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2253 if ( v21 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2254 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2255 if ( a4a < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2256 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2257 v22 = sub_4466C4(v21);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2258 if ( v22 == 1 || v22 == 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2259 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2260 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2261 a4a++ * v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2262 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2263 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2264 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2265 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2266 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2267 0x17u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2268 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2269 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2270 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2271 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2272 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2273 v23 = (void *)v12->evtf;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2274 if ( v23 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2275 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2276 if ( a4a < 4 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2277 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2278 v24 = sub_4466C4(v23);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2279 if ( v24 == 1 || v24 == 2 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2280 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2281 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2282 a4a++ * v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2283 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2284 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2285 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2286 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2287 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2288 0x18u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2289 0,
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2290 "",
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2291 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2292 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2293 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2294 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2295 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2296 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2297 if ( v12->joins )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2298 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2299 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2300 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2301 0x82u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2302 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2303 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2304 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2305 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2306 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2307 0x4Du,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2308 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2309 pGlobalTXT_LocalizationStrings[407],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2310 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2311 if ( v12->uFlags & 0x80 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2312 {
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
2313 sprintf(pTmpBuf, pGlobalTXT_LocalizationStrings[408], v12->pName);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2314 pWindow->CreateButton(0x1E0u, v11 + 130, 0x8Cu, v11, 1, 0, 0x88u, 0x4Cu, 0, pTmpBuf, 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2315 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2316 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2317 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2318 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2319 0x1E0u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2320 v11 + 130,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2321 0x8Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2322 v11,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2323 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2324 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2325 0x88u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2326 0x4Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2327 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2328 pGlobalTXT_LocalizationStrings[406],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2329 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2330 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2331 a4a = 2;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2332 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2333 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2334 pWindow->_41D08F(a4a, 1, 0, 1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2335 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2336 break;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2337 case WINDOW_11:
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2338 dword_506978 = pCurrentScreen;
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2339 pCurrentScreen = 17;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2340 ptr_5076F4 = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2341 0x236u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2342 0x1BDu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2343 0x4Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2344 0x21u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2345 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2346 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2347 0x5Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2348 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2349 0x4Eu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2350 pGlobalTXT_LocalizationStrings[156],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2351 (Texture *)(uTextureID_BUTTDESC2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTDESC2] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2352 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2353 ptr_5076FC = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2354 0x1E6u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2355 0x1BDu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2356 0x4Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2357 0x21u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2358 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2359 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2360 0x5Au,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2361 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2362 0x59u,
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2363 pWindow->Hint,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2364 (Texture *)(uTextureID_BUTTYES2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTYES2] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2365 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2366 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2367 _4E5E50_transui_x,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2368 _4E5EE0_transui_y,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2369 0x3Fu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2370 0x49u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2371 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2372 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2373 0x5Au,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2374 1u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2375 0x20u,
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2376 pWindow->Hint,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2377 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2378 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2379 0);
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2380 pWindow->CreateButton(8u, 8u, 0x1CCu, 0x158u, 1, 0, 0x5Au, 1u, 0, pWindow->Hint, 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2381 break;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2382 case WINDOW_12:
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2383 InitializeBookTextures();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2384 pWindow->_411621();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2385 break;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2386 case WINDOW_13:
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2387 dword_506978 = pCurrentScreen;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2388 pKeyActionMap->_459E5A(0, 15, pWindow);
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2389 pCurrentScreen = 19;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2390 break;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2391 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2392 return pWindow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2393 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2394 LABEL_62:
59
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2395 pWindow->CreateButton(0x3Du, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 1u, 0x31u, "", 0);
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2396 pWindow->CreateButton(0xB1u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 2u, 0x32u, "", 0);
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2397 pWindow->CreateButton(0x124u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 3u, 0x33u, "", 0);
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2398 pWindow->CreateButton(0x197u, 0x1A8u, 0x1Fu, 0, 2, 94, 0x6Eu, 4u, 0x34u, "", 0);
5159d2e6f559 BLV render
Nomad
parents: 49
diff changeset
2399 pWindow->CreateButton(0, 0, 0, 0, 1, 0, 0xB0u, 0, 9u, "", 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2400 return pWindow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2401 }
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2402 if (eWindowType == WINDOW_HouseInterior)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2403 {
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2404 pCurrentScreen = 13;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2405 ptr_5076F4 = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2406 0x1D7u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2407 0x1BDu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2408 0xA9u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2409 0x23u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2410 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2411 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2412 0x71u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2413 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2414 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2415 pGlobalTXT_LocalizationStrings[80],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2416 (Texture *)(uTextureID_506438 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_506438] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2417 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2418 v25 = uNumDialogueNPCPortraits;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2419 v26 = 0;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2420 if ( uNumDialogueNPCPortraits > 0 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2421 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2422 do
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2423 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2424 uWidtha = v26 + 1;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2425 if ( v26 + 1 == v25 && uHouse_ExitPic )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2426 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2427 v30 = pMapStats->pInfos[uHouse_ExitPic].pName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2428 v29 = pGlobalTXT_LocalizationStrings[411];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2429 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2430 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2431 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2432 if ( v26 || !dword_591080 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2433 v27 = array_5913D8[v26 - (dword_591080 != 0)]->pName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2434 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2435 //v27 = (char *)p2DEvents_minus1_::08[13 * a4];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2436 v27 = (char *)p2DEvents[a4 - 1].pProprieterName;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2437 v30 = v27;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2438 v29 = pGlobalTXT_LocalizationStrings[435];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2439 }
80
a84fb3752681 28.10.12
Ritor1
parents: 60
diff changeset
2440 sprintf(&byte_591180[100 * v26], v29, v30);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2441 array_5913D8[v26 + 7] = (NPCData *)pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2442 *(&_4E5E50_transui_x + v26 + 6 * uNumDialogueNPCPortraits - 6),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2443 *(&_4E5EE0_transui_y + v26 + 6 * uNumDialogueNPCPortraits - 6),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2444 0x3Fu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2445 0x49u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2446 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2447 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2448 0x19Au,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2449 v26,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2450 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2451 &byte_591180[100 * v26],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2452 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2453 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2454 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2455 ++v26;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2456 v25 = uNumDialogueNPCPortraits;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2457 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2458 while ( uWidtha < uNumDialogueNPCPortraits );
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2459 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2460 if ( v25 == 1 )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2461 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2462 ptr_507BC0 = &pWindowList[uNextFreeWindowID];
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2463 _4B4224_UpdateNPCTopics(0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2464 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2465 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2466 else
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2467 {
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2468 if (eWindowType == WINDOW_1A)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2469 {
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2470 dword_506978 = pCurrentScreen;
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2471 pCurrentScreen = 18;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2472 ptr_5076F4 = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2473 0x236u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2474 0x1BDu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2475 0x4Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2476 0x21u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2477 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2478 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2479 0x19Cu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2480 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2481 0x4Eu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2482 pGlobalTXT_LocalizationStrings[34],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2483 (Texture *)(uTextureID_BUTTDESC2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTDESC2] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2484 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2485 ptr_5076FC = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2486 0x1E6u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2487 0x1BDu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2488 0x4Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2489 0x21u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2490 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2491 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2492 0x19Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2493 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2494 0x59u,
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2495 pWindow->Hint,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2496 (Texture *)(uTextureID_BUTTYES2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTYES2] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2497 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2498 pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2499 _4E5E50_transui_x,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2500 _4E5EE0_transui_y,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2501 0x3Fu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2502 0x49u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2503 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2504 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2505 0x19Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2506 1u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2507 0x20u,
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2508 pWindow->Hint,
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2509 0);
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2510 pWindow->CreateButton(8u, 8u, 0x1CCu, 0x158u, 1, 0, 0x19Bu, 1u, 0, pWindow->Hint, 0);
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2511 return pWindow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2512 }
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2513 if (eWindowType == WINDOW_1B)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2514 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2515 pEventTimer->Pause();
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2516 pAudioPlayer->StopChannels(-1, -1);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2517 pMouse->SetCursorBitmap("MICON2");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2518 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2519 return pWindow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2520 }
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2521 if (eWindowType == WINDOW_1E)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2522 goto LABEL_62;
2
2ca04ccb612a NoCD, main menu, various
Nomad
parents: 0
diff changeset
2523 if (eWindowType == WINDOW_1F)
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2524 {
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2525 pMouse->SetCursorBitmap("MICON2");
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2526 ptr_5076F4 = pWindow->CreateButton(
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2527 0x188u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2528 0x13Eu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2529 0x4Bu,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2530 0x21u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2531 1,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2532 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2533 0x71u,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2534 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2535 0,
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2536 pGlobalTXT_LocalizationStrings[34],
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2537 (Texture *)(uTextureID_BUTTDESC2 != -1 ? (int)&pIcons_LOD->pTextures[uTextureID_BUTTDESC2] : 0),
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2538 0);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2539 ShowStatusBarString(pGlobalTXT_LocalizationStrings[39], 2u);
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2540 ++pIcons_LOD->uTexturePacksCount;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2541 pWindowList_at_506F50_minus1_indexing_buttons____and_an_int_[0] = 103;
44
916bec351934 22.10.12(pCurrentScreen)
Ritor1
parents: 26
diff changeset
2542 pCurrentScreen = 23;
0
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2543 if ( !pIcons_LOD->uNumPrevLoadedFiles )
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2544 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2545 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2546 }
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2547 return pWindow;
8b8875f5b359 Initial commit
Nomad
parents:
diff changeset
2548 }