mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 23:55:38 +00:00
Added "Reload" menu option.
As usual, it's undertested, please report any problems.
This commit is contained in:
parent
9a27a868bb
commit
f336eece75
|
@ -1,7 +1,10 @@
|
||||||
January 8, 2012
|
January 26, 2013
|
||||||
|
-Added "Reload" option to the menu. This option reloads all game data.
|
||||||
|
|
||||||
|
January 8, 2013
|
||||||
-Made a value of zero for "list selected color" mean no change.
|
-Made a value of zero for "list selected color" mean no change.
|
||||||
|
|
||||||
January 6, 2012
|
January 6, 2013
|
||||||
-Added <basicTheme> tag support.
|
-Added <basicTheme> tag support.
|
||||||
|
|
||||||
December 20, 2012
|
December 20, 2012
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
//This is where the magic happens - GuiGameList is the parent of almost every graphical element in ES at the moment.
|
//This is where the magic happens - GuiGameList is the parent of almost every graphical element in ES at the moment.
|
||||||
//It has a GuiList child that handles the game list, a GuiTheme that handles the theming system, and a GuiImage for game images.
|
//It has a GuiList child that handles the game list, a GuiTheme that handles the theming system, and a GuiImage for game images.
|
||||||
class GuiGameList : GuiComponent
|
class GuiGameList : public GuiComponent
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GuiGameList(bool useDetail = false);
|
GuiGameList(bool useDetail = false);
|
||||||
|
|
|
@ -2,11 +2,13 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <SDL/SDL.h>
|
#include <SDL/SDL.h>
|
||||||
#include "../Log.h"
|
#include "../Log.h"
|
||||||
|
#include "../SystemData.h"
|
||||||
|
#include "GuiGameList.h"
|
||||||
|
|
||||||
//defined in main.cpp
|
//defined in main.cpp
|
||||||
extern bool DONTSHOWEXIT;
|
extern bool DONTSHOWEXIT;
|
||||||
|
|
||||||
GuiMenu::GuiMenu(GuiComponent* parent)
|
GuiMenu::GuiMenu(GuiGameList* parent)
|
||||||
{
|
{
|
||||||
mParent = parent;
|
mParent = parent;
|
||||||
parent->pause();
|
parent->pause();
|
||||||
|
@ -58,6 +60,11 @@ void GuiMenu::executeCommand(std::string command)
|
||||||
SDL_Event* event = new SDL_Event();
|
SDL_Event* event = new SDL_Event();
|
||||||
event->type = SDL_QUIT;
|
event->type = SDL_QUIT;
|
||||||
SDL_PushEvent(event);
|
SDL_PushEvent(event);
|
||||||
|
}else if(command == "es_reload")
|
||||||
|
{
|
||||||
|
//reload the game list
|
||||||
|
SystemData::loadConfig();
|
||||||
|
mParent->setSystemId(0);
|
||||||
}else{
|
}else{
|
||||||
if(system(command.c_str()) != 0)
|
if(system(command.c_str()) != 0)
|
||||||
{
|
{
|
||||||
|
@ -78,6 +85,8 @@ void GuiMenu::populateList()
|
||||||
mList->addObject("Restart", "sudo shutdown -r now", 0x0000FFFF);
|
mList->addObject("Restart", "sudo shutdown -r now", 0x0000FFFF);
|
||||||
mList->addObject("Shutdown", "sudo shutdown -h now", 0x0000FFFF);
|
mList->addObject("Shutdown", "sudo shutdown -h now", 0x0000FFFF);
|
||||||
|
|
||||||
|
mList->addObject("Reload", "es_reload", 0x0000FFFF);
|
||||||
|
|
||||||
if(!DONTSHOWEXIT)
|
if(!DONTSHOWEXIT)
|
||||||
mList->addObject("Exit", "exit", 0xFF0000FF); //a special case; pushes an SDL quit event to the event stack instead of being called by system()
|
mList->addObject("Exit", "exit", 0xFF0000FF); //a special case; pushes an SDL quit event to the event stack instead of being called by system()
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,18 +4,20 @@
|
||||||
#include "../GuiComponent.h"
|
#include "../GuiComponent.h"
|
||||||
#include "GuiList.h"
|
#include "GuiList.h"
|
||||||
|
|
||||||
|
class GuiGameList;
|
||||||
|
|
||||||
//This is a very simple menu that is opened by pressing the Menu key.
|
//This is a very simple menu that is opened by pressing the Menu key.
|
||||||
class GuiMenu : public GuiComponent
|
class GuiMenu : public GuiComponent
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GuiMenu(GuiComponent* parent);
|
GuiMenu(GuiGameList* parent);
|
||||||
~GuiMenu();
|
~GuiMenu();
|
||||||
|
|
||||||
void onInput(InputManager::InputButton button, bool keyDown);
|
void onInput(InputManager::InputButton button, bool keyDown);
|
||||||
void onRender();
|
void onRender();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
GuiComponent* mParent;
|
GuiGameList* mParent;
|
||||||
GuiList<std::string>* mList;
|
GuiList<std::string>* mList;
|
||||||
|
|
||||||
void populateList();
|
void populateList();
|
||||||
|
|
Loading…
Reference in a new issue