frodo-wii/network_menu.cpp

133 lines
2.6 KiB
C++
Raw Normal View History

2009-12-29 14:23:01 +01:00
#include "gui.hh"
#include "menu.hh"
#include "help_box.hh"
class NetworkView;
class NetworkMenu : public Menu
{
friend class NetworkView;
public:
NetworkMenu(Font *font, HelpBox *help) : Menu(font)
{
this->help = help;
memset(this->messages, 0, sizeof(this->messages));
memset(this->strs, 0, sizeof(this->strs));
2009-12-29 14:23:01 +01:00
}
~NetworkMenu()
{
}
virtual void selectCallback(int which)
{
printf("option entry %d selected: %s\n", which, this->pp_msgs[which]);
switch (which)
{
default:
2009-12-29 14:23:01 +01:00
break;
}
}
virtual void hoverCallback(int which)
{
this->help->updateHelpMessage(which);
}
virtual void escapeCallback(int which)
{
Gui::gui->popView();
}
private:
void updateMessages()
{
memset(this->strs, 0, sizeof(this->strs));
snprintf(this->strs[0], sizeof(this->strs[0]) - 1, "Set username (%s)",
Gui::gui->np->NetworkName);
2009-12-29 14:23:01 +01:00
snprintf(this->strs[1], sizeof(this->strs[1]) - 1, "Server (%s)",
Gui::gui->np->NetworkServer);
2009-12-29 14:23:01 +01:00
snprintf(this->strs[2], sizeof(this->strs[2]) - 1, "Server port (%d)",
Gui::gui->np->NetworkPort);
2009-12-29 14:23:01 +01:00
this->messages[0] = this->strs[0];
this->messages[1] = this->strs[1];
this->messages[2] = this->strs[2];
this->messages[3] = " ";
this->messages[4] = "Connect to the network!";
this->messages[5] = " ";
this->messages[6] = "Post network message";
this->messages[7] = NULL;
this->setText(this->messages);
}
char strs[3][255];
const char *messages[8];
HelpBox *help;
};
class NetworkView : public GuiView
{
public:
NetworkView() : GuiView()
{
this->help = new HelpBox(NULL, network_menu_help);
this->menu = new NetworkMenu(NULL, this->help);
}
~NetworkView()
{
delete this->help;
delete this->menu;
}
void updateTheme()
{
this->menu->setFont(Gui::gui->default_font);
this->help->setFont(Gui::gui->small_font);
this->menu->setSelectedBackground(Gui::gui->bg_left, Gui::gui->bg_middle,
Gui::gui->bg_right, Gui::gui->bg_submenu_left,
Gui::gui->bg_submenu_middle, Gui::gui->bg_submenu_right);
}
void runLogic()
{
this->menu->runLogic();
}
void pushEvent(SDL_Event *ev)
{
this->menu->pushEvent(ev);
}
void viewPushCallback()
{
this->menu->updateMessages();
}
2009-12-29 14:23:01 +01:00
void draw(SDL_Surface *where)
{
SDL_Rect dst;
/* Blit the backgrounds */
dst = (SDL_Rect){20,45,300,400};
SDL_BlitSurface(Gui::gui->main_menu_bg, NULL, where, &dst);
dst = (SDL_Rect){350,13,0,0};
SDL_BlitSurface(Gui::gui->infobox, NULL, where, &dst);
dst = (SDL_Rect){350,242,0,0};
SDL_BlitSurface(Gui::gui->textbox, NULL, where, &dst);
this->menu->draw(where, 50, 70, 300, 400);
this->help->draw(where, 354, 24, 264, 210);
}
protected:
NetworkMenu *menu;
HelpBox *help;
};