mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
button
This commit is contained in:
parent
ec005593d3
commit
ecd7e17764
@ -91,6 +91,7 @@ enum class EShortcut
|
|||||||
LOBBY_FLIP_COIN,
|
LOBBY_FLIP_COIN,
|
||||||
LOBBY_RANDOM_TOWN,
|
LOBBY_RANDOM_TOWN,
|
||||||
LOBBY_RANDOM_TOWN_VS,
|
LOBBY_RANDOM_TOWN_VS,
|
||||||
|
LOBBY_HANDICAP,
|
||||||
|
|
||||||
MAPS_SIZE_S,
|
MAPS_SIZE_S,
|
||||||
MAPS_SIZE_M,
|
MAPS_SIZE_M,
|
||||||
|
@ -288,6 +288,7 @@ EShortcut ShortcutHandler::findShortcut(const std::string & identifier ) const
|
|||||||
{"lobbyFlipCoin", EShortcut::LOBBY_FLIP_COIN },
|
{"lobbyFlipCoin", EShortcut::LOBBY_FLIP_COIN },
|
||||||
{"lobbyRandomTown", EShortcut::LOBBY_RANDOM_TOWN },
|
{"lobbyRandomTown", EShortcut::LOBBY_RANDOM_TOWN },
|
||||||
{"lobbyRandomTownVs", EShortcut::LOBBY_RANDOM_TOWN_VS },
|
{"lobbyRandomTownVs", EShortcut::LOBBY_RANDOM_TOWN_VS },
|
||||||
|
{"lobbyHandicap", EShortcut::LOBBY_HANDICAP },
|
||||||
{"mapsSizeS", EShortcut::MAPS_SIZE_S },
|
{"mapsSizeS", EShortcut::MAPS_SIZE_S },
|
||||||
{"mapsSizeM", EShortcut::MAPS_SIZE_M },
|
{"mapsSizeM", EShortcut::MAPS_SIZE_M },
|
||||||
{"mapsSizeL", EShortcut::MAPS_SIZE_L },
|
{"mapsSizeL", EShortcut::MAPS_SIZE_L },
|
||||||
|
@ -437,6 +437,11 @@ PvPBox::PvPBox(const Rect & rect)
|
|||||||
CSH->sendLobbyPack(lpa);
|
CSH->sendLobbyPack(lpa);
|
||||||
}, EShortcut::LOBBY_RANDOM_TOWN_VS);
|
}, EShortcut::LOBBY_RANDOM_TOWN_VS);
|
||||||
buttonRandomTownVs->setTextOverlay(CGI->generaltexth->translate("vcmi.lobby.pvp.randomTownVs.hover"), EFonts::FONT_SMALL, Colors::WHITE);
|
buttonRandomTownVs->setTextOverlay(CGI->generaltexth->translate("vcmi.lobby.pvp.randomTownVs.hover"), EFonts::FONT_SMALL, Colors::WHITE);
|
||||||
|
|
||||||
|
buttonHandicap = std::make_shared<CButton>(Point(190, 81), AnimationPath::builtin("GSPBUT2.DEF"), CButton::tooltip("", CGI->generaltexth->translate("vcmi.lobby.handicap")), [this](){
|
||||||
|
GH.windows().createAndPushWindow<OptionsTab::HandicapWindow>();
|
||||||
|
}, EShortcut::LOBBY_HANDICAP);
|
||||||
|
buttonHandicap->setTextOverlay(CGI->generaltexth->translate("vcmi.lobby.handicap"), EFonts::FONT_SMALL, Colors::WHITE);
|
||||||
}
|
}
|
||||||
|
|
||||||
TownSelector::TownSelector(const Point & loc)
|
TownSelector::TownSelector(const Point & loc)
|
||||||
|
@ -153,6 +153,7 @@ class PvPBox : public CIntObject
|
|||||||
std::shared_ptr<CButton> buttonFlipCoin;
|
std::shared_ptr<CButton> buttonFlipCoin;
|
||||||
std::shared_ptr<CButton> buttonRandomTown;
|
std::shared_ptr<CButton> buttonRandomTown;
|
||||||
std::shared_ptr<CButton> buttonRandomTownVs;
|
std::shared_ptr<CButton> buttonRandomTownVs;
|
||||||
|
std::shared_ptr<CButton> buttonHandicap;
|
||||||
public:
|
public:
|
||||||
PvPBox(const Rect & rect);
|
PvPBox(const Rect & rect);
|
||||||
};
|
};
|
||||||
|
@ -53,6 +53,22 @@ public:
|
|||||||
BONUS
|
BONUS
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class HandicapWindow : public CWindowObject
|
||||||
|
{
|
||||||
|
std::shared_ptr<FilledTexturePlayerColored> backgroundTexture;
|
||||||
|
|
||||||
|
std::vector<std::shared_ptr<CLabel>> labels;
|
||||||
|
std::vector<std::shared_ptr<CAnimImage>> anim;
|
||||||
|
std::vector<std::shared_ptr<TransparentFilledRectangle>> textinputbackgrounds;
|
||||||
|
std::map<PlayerColor, std::map<EGameResID, std::shared_ptr<CTextInput>>> textinputs;
|
||||||
|
std::vector<std::shared_ptr<CButton>> buttons;
|
||||||
|
|
||||||
|
bool receiveEvent(const Point & position, int eventType) const override;
|
||||||
|
void clickReleased(const Point & cursorPosition) override;
|
||||||
|
public:
|
||||||
|
HandicapWindow();
|
||||||
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
struct CPlayerSettingsHelper
|
struct CPlayerSettingsHelper
|
||||||
@ -161,22 +177,6 @@ private:
|
|||||||
SelectionWindow(const PlayerColor & color, SelType _type, int sliderPos = 0);
|
SelectionWindow(const PlayerColor & color, SelType _type, int sliderPos = 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
class HandicapWindow : public CWindowObject
|
|
||||||
{
|
|
||||||
std::shared_ptr<FilledTexturePlayerColored> backgroundTexture;
|
|
||||||
|
|
||||||
std::vector<std::shared_ptr<CLabel>> labels;
|
|
||||||
std::vector<std::shared_ptr<CAnimImage>> anim;
|
|
||||||
std::vector<std::shared_ptr<TransparentFilledRectangle>> textinputbackgrounds;
|
|
||||||
std::map<PlayerColor, std::map<EGameResID, std::shared_ptr<CTextInput>>> textinputs;
|
|
||||||
std::vector<std::shared_ptr<CButton>> buttons;
|
|
||||||
|
|
||||||
bool receiveEvent(const Point & position, int eventType) const override;
|
|
||||||
void clickReleased(const Point & cursorPosition) override;
|
|
||||||
public:
|
|
||||||
HandicapWindow();
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Image with current town/hero/bonus
|
/// Image with current town/hero/bonus
|
||||||
struct SelectedBox : public Scrollable, public CPlayerSettingsHelper
|
struct SelectedBox : public Scrollable, public CPlayerSettingsHelper
|
||||||
{
|
{
|
||||||
|
@ -150,6 +150,7 @@
|
|||||||
"lobbyRandomMap": "R",
|
"lobbyRandomMap": "R",
|
||||||
"lobbyRandomTown": "T",
|
"lobbyRandomTown": "T",
|
||||||
"lobbyRandomTownVs": "V",
|
"lobbyRandomTownVs": "V",
|
||||||
|
"lobbyHandicap": "C",
|
||||||
"lobbyReplayVideo": "R",
|
"lobbyReplayVideo": "R",
|
||||||
"lobbySaveGame": [ "S", "Return", "Keypad Enter"],
|
"lobbySaveGame": [ "S", "Return", "Keypad Enter"],
|
||||||
"lobbySelectScenario": "S",
|
"lobbySelectScenario": "S",
|
||||||
|
Loading…
Reference in New Issue
Block a user