frodo-wii/main.cpp
2009-11-23 19:33:51 +00:00

88 lines
1.9 KiB
C++

#include "menu.hh"
#include "utils.hh"
class PrintMenu : public Menu
{
public:
PrintMenu(TTF_Font *font) : Menu(font)
{
}
virtual void selectCallback(int which)
{
printf("entry %d selected: %s\n", which, this->pp_msgs[which]);
}
virtual void escapeCallback(int which)
{
printf("entry %d escaped: %s\n", which, this->pp_msgs[which]);
}
};
SDL_Surface *screen;
PrintMenu *g_menu;
static void run(void)
{
while(1)
{
SDL_Event ev;
while (SDL_PollEvent(&ev)) {
if (ev.type == SDL_QUIT)
exit(1); break;
g_menu->pushEvent(&ev); break;
}
g_menu->draw(screen, 0, 80, 400, 400);
SDL_Flip(screen);
SDL_Delay(50);
}
}
const char *main_menu_messages[] = {
/*02*/ "File",
/*03*/ "^|Insert|Start",
/*04*/ "States",
/*05*/ "^|Load|Save|Delete",
/*06*/ "Keyboard",
/*07*/ "^|Type|Macro|Bind",
/*08*/ "#1-------------------------------------",
/*09*/ "Reset the C=64",
/*10*/ "Networking",
/*11*/ "Options",
/*12*/ "Advanced Options",
/*13*/ "Help",
/*15*/ "Quit",
NULL
};
static void init(void)
{
TTF_Font *fnt;
SDL_Surface *bg_left, *bg_right, *bg_middle;
screen = SDL_SetVideoMode(640, 480, 16,
SDL_DOUBLEBUF);
panic_if(!screen, "Cannot initialize video: %s\n", SDL_GetError());
bg_left = IMG_Load("bg_left.png");
bg_right = IMG_Load("bg_right.png");
bg_middle = IMG_Load("bg_middle.png");
TTF_Init();
fnt = read_and_alloc_font("font.ttf");
g_menu = new PrintMenu(fnt);
g_menu->setText(main_menu_messages);
}
int main(int argc, char *argv[])
{
init();
run();
return 0;
}