mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 12:23:36 +00:00
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
#include "../../Platform/stdafx.h"
|
|
#include "TrapScreen.h"
|
|
#include "../../Player/LocalPlayer.h"
|
|
#include "../../Textures/Textures.h"
|
|
#include "../../../Minecraft.World/Headers/net.minecraft.world.inventory.h"
|
|
#include "../../../Minecraft.World/Blocks/TileEntities/DispenserTileEntity.h"
|
|
#include "../../../Minecraft.World/Headers/net.minecraft.world.h"
|
|
|
|
#ifdef ENABLE_JAVA_GUIS
|
|
ResourceLocation GUI_TRAP_LOCATION = ResourceLocation(TN_GUI_TRAP);
|
|
#endif
|
|
|
|
TrapScreen::TrapScreen(std::shared_ptr<Inventory> inventory,
|
|
std::shared_ptr<DispenserTileEntity> trap)
|
|
: AbstractContainerScreen(new TrapMenu(inventory, trap)) {
|
|
this->trap = trap;
|
|
this->inventory = inventory;
|
|
}
|
|
|
|
void TrapScreen::renderLabels() {
|
|
font->draw(trap->getName(), 16 + 4 + 40, 2 + 2 + 2, 0x404040);
|
|
font->draw(inventory->getName(), 8, imageHeight - 96 + 2, 0x404040);
|
|
}
|
|
|
|
void TrapScreen::renderBg(float a) {
|
|
#ifdef ENABLE_JAVA_GUIS
|
|
glColor4f(1, 1, 1, 1);
|
|
minecraft->textures->bindTexture(&GUI_TRAP_LOCATION);
|
|
int xo = (width - imageWidth) / 2;
|
|
int yo = (height - imageHeight) / 2;
|
|
this->blit(xo, yo, 0, 0, imageWidth, imageHeight);
|
|
#endif
|
|
} |