Skip to content

Commit

Permalink
Draw items as 2D images (instead of meshes) when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Mar 30, 2021
1 parent 88d1fcf commit 0d90ed6
Showing 1 changed file with 28 additions and 14 deletions.
42 changes: 28 additions & 14 deletions src/client/hud.cpp
Expand Up @@ -945,10 +945,16 @@ void drawItemStack(
return;
}

const static thread_local bool enable_animations =
g_settings->getBool("inventory_items_animations");

const ItemDefinition &def = item.getDefinition(client->idef());
ItemMesh *imesh = client->idef()->getWieldMesh(def.name, client);

if (imesh && imesh->mesh) {
// Render as mesh if animated or no inventory image
if ((enable_animations && rotation_kind < IT_ROT_NONE) || def.inventory_image.empty()) {
ItemMesh *imesh = client->idef()->getWieldMesh(def.name, client);
if (!imesh || !imesh->mesh)
return;
scene::IMesh *mesh = imesh->mesh;
driver->clearBuffers(video::ECBF_DEPTH);
s32 delta = 0;
Expand Down Expand Up @@ -992,9 +998,6 @@ void drawItemStack(
core::matrix4 matrix;
matrix.makeIdentity();

static thread_local bool enable_animations =
g_settings->getBool("inventory_items_animations");

if (enable_animations) {
float timer_f = (float) delta / 5000.f;
matrix.setRotationDegrees(v3f(
Expand Down Expand Up @@ -1039,16 +1042,27 @@ void drawItemStack(
driver->setTransform(video::ETS_VIEW, oldViewMat);
driver->setTransform(video::ETS_PROJECTION, oldProjMat);
driver->setViewPort(oldViewPort);
} else { // Otherwise just draw as 2D
video::ITexture *texture = client->idef()->getInventoryTexture(def.name, client);
if (!texture)
return;
video::SColor color =
client->idef()->getItemstackColor(item, client);
const video::SColor colors[] = { color, color, color, color };

// draw the inventory_overlay
if (def.type == ITEM_NODE && def.inventory_image.empty() &&
!def.inventory_overlay.empty()) {
ITextureSource *tsrc = client->getTextureSource();
video::ITexture *overlay_texture = tsrc->getTexture(def.inventory_overlay);
core::dimension2d<u32> dimens = overlay_texture->getOriginalSize();
core::rect<s32> srcrect(0, 0, dimens.Width, dimens.Height);
draw2DImageFilterScaled(driver, overlay_texture, rect, srcrect, clip, 0, true);
}
draw2DImageFilterScaled(driver, texture, rect,
core::rect<s32>({0, 0}, core::dimension2di(texture->getOriginalSize())),
clip, colors, true);
}

// draw the inventory_overlay
if (def.type == ITEM_NODE && def.inventory_image.empty() &&
!def.inventory_overlay.empty()) {
ITextureSource *tsrc = client->getTextureSource();
video::ITexture *overlay_texture = tsrc->getTexture(def.inventory_overlay);
core::dimension2d<u32> dimens = overlay_texture->getOriginalSize();
core::rect<s32> srcrect(0, 0, dimens.Width, dimens.Height);
draw2DImageFilterScaled(driver, overlay_texture, rect, srcrect, clip, 0, true);
}

if (def.type == ITEM_TOOL && item.wear != 0) {
Expand Down

0 comments on commit 0d90ed6

Please sign in to comment.