Files
daoge b3feddfef3 feat: TU19 (Dec 2014) Features & Content (#155)
* try to resolve merge conflict

* feat: TU19 (Dec 2014) Features & Content (#32)

* December 2014 files

* Working release build

* Fix compilation issues

* Add sound to Windows64Media

* Add DLC content and force Tutorial DLC

* Revert "Add DLC content and force Tutorial DLC"

This reverts commit 97a4399472.

* Disable broken light packing

* Disable breakpoint during DLC texture map load

Allows DLC loading but the DLC textures are still broken

* Fix post build not working

* ...

* fix vs2022 build

* fix cmake build

---------

Co-authored-by: Loki <lokirautio@gmail.com>
2026-03-03 03:04:10 +08:00

55 lines
2.5 KiB
C++

#pragma once
#include "EntityRenderer.h"
class Textures;
class ItemInstance;
class Random;
class ItemEntity;
class ItemRenderer : public EntityRenderer
{
private:
// TileRenderer *tileRenderer; // 4J - removed - this is shadowing the tilerenderer from entityrenderer
Random *random;
bool m_bItemFrame;
public:
bool setColor;
float blitOffset;
ItemRenderer();
virtual ~ItemRenderer();
virtual void render(shared_ptr<Entity> _itemEntity, double x, double y, double z, float rot, float a);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> entity);
virtual ResourceLocation *getTextureLocation(int iconType);
private:
virtual void renderItemBillboard(shared_ptr<ItemEntity> entity, Icon *icon, int count, float a, float red, float green, float blue);
public:
// 4J - original 2 interface variants
void renderGuiItem(Font *font, Textures *textures, shared_ptr<ItemInstance> item, int x, int y);
void renderAndDecorateItem(Font *font, Textures *textures, const shared_ptr<ItemInstance> item, int x, int y);
// 4J - new interfaces added
void renderGuiItem(Font *font, Textures *textures, shared_ptr<ItemInstance> item, float x, float y, float fScale, float fAlpha);
void renderGuiItem(Font *font, Textures *textures, shared_ptr<ItemInstance> item, float x, float y, float fScaleX,float fScaleY, float fAlpha, bool useCompiled); // 4J Added useCompiled
void renderAndDecorateItem(Font *font, Textures *textures, const shared_ptr<ItemInstance> item, float x, float y, float fScale, float fAlpha, bool isFoil);
void renderAndDecorateItem(Font *font, Textures *textures, const shared_ptr<ItemInstance> item, float x, float y, float fScaleX, float fScaleY, float fAlpha, bool isFoil, bool isConstantBlended, bool useCompiled = true); // 4J - added isConstantBlended and useCompiled
// 4J Added
virtual void SetItemFrame(bool bSet) {m_bItemFrame=bSet;}
static const int m_iPotionStrengthBarWidth[4];
private:
void blitGlint(int id, float x, float y, float w, float h); // 4J - changed x,y,w,h to floats
public:
void renderGuiItemDecorations(Font *font, Textures *textures, shared_ptr<ItemInstance> item, int x, int y, float fAlpha = 1.0f);
void renderGuiItemDecorations(Font *font, Textures *textures, shared_ptr<ItemInstance> item, int x, int y, const wstring &countText, float fAlpha = 1.0f);
private:
void fillRect(Tesselator *t, int x, int y, int w, int h, int c);
public:
void blit(float x, float y, int sx, int sy, float w, float h); // 4J - changed x,y,w,h to floats
void blit(float x, float y, Icon *tex, float w, float h);
};