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