2026-03-01 12:16:08 +08:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
|
|
#include "..\..\..\Minecraft.World\net.minecraft.world.level.tile.entity.h"
|
|
|
|
|
#include "..\..\..\Minecraft.World\SharedConstants.h"
|
|
|
|
|
#include "..\..\..\Minecraft.World\net.minecraft.world.item.alchemy.h"
|
|
|
|
|
#include "XUI_Ctrl_BrewProgress.h"
|
|
|
|
|
|
|
|
|
|
int CXuiCtrlBrewProgress::GetValue()
|
|
|
|
|
{
|
|
|
|
|
void* pvUserData;
|
|
|
|
|
this->GetUserData( &pvUserData );
|
|
|
|
|
|
2026-03-08 19:08:36 -04:00
|
|
|
if( pvUserData != nullptr )
|
2026-03-01 12:16:08 +08:00
|
|
|
{
|
2026-03-08 19:08:36 -04:00
|
|
|
BrewingStandTileEntity *pBrewingStandTileEntity = static_cast<BrewingStandTileEntity *>(pvUserData);
|
2026-03-01 12:16:08 +08:00
|
|
|
|
|
|
|
|
return pBrewingStandTileEntity->getBrewTime();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CXuiCtrlBrewProgress::GetRange(int *pnRangeMin, int *pnRangeMax)
|
|
|
|
|
{
|
|
|
|
|
*pnRangeMin = 0;
|
|
|
|
|
*pnRangeMax = PotionBrewing::BREWING_TIME_SECONDS * SharedConstants::TICKS_PER_SECOND;
|
|
|
|
|
}
|