void UIGameHelpWindow::addStoneFlyingHelp (UINode *panel) { UINode* hbox = createHPanel(); hbox->add(createSprite(EntityTypes::STONE)); hbox->add(createTexture("icon-plus")); hbox->add(createSprite(EntityTypes::NPC_FLYING, Animations::ANIMATION_FLYING_RIGHT, iconsize * 2.0f, iconsize)); hbox->add(createTexture("icon-result")); hbox->add(createSprite(EntityTypes::NPC_FLYING, Animations::ANIMATION_FALLING_RIGHT, iconsize * 2.0f, iconsize)); panel->add(hbox); }
void UIGameHelpWindow::addPackageHelp (UINode *panel) { UINode* hbox = createHPanel(); hbox->add(createSprite(EntityTypes::PACKAGE_ROCK)); hbox->add(createTexture("icon-plus")); hbox->add(createSprite(EntityTypes::PACKAGETARGET_ROCK)); hbox->add(createTexture("icon-result")); hbox->add(createSprite(EntityTypes::PACKAGETARGET_ROCK, Animations::ANIMATION_ACTIVE)); panel->add(hbox); }
void UIGameHelpWindow::addOuyaButton (UINode *panel, const std::string& texture, const std::string& title) { UINode* hbox = createHPanel(); UINode* imageNode = new UINode(_frontend); imageNode->setImage(texture); hbox->add(imageNode); UINodeLabel *label = new UINodeLabel(_frontend, title); label->setColor(colorWhite); label->setPos(0.0f, imageNode->getHeight() / 2.0f - label->getHeight() / 2.0f); hbox->add(label); panel->add(hbox); }
void UIGameHelpWindow::addLivesHelp (UINode *panel) { UINode* hbox = createHPanel(); const int n = Config.getAmountOfFruitsForANewLife(); for (int i = 0; i < n - 1; ++i) { hbox->add(createSprite(EntityTypes::APPLE)); } hbox->add(createSprite(EntityTypes::BANANA)); hbox->add(createTexture("icon-result")); hbox->add(createTexture("icon-plus")); hbox->add(createSprite(EntityTypes::PLAYER)); panel->add(hbox); }
void UIGameHelpWindow::addTreeHelp (UINode *panel) { UINode* hbox = createHPanel(); hbox->add(createSprite(EntityTypes::STONE)); hbox->add(createTexture("icon-plus")); hbox->add(createSprite(EntityTypes::TREE)); hbox->add(createTexture("icon-result")); hbox->add(createSprite(EntityTypes::TREE, Animations::ANIMATION_DAZED)); hbox->add(createSprite(EntityTypes::APPLE)); panel->add(hbox); }
void UIMapWindow::initHudNodes () { UINode* panel = new UINode(_frontend); panel->setImage("bones"); panel->setStandardPadding(); panel->setAlignment(NODE_ALIGN_TOP | NODE_ALIGN_CENTER); add(panel); UINode *innerPanel = new UINode(_frontend); innerPanel->setLayout(new UIHBoxLayout(0.01f)); innerPanel->setPos(panel->getX() + 0.07f, panel->getY()); _points = new UICavePackerNodePoint(_frontend, 30); _points->setFont(HUGE_FONT); _points->setId(UINODE_POINTS); innerPanel->add(_points); add(innerPanel); }
UIMainWindow::UIMainWindow (IFrontend *frontend, ServiceProvider& serviceProvider) : UIWindow(UI_WINDOW_MAIN, frontend, WINDOW_FLAG_ROOT) { add(new UINodeMainBackground(frontend, false)); const SpritePtr& mammutSprite = UI::get().loadSprite("ui-npc-mammut"); _mammut = new UINodeSprite(frontend, mammutSprite->getMaxWidth(), mammutSprite->getMaxHeight()); _mammut->addSprite(mammutSprite); const SpritePtr& grandPaSprite = UI::get().loadSprite("ui-npc-grandpa"); _grandpa = new UINodeSprite(frontend, grandPaSprite->getMaxWidth(), grandPaSprite->getMaxHeight()); _grandpa->addSprite(grandPaSprite); const SpritePtr& playerSprite = UI::get().loadSprite("ui-player"); _player = new UINodeSprite(frontend, playerSprite->getMaxWidth(), playerSprite->getMaxHeight()); _player->addSprite(playerSprite); add(_mammut); add(_grandpa); add(_player); const float padding = 10.0f / static_cast<float>(_frontend->getHeight()); UINode *panel = new UINode(_frontend, "panelMain"); UIVBoxLayout *layout = new UIVBoxLayout(padding, true); panel->setLayout(layout); panel->setAlignment(NODE_ALIGN_MIDDLE | NODE_ALIGN_CENTER); panel->setPadding(padding); UINodeMainButton *campaign = new UINodeMainButton(_frontend, tr("Campaign")); campaign->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_CAMPAIGN))); panel->add(campaign); #ifndef NONETWORK if (Config.isNetwork()) { UINodeMainButton *multiplayer = new UINodeMainButton(_frontend, tr("Multiplayer")); multiplayer->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_MULTIPLAYER))); panel->add(multiplayer); } #endif UINodeMainButton *settings = new UINodeMainButton(_frontend, tr("Settings")); settings->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_SETTINGS))); panel->add(settings); if (System.supportPayment()) { UINodeMainButton *payment = new UINodeMainButton(_frontend, tr("Extras")); payment->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_PAYMENT))); panel->add(payment); } if (System.supportGooglePlay()) { UINodeButtonImage *googlePlay = new UINodeGooglePlayButton(_frontend); googlePlay->setPadding(padding); add(googlePlay); } #ifndef STEAMLINK if (System.supportsUserContent()) { UINodeMainButton *editor = new UINodeMainButton(_frontend, tr("Editor")); editor->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_EDITOR))); panel->add(editor); } UINodeMainButton *twitter = new UINodeMainButton(_frontend, tr("Twitter")); twitter->addListener(UINodeListenerPtr(new OpenURLListener(_frontend, "https://twitter.com/MartinGerhardy"))); panel->add(twitter); UINodeMainButton *homepage = new UINodeMainButton(_frontend, tr("Homepage")); homepage->addListener(UINodeListenerPtr(new OpenURLListener(_frontend, "http://caveproductions.org/"))); panel->add(homepage); #endif UINodeMainButton *help = new UINodeMainButton(_frontend, tr("Help")); help->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_HELP))); panel->add(help); #if 0 #ifdef __EMSCRIPTEN__ UINodeMainButton *fullscreen = new UINodeMainButton(_frontend, tr("Fullscreen")); fullscreen->addListener(UINodeListenerPtr(new EmscriptenFullscreenListener())); panel->add(fullscreen); #endif #endif UINodeMainButton *quit = new UINodeMainButton(_frontend, tr("Quit")); #ifdef __EMSCRIPTEN__ quit->addListener(UINodeListenerPtr(new OpenURLListener(_frontend, "http://caveproductions.org/", false))); #else quit->addListener(UINodeListenerPtr(new QuitListener())); #endif panel->add(quit); add(panel); Application& app = Singleton<Application>::getInstance(); UINodeLabel *versionLabel = new UINodeLabel(_frontend, app.getPackageName() + " " + app.getVersion()); versionLabel->setAlignment(NODE_ALIGN_BOTTOM|NODE_ALIGN_RIGHT); versionLabel->setColor(colorWhite); versionLabel->setPadding(getScreenPadding()); add(versionLabel); }
UIMainWindow::UIMainWindow (IFrontend *frontend) : UIWindow(UI_WINDOW_MAIN, frontend, WINDOW_FLAG_ROOT) { add(new UINodeMainBackground(frontend, false)); const float padding = 10.0f / static_cast<float>(_frontend->getHeight()); UINode *panel = new UINode(_frontend, "panelMain"); UIVBoxLayout *layout = new UIVBoxLayout(padding, true); panel->setLayout(layout); panel->setAlignment(NODE_ALIGN_MIDDLE | NODE_ALIGN_CENTER); panel->setPadding(padding); UINodeMainButton *campaign = new UINodeMainButton(_frontend, tr("Start")); campaign->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_CAMPAIGN))); panel->add(campaign); #ifndef NONETWORK if (Config.isNetwork()) { UINodeMainButton *multiplayer = new UINodeMainButton(_frontend, tr("Multiplayer")); multiplayer->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_MULTIPLAYER))); panel->add(multiplayer); } #endif UINodeMainButton *settings = new UINodeMainButton(_frontend, tr("Settings")); settings->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_SETTINGS))); panel->add(settings); #if 0 UINodeMainButton *gesture = new UINodeMainButton(_frontend, tr("Gesture")); gesture->addListener(UINodeListenerPtr(new OpenWindowListener("gesture"))); panel->add(gesture); #endif if (System.supportPayment()) { UINodeMainButton *payment = new UINodeMainButton(_frontend, tr("Extras")); payment->addListener(UINodeListenerPtr(new OpenWindowListener(UI_WINDOW_PAYMENT))); panel->add(payment); } if (System.supportGooglePlay()) { UINodeButtonImage *googlePlay = new UINodeGooglePlayButton(_frontend); googlePlay->setPadding(padding); add(googlePlay); } UINodeMainButton *twitter = new UINodeMainButton(_frontend, tr("Twitter")); twitter->addListener(UINodeListenerPtr(new OpenURLListener(_frontend, "https://twitter.com/MartinGerhardy"))); panel->add(twitter); UINodeMainButton *homepage = new UINodeMainButton(_frontend, tr("Homepage")); homepage->addListener(UINodeListenerPtr(new OpenURLListener(_frontend, "http://caveproductions.org/"))); panel->add(homepage); #if 0 #ifdef __EMSCRIPTEN__ UINodeMainButton *fullscreen = new UINodeMainButton(_frontend, tr("Fullscreen")); fullscreen->addListener(UINodeListenerPtr(new EmscriptenFullscreenListener())); panel->add(fullscreen); #endif #endif UINodeMainButton *quit = new UINodeMainButton(_frontend, tr("Quit")); #ifdef __EMSCRIPTEN__ quit->addListener(UINodeListenerPtr(new OpenURLListener(_frontend, "http://caveproductions.org/", false))); #else quit->addListener(UINodeListenerPtr(new QuitListener())); #endif panel->add(quit); add(panel); }