diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-23 15:07:56 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-23 15:07:56 +0100 |
commit | 6a59f0977efc8a25f98fb35b381432484efa1289 (patch) | |
tree | ebdec6004f1fdbe33c66e81724734e331db5f896 /src/ft_draw_ammo_caption.c | |
parent | ok for now (diff) | |
download | 42-cub3d-6a59f0977efc8a25f98fb35b381432484efa1289.tar.gz 42-cub3d-6a59f0977efc8a25f98fb35b381432484efa1289.tar.bz2 42-cub3d-6a59f0977efc8a25f98fb35b381432484efa1289.tar.xz 42-cub3d-6a59f0977efc8a25f98fb35b381432484efa1289.tar.zst 42-cub3d-6a59f0977efc8a25f98fb35b381432484efa1289.zip |
Good start
Diffstat (limited to 'src/ft_draw_ammo_caption.c')
-rw-r--r-- | src/ft_draw_ammo_caption.c | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/src/ft_draw_ammo_caption.c b/src/ft_draw_ammo_caption.c new file mode 100644 index 0000000..9231478 --- /dev/null +++ b/src/ft_draw_ammo_caption.c @@ -0,0 +1,95 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_draw_ammo_caption.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/22 20:02:47 by rbousset #+# #+# */ +/* Updated: 2020/02/22 20:02:48 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include <cub3d.h> +#include <stdint.h> + +static void + ft_draw_caption(uint16_t y, uint16_t x, t_cub *cl) +{ + const int16_t scl = cl->mlist.scale; + + cl->img.ptr[(x + 20) * 4 + + (cl->img.sizeline * (y + cl->wlist.y_size - + (2 * ((cl->mlist.map_h * scl) - 20) - 10)))] = + (uint8_t)cl->tlist[22].ptr[cl->tlist[22].tex_x * 4 + 4 * + cl->tlist[22].img_w * cl->tlist[22].tex_y]; + cl->img.ptr[(x + 20) * 4 + + (cl->img.sizeline * (y + cl->wlist.y_size - + (2 * ((cl->mlist.map_h * scl) - 20) - 10))) + 1] = + (uint8_t)cl->tlist[22].ptr[cl->tlist[22].tex_x * 4 + 4 * + cl->tlist[22].img_w * cl->tlist[22].tex_y + 1]; + cl->img.ptr[(x + 20) * 4 + + (cl->img.sizeline * (y + cl->wlist.y_size - + (2 * ((cl->mlist.map_h * scl) - 20) - 10))) + 2] = + (uint8_t)cl->tlist[22].ptr[cl->tlist[22].tex_x * 4 + 4 * + cl->tlist[22].img_w * cl->tlist[22].tex_y + 2]; +} + +static void + ft_put_ammo_caption(t_cub *cl) +{ + int32_t x_ratio; + int32_t y_ratio; + int16_t x; + int16_t y; + + x_ratio = (int)(((cl->tlist[22].img_w) << 16) / cl->ammo_cap_w) + 1; + y_ratio = (int)(((cl->tlist[22].img_h) << 16) / cl->ammo_cap_h) + 1; + y = 0; + while (y < cl->ammo_cap_h) + { + cl->tlist[22].tex_y = ((y * y_ratio) >> 16); + x = 0; + while (x < cl->ammo_cap_w) + { + cl->tlist[22].tex_x = ((x * x_ratio) >> 16); + if (cl->tlist[22].ptr[cl->tlist[22].tex_x * 4 + 4 * + cl->tlist[22].img_h * cl->tlist[22].tex_y]) + ft_draw_caption(y, x, cl); + x++; + } + y++; + } +} + +static void + ft_get_hw(t_cub *cl) +{ + int16_t x; + int16_t y; + const int16_t scl = cl->mlist.scale; + + x = 20; + y = cl->wlist.y_size - (2 * ((cl->mlist.map_h * scl) - 20) - 10); + while (y < (int16_t)((cl->wlist.y_size - 10) + - (2 * ((cl->mlist.map_h * scl) / 1.3)) - 10)) + { + x = 20; + while (x < (int16_t)((cl->mlist.map_w * scl) + 5)) + x++; + y++; + } + y -= cl->wlist.y_size - (2 * ((cl->mlist.map_h * scl) - 20) - 10); + x -= 20; + y = (y <= 0) ? (1) : (y); + x = (x <= 0) ? (1) : (x); + cl->ammo_cap_h = y; + cl->ammo_cap_w = x; +} + +void + ft_draw_ammo_caption(t_cub *cl) +{ + ft_get_hw(cl); + ft_put_ammo_caption(cl); +} |