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