Skip to content

Commit

Permalink
Add option to scale image to percentage values
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockMen authored and kahrl committed Sep 20, 2013
1 parent f7ee5da commit 27947d8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
6 changes: 4 additions & 2 deletions doc/lua_api.txt
Expand Up @@ -478,8 +478,10 @@ Note: Future revisions to the HUD API may be incompatible; the HUD API is still

- image
Displays an image on the HUD.
- scale: The scale of the image, with 1 being the original texture size.
Only the X coordinate scale is used.
- scale: The scale of the image, with 1 being the original texture size.
Only the X coordinate scale is used (positive values)
Negative values represent that percentage of the screen it
should take; e.g. x=-100 means 100% (width)
- text: The name of the texture that is displayed.
- alignment: The alignment of the image.
- offset: offset in pixels from position.
Expand Down
17 changes: 10 additions & 7 deletions src/hud.cpp
Expand Up @@ -234,13 +234,16 @@ void Hud::drawLuaElements() {
const video::SColor color(255, 255, 255, 255);
const video::SColor colors[] = {color, color, color, color};
core::dimension2di imgsize(texture->getOriginalSize());
core::rect<s32> rect(0, 0, imgsize.Width * e->scale.X,
imgsize.Height * e->scale.X);
rect += pos;
v2s32 offset((e->align.X - 1.0) * ((imgsize.Width * e->scale.X) / 2),
(e->align.Y - 1.0) * ((imgsize.Height * e->scale.X) / 2));
rect += offset;
rect += v2s32(e->offset.X, e->offset.Y);
v2s32 dstsize(imgsize.Width * e->scale.X,
imgsize.Height * e->scale.Y);
if (e->scale.X < 0)
dstsize.X = screensize.X * (e->scale.X * -0.01);
if (e->scale.Y < 0)
dstsize.Y = screensize.Y * (e->scale.Y * -0.01);
v2s32 offset((e->align.X - 1.0) * dstsize.X / 2,
(e->align.Y - 1.0) * dstsize.Y / 2);
core::rect<s32> rect(0, 0, dstsize.X, dstsize.Y);
rect += pos + offset + v2s32(e->offset.X, e->offset.Y);
driver->draw2DImage(texture, rect,
core::rect<s32>(core::position2d<s32>(0,0), imgsize),
NULL, colors, true);
Expand Down

0 comments on commit 27947d8

Please sign in to comment.