706
|
1 #include <assert.h>
|
|
2
|
|
3 #include "MM7.h"
|
|
4
|
|
5 #include "MapInfo.h"
|
|
6 #include "Game.h"
|
|
7 #include "GUIWindow.h"
|
|
8 #include "GUIFont.h"
|
|
9 #include "GUIButton.h"
|
|
10 #include "GUIProgressBar.h"
|
|
11 #include "Party.h"
|
|
12 #include "AudioPlayer.h"
|
|
13 #include "Outdoor.h"
|
|
14 #include "IndoorCamera.h"
|
|
15 #include "Overlays.h"
|
|
16 #include "Monsters.h"
|
|
17 #include "Arcomage.h"
|
|
18 #include "LOD.h"
|
|
19 #include "Actor.h"
|
|
20 #include "Allocator.h"
|
|
21 #include "Events.h"
|
|
22 #include "Viewport.h"
|
|
23 #include "FrameTableInc.h"
|
|
24 #include "Math.h"
|
|
25 #include "SpriteObject.h"
|
|
26 #include "ObjectList.h"
|
|
27 #include "Chest.h"
|
|
28 #include "PaletteManager.h"
|
|
29 #include "DecorationList.h"
|
|
30 #include "SaveLoad.h"
|
|
31 #include "stru123.h"
|
|
32 #include "Time.h"
|
|
33 #include "IconFrameTable.h"
|
|
34 #include "Awards.h"
|
|
35 #include "Autonotes.h"
|
|
36 #include "stru160.h"
|
|
37 #include "stru279.h"
|
|
38 #include "TurnEngine.h"
|
|
39 #include "stru277.h"
|
|
40 #include "Weather.h"
|
|
41 #include "stru272.h"
|
|
42 #include "stru298.h"
|
|
43 #include "StorylineTextTable.h"
|
|
44 #include "Events2D.h"
|
|
45 #include "texts.h"
|
|
46 #include "stru351.h"
|
|
47
|
|
48 #include "mm7_data.h"
|
|
49
|
|
50
|
|
51
|
|
52
|
|
53 //----- (00411300) --------------------------------------------------------
|
|
54 void LoadSpellbook(unsigned int spell_school)
|
|
55 {
|
|
56 //unsigned int v1; // esi@1
|
|
57 Player *pPlayer; // ecx@1
|
|
58 char v3; // al@1
|
|
59 //int v4; // edi@5
|
|
60 //Texture *result; // eax@6
|
|
61 //unsigned char *v6; // edi@7
|
|
62 //unsigned int v7; // eax@7
|
|
63 //unsigned __int8 v8; // sf@8
|
|
64 //unsigned __int8 v9; // of@8
|
|
65 char pContainer[20]; // [sp+Ch] [bp-1Ch]@7
|
|
66 //Texture *v11; // [sp+20h] [bp-8h]@5
|
|
67 //int v12; // [sp+24h] [bp-4h]@5
|
|
68
|
|
69 byte_506550 = 0;
|
|
70 //v1 = uID;
|
|
71 pPlayer = pPlayers[uActiveCharacter];
|
|
72 v3 = pPlayer->uQuickSpell;
|
|
73 if ( v3 && (unsigned __int8)v3 / 11 == spell_school )
|
|
74 quick_spell_at_page = (unsigned __int8)v3 - 11 * spell_school;
|
|
75 else
|
|
76 quick_spell_at_page = 0;
|
|
77
|
|
78 for (uint i = 1; i < 12; ++i)
|
|
79 {
|
|
80 if (pPlayer->spellbook.pChapters[spell_school].bIsSpellAvailable[i - 1])
|
|
81 {
|
|
82 sprintf(pContainer, "SB%sS%02d", spellbook_texture_filename_suffices[spell_school], pSpellbookSpellIndices[spell_school][i]);
|
|
83 dword_506408[i] = pIcons_LOD->LoadTexturePtr(pContainer, TEXTURE_16BIT_PALETTE);
|
|
84
|
|
85 sprintf(pContainer, "SB%sC%02d", spellbook_texture_filename_suffices[spell_school], pSpellbookSpellIndices[spell_school][i]);
|
|
86 dword_5063D8[i] = pIcons_LOD->LoadTexturePtr(pContainer, TEXTURE_16BIT_PALETTE);
|
|
87 }
|
|
88 }
|
|
89 }
|
|
90
|
|
91 //----- (0041140B) --------------------------------------------------------
|
|
92 GUIWindow *__cdecl sub_41140B()
|
|
93 {
|
|
94 signed int v0; // esi@1
|
|
95 GUIButton *v1; // eax@3
|
|
96 GUIButton *v2; // esi@4
|
|
97 GUIWindow *result; // eax@5
|
|
98
|
|
99 v0 = 0;
|
|
100 do
|
|
101 {
|
|
102 dword_5063D8[11+v0]->Release();
|
|
103 dword_506408[11+v0]->Release();
|
|
104 --v0;
|
|
105 }
|
|
106 while ( v0 >= -11 );
|
|
107 pIcons_LOD->_40F9C5();
|
|
108 v1 = pGUIWindow_CurrentMenu->pControlsHead;
|
|
109 if ( v1 )
|
|
110 {
|
|
111 do
|
|
112 {
|
|
113 v2 = v1->pNext;
|
|
114 pAllocator->FreeChunk(v1);
|
|
115 v1 = v2;
|
|
116 }
|
|
117 while ( v2 );
|
|
118 }
|
|
119 pGUIWindow_CurrentMenu->pControlsHead = 0;
|
|
120 pGUIWindow_CurrentMenu->pControlsTail = 0;
|
|
121 result = pGUIWindow_CurrentMenu;
|
|
122 pGUIWindow_CurrentMenu->uNumControls = 0;
|
|
123 return result;
|
|
124 }
|
|
125
|
|
126 //----- (00411473) --------------------------------------------------------
|
|
127 void __cdecl sub_411473()
|
|
128 {
|
|
129 pTexture_pagemask->Release();
|
|
130 pTexture_506448->Release();
|
|
131 pTexture_50643C->Release();
|
|
132 for (uint i = 0; i < 8; ++i)
|
|
133 {
|
|
134 pSpellBookPagesTextr[i]->Release();
|
|
135 pTextures_tabs[i][0]->Release();
|
|
136 pTextures_tabs[i][1]->Release();
|
|
137 }
|
|
138 pAudioPlayer->PlaySound((SoundID)231, 0, 0, -1, 0, 0, 0, 0);
|
|
139 pIcons_LOD->_4114F2();
|
|
140 }
|
|
141
|
|
142
|
|
143 //----- (00411597) --------------------------------------------------------
|
|
144 void __cdecl OnCloseSpellook()
|
|
145 {
|
|
146 pAllocator->FreeChunk(pSpellFont);
|
|
147 pSpellFont = 0;
|
|
148 pAllocator->FreeChunk(pBookFont);
|
|
149 pBookFont = 0;
|
|
150 pAllocator->FreeChunk(pBook2Font);
|
|
151 pBook2Font = 0;
|
|
152 pAllocator->FreeChunk(pAutonoteFont);
|
|
153 pAutonoteFont = 0;
|
|
154 pTexture_mapbordr->Release();
|
|
155 pAudioPlayer->PlaySound((SoundID)231, 0, 0, -1, 0, 0, 0, 0);
|
|
156 pIcons_LOD->_4114F2();
|
|
157 dword_506364 = 0;
|
|
158 }
|
|
159 // 506364: using guessed type int dword_506364;
|
|
160
|
|
161
|
|
162
|
|
163
|
|
164
|
|
165
|
|
166
|
|
167 //----- (00412AF9) --------------------------------------------------------
|
|
168 void sub_412AF9()
|
|
169 {
|
|
170 int v0; // ecx@1
|
|
171
|
|
172 v0 = 0;
|
|
173 if ( uActiveCharacter )
|
|
174 v0 = pParty->pPlayers[uActiveCharacter-1].lastOpenedSpellbookPage;//*((char *)&pParty->pPartyBuffs[5].uExpireTime + 6972 * uActiveCharacter + 2);
|
|
175 pRenderer->DrawTextureIndexed(8u, 8u, pSpellBookPagesTextr[v0]);
|
|
176 pRenderer->DrawTextureIndexed(0x1DCu, 0x1C2u, pTexture_50643C);
|
|
177 pRenderer->DrawTextureIndexed(0x231u, 0x1C2u, pTexture_506448);
|
|
178 }
|
|
179
|
|
180 //----- (00412B58) --------------------------------------------------------
|
|
181 void __cdecl DrawSpellBookContent()
|
|
182 {
|
|
183 Player *v0; // ebx@1
|
|
184 int v1; // ebp@1
|
|
185 unsigned int v2; // eax@1
|
|
186 Texture *v3; // edi@1
|
|
187 int v4; // esi@1
|
|
188 Texture *v5; // eax@3
|
|
189 Texture *v6; // edx@5
|
|
190 int v7; // eax@8
|
|
191 int v8; // eax@11
|
|
192 POINT *v9; // esi@13
|
|
193 int v10; // eax@13
|
|
194 Texture *v11; // edx@14
|
|
195 int v12; // eax@15
|
|
196 signed int v13; // ecx@18
|
|
197 unsigned int v14; // esi@18
|
|
198 unsigned int v15; // edi@18
|
|
199 Texture *pPageTexture; // eax@21
|
|
200 unsigned int v17; // [sp-Ch] [bp-2Ch]@8
|
|
201 unsigned int v18; // [sp-Ch] [bp-2Ch]@15
|
|
202 unsigned int v19; // [sp-8h] [bp-28h]@8
|
|
203 unsigned int v20; // [sp-8h] [bp-28h]@15
|
|
204 Texture *v21; // [sp-4h] [bp-24h]@15
|
|
205 signed int v22; // [sp-4h] [bp-24h]@22
|
|
206 Texture *v23; // [sp+10h] [bp-10h]@5
|
|
207 POINT a2; // [sp+18h] [bp-8h]@13
|
|
208 POINT v24;
|
|
209 int v25;
|
|
210
|
|
211 sub_412AF9();
|
|
212 v0 = pPlayers[uActiveCharacter];
|
|
213 v1 = 11 * v0->lastOpenedSpellbookPage;
|
|
214 v2 = pIcons_LOD->FindTextureByName("Pending");
|
|
215 v3 = (Texture *)(v2 != -1 ? (int)&pIcons_LOD->pTextures[v2] : 0);
|
|
216 pRenderer->ClearZBuffer(0, 479);
|
|
217 v4 = 1;
|
|
218 if ( __OFSUB__(v1, v1 + 11) ^ 1 )
|
|
219 {
|
|
220 do
|
|
221 {
|
|
222 if ( *(&v0->_guilds_member_bits[v1 + 63] + v4) )
|
|
223 {
|
|
224 v5 = (Texture *)dword_506408[v4];
|
|
225 if ( v5 != v3 )
|
|
226 {
|
|
227 if ( quick_spell_at_page == v4 )
|
|
228 {
|
|
229 v6 = dword_5063D8[v4];
|
|
230 v23 = dword_5063D8[v4];
|
|
231 }
|
|
232 else
|
|
233 {
|
|
234 v23 = dword_506408[v4];
|
|
235 v6 = v5;
|
|
236 }
|
710
|
237 if ( v6->pLevelOfDetail0_prolly_alpha_mask )
|
706
|
238 {
|
|
239 v7 = v0->lastOpenedSpellbookPage;
|
|
240 // v7 = (12 * v0->lastOpenedSpellbookPage + pSpellbookSpellIndices[v0->lastOpenedSpellbookPage][v4]);
|
|
241 v19 = pViewport->uViewportTL_Y + pIconPos[v7][pSpellbookSpellIndices[v7][v4]].Ypos;
|
|
242 v17 = pViewport->uViewportTL_X + pIconPos[v7][pSpellbookSpellIndices[v7][v4]].Xpos;
|
|
243 if ( BYTE1(v6->pBits) & 2 )
|
|
244 pRenderer->DrawTextureTransparent(v17, v19, v6);
|
|
245 else
|
|
246 pRenderer->DrawTextureIndexed(v17, v19, v6);
|
710
|
247 pRenderer->DrawMaskToZBuffer(pIconPos[v7][pSpellbookSpellIndices[v7][v4]].Xpos,
|
706
|
248 pIconPos[v7][pSpellbookSpellIndices[v7][v4]].Ypos, v23, v4);
|
|
249 }
|
|
250 }
|
|
251 }
|
|
252 ++v4;
|
|
253 }
|
|
254 while ( v4 + v1 - 1 < v1 + 11 );
|
|
255 }
|
|
256 v9 = pMouse->GetCursorPos(&a2);
|
|
257 v10 = pRenderer->pActiveZBuffer[v9->x + pSRZBufferLineOffsets[pMouse->GetCursorPos(&v24)->y]] & 0xFFFF;
|
|
258 if ( v10 )
|
|
259 {
|
|
260 v11 = dword_5063D8[v10];
|
710
|
261 if ( v11->pLevelOfDetail0_prolly_alpha_mask )
|
706
|
262 {
|
|
263 v21 = dword_5063D8[v10];
|
|
264 v12 = v0->lastOpenedSpellbookPage;
|
|
265 // v12 = (12 * v0->lastOpenedSpellbookPage + pSpellbookSpellIndices[v0->lastOpenedSpellbookPage][v10]);
|
|
266 v20 = pViewport->uViewportTL_Y + pIconPos[v12][pSpellbookSpellIndices[v12][v10]].Ypos;
|
|
267 v18 = pViewport->uViewportTL_X + pIconPos[v12][pSpellbookSpellIndices[v12][v10]].Xpos;
|
|
268 if ( BYTE1(v11->pBits) & 2 )
|
|
269 pRenderer->DrawTextureTransparent(v18, v20, v21);
|
|
270 else
|
|
271 pRenderer->DrawTextureIndexed(v18, v20, v21);
|
|
272 }
|
|
273 }
|
|
274 v13 = 0;
|
|
275 a2.x = (LONG)&v0->pActiveSkills[12];
|
|
276 v14 = (unsigned int)&v0->pActiveSkills[12];
|
|
277 v15 = (unsigned int)&v0->pActiveSkills[12];
|
|
278 v25 = 0;
|
|
279 do
|
|
280 {
|
|
281 if ( *(short *)a2.x )
|
|
282 {
|
|
283 if ( v0->lastOpenedSpellbookPage == v13 )
|
|
284 {
|
|
285 pPageTexture = pTextures_tabs[v13][1];
|
|
286 switch ( v13 )
|
|
287 {
|
|
288 case 0:
|
|
289 v14 = 406;
|
|
290 v22 = 9;
|
|
291 goto LABEL_27;
|
|
292 case 1:
|
|
293 v14 = 406;
|
|
294 goto LABEL_38;
|
|
295 case 2:
|
|
296 v14 = 406;
|
|
297 v22 = 84;
|
|
298 goto LABEL_27;
|
|
299 case 3:
|
|
300 v14 = 406;
|
|
301 goto LABEL_26;
|
|
302 case 4:
|
|
303 v14 = 407;
|
|
304 goto LABEL_29;
|
|
305 case 5:
|
|
306 v15 = 196;
|
|
307 goto LABEL_34;
|
|
308 case 6:
|
|
309 v15 = 234;
|
|
310 goto LABEL_34;
|
|
311 case 7:
|
|
312 v15 = 272;
|
|
313 goto LABEL_34;
|
|
314 case 8:
|
|
315 v15 = 309;
|
|
316 LABEL_34:
|
|
317 v14 = 405;
|
|
318 break;
|
|
319 default:
|
|
320 break;
|
|
321 }
|
|
322 }
|
|
323 else
|
|
324 {
|
|
325 pPageTexture = pTextures_tabs[v13][0];
|
|
326 switch ( v13 )
|
|
327 {
|
|
328 case 0:
|
|
329 v14 = 415;
|
|
330 v22 = 10;
|
|
331 goto LABEL_27;
|
|
332 case 1:
|
|
333 v14 = 415;
|
|
334 LABEL_38:
|
|
335 v22 = 46;
|
|
336 goto LABEL_27;
|
|
337 case 2:
|
|
338 v14 = 415;
|
|
339 v22 = 83;
|
|
340 goto LABEL_27;
|
|
341 case 3:
|
|
342 v14 = 415;
|
|
343 LABEL_26:
|
|
344 v22 = 121;
|
|
345 LABEL_27:
|
|
346 v15 = v22;
|
|
347 break;
|
|
348 case 4:
|
|
349 v14 = 415;
|
|
350 LABEL_29:
|
|
351 v15 = 158;
|
|
352 break;
|
|
353 case 5:
|
|
354 v15 = 196;
|
|
355 goto LABEL_46;
|
|
356 case 6:
|
|
357 v15 = 234;
|
|
358 goto LABEL_46;
|
|
359 case 7:
|
|
360 v15 = 271;
|
|
361 goto LABEL_46;
|
|
362 case 8:
|
|
363 v15 = 307;
|
|
364 LABEL_46:
|
|
365 v14 = 416;
|
|
366 break;
|
|
367 default:
|
|
368 break;
|
|
369 }
|
|
370 }
|
|
371 pRenderer->DrawTextureTransparent(v14, v15, pPageTexture);
|
|
372 v13 = v25;
|
|
373 }
|
|
374 a2.x += 2;
|
|
375 ++v13;
|
|
376 v25 = v13;
|
|
377 }
|
|
378 while ( v13 < 9 );
|
|
379 }
|
|
380 // 506408: using guessed type int dword_506408[];
|
|
381 // 50654C: using guessed type int dword_50654C;
|
|
382
|
|
383 //----- (00412E85) --------------------------------------------------------
|
|
384 char __cdecl DrawBook_History()
|
|
385 {
|
|
386 unsigned int v0; // eax@3
|
|
387 unsigned int v1; // eax@7
|
|
388 int v2; // eax@10
|
|
389 const char *v3; // eax@10
|
|
390 signed int v4; // ecx@12
|
|
391 int v5; // ecx@14
|
|
392 int v6; // eax@21
|
|
393 int v7; // esi@21
|
|
394 char *v8; // eax@21
|
|
395 int v9; // eax@22
|
|
396 unsigned int v11; // [sp-8h] [bp-64h]@3
|
|
397 unsigned int v12; // [sp-8h] [bp-64h]@7
|
|
398 Texture *v13; // [sp-4h] [bp-60h]@3
|
|
399 Texture *v14; // [sp-4h] [bp-60h]@7
|
|
400 GUIWindow a1; // [sp+8h] [bp-54h]@10
|
|
401
|
|
402 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_X, pViewport->uViewportTL_Y, pSpellBookPagesTextr_11);
|
|
403 if ( dword_506548 || !dword_506528 )
|
|
404 {
|
|
405 v13 = pTex_tab_an_6a__zoom_off;
|
|
406 v11 = pViewport->uViewportTL_Y + 2;
|
|
407 v0 = pViewport->uViewportTL_X + 407;
|
|
408 }
|
|
409 else
|
|
410 {
|
|
411 v13 = pTex_tab_an_6b__zoom_on;
|
|
412 v11 = pViewport->uViewportTL_Y + 1;
|
|
413 v0 = pViewport->uViewportTL_X + 398;
|
|
414 }
|
|
415 pRenderer->DrawTextureTransparent(v0, v11, v13);
|
|
416 if ( dword_506544 || dword_506528 + awards_count >= awards_count2 )
|
|
417 {
|
|
418 v14 = pTex_tab_an_7a__zoot_off;
|
|
419 v12 = pViewport->uViewportTL_Y + 38;
|
|
420 v1 = pViewport->uViewportTL_X + 407;
|
|
421 }
|
|
422 else
|
|
423 {
|
|
424 v14 = pTex_tab_an_7b__zoot_on;
|
|
425 v12 = pViewport->uViewportTL_Y + 38;
|
|
426 v1 = pViewport->uViewportTL_X + 398;
|
|
427 }
|
|
428 pRenderer->DrawTextureTransparent(v1, v12, v14);
|
|
429 if ( !byte_5C6D50[dword_506528] )
|
|
430 {
|
|
431 v2 = achievedAwardsIndex[dword_506528];
|
819
|
432 a1.uFrameWidth = game_viewport_width;
|
|
433 a1.uFrameX = game_viewport_x;
|
|
434 a1.uFrameY = game_viewport_y;
|
|
435 a1.uFrameHeight = game_viewport_height;
|
706
|
436 v3 = (const char *)pStorylineText->StoreLine[v2].pPageTitle;//field_4[];
|
819
|
437 a1.uFrameZ = game_viewport_z;
|
|
438 a1.uFrameW = game_viewport_w;
|
706
|
439 if ( v3 )
|
|
440 a1.DrawTitleText(pBook2Font, 0, 0x16u, 0, v3, 3u);
|
|
441 }
|
|
442 a1.uFrameX = 48;
|
|
443 a1.uFrameY = 70;
|
|
444 a1.uFrameWidth = 360;
|
|
445 a1.uFrameHeight = 264;
|
|
446 v4 = LOBYTE(pAutonoteFont->uFontHeight) - 3;
|
|
447 a1.uFrameZ = 407;
|
|
448 a1.uFrameHeight = v4 * 264 / v4;
|
|
449 a1.uFrameW = a1.uFrameHeight + 69;
|
|
450 if ( dword_506544 && dword_506528 + awards_count < awards_count2 )
|
|
451 {
|
|
452 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
|
|
453 v5 = dword_50651C++;
|
|
454 dword_506528 += awards_count;
|
|
455 byte_506130[v5] = awards_count;
|
|
456 }
|
|
457 if ( dword_506548 && dword_50651C )
|
|
458 {
|
|
459 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
|
|
460 --dword_50651C;
|
|
461 dword_506528 -= (unsigned __int8)byte_506130[dword_50651C];
|
|
462 }
|
|
463 if ( !awards_count || dword_506528 < 1 )
|
|
464 {
|
|
465 dword_506528 = 0;
|
|
466 dword_50651C = 0;
|
|
467 }
|
|
468 dword_506544 = 0;
|
|
469 v6 = achievedAwardsIndex[dword_506528];
|
|
470 dword_506548 = 0;
|
|
471 awards_count = 0;
|
|
472 //v7 = *pStorylineText->StoreLine[v6].pText;//*(&pStorylineText->field_0 + 3 * v6);
|
|
473 v7 = (int)pStorylineText->StoreLine[v6].pText;//*(&pStorylineText->field_0 + 3 * v6);
|
|
474 v8 = BuilDialogueString(
|
|
475 pStorylineText->StoreLine[v6].pText,
|
|
476 uActiveCharacter - 1,
|
|
477 0,
|
|
478 0,
|
|
479 0,
|
|
480 (__int64 *)&pParty->field_3C._s_times[ v6 + 21]);
|
|
481 if ( v7 )
|
|
482 {
|
|
483 v9 = pAutonoteFont->_44C6C2(v8, &a1, 1u, (unsigned __int8)byte_5C6D50[dword_506528]);
|
|
484 LOBYTE(v8) = a1.DrawText(pAutonoteFont, 1, 0, 0, (const char *)v9, 0, a1.uFrameY + a1.uFrameHeight, 0);
|
|
485 ++awards_count;
|
|
486 }
|
|
487 return (char)v8;
|
|
488 }
|
|
489
|
|
490
|
|
491 //----- (00413126) --------------------------------------------------------
|
|
492 void __cdecl DrawBook_Quests()
|
|
493 {
|
|
494 unsigned int v0; // eax@3
|
|
495 unsigned int v1; // eax@7
|
|
496 int v2; // ecx@11
|
|
497 int v3; // ebx@16
|
|
498 int v4; // eax@19
|
|
499 const char *v5; // edi@19
|
|
500 int v6; // eax@19
|
|
501 unsigned int v7; // edi@19
|
|
502 unsigned int v8; // [sp-8h] [bp-68h]@3
|
|
503 unsigned int v9; // [sp-8h] [bp-68h]@7
|
|
504 Texture *v10; // [sp-4h] [bp-64h]@3
|
|
505 Texture *v11; // [sp-4h] [bp-64h]@7
|
|
506 GUIWindow a1; // [sp+Ch] [bp-54h]@9
|
|
507
|
|
508 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_X, pViewport->uViewportTL_Y, pTexture_CurrentBook);
|
|
509 if ( dword_506548 || !dword_506528 )
|
|
510 {
|
|
511 v10 = pTex_tab_an_6a__zoom_off;
|
|
512 v8 = pViewport->uViewportTL_Y + 2;
|
|
513 v0 = pViewport->uViewportTL_X + 407;
|
|
514 }
|
|
515 else
|
|
516 {
|
|
517 v10 = pTex_tab_an_6b__zoom_on;
|
|
518 v8 = pViewport->uViewportTL_Y + 1;
|
|
519 v0 = pViewport->uViewportTL_X + 398;
|
|
520 }
|
|
521 pRenderer->DrawTextureTransparent(v0, v8, v10);
|
|
522 if ( dword_506544 || dword_506528 + awards_count >= awards_count2 )
|
|
523 {
|
|
524 v11 = pTex_tab_an_7a__zoot_off;
|
|
525 v9 = pViewport->uViewportTL_Y + 38;
|
|
526 v1 = pViewport->uViewportTL_X + 407;
|
|
527 }
|
|
528 else
|
|
529 {
|
|
530 v11 = pTex_tab_an_7b__zoot_on;
|
|
531 v9 = pViewport->uViewportTL_Y + 38;
|
|
532 v1 = pViewport->uViewportTL_X + 398;
|
|
533 }
|
|
534 pRenderer->DrawTextureTransparent(v1, v9, v11);
|
819
|
535 a1.uFrameWidth = game_viewport_width;
|
|
536 a1.uFrameHeight = game_viewport_height;
|
|
537 a1.uFrameX = game_viewport_x;
|
|
538 a1.uFrameY = game_viewport_y;
|
|
539 a1.uFrameZ = game_viewport_z;
|
|
540 a1.uFrameW = game_viewport_w;
|
706
|
541 a1.DrawTitleText(pBook2Font, 0, 0x16u, 0, pGlobalTXT_LocalizationStrings[174], 3u);
|
|
542 a1.uFrameX = 48;
|
|
543 a1.uFrameY = 70;
|
|
544 a1.uFrameWidth = 360;
|
|
545 a1.uFrameHeight = 264;
|
|
546 a1.uFrameZ = 407;
|
|
547 a1.uFrameW = 333;
|
|
548 if ( dword_506544 && dword_506528 + awards_count < awards_count2 )
|
|
549 {
|
|
550 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
|
|
551 v2 = dword_50651C++;
|
|
552 dword_506528 += awards_count;
|
|
553 byte_506130[v2] = awards_count;
|
|
554 }
|
|
555 if ( dword_506548 && dword_50651C )
|
|
556 {
|
|
557 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
|
|
558 --dword_50651C;
|
|
559 dword_506528 -= (unsigned __int8)byte_506130[dword_50651C];
|
|
560 }
|
|
561 if ( !awards_count || (v3 = dword_506528, dword_506528 < 1) )
|
|
562 {
|
|
563 v3 = 0;
|
|
564 dword_50651C = 0;
|
|
565 dword_506528 = 0;
|
|
566 }
|
|
567 dword_506544 = 0;
|
|
568 dword_506548 = 0;
|
|
569 awards_count = 0;
|
|
570 while ( v3 < awards_count2 )
|
|
571 {
|
|
572 v4 = achievedAwardsIndex[v3];
|
|
573 ++awards_count;
|
|
574 v5 = pQuestTable[v4-1];//(&dword_722F10)[4 * v4];
|
|
575 a1.DrawText(pAutonoteFont, 1, 0, 0, pQuestTable[v4-1], 0, 0, 0);//(&dword_722F10)[4 * v4], 0, 0, 0);
|
|
576 v6 = pAutonoteFont->CalcTextHeight(v5, &a1, 1, 0);
|
|
577 v7 = a1.uFrameY + v6;
|
|
578 if ( (signed int)(a1.uFrameY + v6) > (signed int)a1.uFrameHeight )
|
|
579 break;
|
|
580 pRenderer->DrawTextureTransparent(100, v7 + 12, pSpellBookPagesTextr_10);
|
|
581 ++v3;
|
|
582 a1.uFrameY = v7 + 24;
|
|
583 }
|
|
584 }
|
|
585
|
|
586
|
|
587 //----- (0041338E) --------------------------------------------------------
|
|
588 void __cdecl DrawBook_Autonotes()
|
|
589 {
|
|
590 unsigned int v0; // eax@3
|
|
591 unsigned int v1; // eax@7
|
|
592 signed int v2; // ebp@11
|
|
593 unsigned int v3; // eax@18
|
|
594 unsigned int v4; // eax@24
|
|
595 unsigned int v5; // eax@30
|
|
596 unsigned int v6; // eax@36
|
|
597 unsigned int v7; // eax@42
|
|
598 signed int v8; // ebp@47
|
|
599 int v9; // eax@52
|
|
600 int v10; // eax@56
|
|
601 int v11; // edx@57
|
|
602 int v12; // ebp@64
|
|
603 int v13; // eax@65
|
|
604 const char *v14; // edi@65
|
|
605 int v15; // eax@65
|
|
606 unsigned int v16; // edi@65
|
|
607 unsigned int v17; // [sp-8h] [bp-70h]@3
|
|
608 unsigned int v18; // [sp-8h] [bp-70h]@7
|
|
609 unsigned int v19; // [sp-8h] [bp-70h]@18
|
|
610 unsigned int v20; // [sp-8h] [bp-70h]@24
|
|
611 unsigned int v21; // [sp-8h] [bp-70h]@30
|
|
612 unsigned int v22; // [sp-8h] [bp-70h]@36
|
|
613 unsigned int v23; // [sp-8h] [bp-70h]@42
|
|
614 Texture *v24; // [sp-4h] [bp-6Ch]@3
|
|
615 Texture *v25; // [sp-4h] [bp-6Ch]@7
|
|
616 Texture *v26; // [sp-4h] [bp-6Ch]@18
|
|
617 Texture *v27; // [sp-4h] [bp-6Ch]@24
|
|
618 Texture *v28; // [sp-4h] [bp-6Ch]@30
|
|
619 Texture *v29; // [sp-4h] [bp-6Ch]@36
|
|
620 Texture *v30; // [sp-4h] [bp-6Ch]@42
|
|
621 signed __int16 v31; // [sp+10h] [bp-58h]@1
|
|
622 char *v32; // [sp+10h] [bp-58h]@49
|
|
623 GUIWindow a1; // [sp+14h] [bp-54h]@46
|
|
624
|
|
625 v31 = 0;
|
|
626 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_X, pViewport->uViewportTL_Y, pTexture_AutonotesBook);
|
|
627 if ( dword_506548 || !dword_506528 )
|
|
628 {
|
|
629 v24 = pTex_tab_an_6a__zoom_off;
|
|
630 v17 = pViewport->uViewportTL_Y + 2;
|
|
631 v0 = pViewport->uViewportTL_X + 407;
|
|
632 }
|
|
633 else
|
|
634 {
|
|
635 v24 = pTex_tab_an_6b__zoom_on;
|
|
636 v17 = pViewport->uViewportTL_Y + 1;
|
|
637 v0 = pViewport->uViewportTL_X + 398;
|
|
638 }
|
|
639 pRenderer->DrawTextureTransparent(v0, v17, v24);
|
|
640 if ( dword_506544 || dword_506528 + awards_count >= awards_count2 )
|
|
641 {
|
|
642 v25 = pTex_tab_an_7a__zoot_off;
|
|
643 v18 = pViewport->uViewportTL_Y + 38;
|
|
644 v1 = pViewport->uViewportTL_X + 407;
|
|
645 }
|
|
646 else
|
|
647 {
|
|
648 v25 = pTex_tab_an_7b__zoot_on;
|
|
649 v18 = pViewport->uViewportTL_Y + 38;
|
|
650 v1 = pViewport->uViewportTL_X + 398;
|
|
651 }
|
|
652 pRenderer->DrawTextureTransparent(v1, v18, v25);
|
|
653 if ( !dword_506540 )
|
|
654 {
|
|
655 if ( dword_506568 )
|
|
656 {
|
|
657 pRenderer->DrawTextureTransparent(
|
|
658 pViewport->uViewportTL_X + 408,
|
|
659 pViewport->uViewportTL_Y + 113,
|
|
660 pTexture_506390);
|
|
661 v2 = 1;
|
|
662 goto LABEL_16;
|
|
663 }
|
|
664 goto LABEL_14;
|
|
665 }
|
|
666 if ( !dword_506568 )
|
|
667 {
|
|
668 LABEL_14:
|
|
669 v2 = 1;
|
|
670 goto LABEL_15;
|
|
671 }
|
|
672 v2 = 1;
|
|
673 v31 = 1;
|
|
674 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
675 LABEL_15:
|
|
676 dword_506568 = 0;
|
|
677 pRenderer->DrawTextureTransparent(pViewport->uViewportTL_X + 398, pViewport->uViewportTL_Y + 113, pTexture_506394);
|
|
678 LABEL_16:
|
|
679 if ( dword_50653C )
|
|
680 {
|
|
681 if ( dword_506568 != v2 )
|
|
682 {
|
|
683 v31 = v2;
|
|
684 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
685 }
|
|
686 }
|
|
687 else
|
|
688 {
|
|
689 if ( dword_506568 != v2 )
|
|
690 {
|
|
691 v26 = pTexture_506388;
|
|
692 v19 = pViewport->uViewportTL_Y + 150;
|
|
693 v3 = pViewport->uViewportTL_X + 408;
|
|
694 goto LABEL_22;
|
|
695 }
|
|
696 }
|
|
697 v26 = pTexture_50638C;
|
|
698 dword_506568 = v2;
|
|
699 v19 = pViewport->uViewportTL_Y + 150;
|
|
700 v3 = pViewport->uViewportTL_X + 399;
|
|
701 LABEL_22:
|
|
702 pRenderer->DrawTextureTransparent(v3, v19, v26);
|
|
703 if ( dword_506538 )
|
|
704 {
|
|
705 if ( dword_506568 != 2 )
|
|
706 {
|
|
707 v31 = v2;
|
|
708 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
709 }
|
|
710 }
|
|
711 else
|
|
712 {
|
|
713 if ( dword_506568 != 2 )
|
|
714 {
|
|
715 v27 = pTexture_506380;
|
|
716 v20 = pViewport->uViewportTL_Y + 188;
|
|
717 v4 = pViewport->uViewportTL_X + 408;
|
|
718 goto LABEL_28;
|
|
719 }
|
|
720 }
|
|
721 v27 = pTexture_506384;
|
|
722 dword_506568 = 2;
|
|
723 v20 = pViewport->uViewportTL_Y + 188;
|
|
724 v4 = pViewport->uViewportTL_X + 397;
|
|
725 LABEL_28:
|
|
726 pRenderer->DrawTextureTransparent(v4, v20, v27);
|
|
727 if ( dword_506534 )
|
|
728 {
|
|
729 if ( dword_506568 != 3 )
|
|
730 {
|
|
731 v31 = v2;
|
|
732 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
733 }
|
|
734 }
|
|
735 else
|
|
736 {
|
|
737 if ( dword_506568 != 3 )
|
|
738 {
|
|
739 v28 = pTexture_506378;
|
|
740 v21 = pViewport->uViewportTL_Y + 226;
|
|
741 v5 = pViewport->uViewportTL_X + 408;
|
|
742 goto LABEL_34;
|
|
743 }
|
|
744 }
|
|
745 v28 = pTexture_50637C;
|
|
746 dword_506568 = 3;
|
|
747 v21 = pViewport->uViewportTL_Y + 226;
|
|
748 v5 = pViewport->uViewportTL_X + 397;
|
|
749 LABEL_34:
|
|
750 pRenderer->DrawTextureTransparent(v5, v21, v28);
|
|
751 if ( dword_506530 )
|
|
752 {
|
|
753 if ( dword_506568 != 4 )
|
|
754 {
|
|
755 v31 = v2;
|
|
756 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
757 }
|
|
758 }
|
|
759 else
|
|
760 {
|
|
761 if ( dword_506568 != 4 )
|
|
762 {
|
|
763 v29 = pTexture_506370;
|
|
764 v22 = pViewport->uViewportTL_Y + 263;
|
|
765 v6 = pViewport->uViewportTL_X + 408;
|
|
766 goto LABEL_40;
|
|
767 }
|
|
768 }
|
|
769 v29 = pTexture_506374;
|
|
770 dword_506568 = 4;
|
|
771 v22 = pViewport->uViewportTL_Y + 264;
|
|
772 v6 = pViewport->uViewportTL_X + 397;
|
|
773 LABEL_40:
|
|
774 pRenderer->DrawTextureTransparent(v6, v22, v29);
|
|
775 if ( dword_50652C )
|
|
776 {
|
|
777 if ( dword_506568 != 5 )
|
|
778 {
|
|
779 v31 = v2;
|
|
780 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
781 }
|
|
782 }
|
|
783 else
|
|
784 {
|
|
785 if ( dword_506568 != 5 )
|
|
786 {
|
|
787 v30 = pTexture_506368;
|
|
788 v23 = pViewport->uViewportTL_Y + 302;
|
|
789 v7 = pViewport->uViewportTL_X + 408;
|
|
790 goto LABEL_46;
|
|
791 }
|
|
792 }
|
|
793 v30 = pTexture_50636C;
|
|
794 dword_506568 = 5;
|
|
795 v23 = pViewport->uViewportTL_Y + 302;
|
|
796 v7 = pViewport->uViewportTL_X + 397;
|
|
797 LABEL_46:
|
|
798 pRenderer->DrawTextureTransparent(v7, v23, v30);
|
819
|
799 a1.uFrameWidth = game_viewport_width;
|
|
800 a1.uFrameHeight = game_viewport_height;
|
|
801 a1.uFrameX = game_viewport_x;
|
|
802 a1.uFrameY = game_viewport_z;
|
|
803 a1.uFrameZ = game_viewport_z;
|
|
804 a1.uFrameW = game_viewport_w;
|
706
|
805 a1.DrawTitleText(pBook2Font, 0, 0x16u, 0, pGlobalTXT_LocalizationStrings[154], 3u);
|
|
806 a1.uFrameX = 48;
|
|
807 a1.uFrameY = 70;
|
|
808 a1.uFrameWidth = 360;
|
|
809 a1.uFrameHeight = 264;
|
|
810 a1.uFrameZ = 407;
|
|
811 a1.uFrameW = 333;
|
|
812 if ( v31 )
|
|
813 {
|
|
814 awards_count2 = 0;
|
|
815 dword_506528 = 0;
|
|
816 dword_50651C = 0;
|
|
817 awards_count = 0;
|
|
818 v8 = 0;
|
|
819 do
|
|
820 {
|
|
821 //if ( dword_72371C[2 * v8] == dword_506568 )
|
|
822 if ( pAutonoteTxt[v8-1].eType == dword_506568 )
|
|
823 {
|
|
824 //v32 = (&dword_723718_autonote_related)[8 * (signed __int16)v8];
|
|
825 v32 = (char *)pAutonoteTxt[v8-1].pText;
|
|
826 if ( (short)v8 )
|
|
827 {
|
|
828 if ( (unsigned __int16)_449B57_test_bit(pParty->_autonote_bits, v8) && v32 )
|
|
829 {
|
|
830 v9 = awards_count++;
|
|
831 achievedAwardsIndex[v9] = (signed __int16)v8;
|
|
832 }
|
|
833 }
|
|
834 }
|
|
835 ++v8;
|
|
836 }
|
|
837 while ( v8 < 196 );
|
|
838 awards_count2 = awards_count;
|
|
839 }
|
|
840 else
|
|
841 {
|
|
842 if ( dword_506544 )
|
|
843 {
|
|
844 v10 = awards_count + dword_506528;
|
|
845 if ( awards_count + dword_506528 < awards_count2 )
|
|
846 {
|
|
847 v11 = dword_50651C++;
|
|
848 byte_506130[v11] = awards_count;
|
|
849 dword_506528 = v10;
|
|
850 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
|
|
851 }
|
|
852 }
|
|
853 if ( dword_506548 && dword_50651C )
|
|
854 {
|
|
855 --dword_50651C;
|
|
856 dword_506528 -= (unsigned __int8)byte_506130[dword_50651C];
|
|
857 pAudioPlayer->PlaySound((SoundID)230, 0, 0, -1, 0, 0, 0, 0);
|
|
858 }
|
|
859 if ( !awards_count || dword_506528 < 1 )
|
|
860 {
|
|
861 dword_506528 = 0;
|
|
862 dword_50651C = 0;
|
|
863 }
|
|
864 }
|
|
865 v12 = dword_506528;
|
|
866 dword_50652C = 0;
|
|
867 dword_506544 = 0;
|
|
868 dword_506548 = 0;
|
|
869 awards_count = 0;
|
|
870 dword_506530 = 0;
|
|
871 dword_506534 = 0;
|
|
872 dword_506538 = 0;
|
|
873 dword_50653C = 0;
|
|
874 dword_506540 = 0;
|
|
875 while ( v12 < awards_count2 )
|
|
876 {
|
|
877 v13 = achievedAwardsIndex[v12];
|
|
878 ++awards_count;
|
|
879 //v14 = (&dword_723718_autonote_related)[8 * v13];
|
|
880 v14 = pAutonoteTxt[v13-1].pText;
|
|
881 //a1.DrawText(pAutonoteFont, 1, 0, 0, (&dword_723718_autonote_related)[8 * v13], 0, 0, 0);
|
|
882 a1.DrawText(pAutonoteFont, 1, 0, 0, pAutonoteTxt[v13-1].pText, 0, 0, 0);
|
|
883 v15 = pAutonoteFont->CalcTextHeight(v14, &a1, 1, 0);
|
|
884 v16 = a1.uFrameY + v15;
|
|
885 if ( (signed int)(a1.uFrameY + v15) > (signed int)a1.uFrameHeight )
|
|
886 break;
|
|
887 pRenderer->DrawTextureTransparent(0x64u, v16 + 12, pSpellBookPagesTextr_10);
|
|
888 ++v12;
|
|
889 a1.uFrameY = v16 + 24;
|
|
890 }
|
|
891 }
|
|
892
|
|
893
|
|
894 //----- (00413980) --------------------------------------------------------
|
|
895 void DrawBook_Maps()
|
|
896 {
|
|
897
|
|
898 int v6; // eax@31
|
|
899 unsigned int map_id; // eax@35
|
|
900 Texture *buttnTxtr; // [sp-4h] [bp-DCh]@3
|
|
901 char party_coord[120]; // [sp+Ch] [bp-CCh]@37
|
|
902 GUIWindow map_window; // [sp+84h] [bp-54h]@35
|
|
903 unsigned int textrX, textrY;
|
|
904
|
|
905 pRenderer->DrawTextureIndexed(pViewport->uViewportTL_X, pViewport->uViewportTL_Y, pSpellBookPagesTextr_12);
|
|
906 if ( dword_506548 || viewparams->field_2C / 128 >= 12 )
|
|
907 {
|
|
908 buttnTxtr = pTex_tab_an_6a__zoom_off;
|
|
909 textrY = pViewport->uViewportTL_Y + 2;
|
|
910 textrX = pViewport->uViewportTL_X + 408;
|
|
911 }
|
|
912 else
|
|
913 {
|
|
914 buttnTxtr = pTex_tab_an_6b__zoom_on;
|
|
915 textrY = pViewport->uViewportTL_Y + 1;
|
|
916 textrX = pViewport->uViewportTL_X + 398;
|
|
917 }
|
|
918 pRenderer->DrawTextureTransparent(textrX, textrY, buttnTxtr);
|
|
919 if ( dword_506544 || viewparams->field_2C / 128 <= 3 )
|
|
920 {
|
|
921 buttnTxtr = pTex_tab_an_7a__zoot_off;
|
|
922 textrY = pViewport->uViewportTL_Y + 38;
|
|
923 textrX = pViewport->uViewportTL_X + 408;
|
|
924 }
|
|
925 else
|
|
926 {
|
|
927 buttnTxtr = pTex_tab_an_7b__zoot_on;
|
|
928 textrY = pViewport->uViewportTL_Y + 38;
|
|
929 textrX = pViewport->uViewportTL_X + 398;
|
|
930 }
|
|
931 pRenderer->DrawTextureTransparent(textrX, textrY, buttnTxtr);
|
|
932 if ( dword_506540 )
|
|
933 {
|
|
934 buttnTxtr = pTexture_506390;
|
|
935 textrY = pViewport->uViewportTL_Y + 113;
|
|
936 textrX = pViewport->uViewportTL_X + 408;
|
|
937 }
|
|
938 else
|
|
939 {
|
|
940 buttnTxtr = pTexture_506394;
|
|
941 textrY = pViewport->uViewportTL_Y + 113;
|
|
942 textrX = pViewport->uViewportTL_X + 398;
|
|
943 }
|
|
944 pRenderer->DrawTextureTransparent(textrX, textrY, buttnTxtr);
|
|
945 if ( dword_50653C )
|
|
946 {
|
|
947 buttnTxtr = pTexture_506388;
|
|
948 textrY = pViewport->uViewportTL_X + 150;
|
|
949 textrX = pViewport->uViewportTL_Y + 408;
|
|
950 }
|
|
951 else
|
|
952 {
|
|
953 buttnTxtr = pTexture_50638C;
|
|
954 textrY = pViewport->uViewportTL_X + 150;
|
|
955 textrX = pViewport->uViewportTL_Y + 399;
|
|
956 }
|
|
957 pRenderer->DrawTextureTransparent(textrX, textrY, buttnTxtr);
|
|
958 if ( dword_506538 )
|
|
959 {
|
|
960 buttnTxtr = pTexture_506380;
|
|
961 textrY = pViewport->uViewportTL_Y + 188;
|
|
962 textrX = pViewport->uViewportTL_X + 408;
|
|
963 }
|
|
964 else
|
|
965 {
|
|
966 buttnTxtr = pTexture_506384;
|
|
967 textrY = pViewport->uViewportTL_Y + 188;
|
|
968 textrX = pViewport->uViewportTL_X + 397;
|
|
969 }
|
|
970 pRenderer->DrawTextureTransparent(textrX, textrY, buttnTxtr);
|
|
971 if ( dword_506534 )
|
|
972 {
|
|
973 buttnTxtr = pTexture_506378;
|
|
974 textrY = pViewport->uViewportTL_Y + 226;
|
|
975 textrX = pViewport->uViewportTL_X + 408;
|
|
976 }
|
|
977 else
|
|
978 {
|
|
979 buttnTxtr = pTexture_50637C;
|
|
980 textrY = pViewport->uViewportTL_Y + 226;
|
|
981 textrX = pViewport->uViewportTL_X + 397;
|
|
982 }
|
|
983 pRenderer->DrawTextureTransparent(textrX, textrY, buttnTxtr);
|
|
984 if ( dword_506544 )
|
|
985 viewparams->CenterOnParty2();
|
|
986 if ( dword_506548 )
|
|
987 viewparams->CenterOnParty();
|
|
988 if ( dword_506540 )
|
|
989 viewparams->_443219();
|
|
990 if ( dword_50653C )
|
|
991 viewparams->_443231();
|
|
992 if ( dword_506538 )
|
|
993 viewparams->_44323D();
|
|
994 if ( dword_506534 )
|
|
995 viewparams->_443225();
|
|
996
|
|
997 if ( dword_506548 | dword_506544 | dword_506540 | dword_50653C | dword_506538 | dword_506534 )
|
|
998 pAudioPlayer->PlaySound(SOUND_Button2, 0, 0, -1, 0, 0, 0, 0);
|
|
999 dword_506548 = 0;
|
|
1000 dword_506544 = 0;
|
|
1001 dword_506534 = 0;
|
|
1002 dword_506538 = 0;
|
|
1003 dword_50653C = 0;
|
|
1004 dword_506540 = 0;
|
|
1005 DrawBook_Map_sub(97, 49, 361, 313, 0);
|
|
1006 pRenderer->DrawTextureTransparent(75, 22, pTexture_mapbordr);
|
819
|
1007 map_window.uFrameWidth = game_viewport_width;
|
|
1008 map_window.uFrameHeight = game_viewport_height;
|
|
1009 map_window.uFrameX = game_viewport_x;
|
|
1010 map_window.uFrameY = game_viewport_y;
|
|
1011 map_window.uFrameZ = game_viewport_z;
|
|
1012 map_window.uFrameW = game_viewport_w;
|
706
|
1013 map_id = pMapStats->GetMapInfo(pCurrentMapName);
|
|
1014 if ( map_id )
|
|
1015 map_window.DrawTitleText(pBook2Font, -14, 12, 0, pMapStats->pInfos[map_id].pName, 3);
|
|
1016 map_window.uFrameX = 0;
|
|
1017 sprintf(party_coord, pGlobalTXT_LocalizationStrings[659], pParty->vPosition.x, pParty->vPosition.y); //"x: %d y: %d"
|
|
1018 map_window.DrawTitleText(pFontComic, 0, 320, 0, party_coord, 0);
|
|
1019 }
|
|
1020
|
|
1021 //----- (00442955) --------------------------------------------------------
|
|
1022 void DrawBook_Map_sub( unsigned int tl_x, unsigned int tl_y, unsigned int br_x, int br_y, int _48074 )
|
|
1023 {
|
|
1024 int v5; // ebx@1
|
|
1025 int v6; // edi@1
|
|
1026 BLVMapOutlines *v7; // eax@8
|
|
1027 unsigned __int8 v8; // zf@8
|
|
1028 unsigned __int8 v9; // sf@8
|
|
1029 int v10; // esi@10
|
|
1030 unsigned int v11; // edx@11
|
|
1031 __int16 v12; // cx@12
|
|
1032 signed int v13; // eax@15
|
|
1033 int v14; // eax@16
|
|
1034 Vec3_short_ *v15; // ecx@16
|
|
1035 int v16; // edx@16
|
|
1036 int v17; // ecx@16
|
|
1037 Vec3_short_ *v18; // eax@16
|
|
1038 int v19; // ecx@16
|
|
1039 int v20; // eax@16
|
|
1040 signed int v21; // esi@18
|
|
1041 int v22; // ecx@21
|
|
1042 BLVMapOutline *v23; // ecx@21
|
|
1043 Vec3_short_ *v24; // edx@21
|
|
1044 Vec3_short_ *v25; // eax@21
|
|
1045 int v26; // ecx@21
|
|
1046 unsigned __int16 *v27; // edi@21
|
|
1047 int v28; // edx@21
|
|
1048 int v29; // eax@21
|
|
1049 double v30; // st7@23
|
|
1050 signed __int64 v31; // qax@23
|
|
1051 unsigned short *v32; // edx@23
|
|
1052 int textr_width; // esi@23
|
|
1053 signed int v34; // eax@23
|
|
1054 signed int v35; // ecx@23
|
|
1055 int v36; // esi@27
|
|
1056 int v37; // ecx@27
|
|
1057 int v38; // edx@31
|
|
1058 unsigned int v39; // eax@33
|
|
1059 short *v40; // esi@33
|
|
1060 short *v41; // edi@33
|
|
1061 unsigned __int8 v42; // cf@33
|
|
1062 unsigned int v43; // ecx@33
|
|
1063 short *v44; // edi@33
|
|
1064 short *v45; // esi@33
|
|
1065 int v46; // ecx@33
|
|
1066 signed int v47; // esi@38
|
|
1067 signed int v48; // ecx@38
|
|
1068 int v49; // eax@38
|
|
1069 signed int v50; // edx@55
|
|
1070 unsigned int v51; // ecx@55
|
|
1071 int result; // eax@72
|
|
1072 int v53; // eax@75
|
|
1073 int v54; // esi@75
|
|
1074 int v55; // eax@75
|
|
1075 __int16 v56; // si@85
|
|
1076 double v57; // st7@85
|
|
1077 int v58; // ebx@85
|
|
1078 signed __int64 v59; // qax@85
|
|
1079 signed int v60; // edi@85
|
|
1080 signed __int64 v61; // qax@85
|
|
1081 signed int v62; // ebx@85
|
|
1082 signed int v63; // esi@85
|
|
1083 int v64; // eax@87
|
|
1084 unsigned int v65; // ebx@95
|
|
1085 unsigned short *v66; // edx@95
|
|
1086 unsigned __int16 *v67; // esi@96
|
|
1087 int v68; // edi@98
|
|
1088 unsigned __int16 v69; // cx@99
|
|
1089 unsigned int v70; // [sp-10h] [bp-48074h]@80
|
|
1090 unsigned int v71; // [sp-Ch] [bp-48070h]@80
|
|
1091 unsigned int v72; // [sp-8h] [bp-4806Ch]@80
|
|
1092 signed int v73; // [sp-4h] [bp-48068h]@59
|
|
1093 unsigned __int16 v74; // [sp-4h] [bp-48068h]@79
|
|
1094 unsigned short map_texture_16[147456]; // [sp+Ch] [bp-48058h]@23
|
|
1095 int v76; // [sp+4800Ch] [bp-58h]@23
|
|
1096 unsigned __int16 *v77; // [sp+48010h] [bp-54h]@27
|
|
1097 unsigned __int16 *pPalette_16; // [sp+48014h] [bp-50h]@23
|
|
1098 unsigned int surfPitch; // [sp+48018h] [bp-4Ch]@1
|
|
1099
|
|
1100 int v81; // [sp+48020h] [bp-44h]@23
|
|
1101 unsigned __int16* render16_data;
|
|
1102 unsigned char* texture8_data;
|
|
1103 unsigned char* curr_line;
|
|
1104 int scale_increment;
|
|
1105 int scaled_posX;
|
|
1106 int scaled_posY;
|
|
1107 int stepX_r;
|
|
1108 int stepY_r;
|
|
1109
|
|
1110
|
|
1111 unsigned int teal; // [sp+48028h] [bp-3Ch]@8
|
|
1112 int v84; // [sp+4802Ch] [bp-38h]@1
|
|
1113 int screenCenter_X; // [sp+48030h] [bp-34h]@1
|
|
1114 int v86; // [sp+48034h] [bp-30h]@1
|
|
1115 int v87; // [sp+48038h] [bp-2Ch]@16
|
|
1116 unsigned int v88; // [sp+4803Ch] [bp-28h]@16
|
|
1117 int black; // [sp+48040h] [bp-24h]@8
|
|
1118 int screenCenterY; // [sp+48044h] [bp-20h]@1
|
|
1119 unsigned int i; // [sp+48048h] [bp-1Ch]@9
|
|
1120 unsigned int screenHeight; // [sp+4804Ch] [bp-18h]@16
|
|
1121 unsigned __int16 *v93; // [sp+48050h] [bp-14h]@16
|
|
1122 signed int screenWidth; // [sp+48054h] [bp-10h]@8
|
|
1123 unsigned int v95; // [sp+48058h] [bp-Ch]@16
|
|
1124 int v96; // [sp+4805Ch] [bp-8h]@10
|
|
1125 const void *v97; // [sp+48060h] [bp-4h]@16
|
|
1126 unsigned short *a4a; // [sp+4806Ch] [bp+8h]@85
|
|
1127 int a5a; // [sp+48070h] [bp+Ch]@86
|
|
1128
|
|
1129 tl_x = tl_x;
|
|
1130 tl_y = tl_y;
|
|
1131 screenCenter_X = (signed int)(tl_x + br_x) >> 1;
|
|
1132 screenCenterY = (signed int)(tl_y + br_y) >> 1;
|
|
1133 surfPitch = pRenderer->uTargetSurfacePitch;
|
709
|
1134 pRenderer->SetRasterClipRect(tl_x, tl_y, br_x, br_y);
|
706
|
1135 v5 = viewparams->field_2C;
|
|
1136 v6 = viewparams->sViewCenterX;
|
|
1137 v86 = viewparams->sViewCenterX;
|
|
1138 v84 = viewparams->sViewCenterY;
|
|
1139 if ( viewparams->field_2C != 384 )
|
|
1140 {
|
|
1141 if ( viewparams->field_2C == 768 )
|
|
1142 {
|
|
1143 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor)
|
|
1144 v5 = 680;
|
|
1145 }
|
|
1146 }
|
|
1147 else
|
|
1148 {
|
711
|
1149 v6 = viewparams->indoor_center_x;
|
|
1150 v86 = viewparams->indoor_center_x;
|
|
1151 v84 = viewparams->indoor_center_y;
|
706
|
1152 if ( uCurrentlyLoadedLevelType == LEVEL_Indoor)
|
|
1153 v5 = viewparams->field_2C - 34;
|
|
1154 }
|
|
1155 if ( uCurrentlyLoadedLevelType != LEVEL_Indoor)
|
|
1156 {
|
|
1157 screenWidth = br_x - tl_x + 1;
|
|
1158 screenHeight = br_y - tl_y + 1;
|
|
1159 render16_data = &pRenderer->pTargetSurface[tl_x + tl_y * surfPitch];
|
710
|
1160 texture8_data = pIcons_LOD->pTextures[viewparams->uTextureID_LocationMap].pLevelOfDetail0_prolly_alpha_mask;
|
706
|
1161 pPalette_16 = pIcons_LOD->pTextures[viewparams->uTextureID_LocationMap].pPalette16;
|
|
1162 scale_increment = (1 << (pIcons_LOD->pTextures[viewparams->uTextureID_LocationMap].uWidthLn2 + 16)) / v5;
|
|
1163
|
|
1164 v30 = (double)(1 << (16 - pIcons_LOD->pTextures[viewparams->uTextureID_LocationMap].uWidthLn2));
|
|
1165
|
|
1166
|
|
1167 teal = (unsigned int)(signed __int64)((double)(v6 - 22528 / (v5 / 384) + 32768) / v30) << 16;
|
|
1168 v97 = (const void *)((unsigned int)(signed __int64)((double)(v6 - 22528 / (v5 / 384) + 32768) / v30) << 16);
|
|
1169
|
|
1170 v32 = map_texture_16;
|
|
1171 textr_width = pIcons_LOD->pTextures[viewparams->uTextureID_LocationMap].uTextureWidth;
|
|
1172 stepY_r = (int)(signed __int64)((double)(- v84 - 22528 / (v5 / 384)+ 32768) / v30) << 16;
|
|
1173 v81 = (signed __int16)(signed __int64)((double)(v6 - 22528 / (v5 / 384) + 32768) / v30);
|
|
1174 black = (signed __int16)(signed __int64)((double)(v6 - 22528 / (v5 / 384) + 32768) / v30);
|
|
1175
|
|
1176 v76 = textr_width;
|
|
1177 scaled_posY = stepY_r >> 16;
|
|
1178 //nearest neiborhood scaling
|
|
1179 if ( texture8_data)
|
|
1180 {
|
|
1181 for(uint i=0; i<screenHeight;++i)
|
|
1182 {
|
|
1183 curr_line=&texture8_data[scaled_posY*textr_width];
|
|
1184 stepX_r=teal;
|
|
1185 for(uint j=0; j<screenWidth;++j)
|
|
1186 {
|
|
1187 scaled_posX=stepX_r>>16;
|
|
1188 map_texture_16[i*screenWidth+j]=pPalette_16[*(curr_line+scaled_posX)];
|
|
1189 stepX_r+=scale_increment;
|
|
1190 }
|
|
1191 stepY_r+=scale_increment;
|
|
1192 scaled_posY=stepY_r>>16;
|
|
1193 }
|
|
1194 }
|
|
1195 //move visible square to render
|
|
1196 for(uint i=0; i<screenHeight;++i)
|
|
1197 {
|
|
1198 if ( screenWidth > 0 )
|
|
1199 {
|
|
1200 memcpy((void*)&render16_data[surfPitch*i],(void*)&map_texture_16[i*screenWidth], screenWidth*2);
|
|
1201 }
|
|
1202 }
|
|
1203 }
|
|
1204 else
|
|
1205 {
|
|
1206 black = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0, 0, 0);
|
|
1207 teal = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0, 0xFFu, 0xFFu);
|
|
1208 v7 = pIndoor->pMapOutlines;
|
|
1209 uNumBlueFacesInBLVMinimap = 0;
|
|
1210 v8 = pIndoor->pMapOutlines->uNumOutlines == 0;
|
|
1211 v9 = pIndoor->pMapOutlines->uNumOutlines < 0;
|
|
1212 screenWidth = 0;
|
|
1213 if ( !(v9 | v8) )
|
|
1214 {
|
|
1215 i = 0;
|
|
1216 do
|
|
1217 {
|
|
1218 v10 = (int)((char *)v7 + i + 4);
|
|
1219 v96 = pIndoor->pFaces[*(short *)((char *)v7 + i + 8)].uAttributes;
|
|
1220 if ( !(BYTE1(v96) & 0x20 || (v11 = pIndoor->pFaces[*(short *)((char *)v7 + i + 10)].uAttributes, BYTE1(v11) & 0x20) ))
|
|
1221 {
|
|
1222 v12 = *(short *)((char *)v7 + i + 14);
|
|
1223 if ( !(v12 & 1) )
|
|
1224 {
|
|
1225 if ( !(!(v96 & 0x80) && (v11 & 0x80u) == 0 ))
|
|
1226 {
|
|
1227 v96 = (signed int)screenWidth >> 3;
|
|
1228 v13 = screenWidth;
|
|
1229 *(short *)(v10 + 10) = v12 | 1;
|
|
1230 pIndoor->_visible_outlines[v96] |= 1 << (7 - v13 % 8);
|
|
1231 }
|
|
1232 }
|
|
1233 if ( (!(v12 & 1) && !(!(v96 & 0x80) && (v11 & 0x80u) == 0 )) || v12 & 1)
|
|
1234 {
|
|
1235 v14 = *(short *)v10;
|
|
1236 v88 = v5;
|
|
1237 v15 = &pIndoor->pVertices[v14];
|
|
1238 v16 = v15->x;
|
|
1239 v17 = v15->y - v84;
|
|
1240 v93 = (unsigned __int16 *)(v16 - v6);
|
|
1241 screenHeight = v17;
|
|
1242 v18 = &pIndoor->pVertices[*(short *)(v10 + 2)];
|
|
1243 v19 = v18->x;
|
|
1244 v20 = v18->y - v84;
|
|
1245 v95 = v19 - v6;
|
|
1246 v97 = (const void *)v20;
|
|
1247 v88 = (unsigned __int64)((v16 - v6) * (signed __int64)v5) >> 16;
|
|
1248 v87 = (unsigned __int64)((signed int)screenHeight * (signed __int64)v5) >> 16;
|
|
1249 v93 = (unsigned __int16 *)((unsigned __int64)((v19 - v6) * (signed __int64)v5) >> 16);
|
|
1250 screenHeight = (unsigned __int64)(v20 * (signed __int64)v5) >> 16;
|
709
|
1251 pRenderer->RasterLine2D(
|
706
|
1252 screenCenter_X + v88,
|
|
1253 screenCenterY - v87,
|
|
1254 screenCenter_X + ((unsigned __int64)((v19 - v6) * (signed __int64)v5) >> 16),
|
|
1255 screenCenterY - screenHeight,
|
|
1256 black);
|
|
1257 v7 = pIndoor->pMapOutlines;
|
|
1258 }
|
|
1259 }
|
|
1260 ++screenWidth;
|
|
1261 i += 12;
|
|
1262 }
|
|
1263 while ( screenWidth < (signed int)v7->uNumOutlines );
|
|
1264 }
|
|
1265 v21 = 0;
|
|
1266 if ( (signed int)uNumBlueFacesInBLVMinimap > 0 )
|
|
1267 {
|
|
1268 while ( 1 )
|
|
1269 {
|
|
1270 v22 = pBlueFacesInBLVMinimapIDs[v21];
|
|
1271 v87 = v5;
|
|
1272 v23 = &v7->pOutlines[v22];
|
|
1273 v24 = &pIndoor->pVertices[v23->uVertex1ID];
|
|
1274 v25 = &pIndoor->pVertices[v23->uVertex2ID];
|
|
1275 v26 = v25->x;
|
|
1276 v27 = (unsigned __int16 *)(v24->x - v86);
|
|
1277 v28 = v24->y - v84;
|
|
1278 v29 = v25->y - v84;
|
|
1279 v93 = v27;
|
|
1280 screenHeight = v28;
|
|
1281 v97 = (const void *)v29;
|
|
1282 v87 = (unsigned __int64)((signed int)v27 * (signed __int64)v5) >> 16;
|
|
1283 v88 = (unsigned __int64)(v28 * (signed __int64)v5) >> 16;
|
|
1284 i = (unsigned __int64)((v26 - v86) * (signed __int64)v5) >> 16;
|
|
1285 v95 = (unsigned __int64)(v29 * (signed __int64)v5) >> 16;
|
709
|
1286 pRenderer->RasterLine2D(
|
706
|
1287 screenCenter_X + ((unsigned __int64)((signed int)v27 * (signed __int64)v5) >> 16),
|
|
1288 screenCenterY - v88,
|
|
1289 screenCenter_X + ((unsigned __int64)((v26 - v86) * (signed __int64)v5) >> 16),
|
|
1290 screenCenterY - v95,
|
|
1291 teal);
|
|
1292 ++v21;
|
|
1293 if ( v21 >= (signed int)uNumBlueFacesInBLVMinimap )
|
|
1294 break;
|
|
1295 v7 = pIndoor->pMapOutlines;
|
|
1296 }
|
|
1297 v6 = v86;
|
|
1298 }
|
|
1299 }
|
|
1300 v47 = ((unsigned __int64)((pParty->vPosition.x - v6) * (signed __int64)v5) >> 16) + screenCenter_X - 3;
|
|
1301 v81 = pParty->vPosition.y - v84;
|
|
1302 v97 = (const void *)((unsigned __int64)((pParty->vPosition.y - v84) * (signed __int64)v5) >> 16);
|
|
1303 v48 = 1;
|
|
1304 v49 = screenCenterY - (int)v97 - 3;
|
|
1305 if ( v47 >= (signed int)tl_x )
|
|
1306 {
|
|
1307 if ( v47 > (signed int)br_x )
|
|
1308 {
|
|
1309 if ( (signed int)(((unsigned __int64)((pParty->vPosition.x - v6) * (signed __int64)v5) >> 16) + screenCenter_X - 6) > (signed int)br_x )
|
|
1310 v48 = 0;
|
|
1311 v47 = br_x;
|
|
1312 }
|
|
1313 }
|
|
1314 else
|
|
1315 {
|
|
1316 if ( (signed int)(((unsigned __int64)((pParty->vPosition.x - v6) * (signed __int64)v5) >> 16) + screenCenter_X) < (signed int)tl_x )
|
|
1317 v48 = 0;
|
|
1318 v47 = tl_x;
|
|
1319 }
|
|
1320 if ( v49 >= (signed int)tl_y )
|
|
1321 {
|
|
1322 if ( v49 > br_y )
|
|
1323 {
|
|
1324 if ( screenCenterY - (signed int)v97 - 6 > br_y )
|
|
1325 v48 = 0;
|
|
1326 v49 = br_y;
|
|
1327 }
|
|
1328 }
|
|
1329 else
|
|
1330 {
|
|
1331 if ( screenCenterY - (signed int)v97 < (signed int)tl_y )
|
|
1332 v48 = 0;
|
|
1333 v49 = tl_y;
|
|
1334 }
|
|
1335 if ( v48 == 1 )
|
|
1336 {
|
|
1337 v50 = 0;
|
|
1338 v51 = pParty->sRotationY & stru_5C6E00->uDoublePiMask;
|
|
1339 if ( (signed int)(pParty->sRotationY & stru_5C6E00->uDoublePiMask) >= 128 )
|
|
1340 {
|
|
1341 if ( (signed int)v51 > 384 )
|
|
1342 {
|
|
1343 if ( (signed int)v51 >= 640 )
|
|
1344 {
|
|
1345 if ( (signed int)v51 > 896 )
|
|
1346 {
|
|
1347 if ( (signed int)v51 >= 1152 )
|
|
1348 {
|
|
1349 if ( (signed int)v51 > 1408 )
|
|
1350 {
|
|
1351 if ( (signed int)v51 >= 1664 )
|
|
1352 {
|
|
1353 if ( (signed int)v51 <= 1920 )
|
|
1354 v73 = 7;
|
|
1355 }
|
|
1356 else
|
|
1357 {
|
|
1358 v73 = 6;
|
|
1359 }
|
|
1360 }
|
|
1361 else
|
|
1362 {
|
|
1363 v73 = 5;
|
|
1364 }
|
|
1365 }
|
|
1366 else
|
|
1367 {
|
|
1368 v73 = 4;
|
|
1369 }
|
|
1370 }
|
|
1371 else
|
|
1372 {
|
|
1373 v73 = 3;
|
|
1374 }
|
|
1375 }
|
|
1376 else
|
|
1377 {
|
|
1378 v73 = 2;
|
|
1379 }
|
|
1380 if( (signed int)v51 <=1920)
|
|
1381 v50 = v73;
|
|
1382 }
|
|
1383 else
|
|
1384 v50 = 1;
|
|
1385 }
|
|
1386 pRenderer->DrawTransparentRedShade(v47, v49, (Texture *)(pTextureIDs_pMapDirs[v50] != -1 ? (int)&pIcons_LOD->pTextures[pTextureIDs_pMapDirs[v50]] : 0));
|
|
1387 }
|
|
1388 result = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0xFFu, 0xFFu, 0xFFu);
|
|
1389 v95 = 0;
|
|
1390 v86 = result;
|
|
1391 if ( (signed int)uNumLevelDecorations > 0 )
|
|
1392 {
|
|
1393 screenWidth = (unsigned int)&pLevelDecorations[0].vPosition;
|
|
1394 do
|
|
1395 {
|
|
1396 if ( *(char *)(screenWidth - 2) & 8 )
|
|
1397 {
|
|
1398 v53 = *(int *)(screenWidth + 4) - v84;
|
|
1399 v93 = (unsigned __int16 *)(*(int *)screenWidth - v6);
|
|
1400 screenHeight = v53;
|
|
1401 v54 = ((unsigned __int64)((signed int)v93 * (signed __int64)v5) >> 16) + screenCenter_X;
|
|
1402 v97 = (const void *)((unsigned __int64)(v53 * (signed __int64)v5) >> 16);
|
|
1403 v55 = screenCenterY - (int)v97;
|
709
|
1404 if ( v54 >= pRenderer->raster_clip_x )
|
706
|
1405 {
|
709
|
1406 if ( v54 <= pRenderer->raster_clip_z && v55 >= pRenderer->raster_clip_y && v55 <= pRenderer->raster_clip_w )
|
706
|
1407 {
|
|
1408 v74 = v86;
|
|
1409 if ( v5 > 512 )
|
|
1410 {
|
|
1411 v96 = v55 + 1;
|
|
1412 black = v55 - 1;
|
709
|
1413 pRenderer->RasterLine2D(v54 - 1, v55 - 1, v54 - 1, v55 + 1, v86);
|
|
1414 pRenderer->RasterLine2D(v54, black, v54, v96, v86);
|
706
|
1415 ++v54;
|
|
1416 v74 = v86;
|
|
1417 v72 = v96;
|
|
1418 v71 = v54;
|
|
1419 v70 = black;
|
|
1420 }
|
|
1421 else
|
|
1422 {
|
|
1423 v72 = screenCenterY - (int)v97;
|
|
1424 v71 = ((unsigned __int64)((signed int)v93 * (signed __int64)v5) >> 16) + screenCenter_X;
|
|
1425 v70 = screenCenterY - (int)v97;
|
|
1426 }
|
709
|
1427 pRenderer->RasterLine2D(v54, v70, v71, v72, v74);
|
706
|
1428 }
|
|
1429 }
|
|
1430 }
|
|
1431 ++v95;
|
|
1432 result = v95;
|
|
1433 screenWidth += 32;
|
|
1434 }
|
|
1435 while ( (signed int)v95 < (signed int)uNumLevelDecorations );
|
|
1436 }
|
|
1437 if ( uCurrentlyLoadedLevelType == LEVEL_Outdoor)
|
|
1438 {
|
|
1439 screenCenterY = br_x - tl_x + 1;
|
|
1440 v95 = br_y - tl_y + 1;
|
|
1441 v77 = &pRenderer->pTargetSurface[tl_x + tl_y * surfPitch];
|
|
1442 v56 = pIcons_LOD->pTextures[viewparams->uTextureID_LocationMap].uWidthLn2;
|
|
1443 black = (1 << (v56 + 16)) / v5;
|
|
1444 v57 = (double)(1 << (16 - v56));
|
|
1445 v58 = 22528 / (v5 / 384);
|
|
1446 v59 = (signed __int64)((double)(v6 - v58 + 32768) / v57);
|
|
1447 v60 = (int)v59 << 16;
|
|
1448 v97 = (const void *)((int)v59 << 16);
|
|
1449 v61 = (signed __int64)((double)(32768 - v58 - v84) / v57);
|
|
1450 pPalette_16 = (unsigned __int16 *)(v60 >> 16);
|
|
1451 v62 = (int)v61 << 16;
|
|
1452 teal = v60 >> 16;
|
|
1453 v63 = (signed __int16)v61;
|
|
1454 a4a = map_texture_16;
|
|
1455 result = GenerateColorAsCloseAsPossibleToR8G8B8InTargetFormat(0xCu, 0xCu, 0xCu);
|
|
1456 screenCenter_X = 0;
|
|
1457 for ( i = result; screenCenter_X < (signed int)v95; result = screenCenter_X )
|
|
1458 {
|
|
1459 a5a = 0;
|
|
1460 if ( screenCenterY > 0 )
|
|
1461 {
|
|
1462 v96 = (v63 - 80) / 4;
|
|
1463 v64 = teal;
|
|
1464 do
|
|
1465 {
|
|
1466 v81 = (v64 - 80) / 4;
|
|
1467 if ( !pOutdoor->_47F04C(v81, v96) )
|
|
1468 {
|
|
1469 if ( pOutdoor->_47F097(v81, v96) )
|
|
1470 {
|
|
1471 if ( !((a5a + screenCenter_X) % 2) )
|
|
1472 *a4a = i;
|
|
1473 }
|
|
1474 else
|
|
1475 {
|
|
1476 *a4a = 0;
|
|
1477 }
|
|
1478 }
|
|
1479 ++a4a;
|
|
1480 v97 = (char *)v97 + black;
|
|
1481 v64 = (signed int)v97 >> 16;
|
|
1482 ++a5a;
|
|
1483 }
|
|
1484 while ( a5a < screenCenterY );
|
|
1485 }
|
|
1486 v62 += black;
|
|
1487 v97 = (const void *)v60;
|
|
1488 a4a += screenCenterY - a5a;
|
|
1489 v63 = v62 >> 16;
|
|
1490 ++screenCenter_X;
|
|
1491 teal = (unsigned int)pPalette_16;
|
|
1492 }
|
|
1493 v65 = v95;
|
|
1494 v66 = map_texture_16;
|
|
1495 if ( (signed int)v95 > 0 )
|
|
1496 {
|
|
1497 v67 = v77;
|
|
1498 result = 2 * (surfPitch - screenCenterY);
|
|
1499 do
|
|
1500 {
|
|
1501 if ( screenCenterY > 0 )
|
|
1502 {
|
|
1503 v68 = screenCenterY;
|
|
1504 do
|
|
1505 {
|
|
1506 v69 = *(short *)v66;
|
|
1507 if ( !*(short *)v66 || v69 == (short)i )
|
|
1508 *v67 = v69;
|
|
1509 ++v66;
|
|
1510 ++v67;
|
|
1511 --v68;
|
|
1512 }
|
|
1513 while ( v68 );
|
|
1514 }
|
|
1515 v67 = (unsigned __int16 *)((char *)v67 + result);
|
|
1516 --v65;
|
|
1517 }
|
|
1518 while ( v65 );
|
|
1519 }
|
|
1520 }
|
|
1521 }
|
|
1522
|
|
1523
|
|
1524
|
|
1525
|
|
1526 //----- (00413CC6) --------------------------------------------------------
|
|
1527 void __thiscall SellectDrawBook(unsigned int uBook)
|
|
1528 {
|
|
1529 enum WindowType pWindowType; // esi@1
|
|
1530
|
|
1531 pWindowType = (enum WindowType)uBook;
|
|
1532 pRenderer->DrawTextureIndexed(471u, 445u, (Texture *)(uExitCancelTextureId != -1 ? (int)&pIcons_LOD->pTextures[uExitCancelTextureId] : 0));
|
|
1533 switch ( pWindowType )
|
|
1534 {
|
|
1535 case WINDOW_Lloyd: // 177
|
|
1536 DrawLloydBeaconsScreen();
|
|
1537 break;
|
|
1538 case WINDOW_TownPortal: //195
|
|
1539 DrawTownPortalScreen();
|
|
1540 break;
|
|
1541 case WINDOW_QuestBook: //200
|
|
1542 DrawBook_Quests();
|
|
1543 break;
|
|
1544 case WINDOW_AutonotesBook: //201
|
|
1545 DrawBook_Autonotes();
|
|
1546 break;
|
|
1547 case WINDOW_MapsBook://202
|
|
1548 DrawBook_Maps();
|
|
1549 break;
|
|
1550 case WINDOW_CalendarBook://203
|
|
1551 DrawBook_Calendar();
|
|
1552 break;
|
|
1553 case WINDOW_HistoryBook://224
|
|
1554 DrawBook_History();
|
|
1555 break;
|
|
1556 }
|
|
1557 }
|