aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_hud.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-03 14:47:33 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-03 14:47:33 +0100
commit8866ef5699150d0549096efa94fc311ff7a48dc7 (patch)
tree4a03267f7e7f9b399a9ad0536b50ba6a90407e47 /src/ft_draw_hud.c
parentMusic is pretty bav (diff)
download42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.gz
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.bz2
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.xz
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.tar.zst
42-cub3d-8866ef5699150d0549096efa94fc311ff7a48dc7.zip
Changing stuff
Diffstat (limited to '')
-rw-r--r--src/ft_draw_hud.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/ft_draw_hud.c b/src/ft_draw_hud.c
index 9cb5b1c..b54e9e5 100644
--- a/src/ft_draw_hud.c
+++ b/src/ft_draw_hud.c
@@ -17,19 +17,19 @@
static void
ft_draw_hud_back(t_win *wl, t_cub *cl)
{
- const uint16_t scl = cl->mlist->scale;
+ const uint16_t scl = cl.mlist.scale;
uint32_t x;
uint32_t y;
int32_t col;
col = 0x00404040;
x = 0;
- y = wl->y_size - ((cl->mlist->map_h * scl));
- while (x < wl->x_size)
+ y = wl.y_size - ((cl.mlist.map_h * scl));
+ while (x < wl.x_size)
{
- while (y < wl->y_size)
+ while (y < wl.y_size)
{
- *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = col;
+ *(int*)(cl.img.ptr + (x * 4 + (y * cl.img.sizeline))) = col;
if (!(y % 3))
{
if (col < 0x00909090)
@@ -38,7 +38,7 @@ static void
y++;
}
col = 0x00404040;
- y = wl->y_size - ((cl->mlist->map_h * scl));
+ y = wl.y_size - ((cl.mlist.map_h * scl));
x++;
}
}
@@ -46,19 +46,19 @@ static void
static void
ft_draw_hud_back_top_l(size_t map_h, size_t map_w, t_win *wl, t_cub *cl)
{
- const uint16_t scl = cl->mlist->scale;
+ const uint16_t scl = cl.mlist.scale;
uint32_t x;
uint32_t y;
int32_t col;
col = 0x00373737;
x = 0;
- y = wl->y_size - (map_h * scl) - 20;
+ y = wl.y_size - (map_h * scl) - 20;
while (x < (map_w * scl) + 20)
{
- while (y < wl->y_size - (map_h * scl))
+ while (y < wl.y_size - (map_h * scl))
{
- *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = col;
+ *(int*)(cl.img.ptr + (x * 4 + (y * cl.img.sizeline))) = col;
if (!(y % 3))
{
if (col < 0x00aaaaaa)
@@ -67,7 +67,7 @@ static void
y++;
}
col = 0x00353535;
- y = wl->y_size - (map_h * scl) - 20;
+ y = wl.y_size - (map_h * scl) - 20;
x++;
}
}
@@ -75,19 +75,19 @@ static void
static void
ft_draw_hud_back_top_r(size_t map_h, size_t map_w, t_win *wl, t_cub *cl)
{
- const uint16_t scl = cl->mlist->scale;
+ const uint16_t scl = cl.mlist.scale;
uint32_t x;
uint32_t y;
int32_t col;
col = 0x00373737;
- x = wl->x_size - (map_w * scl) + 20;
- y = wl->y_size - (map_h * scl) - 20;
- while (x < wl->x_size)
+ x = wl.x_size - (map_w * scl) + 20;
+ y = wl.y_size - (map_h * scl) - 20;
+ while (x < wl.x_size)
{
- while (y < wl->y_size - (map_h * scl))
+ while (y < wl.y_size - (map_h * scl))
{
- *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = col;
+ *(int*)(cl.img.ptr + (x * 4 + (y * cl.img.sizeline))) = col;
if (!(y % 2))
{
if (col < 0x00aaaaaa)
@@ -96,7 +96,7 @@ static void
y++;
}
col = 0x00353535;
- y = wl->y_size - (map_h * scl) - 20;
+ y = wl.y_size - (map_h * scl) - 20;
x++;
}
}
@@ -104,10 +104,10 @@ static void
void
ft_draw_hud(t_cub *clist)
{
- ft_draw_hud_back(clist->wlist, clist);
- ft_draw_hud_back_top_l(clist->mlist->map_h,
- clist->mlist->map_w, clist->wlist, clist);
- ft_draw_hud_back_top_r(clist->mlist->map_h,
- clist->mlist->map_w, clist->wlist, clist);
- ft_draw_map(clist->mlist->map, clist);
+ ft_draw_hud_back(clist.wlist, clist);
+ ft_draw_hud_back_top_l(clist.mlist.map_h,
+ clist.mlist.map_w, clist.wlist, clist);
+ ft_draw_hud_back_top_r(clist.mlist.map_h,
+ clist.mlist.map_w, clist.wlist, clist);
+ ft_draw_map(clist.mlist.map, clist);
}