mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-27 15:35:36 +00:00
feat(jui): add hopper screen
This commit is contained in:
37
Minecraft.Client/UI/Screens/HopperScreen.cpp
Normal file
37
Minecraft.Client/UI/Screens/HopperScreen.cpp
Normal file
@@ -0,0 +1,37 @@
|
||||
#include "../../Platform/stdafx.h"
|
||||
#include "HopperScreen.h"
|
||||
#include "../../Textures/Textures.h"
|
||||
#include "../../Player/LocalPlayer.h"
|
||||
#include "../Font.h"
|
||||
#include "../../../Minecraft.World/Headers/net.minecraft.world.inventory.h"
|
||||
#include "../../../Minecraft.World/Containers/HopperMenu.h"
|
||||
|
||||
// 4jcraft: referenced from MCP 8.11 (JE 1.6.4) and the existing
|
||||
// container classes
|
||||
#ifdef ENABLE_JAVA_GUIS
|
||||
ResourceLocation GUI_HOPPER_LOCATION = ResourceLocation(TN_GUI_HOPPER);
|
||||
#endif
|
||||
|
||||
HopperScreen::HopperScreen(std::shared_ptr<Inventory> inventory,
|
||||
std::shared_ptr<Container> hopper)
|
||||
: AbstractContainerScreen(new HopperMenu(inventory, hopper)) {
|
||||
this->hopper = hopper;
|
||||
this->inventory = inventory;
|
||||
imageHeight = 133;
|
||||
}
|
||||
|
||||
void HopperScreen::renderLabels() {
|
||||
font->draw(hopper->getName(), 8, 6, 0x404040);
|
||||
font->draw(inventory->getName(), 8, imageHeight - 96 + 2, 0x404040);
|
||||
}
|
||||
|
||||
void HopperScreen::renderBg(float a) {
|
||||
// 4J Unused
|
||||
#ifdef ENABLE_JAVA_GUIS
|
||||
glColor4f(1, 1, 1, 1);
|
||||
minecraft->textures->bindTexture(&GUI_HOPPER_LOCATION);
|
||||
int xo = (width - imageWidth) / 2;
|
||||
int yo = (height - imageHeight) / 2;
|
||||
this->blit(xo, yo, 0, 0, imageWidth, imageHeight);
|
||||
#endif
|
||||
}
|
||||
Reference in New Issue
Block a user