diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2020-02-15 20:29:43 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2020-02-15 20:29:43 +0100 |
commit | 2f819c87685e6ad60bcde0df7944e92f4694f2d2 (patch) | |
tree | e47be112e5e0af8f447d1fc27f905b2da6ba71f7 /src | |
parent | Merged (diff) | |
download | 42-cub3d-2f819c87685e6ad60bcde0df7944e92f4694f2d2.tar.gz 42-cub3d-2f819c87685e6ad60bcde0df7944e92f4694f2d2.tar.bz2 42-cub3d-2f819c87685e6ad60bcde0df7944e92f4694f2d2.tar.xz 42-cub3d-2f819c87685e6ad60bcde0df7944e92f4694f2d2.tar.zst 42-cub3d-2f819c87685e6ad60bcde0df7944e92f4694f2d2.zip |
pepere :^) !
Diffstat (limited to 'src')
-rw-r--r-- | src/ft_draw_textures.c | 17 | ||||
-rw-r--r-- | src/ft_draw_verline.c | 1 |
2 files changed, 10 insertions, 8 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c index 36cc832..321fd18 100644 --- a/src/ft_draw_textures.c +++ b/src/ft_draw_textures.c @@ -13,13 +13,14 @@ #include <cub3d.h> #include <stdint.h> -void ft_draw_wall(t_cub *clist, int x, int draw_start, int draw_end) +void ft_choose_tex(t_cub *clist) { - clist->img.ptr[/*calcul a la con*/x]; - /* - * faire calcul wola - * - * - * - */ + if (clist->rlist.side == 0 && clist->rlist.x_ray_direction > 0) + clist->w_side = 0; + else if (clist->rlist.side == 0 && clist->rlist.x_ray_direction < 0) + clist->w_side = 3; + else if (clist->rlist.side == 1 && clist->rlist.y_ray_direction > 0) + clist->w_side = 1; + else (clist->rlist.side == 1 && clist->rlist.y_ray_direction < 0) + clist->w_side = 2; } diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c index d7ebe34..8156473 100644 --- a/src/ft_draw_verline.c +++ b/src/ft_draw_verline.c @@ -57,6 +57,7 @@ int8_t } y = y1; ft_draw_ceil(cl, y, x); + ft_choose_tex(cl); while (y <= y2) { *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = 0x0000ffaa; |