aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/XUI/XUI_Scene_Trap.cpp
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/XUI/XUI_Scene_Trap.cpp
parentdef8cb415354ac390b7e89052a50605285f1aca9 (diff)
Initial commit
Diffstat (limited to 'Minecraft.Client/Common/XUI/XUI_Scene_Trap.cpp')
-rw-r--r--Minecraft.Client/Common/XUI/XUI_Scene_Trap.cpp122
1 files changed, 122 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/XUI/XUI_Scene_Trap.cpp b/Minecraft.Client/Common/XUI/XUI_Scene_Trap.cpp
new file mode 100644
index 00000000..99dc6e4c
--- /dev/null
+++ b/Minecraft.Client/Common/XUI/XUI_Scene_Trap.cpp
@@ -0,0 +1,122 @@
+#include "stdafx.h"
+
+#include "..\..\..\Minecraft.World\DispenserTileEntity.h"
+#include "..\..\..\Minecraft.World\TrapMenu.h"
+#include "..\..\MultiplayerLocalPlayer.h"
+#include "XUI_Ctrl_SlotList.h"
+#include "XUI_Scene_Trap.h"
+#include "..\..\Common\Tutorial\Tutorial.h"
+#include "..\..\Common\Tutorial\TutorialMode.h"
+#include "..\..\Common\Tutorial\TutorialEnum.h"
+
+//--------------------------------------------------------------------------------------
+// Name: CXuiSceneTrap::OnInit
+// Desc: Message handler for XM_INIT
+//--------------------------------------------------------------------------------------
+HRESULT CXuiSceneTrap::OnInit( XUIMessageInit* pInitData, BOOL& bHandled )
+{
+ D3DXVECTOR3 vec;
+ MapChildControls();
+
+ XuiControlSetText(m_DispenserText,app.GetString(IDS_DISPENSER));
+
+ Minecraft *pMinecraft = Minecraft::GetInstance();
+
+ TrapScreenInput* initData = (TrapScreenInput*)pInitData->pvInitData;
+ m_iPad=initData->iPad;
+ m_bSplitscreen=initData->bSplitscreen;
+
+#ifdef _XBOX
+ if( pMinecraft->localgameModes[initData->iPad] != NULL )
+ {
+ TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[initData->iPad];
+ m_previousTutorialState = gameMode->getTutorial()->getCurrentState();
+ gameMode->getTutorial()->changeTutorialState(e_Tutorial_State_Trap_Menu, this);
+ }
+#endif
+ // if we are in splitscreen, then we need to figure out if we want to move this scene
+
+ if(m_bSplitscreen)
+ {
+ app.AdjustSplitscreenScene(m_hObj,&m_OriginalPosition,m_iPad);
+ }
+
+ TrapMenu* menu = new TrapMenu( initData->inventory, initData->trap );
+
+ InitDataAssociations(initData->iPad, menu);
+
+ CXuiSceneAbstractContainer::Initialize( initData->iPad, menu, true, initData->trap->getContainerSize(), eSectionTrapUsing, eSectionTrapMax );
+
+ delete initData;
+
+ return S_OK;
+}
+
+HRESULT CXuiSceneTrap::OnDestroy()
+{
+ Minecraft *pMinecraft = Minecraft::GetInstance();
+
+#ifdef _XBOX
+ if( pMinecraft->localgameModes[m_iPad] != NULL )
+ {
+ TutorialMode *gameMode = (TutorialMode *)pMinecraft->localgameModes[m_iPad];
+ if(gameMode != NULL) gameMode->getTutorial()->changeTutorialState(m_previousTutorialState);
+ }
+#endif
+
+ // 4J Stu - Fix for #11302 - TCR 001: Network Connectivity: Host crashed after being killed by the client while accessing a chest during burst packet loss.
+ // We need to make sure that we call closeContainer() anytime this menu is closed, even if it is forced to close by some other reason (like the player dying)
+ if(Minecraft::GetInstance()->localplayers[m_iPad] != NULL) Minecraft::GetInstance()->localplayers[m_iPad]->closeContainer();
+ return S_OK;
+}
+
+CXuiControl* CXuiSceneTrap::GetSectionControl( ESceneSection eSection )
+{
+ switch( eSection )
+ {
+ case eSectionTrapTrap:
+ return (CXuiControl *)m_trapControl;
+ break;
+ case eSectionTrapInventory:
+ return (CXuiControl *)m_inventoryControl;
+ break;
+ case eSectionTrapUsing:
+ return (CXuiControl *)m_useRowControl;
+ break;
+ default:
+ assert( false );
+ break;
+ }
+ return NULL;
+}
+
+CXuiCtrlSlotList* CXuiSceneTrap::GetSectionSlotList( ESceneSection eSection )
+{
+ switch( eSection )
+ {
+ case eSectionTrapTrap:
+ return m_trapControl;
+ break;
+ case eSectionTrapInventory:
+ return m_inventoryControl;
+ break;
+ case eSectionTrapUsing:
+ return m_useRowControl;
+ break;
+ default:
+ assert( false );
+ break;
+ }
+ return NULL;
+}
+
+// 4J Stu - Added to support auto-save. Need to re-associate on a navigate back
+void CXuiSceneTrap::InitDataAssociations(int iPad, AbstractContainerMenu *menu, int startIndex /*= 0*/)
+{
+ int containerSize = menu->getSize() - (27 + 9);
+
+ // TODO Inventory dimensions need defined as constants
+ m_trapControl->SetData( iPad, menu, 3, 3, 0 );
+
+ CXuiSceneAbstractContainer::InitDataAssociations(iPad, menu, containerSize);
+} \ No newline at end of file