format XUI

This commit is contained in:
Tropical
2026-03-22 12:40:22 -05:00
parent a403bf5a4a
commit 4b2f614326
175 changed files with 31285 additions and 30912 deletions

View File

@@ -3,50 +3,47 @@
#include "../../Minecraft.World/Headers/net.minecraft.world.level.tile.entity.h"
#include "XUI_Ctrl_BubblesProgress.h"
int CXuiCtrlBubblesProgress::GetValue()
{
void* pvUserData;
this->GetUserData( &pvUserData );
int CXuiCtrlBubblesProgress::GetValue() {
void* pvUserData;
this->GetUserData(&pvUserData);
if( pvUserData != NULL )
{
BrewingStandTileEntity *pBrewingStandTileEntity = (BrewingStandTileEntity *)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;
}
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 value;
}
return 0;
return 0;
}
void CXuiCtrlBubblesProgress::GetRange(int *pnRangeMin, int *pnRangeMax)
{
*pnRangeMin = 0;
*pnRangeMax = 30;
void CXuiCtrlBubblesProgress::GetRange(int* pnRangeMin, int* pnRangeMax) {
*pnRangeMin = 0;
*pnRangeMax = 30;
}