aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp')
-rw-r--r--Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp b/Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp
new file mode 100644
index 00000000..cc5d996f
--- /dev/null
+++ b/Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp
@@ -0,0 +1,52 @@
+#include "stdafx.h"
+
+#include "..\..\..\Minecraft.World\net.minecraft.world.level.tile.entity.h"
+#include "XUI_Ctrl_BubblesProgress.h"
+
+int CXuiCtrlBubblesProgress::GetValue()
+{
+ void* pvUserData;
+ this->GetUserData( &pvUserData );
+
+ if( pvUserData != NULL )
+ {
+ BrewingStandTileEntity *pBrewingStandTileEntity = (BrewingStandTileEntity *)pvUserData;
+
+ int value = 0;
+ int bubbleStep = (pBrewingStandTileEntity->getBrewTime() / 2) % 7;
+ switch (bubbleStep)
+ {
+ case 0:
+ value = 0;
+ break;
+ case 6:
+ value = 5;
+ break;
+ case 5:
+ value = 10;
+ break;
+ case 4:
+ value = 15;
+ break;
+ case 3:
+ value = 20;
+ break;
+ case 2:
+ value = 25;
+ break;
+ case 1:
+ value = 30;
+ break;
+ }
+
+ return value;
+ }
+
+ return 0;
+}
+
+void CXuiCtrlBubblesProgress::GetRange(int *pnRangeMin, int *pnRangeMax)
+{
+ *pnRangeMin = 0;
+ *pnRangeMax = 30;
+} \ No newline at end of file