annotate Mouse.cpp @ 1296:c423f946dc99

moving files continue
author Ritor1
date Tue, 18 Jun 2013 17:28:11 +0600
parents 0aeac0b9ca30
children 5450af4f57ef
rev   line source
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
1 #ifdef _MSC_VER
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
2 #define _CRT_SECURE_NO_WARNINGS
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
3 #endif
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
4
0
Ritor1
parents:
diff changeset
5
1262
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1253
diff changeset
6 #include "Texture.h"
0aeac0b9ca30 included header cleanup
Grumpy7
parents: 1253
diff changeset
7 #include "mm7_data.h"
1253
fac7751b2dc9 included header cleanup
Grumpy7
parents: 1165
diff changeset
8 #include "Render.h"
0
Ritor1
parents:
diff changeset
9 #include "Mouse.h"
Ritor1
parents:
diff changeset
10 #include "Items.h"
Ritor1
parents:
diff changeset
11 #include "Party.h"
Ritor1
parents:
diff changeset
12 #include "LOD.h"
Ritor1
parents:
diff changeset
13 #include "Game.h"
Ritor1
parents:
diff changeset
14
1016
c45d51b3f4f4 Included header files cleanup
Grumpy7
parents: 973
diff changeset
15 #include "stru11.h"
1296
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
16 #include "TurnEngine.h"
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
17 #include "Viewport.h"
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
18 #include "GUIWindow.h"
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
19 #include "Vis.h"
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
20 #include "Actor.h"
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
21 #include "MM7.h"
0
Ritor1
parents:
diff changeset
22
Ritor1
parents:
diff changeset
23
Ritor1
parents:
diff changeset
24 Mouse *pMouse;
Ritor1
parents:
diff changeset
25
Ritor1
parents:
diff changeset
26
Ritor1
parents:
diff changeset
27
Ritor1
parents:
diff changeset
28
Ritor1
parents:
diff changeset
29
Ritor1
parents:
diff changeset
30 //----- (00469860) --------------------------------------------------------
Ritor1
parents:
diff changeset
31 void Mouse::GetClickPos(unsigned int *pX, unsigned int *pY)
Ritor1
parents:
diff changeset
32 {
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
33 *pX = uMouseClickX;
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
34 *pY = uMouseClickY;
0
Ritor1
parents:
diff changeset
35 }
Ritor1
parents:
diff changeset
36
Ritor1
parents:
diff changeset
37 //----- (004698A6) --------------------------------------------------------
Ritor1
parents:
diff changeset
38 void Mouse::RemoveHoldingItem()
Ritor1
parents:
diff changeset
39 {
Ritor1
parents:
diff changeset
40 pParty->pPickedItem.Reset();
1165
29a8defbad9e temporary _CRT_SECURE_NO_WARNINGS to remove some warnings
Grumpy7
parents: 1104
diff changeset
41 if (_stricmp(pCurrentCursorName, "MICON2"))
0
Ritor1
parents:
diff changeset
42 SetCursorBitmap("MICON1");
Ritor1
parents:
diff changeset
43 }
Ritor1
parents:
diff changeset
44
Ritor1
parents:
diff changeset
45 //----- (004698D8) --------------------------------------------------------
Ritor1
parents:
diff changeset
46 void Mouse::SetCursorBitmapFromItemID(unsigned int uItemID)
Ritor1
parents:
diff changeset
47 {
Ritor1
parents:
diff changeset
48 pMouse->SetCursorBitmap(pItemsTable->pItems[uItemID].pIconName);
Ritor1
parents:
diff changeset
49 }
Ritor1
parents:
diff changeset
50
Ritor1
parents:
diff changeset
51 //----- (004698F6) --------------------------------------------------------
Ritor1
parents:
diff changeset
52 void Mouse::SetCurrentCursorBitmap()
Ritor1
parents:
diff changeset
53 {
Ritor1
parents:
diff changeset
54 SetCursorBitmap(pCurrentCursorName);
Ritor1
parents:
diff changeset
55 }
Ritor1
parents:
diff changeset
56
Ritor1
parents:
diff changeset
57 //----- (00469903) --------------------------------------------------------
Ritor1
parents:
diff changeset
58 void Mouse::SetCursorBitmap(const char *pName)
Ritor1
parents:
diff changeset
59 {
Ritor1
parents:
diff changeset
60 Mouse *v2; // esi@1
Ritor1
parents:
diff changeset
61 HCURSOR v3; // eax@10
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
62 //int v4; // ecx@10
0
Ritor1
parents:
diff changeset
63 double v5; // st7@11
Ritor1
parents:
diff changeset
64 float v6; // ST04_4@12
Ritor1
parents:
diff changeset
65 LONG v7; // eax@14
Ritor1
parents:
diff changeset
66 LONG v8; // eax@17
Ritor1
parents:
diff changeset
67 unsigned int v9; // eax@21
Ritor1
parents:
diff changeset
68 float v10; // [sp+4h] [bp-18h]@11
Ritor1
parents:
diff changeset
69 struct tagPOINT Point; // [sp+14h] [bp-8h]@20
Ritor1
parents:
diff changeset
70
Ritor1
parents:
diff changeset
71 v2 = this;
Ritor1
parents:
diff changeset
72 if ( !this->bInitialized || !pName )
Ritor1
parents:
diff changeset
73 return;
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1068
diff changeset
74 if ( _stricmp("MICON2", pName) )
0
Ritor1
parents:
diff changeset
75 pGame->uFlags2 &= 0xFFFFFFEFu;
Ritor1
parents:
diff changeset
76 else
Ritor1
parents:
diff changeset
77 pGame->uFlags2 |= 0x10u;
1104
5d5c78088274 strcmpi to stricmp conversion
Grumpy7
parents: 1068
diff changeset
78 if ( _stricmp(v2->pCurrentCursorName, pName) )
0
Ritor1
parents:
diff changeset
79 strcpy(v2->pCurrentCursorName, pName);
Ritor1
parents:
diff changeset
80 ClearCursor();
Ritor1
parents:
diff changeset
81 if ( _strnicmp(pName, "MICON1", 5u) )
Ritor1
parents:
diff changeset
82 {
Ritor1
parents:
diff changeset
83 v9 = pIcons_LOD->LoadTexture(pName, TEXTURE_16BIT_PALETTE);
Ritor1
parents:
diff changeset
84 v2->uCursorTextureID = v9;
Ritor1
parents:
diff changeset
85 v2->uCursorTextureID_2 = v9;
Ritor1
parents:
diff changeset
86 v2->AllocCursorSystemMem();
Ritor1
parents:
diff changeset
87 v2->field_C = 0;
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 779
diff changeset
88 v2->bRedraw = 1;
0
Ritor1
parents:
diff changeset
89 v2->bActive = 1;
Ritor1
parents:
diff changeset
90 if ( !areWeLoadingTexture )
Ritor1
parents:
diff changeset
91 {
Ritor1
parents:
diff changeset
92 if (uCursorTextureID != -1)
Ritor1
parents:
diff changeset
93 pIcons_LOD->pTextures[uCursorTextureID].Release();
1006
e865f349aa41 ui cleanup
Gloval
parents: 973
diff changeset
94 pIcons_LOD->SyncLoadedFilesCount();
0
Ritor1
parents:
diff changeset
95 }
Ritor1
parents:
diff changeset
96 return;
Ritor1
parents:
diff changeset
97 }
Ritor1
parents:
diff changeset
98 v2->bActive = 0;
Ritor1
parents:
diff changeset
99 v2->field_C = 1;
Ritor1
parents:
diff changeset
100 if ( !strcmp(pName, "MICON1") )
Ritor1
parents:
diff changeset
101 {
Ritor1
parents:
diff changeset
102 v3 = LoadCursorA(GetModuleHandleW(nullptr), "Arrow");
Ritor1
parents:
diff changeset
103 SetClassLongA(hWnd, GCL_HCURSOR, (LONG)v3);
Ritor1
parents:
diff changeset
104 }
1068
6cbf4eb0f953 Mouse jumps fixed
zipi
parents: 1038
diff changeset
105 else if ( !strcmp(pName, "MICON2") )
0
Ritor1
parents:
diff changeset
106 {
Ritor1
parents:
diff changeset
107 v7 = (LONG)LoadCursorA(GetModuleHandleW(nullptr), "Target");
Ritor1
parents:
diff changeset
108 SetClassLongA(hWnd, -12, v7);
Ritor1
parents:
diff changeset
109 }
1068
6cbf4eb0f953 Mouse jumps fixed
zipi
parents: 1038
diff changeset
110 else if ( !strcmp(pName, "MICON3") )
0
Ritor1
parents:
diff changeset
111 {
Ritor1
parents:
diff changeset
112 v8 = (LONG)LoadCursorA(0, (LPCSTR)IDC_WAIT);
Ritor1
parents:
diff changeset
113 SetClassLongA(hWnd, -12, v8);
Ritor1
parents:
diff changeset
114 }
779
2a3fd4d89ec2 Mouse::SetCursorBitmap clean, mouse jump fix
zipi
parents: 762
diff changeset
115 //LABEL_18:
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
116
779
2a3fd4d89ec2 Mouse::SetCursorBitmap clean, mouse jump fix
zipi
parents: 762
diff changeset
117 GetCursorPos(&Point);
1068
6cbf4eb0f953 Mouse jumps fixed
zipi
parents: 1038
diff changeset
118 ClientToScreen(hWnd,&Point);
779
2a3fd4d89ec2 Mouse::SetCursorBitmap clean, mouse jump fix
zipi
parents: 762
diff changeset
119 SetCursorPos(Point.x, Point.y);
0
Ritor1
parents:
diff changeset
120 }
Ritor1
parents:
diff changeset
121 // 506128: using guessed type int areWeLoadingTexture;
Ritor1
parents:
diff changeset
122
Ritor1
parents:
diff changeset
123 //----- (00469AE4) --------------------------------------------------------
Ritor1
parents:
diff changeset
124 LONG Mouse::_469AE4()
Ritor1
parents:
diff changeset
125 {
Ritor1
parents:
diff changeset
126 Mouse *v1; // esi@1
Ritor1
parents:
diff changeset
127 LONG v2; // ecx@2
Ritor1
parents:
diff changeset
128 LONG result; // eax@2
Ritor1
parents:
diff changeset
129 struct tagPOINT Point; // [sp+Ch] [bp-8h]@2
Ritor1
parents:
diff changeset
130
Ritor1
parents:
diff changeset
131 v1 = this;
Ritor1
parents:
diff changeset
132 this->field_8 = 1;
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
133 /*if (pAsyncMouse)
0
Ritor1
parents:
diff changeset
134 {
Ritor1
parents:
diff changeset
135 v2 = *((int *)pAsyncMouse + 6);
Ritor1
parents:
diff changeset
136 Point.x = *((int *)pAsyncMouse + 6);
Ritor1
parents:
diff changeset
137 result = *((int *)pAsyncMouse + 7);
Ritor1
parents:
diff changeset
138 }
Ritor1
parents:
diff changeset
139 else
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
140 {*/
0
Ritor1
parents:
diff changeset
141 GetCursorPos(&Point);
Ritor1
parents:
diff changeset
142 if ( pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
143 ScreenToClient(hWnd, &Point);
Ritor1
parents:
diff changeset
144 result = Point.y;
Ritor1
parents:
diff changeset
145 v2 = Point.x;
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
146 //}
0
Ritor1
parents:
diff changeset
147 v1->uMouseClickX = v2;
Ritor1
parents:
diff changeset
148 v1->uMouseClickY = result;
Ritor1
parents:
diff changeset
149 if ( pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
150 goto LABEL_16;
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
151 //if (pAsyncMouse)
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
152 // goto LABEL_24;
0
Ritor1
parents:
diff changeset
153 if ( v2 < 0 )
Ritor1
parents:
diff changeset
154 v2 = 0;
Ritor1
parents:
diff changeset
155 if ( result < 0 )
Ritor1
parents:
diff changeset
156 result = 0;
Ritor1
parents:
diff changeset
157 if ( v2 > 639 )
Ritor1
parents:
diff changeset
158 v2 = 639;
Ritor1
parents:
diff changeset
159 if ( result > 479 )
Ritor1
parents:
diff changeset
160 {
Ritor1
parents:
diff changeset
161 result = 479;
Ritor1
parents:
diff changeset
162 LABEL_16:
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
163 //if (pAsyncMouse)
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
164 // goto LABEL_24;
0
Ritor1
parents:
diff changeset
165 if ( pRenderer->bWindowMode && (v2 < 0 || result < 0 || v2 > 639 || result > 479) )
Ritor1
parents:
diff changeset
166 goto LABEL_23;
Ritor1
parents:
diff changeset
167 }
Ritor1
parents:
diff changeset
168 if ( v1->field_C )
Ritor1
parents:
diff changeset
169 LABEL_23:
Ritor1
parents:
diff changeset
170 v1->bActive = 0;
Ritor1
parents:
diff changeset
171 LABEL_24:
Ritor1
parents:
diff changeset
172 v1->field_8 = 0;
Ritor1
parents:
diff changeset
173 return result;
Ritor1
parents:
diff changeset
174 }
Ritor1
parents:
diff changeset
175
Ritor1
parents:
diff changeset
176 //----- (00469BA3) --------------------------------------------------------
Ritor1
parents:
diff changeset
177 void Mouse::ClearCursor()
Ritor1
parents:
diff changeset
178 {
Ritor1
parents:
diff changeset
179 Mouse *v1; // esi@1
Ritor1
parents:
diff changeset
180 void *v2; // eax@1
Ritor1
parents:
diff changeset
181 void **v3; // esi@5
Ritor1
parents:
diff changeset
182
Ritor1
parents:
diff changeset
183 v1 = this;
Ritor1
parents:
diff changeset
184 v2 = this->pCursorBitmap_sysmem;
Ritor1
parents:
diff changeset
185 this->bActive = 0;
Ritor1
parents:
diff changeset
186 if ( v2 )
Ritor1
parents:
diff changeset
187 {
Ritor1
parents:
diff changeset
188 free(v2);
Ritor1
parents:
diff changeset
189 v1->pCursorBitmap_sysmem = 0;
Ritor1
parents:
diff changeset
190 }
Ritor1
parents:
diff changeset
191 if ( v1->pCursorBitmap2_sysmem )
Ritor1
parents:
diff changeset
192 {
Ritor1
parents:
diff changeset
193 free(v1->pCursorBitmap2_sysmem);
Ritor1
parents:
diff changeset
194 v1->pCursorBitmap2_sysmem = 0;
Ritor1
parents:
diff changeset
195 }
Ritor1
parents:
diff changeset
196 v3 = &v1->ptr_90;
Ritor1
parents:
diff changeset
197 if ( *v3 )
Ritor1
parents:
diff changeset
198 free(*v3);
Ritor1
parents:
diff changeset
199 *v3 = 0;
Ritor1
parents:
diff changeset
200 }
Ritor1
parents:
diff changeset
201
Ritor1
parents:
diff changeset
202 //----- (00469BE6) --------------------------------------------------------
Ritor1
parents:
diff changeset
203 void Mouse::AllocCursorSystemMem()
Ritor1
parents:
diff changeset
204 {
Ritor1
parents:
diff changeset
205 bActive = 0;
Ritor1
parents:
diff changeset
206 if (!pCursorBitmap_sysmem)
Ritor1
parents:
diff changeset
207 pCursorBitmap_sysmem = (unsigned __int16 *)DoAllocCursorMem();
Ritor1
parents:
diff changeset
208 if (!pCursorBitmap2_sysmem)
Ritor1
parents:
diff changeset
209 pCursorBitmap2_sysmem = (unsigned __int8 *)DoAllocCursorMem();
Ritor1
parents:
diff changeset
210 }
Ritor1
parents:
diff changeset
211
Ritor1
parents:
diff changeset
212 //----- (00469C0D) --------------------------------------------------------
Ritor1
parents:
diff changeset
213 void *Mouse::DoAllocCursorMem()
Ritor1
parents:
diff changeset
214 {
973
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
215 auto tex = pIcons_LOD->GetTexture(uCursorTextureID);
ec7568e13b24 Minor code cleaning.
Nomad
parents: 972
diff changeset
216 return malloc(4 * tex->uTextureWidth * tex->uTextureHeight);
0
Ritor1
parents:
diff changeset
217 }
Ritor1
parents:
diff changeset
218
Ritor1
parents:
diff changeset
219 //----- (00469C39) --------------------------------------------------------
Ritor1
parents:
diff changeset
220 POINT *Mouse::GetCursorPos(POINT *a2)
Ritor1
parents:
diff changeset
221 {
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
222 a2->x = this->uMouseClickX;
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
223 a2->y = this->uMouseClickY;
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
224 return a2;
0
Ritor1
parents:
diff changeset
225 }
Ritor1
parents:
diff changeset
226
Ritor1
parents:
diff changeset
227 //----- (00469C65) --------------------------------------------------------
Ritor1
parents:
diff changeset
228 void Mouse::Initialize(HWND hWnd)
Ritor1
parents:
diff changeset
229 {
Ritor1
parents:
diff changeset
230 this->hWnd = hWnd;
Ritor1
parents:
diff changeset
231 this->bActive = 0;
Ritor1
parents:
diff changeset
232 this->bInitialized = 1;
Ritor1
parents:
diff changeset
233 this->pCursorBitmapPos.x = 0;
Ritor1
parents:
diff changeset
234 this->pCursorBitmapPos.y = 0;
Ritor1
parents:
diff changeset
235 this->uMouseClickX = 0;
Ritor1
parents:
diff changeset
236 this->uMouseClickY = 0;
Ritor1
parents:
diff changeset
237 this->pCursorBitmap_sysmem = 0;
Ritor1
parents:
diff changeset
238 this->field_34 = 0;
Ritor1
parents:
diff changeset
239 this->pCursorBitmap2_sysmem = 0;
Ritor1
parents:
diff changeset
240
Ritor1
parents:
diff changeset
241 SetCursorBitmap("MICON3");
Ritor1
parents:
diff changeset
242 SetCursorBitmap("MICON2");
Ritor1
parents:
diff changeset
243 SetCursorBitmap("MICON1");
Ritor1
parents:
diff changeset
244 }
Ritor1
parents:
diff changeset
245
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
246 // inlined
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
247 //----- (0045FE00) mm6 chinese --------------------------------------------
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
248 void Mouse::SetActive(bool active)
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
249 {
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
250 bActive = active;
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
251 }
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
252
0
Ritor1
parents:
diff changeset
253 //----- (00469CC2) --------------------------------------------------------
Ritor1
parents:
diff changeset
254 void Mouse::Deactivate()
Ritor1
parents:
diff changeset
255 {
Ritor1
parents:
diff changeset
256 if (bInitialized)
762
cf2fbac6edc9 Misc cleaning
Nomad
parents: 710
diff changeset
257 SetActive(false);
0
Ritor1
parents:
diff changeset
258 }
Ritor1
parents:
diff changeset
259
Ritor1
parents:
diff changeset
260 //----- (00469CCD) --------------------------------------------------------
Ritor1
parents:
diff changeset
261 void Mouse::DrawCursor()
Ritor1
parents:
diff changeset
262 {
Ritor1
parents:
diff changeset
263 Mouse *v1; // esi@1
Ritor1
parents:
diff changeset
264 char v11; // zf@6
Ritor1
parents:
diff changeset
265 signed int v3; // eax@6
Ritor1
parents:
diff changeset
266 signed int v4; // ecx@6
Ritor1
parents:
diff changeset
267 Vec4_int_ *v5; // edx@21
Ritor1
parents:
diff changeset
268 int v6; // edi@21
Ritor1
parents:
diff changeset
269 int v7; // ebx@21
Ritor1
parents:
diff changeset
270 int v8; // eax@29
Ritor1
parents:
diff changeset
271 unsigned int v9; // eax@31
Ritor1
parents:
diff changeset
272
Ritor1
parents:
diff changeset
273 v1 = this;
Ritor1
parents:
diff changeset
274 if ( this->bInitialized )
Ritor1
parents:
diff changeset
275 {
Ritor1
parents:
diff changeset
276 if ( !this->field_8 && this->bActive && !this->field_C )
Ritor1
parents:
diff changeset
277 pMouse->_469AE4();
Ritor1
parents:
diff changeset
278 v11 = v1->field_C == 0;
Ritor1
parents:
diff changeset
279 v3 = v1->uMouseClickX;
Ritor1
parents:
diff changeset
280 v4 = v1->uMouseClickY;
Ritor1
parents:
diff changeset
281 v1->field_F4 = 1;
Ritor1
parents:
diff changeset
282 if ( !v11 )
Ritor1
parents:
diff changeset
283 goto LABEL_12;
Ritor1
parents:
diff changeset
284 if ( pRenderer->bWindowMode )
Ritor1
parents:
diff changeset
285 {
Ritor1
parents:
diff changeset
286 if ( v3 < 0 || v4 < 0 || v3 > 639 || v4 > 479 )
Ritor1
parents:
diff changeset
287 {
Ritor1
parents:
diff changeset
288 LABEL_12:
Ritor1
parents:
diff changeset
289 v1->field_F4 = 0;
Ritor1
parents:
diff changeset
290 return;
Ritor1
parents:
diff changeset
291 }
Ritor1
parents:
diff changeset
292 }
Ritor1
parents:
diff changeset
293 else
Ritor1
parents:
diff changeset
294 {
Ritor1
parents:
diff changeset
295 if ( v3 < 0 )
Ritor1
parents:
diff changeset
296 v3 = 0;
Ritor1
parents:
diff changeset
297 if ( v4 < 0 )
Ritor1
parents:
diff changeset
298 v4 = 0;
Ritor1
parents:
diff changeset
299 if ( v3 > 639 )
Ritor1
parents:
diff changeset
300 v3 = 639;
Ritor1
parents:
diff changeset
301 if ( v4 > 479 )
Ritor1
parents:
diff changeset
302 v4 = 479;
Ritor1
parents:
diff changeset
303 }
Ritor1
parents:
diff changeset
304 v5 = &v1->pCursorBitmapRect;
Ritor1
parents:
diff changeset
305 v6 = v3 + v1->uCursorBitmapPitch;
Ritor1
parents:
diff changeset
306 v7 = v4 + v1->field_5C[0];
Ritor1
parents:
diff changeset
307 v1->pCursorBitmapRect.y = v4;
Ritor1
parents:
diff changeset
308 v1->pCursorBitmapRect.x = v3;
Ritor1
parents:
diff changeset
309 v1->pCursorBitmapRect.z = v6;
Ritor1
parents:
diff changeset
310 v1->pCursorBitmapRect.w = v7;
Ritor1
parents:
diff changeset
311 if ( v3 < 0 )
Ritor1
parents:
diff changeset
312 v5->x = 0;
Ritor1
parents:
diff changeset
313 if ( v4 < 0 )
Ritor1
parents:
diff changeset
314 v1->pCursorBitmapRect.y = 0;
Ritor1
parents:
diff changeset
315 if ( v6 > 640 )
Ritor1
parents:
diff changeset
316 v1->pCursorBitmapRect.z = 640;
Ritor1
parents:
diff changeset
317 if ( v7 > 480 )
Ritor1
parents:
diff changeset
318 v1->pCursorBitmapRect.w = 480;
Ritor1
parents:
diff changeset
319 v8 = v1->pCursorBitmapRect.z;
Ritor1
parents:
diff changeset
320 v1->bActive = 0;
Ritor1
parents:
diff changeset
321 v1->uCursorBitmapWidth = v8 - v5->x;
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 779
diff changeset
322 v11 = v1->bRedraw == 0;
0
Ritor1
parents:
diff changeset
323 v1->uCursorBitmapHeight = v1->pCursorBitmapRect.w - v1->pCursorBitmapRect.y;
Ritor1
parents:
diff changeset
324 if ( !v11 )
Ritor1
parents:
diff changeset
325 {
Ritor1
parents:
diff changeset
326 if ( pMouse->ptr_90 )
Ritor1
parents:
diff changeset
327 v9 = 2 * pMouse->uCursorBitmapPitch;
Ritor1
parents:
diff changeset
328 else
Ritor1
parents:
diff changeset
329 v9 = 0;
Ritor1
parents:
diff changeset
330 pRenderer->_4A6DF5(
Ritor1
parents:
diff changeset
331 v1->pCursorBitmap_sysmem,
Ritor1
parents:
diff changeset
332 v9,
Ritor1
parents:
diff changeset
333 &v1->pCursorBitmapPos,
Ritor1
parents:
diff changeset
334 pRenderer->pTargetSurface,
Ritor1
parents:
diff changeset
335 pRenderer->uTargetSurfacePitch,
Ritor1
parents:
diff changeset
336 &v1->pCursorBitmapRect);
791
346f7069676a Indoor::GetSector and various stuff
Nomad
parents: 779
diff changeset
337 v1->bRedraw = false;
0
Ritor1
parents:
diff changeset
338 }
Ritor1
parents:
diff changeset
339 }
Ritor1
parents:
diff changeset
340 }
Ritor1
parents:
diff changeset
341
Ritor1
parents:
diff changeset
342 //----- (00469E1C) --------------------------------------------------------
Ritor1
parents:
diff changeset
343 void Mouse::_469E1C()
Ritor1
parents:
diff changeset
344 {
Ritor1
parents:
diff changeset
345 bActive = true;
Ritor1
parents:
diff changeset
346 }
Ritor1
parents:
diff changeset
347
Ritor1
parents:
diff changeset
348 //----- (00469E24) --------------------------------------------------------
Ritor1
parents:
diff changeset
349 void Mouse::_469E24()
Ritor1
parents:
diff changeset
350 {
Ritor1
parents:
diff changeset
351 if (pCursorBitmap3_sysmembits_16bit)
Ritor1
parents:
diff changeset
352 {
Ritor1
parents:
diff changeset
353 free(pCursorBitmap3_sysmembits_16bit);
Ritor1
parents:
diff changeset
354 pCursorBitmap3_sysmembits_16bit = 0;
Ritor1
parents:
diff changeset
355 }
Ritor1
parents:
diff changeset
356 }
Ritor1
parents:
diff changeset
357
Ritor1
parents:
diff changeset
358 //----- (00469E3B) --------------------------------------------------------
Ritor1
parents:
diff changeset
359 void Mouse::DrawCursorToTarget()
Ritor1
parents:
diff changeset
360 {
Ritor1
parents:
diff changeset
361 if (!pCursorBitmap3_sysmembits_16bit)
Ritor1
parents:
diff changeset
362 return;
Ritor1
parents:
diff changeset
363
Ritor1
parents:
diff changeset
364 auto pSrc = pCursorBitmap3_sysmembits_16bit;
Ritor1
parents:
diff changeset
365 for (uint y = field_44; y < field_4C; ++y)
Ritor1
parents:
diff changeset
366 for (uint x = field_40; x < field_48; ++x)
Ritor1
parents:
diff changeset
367 pRenderer->pTargetSurface[y * pRenderer->uTargetSurfacePitch + x] = *pSrc++;
Ritor1
parents:
diff changeset
368 }
Ritor1
parents:
diff changeset
369
Ritor1
parents:
diff changeset
370 //----- (00469EA4) --------------------------------------------------------
Ritor1
parents:
diff changeset
371 void Mouse::_469EA4()
Ritor1
parents:
diff changeset
372 {
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
373 //Mouse *v1; // esi@1
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
374 unsigned int pTextureID; // eax@2
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
375 Texture *pTexture; // edi@2
0
Ritor1
parents:
diff changeset
376 unsigned int v4; // ecx@3
Ritor1
parents:
diff changeset
377 unsigned int v5; // eax@3
Ritor1
parents:
diff changeset
378 unsigned int v6; // ebx@5
Ritor1
parents:
diff changeset
379 int v7; // ecx@15
Ritor1
parents:
diff changeset
380 int v8; // ecx@25
Ritor1
parents:
diff changeset
381 int v9; // ebx@26
Ritor1
parents:
diff changeset
382 unsigned int v10; // eax@26
Ritor1
parents:
diff changeset
383 int v11; // edx@27
Ritor1
parents:
diff changeset
384 unsigned __int16 *v12; // edx@29
Ritor1
parents:
diff changeset
385 unsigned __int16 *v13; // ebx@29
Ritor1
parents:
diff changeset
386 unsigned int a2; // [sp+Ch] [bp-1Ch]@5
Ritor1
parents:
diff changeset
387 unsigned int v15; // [sp+10h] [bp-18h]@5
Ritor1
parents:
diff changeset
388 unsigned int v16; // [sp+14h] [bp-14h]@25
Ritor1
parents:
diff changeset
389 unsigned __int16 *v17; // [sp+18h] [bp-10h]@25
Ritor1
parents:
diff changeset
390 int v18; // [sp+1Ch] [bp-Ch]@27
Ritor1
parents:
diff changeset
391 int v19; // [sp+20h] [bp-8h]@15
Ritor1
parents:
diff changeset
392 unsigned __int16 *v20; // [sp+20h] [bp-8h]@28
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
393 int pTextureWidth; // [sp+24h] [bp-4h]@12
0
Ritor1
parents:
diff changeset
394 unsigned __int16 *v22; // [sp+24h] [bp-4h]@25
Ritor1
parents:
diff changeset
395
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
396 //v1 = this;
0
Ritor1
parents:
diff changeset
397 if ( pParty->pPickedItem.uItemID )
Ritor1
parents:
diff changeset
398 {
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
399 pTextureID = pIcons_LOD->LoadTexture(pItemsTable->pItems[pParty->pPickedItem.uItemID].pIconName, TEXTURE_16BIT_PALETTE);
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
400 pTexture = (Texture *)(pTextureID != -1 ? (int)&pIcons_LOD->pTextures[pTextureID] : 0);
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
401
0
Ritor1
parents:
diff changeset
402 v4 = pMouse->uMouseClickX;
Ritor1
parents:
diff changeset
403 v5 = pMouse->uMouseClickY;
1038
39f42990698f Cleanings
Nomad
parents: 1018
diff changeset
404
0
Ritor1
parents:
diff changeset
405 v6 = v5;
Ritor1
parents:
diff changeset
406 a2 = v4;
Ritor1
parents:
diff changeset
407 v15 = v5;
Ritor1
parents:
diff changeset
408 if ( (signed int)v4 <= 639 && (signed int)v5 <= 479 )
Ritor1
parents:
diff changeset
409 {
Ritor1
parents:
diff changeset
410 if ( (v4 & 0x80000000u) != 0 )
Ritor1
parents:
diff changeset
411 a2 = 0;
Ritor1
parents:
diff changeset
412 if ( (v5 & 0x80000000u) != 0 )
Ritor1
parents:
diff changeset
413 {
Ritor1
parents:
diff changeset
414 v6 = 0;
Ritor1
parents:
diff changeset
415 v15 = 0;
Ritor1
parents:
diff changeset
416 }
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
417 if ( (signed int)(pTexture->uTextureWidth + a2) <= 640 )
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
418 pTextureWidth = pTexture->uTextureWidth;
0
Ritor1
parents:
diff changeset
419 else
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
420 pTextureWidth = 640 - a2;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
421 if ( (signed int)(pTexture->uTextureHeight + v6) <= 480 )
0
Ritor1
parents:
diff changeset
422 {
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
423 v19 = pTexture->uTextureHeight;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
424 v7 = pTexture->uTextureHeight;
0
Ritor1
parents:
diff changeset
425 }
Ritor1
parents:
diff changeset
426 else
Ritor1
parents:
diff changeset
427 {
Ritor1
parents:
diff changeset
428 v7 = 480 - v6;
Ritor1
parents:
diff changeset
429 v19 = 480 - v6;
Ritor1
parents:
diff changeset
430 }
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
431 if ( !this->pCursorBitmap3_sysmembits_16bit
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
432 || a2 != this->field_40
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
433 || v6 != this->field_44
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
434 || a2 + pTextureWidth != this->field_48
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
435 || v6 + v7 != this->field_4C )
0
Ritor1
parents:
diff changeset
436 {
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
437 if ( this->pCursorBitmap3_sysmembits_16bit )
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
438 free(this->pCursorBitmap3_sysmembits_16bit);
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
439 this->pCursorBitmap3_sysmembits_16bit = (unsigned __int16 *)operator new(2 * pTexture->uTextureHeight * pTexture->uTextureWidth);
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
440 this->field_40 = a2;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
441 this->field_48 = a2 + pTextureWidth;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
442 this->field_44 = v6;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
443 this->field_4C = v6 + v19;
0
Ritor1
parents:
diff changeset
444 }
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
445 v8 = this->field_44;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
446 v22 = this->pCursorBitmap3_sysmembits_16bit;
0
Ritor1
parents:
diff changeset
447 v17 = pRenderer->pTargetSurface;
Ritor1
parents:
diff changeset
448 v16 = pRenderer->uTargetSurfacePitch;
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
449 if ( v8 < this->field_4C )
0
Ritor1
parents:
diff changeset
450 {
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
451 v9 = this->field_48;
0
Ritor1
parents:
diff changeset
452 v10 = pRenderer->uTargetSurfacePitch * v8;
Ritor1
parents:
diff changeset
453 do
Ritor1
parents:
diff changeset
454 {
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
455 v11 = this->field_40;
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
456 v18 = this->field_40;
0
Ritor1
parents:
diff changeset
457 if ( v11 < v9 )
Ritor1
parents:
diff changeset
458 {
Ritor1
parents:
diff changeset
459 v20 = &v17[v10 + v11];
Ritor1
parents:
diff changeset
460 do
Ritor1
parents:
diff changeset
461 {
Ritor1
parents:
diff changeset
462 v12 = v20;
Ritor1
parents:
diff changeset
463 v13 = v22;
Ritor1
parents:
diff changeset
464 ++v18;
Ritor1
parents:
diff changeset
465 ++v20;
Ritor1
parents:
diff changeset
466 ++v22;
Ritor1
parents:
diff changeset
467 *v13 = *v12;
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
468 v9 = this->field_48;
0
Ritor1
parents:
diff changeset
469 }
Ritor1
parents:
diff changeset
470 while ( v18 < v9 );
Ritor1
parents:
diff changeset
471 }
Ritor1
parents:
diff changeset
472 v10 += v16;
Ritor1
parents:
diff changeset
473 ++v8;
Ritor1
parents:
diff changeset
474 }
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
475 while ( v8 < this->field_4C );
0
Ritor1
parents:
diff changeset
476 v6 = v15;
Ritor1
parents:
diff changeset
477 }
315
2a09e1d6fc8f Some 0041D895 GameUI_DrawItemInfo overhaul
Nomad
parents: 194
diff changeset
478 if (pParty->pPickedItem.Broken())
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
479 pRenderer->DrawTransparentRedShade(a2, v6, pTexture);
315
2a09e1d6fc8f Some 0041D895 GameUI_DrawItemInfo overhaul
Nomad
parents: 194
diff changeset
480 else if (!pParty->pPickedItem.Identified())
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
481 pRenderer->DrawTransparentGreenShade(a2, v6, pTexture);
0
Ritor1
parents:
diff changeset
482 else
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
483 pRenderer->DrawTextureTransparent(a2, v6, pTexture);
0
Ritor1
parents:
diff changeset
484 }
Ritor1
parents:
diff changeset
485 }
Ritor1
parents:
diff changeset
486 else
Ritor1
parents:
diff changeset
487 {
Ritor1
parents:
diff changeset
488 if ( this->pCursorBitmap3_sysmembits_16bit )
Ritor1
parents:
diff changeset
489 {
Ritor1
parents:
diff changeset
490 free(this->pCursorBitmap3_sysmembits_16bit);
920
34ed2d5e7cfb MagicShopDialog clean and other
Ritor1
parents: 791
diff changeset
491 this->pCursorBitmap3_sysmembits_16bit = 0;
0
Ritor1
parents:
diff changeset
492 }
Ritor1
parents:
diff changeset
493 }
Ritor1
parents:
diff changeset
494 }
Ritor1
parents:
diff changeset
495
Ritor1
parents:
diff changeset
496 //----- (0046A080) --------------------------------------------------------
Ritor1
parents:
diff changeset
497 void Mouse::Activate(int bActive)
Ritor1
parents:
diff changeset
498 {
Ritor1
parents:
diff changeset
499 bActive = bActive;
Ritor1
parents:
diff changeset
500 }
Ritor1
parents:
diff changeset
501
Ritor1
parents:
diff changeset
502 //----- (0046A08A) --------------------------------------------------------
Ritor1
parents:
diff changeset
503 void Mouse::SetMouseClick(int x, int y)
Ritor1
parents:
diff changeset
504 {
Ritor1
parents:
diff changeset
505 uMouseClickX = x;
Ritor1
parents:
diff changeset
506 uMouseClickY = y;
Ritor1
parents:
diff changeset
507 }
1296
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
508 //----- (004175C0) --------------------------------------------------------
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
509 void UI_OnMouseLeftClick(int *pXY)
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
510 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
511 int *pXY_; // esi@1
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
512 signed int y; // eax@7
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
513 signed int x; // ecx@7
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
514 unsigned int v4; // eax@11
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
515 signed int v5; // eax@17
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
516 signed int v6; // esi@19
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
517 int v7; // esi@30
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
518 GUIWindow *v8; // edx@31
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
519 GUIButton *i; // esi@37
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
520 signed int v10; // eax@50
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
521 int v11; // ecx@52
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
522 unsigned int pX; // [sp+14h] [bp-8h]@7
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
523 unsigned int pY; // [sp+18h] [bp-4h]@7
0
Ritor1
parents:
diff changeset
524
1296
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
525 pXY_ = pXY;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
526 if ( pCurrentScreen == SCREEN_VIDEO
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
527 || sub_4637E0_is_there_popup_onscreen() )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
528 return;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
529 if ( pGUIWindow2 && pGUIWindow2->ptr_1C == (void *)33 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
530 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
531 sub_4452BB();
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
532 return;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
533 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
534 if ( pXY_ )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
535 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
536 x = *pXY_;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
537 y = pXY_[1];
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
538 pX = *pXY_;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
539 pY = y;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
540 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
541 else
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
542 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
543 pMouse->GetClickPos(&pX, &pY);
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
544 y = pY;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
545 x = pX;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
546 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
547 if ( pCurrentScreen != SCREEN_GAME || !dword_507B98_ctrl_pressed )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
548 goto LABEL_30;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
549 v4 = GetCurrentMenuID();
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
550 x = pX;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
551 if ( (v4 & 0x80000000u) == 0
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
552 || (signed int)pX < (signed int)pViewport->uViewportTL_X
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
553 || (signed int)pX > (signed int)pViewport->uViewportBR_X )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
554 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
555 y = pY;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
556 LABEL_30:
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
557 v7 = uNumVisibleWindows;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
558 if ( uNumVisibleWindows < 0 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
559 return;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
560 while ( 1 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
561 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
562 //v8 = (GUIWindow *)&pWindowList_at_506F50_minus1_indexing[21 * pVisibleWindowsIdxs[v7]];
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
563 v8 = &pWindowList[pVisibleWindowsIdxs[v7] - 1];
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
564 if ( x >= (signed int)v8->uFrameX )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
565 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
566 if ( x <= (signed int)v8->uFrameZ && y >= (signed int)v8->uFrameY && y <= (signed int)v8->uFrameW )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
567 break;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
568 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
569 --v7;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
570 if ( v7 < 0 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
571 return;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
572 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
573 for ( i = v8->pControlsHead; ; i = i->pNext )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
574 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
575 if ( !i )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
576 return;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
577 if ( i->uButtonType == 1 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
578 goto LABEL_41;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
579 if ( i->uButtonType != 2 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
580 break;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
581 if ( (signed int)(signed __int64)sqrt((double)((x - i->uX) * (x - i->uX) + (y - i->uY) * (y - i->uY))) < (signed int)i->uWidth )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
582 goto LABEL_50;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
583 y = pY;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
584 x = pX;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
585 LABEL_45:
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
586 ;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
587 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
588 if ( i->uButtonType != 3 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
589 goto LABEL_45;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
590 LABEL_41:
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
591 if ( x >= (signed int)i->uX && x <= (signed int)i->uZ && y >= (signed int)i->uY && y <= (signed int)i->uW )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
592 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
593 LABEL_50:
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
594 i->field_2C_is_pushed = 1;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
595 v10 = pMessageQueue_50CBD0->uNumMessages;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
596 if ( pMessageQueue_50CBD0->uNumMessages )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
597 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
598 v10 = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
599 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
600 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
601 //v11 = i->uControlParam;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
602 pMessageQueue_50CBD0->AddMessage(i->msg, i->msg_param, 0);
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
603 return;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
604 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
605 goto LABEL_45;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
606 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
607 y = pY;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
608 if ( (signed int)pY < (signed int)pViewport->uViewportTL_Y || (signed int)pY > (signed int)pViewport->uViewportBR_Y )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
609 goto LABEL_30;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
610 if ( pRenderer->pRenderD3D )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
611 v5 = pGame->pVisInstance->get_picked_object_zbuf_val();
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
612 else
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
613 v5 = pRenderer->pActiveZBuffer[pX + pSRZBufferLineOffsets[pY]];
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
614 v6 = (unsigned __int16)v5;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
615 if (PID_TYPE(v5) == OBJECT_Actor
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
616 && uActiveCharacter
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
617 && v5 < 0x2000000
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
618 && pPlayers[uActiveCharacter]->CanAct()
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
619 && pPlayers[uActiveCharacter]->CanSteal() )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
620 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
621 /*if ( (signed int)pMessageQueue_50CBD0->uNumMessages < 40 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
622 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
623 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].eType = UIMSG_1B;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
624 pMessageQueue_50CBD0->pMessages[pMessageQueue_50CBD0->uNumMessages].param = v6 >> 3;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
625 *(&pMessageQueue_50CBD0->uNumMessages + 3 * pMessageQueue_50CBD0->uNumMessages + 3) = 0;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
626 ++pMessageQueue_50CBD0->uNumMessages;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
627 }*/
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
628 pMessageQueue_50CBD0->AddMessage(UIMSG_1B, PID_ID(v6), 0);
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
629
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
630 if ( pParty->bTurnBasedModeOn == 1 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
631 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
632 if ( pTurnEngine->field_4 == 3 )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
633 pTurnEngine->field_18 |= 8u;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
634 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
635 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
636 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
637
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
638
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
639
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
640 //----- (00417871) --------------------------------------------------------
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
641 void __thiscall sub_417871(int *pXY)
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
642 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
643 POINT v1; // [sp+0h] [bp-18h]@5
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
644 POINT a2; // [sp+8h] [bp-10h]@5
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
645 unsigned int pY; // [sp+10h] [bp-8h]@3
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
646 unsigned int pX; // [sp+14h] [bp-4h]@3
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
647
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
648 if ( !pRenderer->pRenderD3D )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
649 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
650 if ( pXY )
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
651 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
652 pX = *pXY;
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
653 pY = pXY[1];
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
654 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
655 else
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
656 {
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
657 pMouse->GetClickPos(&pX, &pY);
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
658 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
659 pMouse->GetCursorPos(&a2);
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
660 pMouse->GetCursorPos(&v1);
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
661 }
c423f946dc99 moving files continue
Ritor1
parents: 1262
diff changeset
662 }