aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_life_bar.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-20 19:21:47 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-20 19:21:47 +0100
commit7d52dc0036c8329989a8bd5b76d8704314644860 (patch)
tree88fb340705b918450e5af92374088341992ba693 /src/ft_draw_life_bar.c
parentit's not working at all (diff)
download42-cub3d-7d52dc0036c8329989a8bd5b76d8704314644860.tar.gz
42-cub3d-7d52dc0036c8329989a8bd5b76d8704314644860.tar.bz2
42-cub3d-7d52dc0036c8329989a8bd5b76d8704314644860.tar.xz
42-cub3d-7d52dc0036c8329989a8bd5b76d8704314644860.tar.zst
42-cub3d-7d52dc0036c8329989a8bd5b76d8704314644860.zip
it's not working
Diffstat (limited to '')
-rw-r--r--src/ft_draw_life_bar.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/ft_draw_life_bar.c b/src/ft_draw_life_bar.c
index 687e3a7..8e3da2c 100644
--- a/src/ft_draw_life_bar.c
+++ b/src/ft_draw_life_bar.c
@@ -38,24 +38,22 @@ static void
{
int32_t x_ratio;
int32_t y_ratio;
- int16_t x;
- int16_t y;
+ int32_t x;
+ int32_t y;
- x_ratio = (int)((cl->tnum[10].img_w << 16) / (8 * cl->mlist.scale)) + 1;
- y_ratio = (int)((cl->tnum[10].img_h << 16) /
- ((cl->mlist.map_h * cl->mlist.scale))) + 1;
+ x_ratio = (int)((cl->tnum[10].img_w << 16) / (cl->mlist.map_w * cl->mlist.scale)) + 1;
+ y_ratio = (int)((cl->tnum[10].img_h << 16) / (cl->mlist.map_h * cl->mlist.scale)) + 1;
y = cl->wlist.y_size - (cl->mlist.map_h * cl->mlist.scale) - 10;
- while (y < (int16_t)cl->wlist.y_size - 10)
+ while (y < (int32_t)(cl->wlist.y_size - (cl->mlist.map_h * cl->mlist.scale) - 10 + (8 * cl->mlist.scale)))
{
cl->tnum[10].tex_y = (y * y_ratio) >> 16;
- x = ((cl->mlist.map_w * cl->mlist.scale) + 20 + ((32 * cl->mlist.scale)
- - ((32 * cl->mlist.scale) / 4)));
- while (x < (int16_t)((cl->mlist.map_w * cl->mlist.scale)
+ x = ((cl->mlist.map_w * cl->mlist.scale) + 20);
+ while (x < (int32_t)((cl->mlist.map_w * cl->mlist.scale)
+ 10 + ((32 * cl->mlist.scale))))
{
cl->tnum[10].tex_x = (x * x_ratio) >> 16;
- /* if (cl->tnum[10].ptr[cl->tnum[10].tex_x * 4 + 4 * */
- /* cl->tnum[10].img_h * cl->tnum[10].tex_y]) */
+ if (cl->tnum[10].ptr[cl->tnum[10].tex_x * 4 + 4 *
+ cl->tnum[10].img_h * cl->tnum[10].tex_y])
ft_draw_tnum(10, y, x, cl);
x++;
}
@@ -68,10 +66,11 @@ void
{
char *num;
float calc;
+
+ ft_put_percent_image(cl);
calc = ((float)cl->plist.life / (float)FT_STRT_LIFE) * 100.0;
if (!(num = ft_itoa((int64_t)calc)))
ft_error(FT_RET_ALLOC_ERR, FT_ERR_ALLOCATE, cl);
- ft_put_percent_image(cl);
/* ft_put_image_from_number(num, cl); */
ft_memdel((void*)&num);
}