aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h
diff options
context:
space:
mode:
authordaoge_cmd <3523206925@qq.com>2026-03-01 12:16:08 +0800
committerdaoge_cmd <3523206925@qq.com>2026-03-01 12:16:08 +0800
commitb691c43c44ff180d10e7d4a9afc83b98551ff586 (patch)
tree3e9849222cbc6ba49f2f1fc6e5fe7179632c7390 /Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h
parentdef8cb415354ac390b7e89052a50605285f1aca9 (diff)
Initial commit
Diffstat (limited to 'Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h')
-rw-r--r--Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h b/Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h
new file mode 100644
index 00000000..15272fe1
--- /dev/null
+++ b/Minecraft.Client/Common/UI/UIScene_DLCMainMenu.h
@@ -0,0 +1,50 @@
+#pragma once
+
+#include "UIScene.h"
+
+class UIScene_DLCMainMenu : public UIScene
+{
+private:
+ enum EControls
+ {
+ eControl_OffersList,
+ };
+
+ UIControl_ButtonList m_buttonListOffers;
+ UIControl_Label m_labelOffers, m_labelXboxStore;
+ UIControl m_Timer;
+ UI_BEGIN_MAP_ELEMENTS_AND_NAMES(UIScene)
+ UI_MAP_ELEMENT( m_buttonListOffers, "OffersList")
+ UI_MAP_ELEMENT( m_labelOffers, "OffersList_Title")
+ UI_MAP_ELEMENT( m_Timer, "Timer")
+ if(m_loadedResolution == eSceneResolution_1080)
+ {
+ UI_MAP_ELEMENT( m_labelXboxStore, "XboxLabel" )
+ }
+ UI_END_MAP_ELEMENTS_AND_NAMES()
+
+ static int ExitDLCMainMenu(void *pParam,int iPad,C4JStorage::EMessageResult result);
+
+#if defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
+ bool m_bCategoriesShown;
+#endif
+
+public:
+ UIScene_DLCMainMenu(int iPad, void *initData, UILayer *parentLayer);
+ ~UIScene_DLCMainMenu();
+ virtual void handleTimerComplete(int id);
+ virtual void handleGainFocus(bool navBack);
+
+ virtual EUIScene getSceneType() { return eUIScene_DLCMainMenu;}
+ virtual void tick();
+ virtual void updateTooltips();
+
+protected:
+ // TODO: This should be pure virtual in this class
+ virtual wstring getMoviePath();
+
+public:
+ // INPUT
+ virtual void handleInput(int iPad, int key, bool repeat, bool pressed, bool released, bool &handled);
+ virtual void handlePress(F64 controlId, F64 childId);
+};