summaryrefslogtreecommitdiffstats
path: root/src/UI/Window.cpp
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-07-30 21:59:35 +0200
committerHowaner <franzi.moos@googlemail.com>2014-07-30 21:59:35 +0200
commit89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04 (patch)
tree7d22e13df345884785abbc167a4818235fd61e0a /src/UI/Window.cpp
parentMerged branch 'howaner/Options'. (diff)
downloadcuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.tar
cuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.tar.gz
cuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.tar.bz2
cuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.tar.lz
cuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.tar.xz
cuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.tar.zst
cuberite-89b1bbdc5fca5a51df1a5dd18ce91f27cb667c04.zip
Diffstat (limited to 'src/UI/Window.cpp')
-rw-r--r--src/UI/Window.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/UI/Window.cpp b/src/UI/Window.cpp
index 4731f282b..aa129bfe8 100644
--- a/src/UI/Window.cpp
+++ b/src/UI/Window.cpp
@@ -9,6 +9,7 @@
#include "../Entities/Pickup.h"
#include "../Inventory.h"
#include "../Items/ItemHandler.h"
+#include "../BlockEntities/BeaconEntity.h"
#include "../BlockEntities/ChestEntity.h"
#include "../BlockEntities/DropSpenserEntity.h"
#include "../BlockEntities/EnderChestEntity.h"
@@ -841,6 +842,36 @@ void cAnvilWindow::GetBlockPos(int & a_PosX, int & a_PosY, int & a_PosZ)
////////////////////////////////////////////////////////////////////////////////
+// cBeaconWindow:
+
+cBeaconWindow::cBeaconWindow(int a_BlockX, int a_BlockY, int a_BlockZ, cBeaconEntity * a_Beacon) :
+ cWindow(wtBeacon, "Beacon"),
+ m_Beacon(a_Beacon)
+{
+ m_ShouldDistributeToHotbarFirst = true;
+ m_SlotAreas.push_back(new cSlotAreaBeacon(m_Beacon, *this));
+ m_SlotAreas.push_back(new cSlotAreaInventory(*this));
+ m_SlotAreas.push_back(new cSlotAreaHotBar(*this));
+}
+
+
+
+
+
+void cBeaconWindow::OpenedByPlayer(cPlayer & a_Player)
+{
+ super::OpenedByPlayer(a_Player);
+
+ a_Player.GetClientHandle()->SendWindowProperty(*this, 0, m_Beacon->GetBeaconLevel());
+ a_Player.GetClientHandle()->SendWindowProperty(*this, 1, m_Beacon->GetPrimaryPotion());
+ a_Player.GetClientHandle()->SendWindowProperty(*this, 2, m_Beacon->GetSecondaryPotion());
+}
+
+
+
+
+
+////////////////////////////////////////////////////////////////////////////////
// cEnchantingWindow:
cEnchantingWindow::cEnchantingWindow(int a_BlockX, int a_BlockY, int a_BlockZ) :