aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/XUI/XUI_Ctrl_BubblesProgress.cpp
blob: 48a130c42096d1971f1dd6e1f128209ceeb61f6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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 != nullptr )
	{
		BrewingStandTileEntity *pBrewingStandTileEntity = static_cast<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;
}