1298
|
1 #ifdef _MSC_VER
|
|
2 #define _CRT_SECURE_NO_WARNINGS
|
|
3 #endif
|
|
4
|
1299
|
5 #include "..\Mouse.h"
|
|
6 #include "..\Keyboard.h"
|
1298
|
7
|
1299
|
8 #include "..\GUIWindow.h"
|
|
9 #include "..\GUIFont.h"
|
|
10 #include "..\AudioPlayer.h"
|
|
11 #include "..\Render.h"
|
|
12 #include "..\LOD.h"
|
|
13 #include "..\PaletteManager.h"
|
|
14 #include "..\IconFrameTable.h"
|
|
15 #include "..\texts.h"
|
1298
|
16
|
1299
|
17 #include "..\mm7_data.h"
|
1298
|
18
|
|
19
|
|
20 //----- (0041B578) --------------------------------------------------------
|
|
21 void MainMenuUI_LoadFontsAndSomeStuff()
|
|
22 {
|
1653
|
23 pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
|
|
24 pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits);
|
1298
|
25 pPaletteManager->RecalculateAll();
|
|
26
|
|
27 for (uint i = 0; i < 480; ++i)
|
|
28 pSRZBufferLineOffsets[i] = 640 * i;
|
|
29
|
|
30 pRenderer->ResetTextureClipRect();
|
|
31
|
|
32 uTextureID_FONTPAL = pIcons_LOD->LoadTexture("FONTPAL", TEXTURE_16BIT_PALETTE);
|
|
33
|
|
34 pFontArrus = LoadFont("arrus.fnt", "FONTPAL", nullptr);
|
|
35 pFontArrus->field_3 = 0;
|
|
36
|
|
37 pFontLucida = LoadFont("lucida.fnt", "FONTPAL", nullptr);
|
|
38 pFontLucida->field_3 = 0;
|
|
39
|
|
40 pFontCreate = LoadFont("create.fnt", "FONTPAL", nullptr);
|
|
41 pFontCreate->field_3 = 0;
|
|
42
|
|
43 pFontSmallnum = LoadFont("smallnum.fnt", "FONTPAL", nullptr);
|
|
44 pFontComic = LoadFont("comic.fnt", "FONTPAL", nullptr);
|
|
45
|
|
46 for (uint i = 0; i < 20; ++i)
|
|
47 pWindowList[i].eWindowType = WINDOW_null;
|
|
48
|
|
49 uNumVisibleWindows = -1;
|
|
50 memset(pVisibleWindowsIdxs.data(), 0, sizeof(pVisibleWindowsIdxs));
|
|
51 }
|
|
52
|
|
53 //----- (004415C5) --------------------------------------------------------
|
|
54 static void LoadPartyBuffIcons()
|
|
55 {
|
|
56 for (uint i = 0; i < 14; ++i)
|
|
57 {
|
|
58 char filename[200];
|
|
59 sprintf(filename, "isn-%02d", i + 1);
|
|
60 pTextureIDs_PartyBuffIcons[i] = pIcons_LOD->LoadTexture(filename, TEXTURE_16BIT_PALETTE);
|
|
61 }
|
|
62
|
|
63 uIconIdx_FlySpell = pIconsFrameTable->FindIcon("spell21");
|
|
64 uIconIdx_WaterWalk = pIconsFrameTable->FindIcon("spell27");
|
|
65 }
|
|
66
|
|
67 //----- (0041B690) --------------------------------------------------------
|
|
68 void MainMenuUI_Create()
|
|
69 {
|
1667
|
70 pIconsFrameTable->InitializeAnimation(pIconsFrameTable->FindIcon("wizeyeC"));
|
|
71 pIconsFrameTable->InitializeAnimation(pIconsFrameTable->FindIcon("wizeyeB"));
|
|
72 pIconsFrameTable->InitializeAnimation(pIconsFrameTable->FindIcon("wizeyeA"));
|
|
73 pIconsFrameTable->InitializeAnimation(pIconsFrameTable->FindIcon("torchC"));
|
|
74 pIconsFrameTable->InitializeAnimation(pIconsFrameTable->FindIcon("torchB"));
|
|
75 pIconsFrameTable->InitializeAnimation(pIconsFrameTable->FindIcon("torchA"));
|
1298
|
76
|
1667
|
77 pTextureIDs_pMapDirs[0] = pIcons_LOD->LoadTexture("MAPDIR1", TEXTURE_16BIT_PALETTE);
|
|
78 pTextureIDs_pMapDirs[1] = pIcons_LOD->LoadTexture("MAPDIR2", TEXTURE_16BIT_PALETTE);
|
|
79 pTextureIDs_pMapDirs[2] = pIcons_LOD->LoadTexture("MAPDIR3", TEXTURE_16BIT_PALETTE);
|
|
80 pTextureIDs_pMapDirs[3] = pIcons_LOD->LoadTexture("MAPDIR4", TEXTURE_16BIT_PALETTE);
|
|
81 pTextureIDs_pMapDirs[4] = pIcons_LOD->LoadTexture("MAPDIR5", TEXTURE_16BIT_PALETTE);
|
|
82 pTextureIDs_pMapDirs[5] = pIcons_LOD->LoadTexture("MAPDIR6", TEXTURE_16BIT_PALETTE);
|
|
83 pTextureIDs_pMapDirs[6] = pIcons_LOD->LoadTexture("MAPDIR7", TEXTURE_16BIT_PALETTE);
|
|
84 pTextureIDs_pMapDirs[7] = pIcons_LOD->LoadTexture("MAPDIR8", TEXTURE_16BIT_PALETTE);
|
1298
|
85
|
1667
|
86 uTextureID_BarBlue = pIcons_LOD->LoadTexture("ib-statB", TEXTURE_16BIT_PALETTE);
|
|
87 uTextureID_BarGreen = pIcons_LOD->LoadTexture("ib-statG", TEXTURE_16BIT_PALETTE);
|
|
88 uTextureID_BarYellow = pIcons_LOD->LoadTexture("ib-statY", TEXTURE_16BIT_PALETTE);
|
|
89 uTextureID_BarRed = pIcons_LOD->LoadTexture("ib-statR", TEXTURE_16BIT_PALETTE);
|
|
90 uTextureID_mhp_bd = pIcons_LOD->LoadTexture("mhp_bg", TEXTURE_16BIT_PALETTE);
|
|
91 uTextureID_mhp_capl = pIcons_LOD->LoadTexture("mhp_capl", TEXTURE_16BIT_PALETTE);
|
|
92 uTextureID_mhp_capr = pIcons_LOD->LoadTexture("mhp_capr", TEXTURE_16BIT_PALETTE);
|
|
93 uTextureID_mhp_grn = pIcons_LOD->LoadTexture("mhp_grn", TEXTURE_16BIT_PALETTE);
|
|
94 uTextureID_mhp_red = pIcons_LOD->LoadTexture("mhp_red", TEXTURE_16BIT_PALETTE);
|
|
95 uTextureID_mhp_yel = pIcons_LOD->LoadTexture("mhp_yel", TEXTURE_16BIT_PALETTE);
|
|
96 uTextureID_Leather = pIcons_LOD->LoadTexture("LEATHER", TEXTURE_16BIT_PALETTE);
|
|
97 pTexture_Leather = pIcons_LOD->LoadTexturePtr("ibground", TEXTURE_16BIT_PALETTE);
|
|
98 uTextureID_x_x_u = pIcons_LOD->LoadTexture("x_x_u", TEXTURE_16BIT_PALETTE);
|
|
99 uTextureID_BUTTDESC2 = pIcons_LOD->LoadTexture("BUTTESC2", TEXTURE_16BIT_PALETTE);
|
|
100 uTextureID_x_ok_u = pIcons_LOD->LoadTexture("x_ok_u", TEXTURE_16BIT_PALETTE);
|
|
101 uTextureID_BUTTYES2 = pIcons_LOD->LoadTexture("BUTTYES2", TEXTURE_16BIT_PALETTE);
|
|
102 uTextureID_BUTTMAKE = pIcons_LOD->LoadTexture("BUTTMAKE", TEXTURE_16BIT_PALETTE);
|
|
103 uTextureID_BUTTMAKE2 = pIcons_LOD->LoadTexture("BUTTMAKE2", TEXTURE_16BIT_PALETTE);
|
1298
|
104
|
1667
|
105 pPrimaryWindow = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, 0);
|
|
106 pPrimaryWindow->CreateButton(7, 8, 460, 343, 1, 0, UIMSG_MouseLeftClickInGame, 0, 0, "", 0);
|
1666
|
107
|
1667
|
108 pPrimaryWindow->CreateButton(61, 424, 31, 40, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0);
|
|
109 pPrimaryWindow->CreateButton(177, 424, 31, 40, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0);
|
|
110 pPrimaryWindow->CreateButton(292, 424, 31, 40, 2, 94, UIMSG_SelectCharacter, 3, '3', "", 0);
|
|
111 pPrimaryWindow->CreateButton(407, 424, 31, 40, 2, 94, UIMSG_SelectCharacter, 4, '4', "", 0);
|
1666
|
112
|
1667
|
113 pPrimaryWindow->CreateButton(24, 404, 5, 49, 1, 93, UIMSG_0, 1, 0, "", 0);
|
|
114 pPrimaryWindow->CreateButton(139, 404, 5, 49, 1, 93, UIMSG_0, 2, 0, "", 0);
|
|
115 pPrimaryWindow->CreateButton(255, 404, 5, 49, 1, 93, UIMSG_0, 3, 0, "", 0);
|
|
116 pPrimaryWindow->CreateButton(370, 404, 5, 49, 1, 93, UIMSG_0, 4, 0, "", 0);
|
1666
|
117
|
1667
|
118 pPrimaryWindow->CreateButton(97, 404, 5, 49, 1, 93, UIMSG_0, 1, 0, "", 0);
|
|
119 pPrimaryWindow->CreateButton(212, 404, 5, 49, 1, 93, UIMSG_0, 2, 0, "", 0);
|
|
120 pPrimaryWindow->CreateButton(328, 404, 5, 49, 1, 93, UIMSG_0, 3, 0, "", 0);
|
|
121 pPrimaryWindow->CreateButton(443, 404, 5, 49, 1, 93, UIMSG_0, 4, 0, "", 0);
|
1298
|
122
|
1667
|
123 uTextureID_ib_td1_A = pIcons_LOD->LoadTexture("ib-td1-A", TEXTURE_16BIT_PALETTE);
|
|
124 pBtn_Quests = pPrimaryWindow->CreateButton(491, 353, pIcons_LOD->GetTexture(uTextureID_ib_td1_A)->uTextureWidth,
|
|
125 pIcons_LOD->GetTexture(uTextureID_ib_td1_A)->uTextureHeight, 1, 0, UIMSG_OpenQuestBook, 0, pKeyActionMap->GetActionVKey(INPUT_Quest),
|
|
126 pGlobalTXT_LocalizationStrings[174], pIcons_LOD->GetTexture(uTextureID_ib_td1_A), 0); //Quests
|
1298
|
127
|
1667
|
128 uTextureID_ib_td2_A = pIcons_LOD->LoadTexture("ib-td2-A", TEXTURE_16BIT_PALETTE);
|
|
129 pBtn_Autonotes = pPrimaryWindow->CreateButton(527, 353, pIcons_LOD->GetTexture(uTextureID_ib_td2_A)->uTextureWidth,
|
|
130 pIcons_LOD->GetTexture(uTextureID_ib_td2_A)->uTextureHeight, 1, 0, UIMSG_OpenAutonotes, 0, pKeyActionMap->GetActionVKey(INPUT_Autonotes),
|
|
131 pGlobalTXT_LocalizationStrings[154], pIcons_LOD->GetTexture(uTextureID_ib_td2_A), 0);//Autonotes
|
1298
|
132
|
1667
|
133 uTextureID_ib_td3_A = pIcons_LOD->LoadTexture("ib-td3-A", TEXTURE_16BIT_PALETTE);
|
|
134 pBtn_Maps = pPrimaryWindow->CreateButton(546, 353, pIcons_LOD->GetTexture(uTextureID_ib_td3_A)->uTextureWidth,
|
|
135 pIcons_LOD->GetTexture(uTextureID_ib_td3_A)->uTextureHeight, 1, 0, UIMSG_OpenMapBook, 0, pKeyActionMap->GetActionVKey(INPUT_Mapbook),
|
|
136 pGlobalTXT_LocalizationStrings[139], pIcons_LOD->GetTexture(uTextureID_ib_td3_A), 0); //Maps
|
1298
|
137
|
1667
|
138 uTextureID_ib_td4_A = pIcons_LOD->LoadTexture("ib-td4-A", TEXTURE_16BIT_PALETTE);
|
|
139 pBtn_Calendar = pPrimaryWindow->CreateButton(570, 353, pIcons_LOD->GetTexture(uTextureID_ib_td4_A)->uTextureWidth,
|
|
140 pIcons_LOD->GetTexture(uTextureID_ib_td4_A)->uTextureHeight, 1, 0, UIMSG_OpenCalendar, 0, pKeyActionMap->GetActionVKey(INPUT_TimeCal),
|
|
141 pGlobalTXT_LocalizationStrings[78], pIcons_LOD->GetTexture(uTextureID_ib_td4_A), 0);//Calendar
|
1298
|
142
|
1667
|
143 uTextureID_ib_td5_A = pIcons_LOD->LoadTexture("ib-td5-A", TEXTURE_16BIT_PALETTE);
|
|
144 pBtn_History = pPrimaryWindow->CreateButton(600, 361, pIcons_LOD->GetTexture(uTextureID_ib_td5_A)->uTextureWidth,
|
|
145 pIcons_LOD->GetTexture(uTextureID_ib_td5_A)->uTextureHeight, 1, 0, UIMSG_OpenHistoryBook, 0, 72,//ascii
|
|
146 pGlobalTXT_LocalizationStrings[602], pIcons_LOD->GetTexture(uTextureID_ib_td5_A), 0);//History
|
1298
|
147
|
1667
|
148 bFlashAutonotesBook = 0;
|
|
149 bFlashQuestBook = 0;
|
|
150 bFlashHistoryBook = 0;
|
1298
|
151
|
1667
|
152 pBtn_ZoomIn = pPrimaryWindow->CreateButton(574, 136, pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn].uTextureWidth,
|
|
153 pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn].uTextureHeight, 2, 0, UIMSG_ClickZoomInBtn, 0, pKeyActionMap->GetActionVKey(INPUT_ZoomIn),
|
|
154 pGlobalTXT_LocalizationStrings[252], &pIcons_LOD->pTextures[uTextureID_Btn_ZoomIn], 0); // Zoom In
|
1666
|
155
|
1667
|
156 pBtn_ZoomOut = pPrimaryWindow->CreateButton(519, 136, pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut].uTextureWidth,
|
|
157 pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut].uTextureHeight, 2, 0, UIMSG_ClickZoomOutBtn, 0, pKeyActionMap->GetActionVKey(INPUT_ZoomOut),
|
|
158 pGlobalTXT_LocalizationStrings[251], &pIcons_LOD->pTextures[uTextureID_Btn_ZoomOut], 0); // Zoom Out
|
1666
|
159
|
1667
|
160 pPrimaryWindow->CreateButton(481, 0, 153, 67, 1, 92, UIMSG_0, 0, 0, "", 0);
|
|
161 pPrimaryWindow->CreateButton(491, 149, 64, 74, 1, 0, UIMSG_StartHireling1Dialogue, 0, '5', "", 0);
|
|
162 pPrimaryWindow->CreateButton(561, 149, 64, 74, 1, 0, UIMSG_StartHireling2Dialogue, 0, '6', "", 0);
|
|
163 pPrimaryWindow->CreateButton(476, 322, 77, 17, 1, 100, UIMSG_0, 0, 0, "", 0);
|
|
164 pPrimaryWindow->CreateButton(555, 322, 77, 17, 1, 101, UIMSG_0, 0, 0, "", 0);
|
1666
|
165
|
1667
|
166 pBtn_CastSpell = pPrimaryWindow->CreateButton(476, 450,
|
|
167 pIcons_LOD->GetTexture(uTextureID_Btn_CastSpell)->uTextureWidth,
|
|
168 pIcons_LOD->GetTexture(uTextureID_Btn_CastSpell)->uTextureHeight,
|
|
169 1, 0, UIMSG_SpellBookWindow, 0, 67, pGlobalTXT_LocalizationStrings[38], pIcons_LOD->GetTexture(uTextureID_Btn_CastSpell), 0);
|
|
170 pBtn_Rest = pPrimaryWindow->CreateButton(518, 450,
|
|
171 pIcons_LOD->GetTexture(uTextureID_Btn_Rest)->uTextureWidth,
|
|
172 pIcons_LOD->GetTexture(uTextureID_Btn_Rest)->uTextureHeight,
|
|
173 1, 0, UIMSG_RestWindow, 0, 82, pGlobalTXT_LocalizationStrings[182], pIcons_LOD->GetTexture(uTextureID_Btn_Rest), 0);
|
|
174 pBtn_QuickReference = pPrimaryWindow->CreateButton(560, 450,
|
|
175 pIcons_LOD->GetTexture(uTextureID_Btn_QuickReference)->uTextureWidth,
|
|
176 pIcons_LOD->GetTexture(uTextureID_Btn_QuickReference)->uTextureHeight,
|
|
177 1, 0, UIMSG_QuickReference, 0, 90, pGlobalTXT_LocalizationStrings[173], pIcons_LOD->GetTexture(uTextureID_Btn_QuickReference), 0);
|
|
178 pBtn_GameSettings = pPrimaryWindow->CreateButton(602, 450,
|
|
179 pIcons_LOD->GetTexture(uTextureID_Btn_GameSettings)->uTextureWidth,
|
|
180 pIcons_LOD->GetTexture(uTextureID_Btn_GameSettings)->uTextureHeight,
|
|
181 1, 0, UIMSG_GameMenuButton, 0, 0, pGlobalTXT_LocalizationStrings[93], pIcons_LOD->GetTexture(uTextureID_Btn_GameSettings), 0);
|
1666
|
182
|
1667
|
183 pBtn_NPCLeft = pPrimaryWindow->CreateButton(469, 178,
|
|
184 pIcons_LOD->GetTexture(uTextureID_Btn_NPCLeft)->uTextureWidth,
|
|
185 pIcons_LOD->GetTexture(uTextureID_Btn_NPCLeft)->uTextureHeight,
|
|
186 1, 0, UIMSG_ScrollNPCPanel, 0, 0, "", pIcons_LOD->GetTexture(uTextureID_Btn_NPCLeft), 0);
|
|
187 pBtn_NPCRight = pPrimaryWindow->CreateButton(626, 178,
|
|
188 pIcons_LOD->GetTexture(uTextureID_Btn_NPCRight)->uTextureWidth,
|
|
189 pIcons_LOD->GetTexture(uTextureID_Btn_NPCRight)->uTextureHeight,
|
|
190 1, 0, UIMSG_ScrollNPCPanel, 1, 0, "", pIcons_LOD->GetTexture(uTextureID_Btn_NPCRight), 0);
|
|
191 LoadPartyBuffIcons();
|
1298
|
192 }
|
|
193
|
|
194 //----- (004979D2) --------------------------------------------------------
|
|
195 MENU_STATE MainMenuUI_Credits_Loop()
|
|
196 {
|
1667
|
197 char *v1; // edi@5
|
|
198 FILE *pFile; // eax@5
|
|
199 unsigned int pSize; // esi@7
|
|
200 __int16 pHeight; // ax@9
|
|
201 void *v7; // eax@9
|
|
202 unsigned int pNumPixels; // ST2C_4@9
|
|
203 unsigned int v10; // ST2C_4@19
|
|
204 MSG Msg; // [sp+84h] [bp-B8h]@10
|
|
205 int v17; // [sp+A0h] [bp-9Ch]@9
|
|
206 GUIWindow credit_window;
|
|
207 int a5; // [sp+128h] [bp-14h]@1
|
|
208 char *pString; // [sp+12Ch] [bp-10h]@9
|
|
209 char *ptr; // [sp+130h] [bp-Ch]@5
|
|
210 GUIFont *pFontQuick; // [sp+134h] [bp-8h]@1
|
|
211 GUIFont *pFontCChar; // [sp+138h] [bp-4h]@1
|
|
212 RGBTexture pTexture; // [sp+54h] [bp-E8h]@1
|
|
213 RGBTexture pTexture2; // [sp+100h] [bp-3Ch]@1
|
|
214 Texture pTexture3; // [sp+Ch] [bp-130h]@5
|
1298
|
215
|
1667
|
216 a5 = 0;
|
|
217 pFontQuick = LoadFont("quick.fnt", "FONTPAL", NULL);
|
|
218 pFontCChar = LoadFont("cchar.fnt", "FONTPAL", NULL);
|
|
219 if ( pMessageQueue_50CBD0->uNumMessages )
|
|
220 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
|
|
221 ++pIcons_LOD->uTexturePacksCount;
|
|
222 if ( !pIcons_LOD->uNumPrevLoadedFiles )
|
|
223 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
|
|
224 dword_A74C88 = 0;
|
|
225 pAudioPlayer->PlayMusicTrack(MUSIC_Credits);
|
|
226 pTexture.Load("mm6title.pcx", 0);
|
|
227 ptr = (char *)pEvents_LOD->LoadRaw("credits.txt", 0);
|
|
228 v1 = ptr;
|
|
229 pFile = pEvents_LOD->FindContainer("credits.txt", 0);
|
|
230 if ( !pFile )
|
|
231 Error(pGlobalTXT_LocalizationStrings[63]); // "Might and Magic VII is having trouble loading files.
|
1545
|
232
|
1667
|
233 // Please re-install to fix this problem. Note: Re-installing will not destroy your save games."
|
|
234 fread(&pTexture3, 1, 0x30, pFile);
|
|
235 pSize = pTexture3.uDecompressedSize;
|
|
236 if ( !pTexture3.uDecompressedSize )
|
|
237 pSize = pTexture3.uTextureSize;
|
|
238 memset(&pTexture3, 0, 0x48);
|
|
239 v1[pSize] = 0;
|
|
240
|
|
241 credit_window.uFrameWidth = 250;
|
|
242 credit_window.uFrameHeight = 440;
|
|
243 credit_window.uFrameX = 389;
|
|
244 credit_window.uFrameY = 19;
|
1298
|
245
|
1667
|
246 pTexture2.uWidth = 250;
|
|
247 pHeight = pFontQuick->GetStringHeight2(pFontCChar, v1, &credit_window, 0, 1);
|
|
248 pTexture2.uHeight = pHeight + 2 * credit_window.uFrameHeight;
|
|
249 pTexture2.uNumPixels = (signed __int16)pTexture2.uWidth * (signed __int16)pTexture2.uHeight;
|
|
250 v7 = malloc(2 * pTexture2.uNumPixels);//, "scrollermap");
|
|
251 pNumPixels = pTexture2.uNumPixels;
|
|
252 pTexture2.pPixels = (unsigned __int16 *)v7;
|
|
253 fill_pixels_fast(TargetColor(0, 0xFFu, 0xFFu), pTexture2.pPixels, pNumPixels);
|
|
254 pTexture2._allocation_flags = 0;
|
|
255 pString = (char *)malloc(2 * pSize);
|
|
256 strncpy(pString, ptr, pSize);
|
|
257 pString[pSize]=0;
|
|
258 pFontQuick->_44D2FD_prolly_draw_credits_entry(pFontCChar, 0, credit_window.uFrameHeight, (signed __int16)pTexture2.uWidth,
|
|
259 (signed __int16)pTexture2.uHeight, TargetColor(0x70u, 0x8Fu, 0xFEu), TargetColor(0xECu, 0xE6u, 0x9Cu), pString, pTexture2.pPixels,
|
|
260 (signed __int16)pTexture2.uWidth);
|
|
261 free(pString);
|
|
262 pWindow_MainMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, ptr);
|
|
263 pWindow_MainMenu->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_Escape, 0, 0x1Bu, "", 0);
|
|
264 pCurrentScreen = SCREEN_CREATORS;
|
|
265 SetCurrentMenuID(MENU_CREDITSPROC);
|
|
266 do
|
|
267 {
|
|
268 while ( PeekMessageA(&Msg, 0, 0, 0, 1) )
|
|
269 {
|
|
270 if ( Msg.message == 18 )
|
|
271 Game_DeinitializeAndTerminate(0);
|
|
272 TranslateMessage(&Msg);
|
|
273 DispatchMessageA(&Msg);
|
|
274 }
|
|
275 if ( BYTE1(dword_6BE364_game_settings_1) & 1 )
|
|
276 {
|
|
277 WaitMessage();
|
|
278 }
|
|
279 else
|
|
280 {
|
|
281 pRenderer->BeginScene();
|
|
282 pRenderer->DrawTextureRGB(0, 0, &pTexture);
|
|
283 pRenderer->SetTextureClipRect(credit_window.uFrameX, credit_window.uFrameY, credit_window.uFrameX + credit_window.uFrameWidth,
|
|
284 credit_window.uFrameY + credit_window.uFrameHeight);
|
|
285 pRenderer->_4A5D33(credit_window.uFrameX, credit_window.uFrameY, 0, a5, &pTexture2);
|
|
286 pRenderer->ResetTextureClipRect();
|
|
287 pRenderer->EndScene();
|
|
288 ++a5;
|
|
289 if ( a5 >= (signed __int16)pTexture2.uHeight )
|
|
290 SetCurrentMenuID(MENU_MAIN);
|
|
291 pRenderer->Present();
|
|
292 pCurrentScreen = SCREEN_GAME;//Ritor1: temporarily, must be corrected GUI_MainMenuMessageProc()
|
|
293 GUI_MainMenuMessageProc();
|
|
294 }
|
|
295 }
|
|
296 while ( GetCurrentMenuID() == MENU_CREDITSPROC );
|
|
297 pAudioPlayer->_4AA258(1);
|
|
298 free(ptr);
|
|
299 free(pFontQuick);
|
|
300 free(pFontCChar);
|
|
301 pWindow_MainMenu->Release();
|
|
302 pIcons_LOD->RemoveTexturesPackFromTextureList();
|
|
303 pTexture.Release();
|
|
304 pTexture2.Release();
|
|
305 return MENU_MAIN; // return MENU_Main
|
|
306 } |