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 {
|
1675
|
197 char *cred_texturet; // edi@5
|
1667
|
198 FILE *pFile; // eax@5
|
|
199 unsigned int pSize; // esi@7
|
|
200 MSG Msg; // [sp+84h] [bp-B8h]@10
|
|
201 GUIWindow credit_window;
|
1675
|
202 int move_Y; // [sp+128h] [bp-14h]@1
|
1667
|
203 char *pString; // [sp+12Ch] [bp-10h]@9
|
|
204 GUIFont *pFontQuick; // [sp+134h] [bp-8h]@1
|
|
205 GUIFont *pFontCChar; // [sp+138h] [bp-4h]@1
|
1675
|
206 RGBTexture mm6title_texture; // [sp+54h] [bp-E8h]@1
|
|
207 RGBTexture cred_texture; // [sp+100h] [bp-3Ch]@1
|
|
208 Texture pTemporaryTexture; // [sp+Ch] [bp-130h]@5
|
1298
|
209
|
1667
|
210 pFontQuick = LoadFont("quick.fnt", "FONTPAL", NULL);
|
|
211 pFontCChar = LoadFont("cchar.fnt", "FONTPAL", NULL);
|
1675
|
212
|
1667
|
213 if ( pMessageQueue_50CBD0->uNumMessages )
|
|
214 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
|
|
215 ++pIcons_LOD->uTexturePacksCount;
|
|
216 if ( !pIcons_LOD->uNumPrevLoadedFiles )
|
|
217 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
|
1675
|
218 //dword_A74C88 = 0;//??? ÷àñòü äàëüíåéøåãî êîäà îòñóòñòâóåò, òàì èñïîëüçîâàëàñü äàííàÿ ïåðåìåííàÿ
|
|
219
|
1667
|
220 pAudioPlayer->PlayMusicTrack(MUSIC_Credits);
|
1675
|
221
|
|
222 mm6title_texture.Load("mm6title.pcx", 0);
|
|
223 cred_texturet = (char *)pEvents_LOD->LoadRaw("credits.txt", 0);
|
1667
|
224 pFile = pEvents_LOD->FindContainer("credits.txt", 0);
|
|
225 if ( !pFile )
|
|
226 Error(pGlobalTXT_LocalizationStrings[63]); // "Might and Magic VII is having trouble loading files.
|
1545
|
227
|
1667
|
228 // Please re-install to fix this problem. Note: Re-installing will not destroy your save games."
|
1675
|
229
|
|
230 //äëÿ ïîëó÷åíèÿ ðàçìåðà-----------------------
|
|
231 fread(&pTemporaryTexture, 1, 0x30, pFile);
|
|
232 pSize = pTemporaryTexture.uDecompressedSize;
|
|
233 if ( !pSize )
|
|
234 pSize = pTemporaryTexture.uTextureSize;
|
|
235 memset(&pTemporaryTexture, 0, 0x48);//îáíóëåíèå
|
|
236 cred_texturet[pSize] = 0;//êîíåö òåêñòà
|
1667
|
237
|
|
238 credit_window.uFrameWidth = 250;
|
|
239 credit_window.uFrameHeight = 440;
|
|
240 credit_window.uFrameX = 389;
|
|
241 credit_window.uFrameY = 19;
|
1298
|
242
|
1675
|
243 cred_texture.uWidth = 250;
|
|
244 cred_texture.uHeight = pFontQuick->GetStringHeight2(pFontCChar, cred_texturet, &credit_window, 0, 1) + 2 * credit_window.uFrameHeight;
|
|
245 cred_texture.uNumPixels = cred_texture.uWidth * cred_texture.uHeight;
|
|
246 cred_texture.pPixels = (unsigned __int16 *)malloc(2 * cred_texture.uNumPixels);
|
|
247 fill_pixels_fast(TargetColor(0, 0xFFu, 0xFFu), cred_texture.pPixels, cred_texture.uNumPixels);
|
|
248 cred_texture._allocation_flags = 0;
|
|
249
|
|
250 //äàòü øðèôò è öâåòà òåêñòó
|
1667
|
251 pString = (char *)malloc(2 * pSize);
|
1675
|
252 strncpy(pString, cred_texturet, pSize);
|
|
253 pString[pSize] = 0;
|
|
254 pFontQuick->_44D2FD_prolly_draw_credits_entry(pFontCChar, 0, credit_window.uFrameHeight, cred_texture.uWidth,
|
|
255 cred_texture.uHeight, TargetColor(0x70u, 0x8Fu, 0xFEu), TargetColor(0xECu, 0xE6u, 0x9Cu), pString, cred_texture.pPixels, cred_texture.uWidth);
|
1667
|
256 free(pString);
|
1675
|
257
|
|
258 pWindow_MainMenu = GUIWindow::Create(0, 0, 640, 480, WINDOW_MainMenu, 0, cred_texturet);
|
|
259 pWindow_MainMenu->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_Escape, 0, 27, "", 0);
|
1667
|
260 pCurrentScreen = SCREEN_CREATORS;
|
|
261 SetCurrentMenuID(MENU_CREDITSPROC);
|
1675
|
262
|
|
263 move_Y = 0;
|
1667
|
264 do
|
|
265 {
|
|
266 while ( PeekMessageA(&Msg, 0, 0, 0, 1) )
|
|
267 {
|
|
268 if ( Msg.message == 18 )
|
|
269 Game_DeinitializeAndTerminate(0);
|
|
270 TranslateMessage(&Msg);
|
|
271 DispatchMessageA(&Msg);
|
|
272 }
|
|
273 if ( BYTE1(dword_6BE364_game_settings_1) & 1 )
|
|
274 {
|
|
275 WaitMessage();
|
|
276 }
|
|
277 else
|
|
278 {
|
|
279 pRenderer->BeginScene();
|
1675
|
280 pRenderer->DrawTextureRGB(0, 0, &mm6title_texture);
|
1667
|
281 pRenderer->SetTextureClipRect(credit_window.uFrameX, credit_window.uFrameY, credit_window.uFrameX + credit_window.uFrameWidth,
|
|
282 credit_window.uFrameY + credit_window.uFrameHeight);
|
1675
|
283 pRenderer->CreditsTextureScroll(credit_window.uFrameX, credit_window.uFrameY, 0, move_Y, &cred_texture);
|
1667
|
284 pRenderer->ResetTextureClipRect();
|
|
285 pRenderer->EndScene();
|
1675
|
286 ++move_Y;
|
|
287 if ( move_Y >= cred_texture.uHeight )
|
1667
|
288 SetCurrentMenuID(MENU_MAIN);
|
|
289 pRenderer->Present();
|
|
290 pCurrentScreen = SCREEN_GAME;//Ritor1: temporarily, must be corrected GUI_MainMenuMessageProc()
|
|
291 GUI_MainMenuMessageProc();
|
|
292 }
|
|
293 }
|
|
294 while ( GetCurrentMenuID() == MENU_CREDITSPROC );
|
|
295 pAudioPlayer->_4AA258(1);
|
1675
|
296 free(cred_texturet);
|
1667
|
297 free(pFontQuick);
|
|
298 free(pFontCChar);
|
|
299 pWindow_MainMenu->Release();
|
|
300 pIcons_LOD->RemoveTexturesPackFromTextureList();
|
1675
|
301 mm6title_texture.Release();
|
|
302 cred_texture.Release();
|
1667
|
303 return MENU_MAIN; // return MENU_Main
|
1678
|
304 }
|
|
305 /*MENU_STATE MainMenuUI_Credits_Loop()//NewTitle
|
|
306 {
|
|
307 MSG Msg;
|
|
308 GUIWindow credit_window;
|
|
309 RGBTexture mm6title_texture;
|
|
310
|
|
311 if ( pMessageQueue_50CBD0->uNumMessages )
|
|
312 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0;
|
|
313 ++pIcons_LOD->uTexturePacksCount;
|
|
314 if ( !pIcons_LOD->uNumPrevLoadedFiles )
|
|
315 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles;
|
|
316
|
|
317 //pAudioPlayer->PlayMusicTrack(MUSIC_Credits);
|
|
318
|
|
319 mm6title_texture.Load("newtitle.pcx", 0);
|
|
320 pWindow_MainMenu->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_Escape, 0, 27, "", 0);
|
|
321 pCurrentScreen = SCREEN_CREATORS;
|
|
322 SetCurrentMenuID(MENU_CREDITSPROC);
|
|
323
|
|
324 do
|
|
325 {
|
|
326 while ( PeekMessageA(&Msg, 0, 0, 0, 1) )
|
|
327 {
|
|
328 if ( Msg.message == 18 )
|
|
329 Game_DeinitializeAndTerminate(0);
|
|
330 TranslateMessage(&Msg);
|
|
331 DispatchMessageA(&Msg);
|
|
332 }
|
|
333 if ( BYTE1(dword_6BE364_game_settings_1) & 1 )
|
|
334 {
|
|
335 WaitMessage();
|
|
336 }
|
|
337 else
|
|
338 {
|
|
339 pRenderer->BeginScene();
|
|
340 pRenderer->DrawTextureRGB(0, 0, &mm6title_texture);
|
|
341 pRenderer->EndScene();
|
|
342 pRenderer->Present();
|
|
343 pCurrentScreen = SCREEN_GAME;
|
|
344 GUI_MainMenuMessageProc();
|
|
345 }
|
|
346 }
|
|
347 while ( GetCurrentMenuID() == MENU_CREDITSPROC );
|
|
348 //pAudioPlayer->_4AA258(1);
|
|
349 mm6title_texture.Release();
|
|
350 return MENU_MAIN; // return MENU_Main
|
|
351 }*/ |