Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Consoles/Common/XUI/XUI_Ctrl_FireProgress.cpp
GabsPuNs bc6c09146a New File System and Cleanup some code Part 3
* Remove stdafx.h and some <unordered_set> includes
* Update Minecraft Server Defines and remove more unused folders/files
* Unbloat stdafx.h from Minecraft.World
2026-05-24 22:21:41 -04:00

28 lines
751 B
C++

#include "..\..\..\Minecraft.World\FurnaceMenu.h"
#include "..\..\..\Minecraft.World\FurnaceTileEntity.h"
#include "XUI_Scene_Furnace.h"
#include "XUI_Ctrl_FireProgress.h"
int CXuiCtrlFireProgress::GetValue()
{
void* pvUserData;
this->GetUserData( &pvUserData );
if( pvUserData != nullptr )
{
FurnaceTileEntity *pFurnaceTileEntity = static_cast<FurnaceTileEntity *>(pvUserData);
// TODO This param is a magic number in Java but we should really define it somewhere with a name
// I think it is the number of states of the progress display (ie the max value)
return pFurnaceTileEntity->getLitProgress( 12 );
}
return 0;
}
void CXuiCtrlFireProgress::GetRange(int *pnRangeMin, int *pnRangeMax)
{
*pnRangeMin = 0;
*pnRangeMax = 12;
}