Mercurial > mm7
annotate UI/UIMainMenu.cpp @ 2327:5e4d90305d06
EventCastSpell removing duplicate code for handling empty pObjectList->pObjects array or not finding the correct value + moving everything into the main switch
author | Grumpy7 |
---|---|
date | Tue, 01 Apr 2014 23:20:15 +0200 |
parents | aff7a7b072b7 |
children | d6887ee81068 |
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" | |
1298 | 4 |
1299 | 5 #include "..\GUIWindow.h" |
6 #include "..\GUIFont.h" | |
7 #include "..\AudioPlayer.h" | |
8 #include "..\Render.h" | |
9 #include "..\LOD.h" | |
10 #include "..\PaletteManager.h" | |
11 #include "..\IconFrameTable.h" | |
12 #include "..\texts.h" | |
1298 | 13 |
1299 | 14 #include "..\mm7_data.h" |
2152 | 15 #include "..\mm7_unsorted_subs.h" |
1298 | 16 |
17 | |
18 //----- (0041B578) -------------------------------------------------------- | |
19 void MainMenuUI_LoadFontsAndSomeStuff() | |
20 { | |
2069 | 21 //pIcons_LOD->SetupPalettes(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); |
22 pIcons_LOD->SetupPalettes(5, 6, 5); | |
23 //pPaletteManager->SetColorChannelInfo(pRenderer->uTargetRBits, pRenderer->uTargetGBits, pRenderer->uTargetBBits); | |
24 pPaletteManager->SetColorChannelInfo(5, 6, 5); | |
1298 | 25 pPaletteManager->RecalculateAll(); |
26 | |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2153
diff
changeset
|
27 for (uint i = 0; i < window->GetHeight(); ++i) |
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2153
diff
changeset
|
28 pSRZBufferLineOffsets[i] = window->GetWidth() * i; |
1298 | 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 |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2153
diff
changeset
|
105 pPrimaryWindow = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_MainMenu, 0, 0); |
1667 | 106 pPrimaryWindow->CreateButton(7, 8, 460, 343, 1, 0, UIMSG_MouseLeftClickInGame, 0, 0, "", 0); |
1666 | 107 |
2022 | 108 pPrimaryWindow->CreateButton(61, 424, 31, 80, 2, 94, UIMSG_SelectCharacter, 1, '1', "", 0);//buttons for portraits |
109 pPrimaryWindow->CreateButton(177, 424, 31, 80, 2, 94, UIMSG_SelectCharacter, 2, '2', "", 0); | |
1667 | 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 |
2022 | 113 pPrimaryWindow->CreateButton(24, 404, 5, 49, 1, 93, UIMSG_0, 1, 0, "", 0);//buttons for HP |
1667 | 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 |
2022 | 118 pPrimaryWindow->CreateButton(97, 404, 5, 49, 1, 93, UIMSG_0, 1, 0, "", 0);//buttons for SP |
1667 | 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 | |
2152 | 194 |
195 | |
196 | |
197 //----- (00452AF3) -------------------------------------------------------- | |
198 void __fastcall fill_pixels_fast(unsigned int a1, unsigned __int16 *pPixels, unsigned int uNumPixels) | |
199 { | |
200 void *v3; // edi@1 | |
201 unsigned int v4; // eax@1 | |
202 unsigned __int16 *v5; // edi@3 | |
203 unsigned int i; // ecx@3 | |
204 | |
205 __debugbreak(); // Nomad: sub operates on 16 bit pixels, we have 32 bits. | |
206 | |
207 v3 = pPixels; | |
208 v4 = a1 | (a1 << 16); | |
209 if ( (unsigned __int8)pPixels & 2 ) // first 2 pixels | |
210 { | |
211 *pPixels = v4; | |
212 v3 = pPixels + 1; | |
213 --uNumPixels; | |
214 } | |
215 memset32(v3, v4, uNumPixels >> 1); // 4 pixels at once | |
216 v5 = (unsigned __int16 *)((char *)v3 + 4 * (uNumPixels >> 1)); | |
217 for ( i = uNumPixels & 1; i; --i ) // leftover pixels | |
218 { | |
219 *v5 = v4; | |
220 ++v5; | |
221 } | |
222 } | |
223 | |
1298 | 224 //----- (004979D2) -------------------------------------------------------- |
225 MENU_STATE MainMenuUI_Credits_Loop() | |
226 { | |
1675 | 227 char *cred_texturet; // edi@5 |
1667 | 228 FILE *pFile; // eax@5 |
229 unsigned int pSize; // esi@7 | |
230 MSG Msg; // [sp+84h] [bp-B8h]@10 | |
231 GUIWindow credit_window; | |
1675 | 232 int move_Y; // [sp+128h] [bp-14h]@1 |
1667 | 233 char *pString; // [sp+12Ch] [bp-10h]@9 |
234 GUIFont *pFontQuick; // [sp+134h] [bp-8h]@1 | |
235 GUIFont *pFontCChar; // [sp+138h] [bp-4h]@1 | |
1675 | 236 RGBTexture mm6title_texture; // [sp+54h] [bp-E8h]@1 |
237 RGBTexture cred_texture; // [sp+100h] [bp-3Ch]@1 | |
238 Texture pTemporaryTexture; // [sp+Ch] [bp-130h]@5 | |
1298 | 239 |
1667 | 240 pFontQuick = LoadFont("quick.fnt", "FONTPAL", NULL); |
241 pFontCChar = LoadFont("cchar.fnt", "FONTPAL", NULL); | |
1675 | 242 |
1667 | 243 if ( pMessageQueue_50CBD0->uNumMessages ) |
244 pMessageQueue_50CBD0->uNumMessages = pMessageQueue_50CBD0->pMessages[0].field_8 != 0; | |
245 ++pIcons_LOD->uTexturePacksCount; | |
246 if ( !pIcons_LOD->uNumPrevLoadedFiles ) | |
247 pIcons_LOD->uNumPrevLoadedFiles = pIcons_LOD->uNumLoadedFiles; | |
1675 | 248 //dword_A74C88 = 0;//??? часть дальнейшего кода отсутствует, там использовалась данная переменная |
249 | |
1667 | 250 pAudioPlayer->PlayMusicTrack(MUSIC_Credits); |
1675 | 251 |
252 mm6title_texture.Load("mm6title.pcx", 0); | |
253 cred_texturet = (char *)pEvents_LOD->LoadRaw("credits.txt", 0); | |
1667 | 254 pFile = pEvents_LOD->FindContainer("credits.txt", 0); |
255 if ( !pFile ) | |
256 Error(pGlobalTXT_LocalizationStrings[63]); // "Might and Magic VII is having trouble loading files. | |
1545 | 257 |
1667 | 258 // Please re-install to fix this problem. Note: Re-installing will not destroy your save games." |
1675 | 259 |
260 //для получения размера----------------------- | |
261 fread(&pTemporaryTexture, 1, 0x30, pFile); | |
262 pSize = pTemporaryTexture.uDecompressedSize; | |
263 if ( !pSize ) | |
264 pSize = pTemporaryTexture.uTextureSize; | |
265 memset(&pTemporaryTexture, 0, 0x48);//обнуление | |
266 cred_texturet[pSize] = 0;//конец текста | |
1667 | 267 |
268 credit_window.uFrameWidth = 250; | |
269 credit_window.uFrameHeight = 440; | |
270 credit_window.uFrameX = 389; | |
271 credit_window.uFrameY = 19; | |
1298 | 272 |
1675 | 273 cred_texture.uWidth = 250; |
274 cred_texture.uHeight = pFontQuick->GetStringHeight2(pFontCChar, cred_texturet, &credit_window, 0, 1) + 2 * credit_window.uFrameHeight; | |
275 cred_texture.uNumPixels = cred_texture.uWidth * cred_texture.uHeight; | |
276 cred_texture.pPixels = (unsigned __int16 *)malloc(2 * cred_texture.uNumPixels); | |
2069 | 277 fill_pixels_fast(Color16(0, 0xFFu, 0xFFu), cred_texture.pPixels, cred_texture.uNumPixels); |
1675 | 278 cred_texture._allocation_flags = 0; |
279 | |
280 //дать шрифт и цвета тексту | |
1667 | 281 pString = (char *)malloc(2 * pSize); |
1675 | 282 strncpy(pString, cred_texturet, pSize); |
283 pString[pSize] = 0; | |
284 pFontQuick->_44D2FD_prolly_draw_credits_entry(pFontCChar, 0, credit_window.uFrameHeight, cred_texture.uWidth, | |
2069 | 285 cred_texture.uHeight, Color16(0x70u, 0x8Fu, 0xFEu), Color16(0xECu, 0xE6u, 0x9Cu), pString, cred_texture.pPixels, cred_texture.uWidth); |
1667 | 286 free(pString); |
1675 | 287 |
2215
e9625ad08541
fog fix and change 640,480 - window->GetWidth(), window->GetHeight()
Ritor1
parents:
2153
diff
changeset
|
288 pWindow_MainMenu = GUIWindow::Create(0, 0, window->GetWidth(), window->GetHeight(), WINDOW_MainMenu, 0, cred_texturet); |
1675 | 289 pWindow_MainMenu->CreateButton(0, 0, 0, 0, 1, 0, UIMSG_Escape, 0, 27, "", 0); |
1667 | 290 pCurrentScreen = SCREEN_CREATORS; |
291 SetCurrentMenuID(MENU_CREDITSPROC); | |
1675 | 292 |
293 move_Y = 0; | |
1667 | 294 do |
295 { | |
296 while ( PeekMessageA(&Msg, 0, 0, 0, 1) ) | |
297 { | |
298 if ( Msg.message == 18 ) | |
299 Game_DeinitializeAndTerminate(0); | |
300 TranslateMessage(&Msg); | |
301 DispatchMessageA(&Msg); | |
302 } | |
2061 | 303 if (dword_6BE364_game_settings_1 & GAME_SETTINGS_APP_INACTIVE) |
1667 | 304 { |
305 WaitMessage(); | |
306 } | |
307 else | |
308 { | |
309 pRenderer->BeginScene(); | |
1675 | 310 pRenderer->DrawTextureRGB(0, 0, &mm6title_texture); |
1667 | 311 pRenderer->SetTextureClipRect(credit_window.uFrameX, credit_window.uFrameY, credit_window.uFrameX + credit_window.uFrameWidth, |
312 credit_window.uFrameY + credit_window.uFrameHeight); | |
1675 | 313 pRenderer->CreditsTextureScroll(credit_window.uFrameX, credit_window.uFrameY, 0, move_Y, &cred_texture); |
1667 | 314 pRenderer->ResetTextureClipRect(); |
315 pRenderer->EndScene(); | |
1675 | 316 ++move_Y; |
317 if ( move_Y >= cred_texture.uHeight ) | |
1667 | 318 SetCurrentMenuID(MENU_MAIN); |
319 pRenderer->Present(); | |
320 pCurrentScreen = SCREEN_GAME;//Ritor1: temporarily, must be corrected GUI_MainMenuMessageProc() | |
321 GUI_MainMenuMessageProc(); | |
322 } | |
323 } | |
324 while ( GetCurrentMenuID() == MENU_CREDITSPROC ); | |
325 pAudioPlayer->_4AA258(1); | |
1675 | 326 free(cred_texturet); |
1667 | 327 free(pFontQuick); |
328 free(pFontCChar); | |
329 pWindow_MainMenu->Release(); | |
330 pIcons_LOD->RemoveTexturesPackFromTextureList(); | |
1675 | 331 mm6title_texture.Release(); |
332 cred_texture.Release(); | |
1667 | 333 return MENU_MAIN; // return MENU_Main |
1678 | 334 } |