mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-03 05:01:41 +00:00
(Xbox 1) refactoring in MenuMain.cpp
This commit is contained in:
parent
a478c88387
commit
213bc33238
@ -34,6 +34,9 @@
|
|||||||
|
|
||||||
extern filebrowser_t browser;
|
extern filebrowser_t browser;
|
||||||
|
|
||||||
|
// Rom selector panel with coords
|
||||||
|
CSurface m_menuMainRomSelectPanel;
|
||||||
|
|
||||||
uint16_t input_st;
|
uint16_t input_st;
|
||||||
uint16_t trigger_state;
|
uint16_t trigger_state;
|
||||||
static uint16_t old_input_st = 0;
|
static uint16_t old_input_st = 0;
|
||||||
@ -85,29 +88,9 @@ bool CMenuMain::Create()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void browser_render(filebrowser_t *b, float current_x, float current_y, float y_spacing)
|
||||||
void CMenuMain::Render()
|
|
||||||
{
|
{
|
||||||
xdk_d3d_video_t *d3d = (xdk_d3d_video_t*)driver.video_data;
|
xdk_d3d_video_t *d3d = (xdk_d3d_video_t*)driver.video_data;
|
||||||
|
|
||||||
//Render background image
|
|
||||||
m_menuMainBG.Render(MENU_MAIN_BG_X, MENU_MAIN_BG_Y);
|
|
||||||
|
|
||||||
//Display some text
|
|
||||||
//Center the text (hardcoded)
|
|
||||||
int xpos = width == 640 ? 65 : 400;
|
|
||||||
int ypos = width == 640 ? 430 : 670;
|
|
||||||
|
|
||||||
d3d->d3d_render_device->GetBackBuffer(-1, D3DBACKBUFFER_TYPE_MONO, &d3d->pFrontBuffer);
|
|
||||||
d3d->d3d_render_device->GetBackBuffer(0, D3DBACKBUFFER_TYPE_MONO, &d3d->pBackBuffer);
|
|
||||||
d3d->debug_font->TextOut(d3d->pFrontBuffer, L"Libretro core:", (unsigned)-1, xpos, ypos);
|
|
||||||
d3d->debug_font->TextOut(d3d->pBackBuffer, L"Libretro core:", (unsigned)-1, xpos, ypos);
|
|
||||||
d3d->debug_font->TextOut(d3d->pFrontBuffer, m_title, (unsigned)-1, xpos + 140, ypos);
|
|
||||||
d3d->debug_font->TextOut(d3d->pBackBuffer, m_title, (unsigned)-1, xpos + 140, ypos);
|
|
||||||
d3d->pFrontBuffer->Release();
|
|
||||||
d3d->pBackBuffer->Release();
|
|
||||||
|
|
||||||
filebrowser_t *b = &browser;
|
|
||||||
unsigned file_count = b->current_dir.list->size;
|
unsigned file_count = b->current_dir.list->size;
|
||||||
int current_index, page_number, page_base, i;
|
int current_index, page_number, page_base, i;
|
||||||
float currentX, currentY, ySpacing;
|
float currentX, currentY, ySpacing;
|
||||||
@ -116,9 +99,9 @@ void CMenuMain::Render()
|
|||||||
page_number = current_index / NUM_ENTRY_PER_PAGE;
|
page_number = current_index / NUM_ENTRY_PER_PAGE;
|
||||||
page_base = page_number * NUM_ENTRY_PER_PAGE;
|
page_base = page_number * NUM_ENTRY_PER_PAGE;
|
||||||
|
|
||||||
currentX = m_menuMainRomListPos_x;
|
currentX = current_x;
|
||||||
currentY = m_menuMainRomListPos_y;
|
currentY = current_y;
|
||||||
ySpacing = 20;
|
ySpacing = y_spacing;
|
||||||
|
|
||||||
for (i = page_base; i < file_count && i < page_base + NUM_ENTRY_PER_PAGE; ++i)
|
for (i = page_base; i < file_count && i < page_base + NUM_ENTRY_PER_PAGE; ++i)
|
||||||
{
|
{
|
||||||
@ -143,6 +126,30 @@ void CMenuMain::Render()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CMenuMain::Render()
|
||||||
|
{
|
||||||
|
xdk_d3d_video_t *d3d = (xdk_d3d_video_t*)driver.video_data;
|
||||||
|
|
||||||
|
//Render background image
|
||||||
|
m_menuMainBG.Render(MENU_MAIN_BG_X, MENU_MAIN_BG_Y);
|
||||||
|
|
||||||
|
//Display some text
|
||||||
|
//Center the text (hardcoded)
|
||||||
|
int xpos = width == 640 ? 65 : 400;
|
||||||
|
int ypos = width == 640 ? 430 : 670;
|
||||||
|
|
||||||
|
d3d->d3d_render_device->GetBackBuffer(-1, D3DBACKBUFFER_TYPE_MONO, &d3d->pFrontBuffer);
|
||||||
|
d3d->d3d_render_device->GetBackBuffer(0, D3DBACKBUFFER_TYPE_MONO, &d3d->pBackBuffer);
|
||||||
|
d3d->debug_font->TextOut(d3d->pFrontBuffer, L"Libretro core:", (unsigned)-1, xpos, ypos);
|
||||||
|
d3d->debug_font->TextOut(d3d->pBackBuffer, L"Libretro core:", (unsigned)-1, xpos, ypos);
|
||||||
|
d3d->debug_font->TextOut(d3d->pFrontBuffer, m_title, (unsigned)-1, xpos + 140, ypos);
|
||||||
|
d3d->debug_font->TextOut(d3d->pBackBuffer, m_title, (unsigned)-1, xpos + 140, ypos);
|
||||||
|
d3d->pFrontBuffer->Release();
|
||||||
|
d3d->pBackBuffer->Release();
|
||||||
|
|
||||||
|
browser_render(&browser, m_menuMainRomListPos_x, m_menuMainRomListPos_y, 20);
|
||||||
|
}
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
MENU_ROMSELECT_ACTION_OK,
|
MENU_ROMSELECT_ACTION_OK,
|
||||||
MENU_ROMSELECT_ACTION_GOTO_SETTINGS,
|
MENU_ROMSELECT_ACTION_GOTO_SETTINGS,
|
||||||
@ -252,4 +259,3 @@ void CMenuMain::ProcessInput()
|
|||||||
|
|
||||||
old_input_st = input_st;
|
old_input_st = input_st;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,8 +40,6 @@ _c = color,
|
|||||||
|
|
||||||
// Background image with coords
|
// Background image with coords
|
||||||
CSurface m_menuMainBG;
|
CSurface m_menuMainBG;
|
||||||
// Rom selector panel with coords
|
|
||||||
CSurface m_menuMainRomSelectPanel;
|
|
||||||
|
|
||||||
// Rom list coords
|
// Rom list coords
|
||||||
int m_menuMainRomListPos_x;
|
int m_menuMainRomListPos_x;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user