diff options
-rw-r--r-- | src/ft_draw_textures.c | 4 | ||||
-rw-r--r-- | src/ft_draw_verline.c | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c index d412998..ec20f33 100644 --- a/src/ft_draw_textures.c +++ b/src/ft_draw_textures.c @@ -12,6 +12,7 @@ #include <cub3d.h> #include <stdint.h> +#include <stdio.h> /* ** 0 : no @@ -23,6 +24,7 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) { + /*printf("%c\n", cl->img.ptr[x * 4 + 4 * (cl->img.sizeline * y)] );*/ /**(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = (cl->rlist.side) ? 0x2200ffaa : 0x0000ffaa;*/ cl->img.ptr[x * 4 + (cl->img.sizeline * y)] = (char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * @@ -33,7 +35,7 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) cl->img.ptr[x * 4 + (cl->img.sizeline * y) + 2] = (char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * cl->tlist[cl->w_side].img_h * tex_y + 2]; - cl->img.ptr[x * 4 + 4 * cl->wlist->x_size * y + 3] = (char)0; + cl->img.ptr[x * 4 + cl->wlist->x_size * y + 3] = (char)0; } void ft_choose_tex(t_cub *clist) diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c index 5f93ce2..7d24301 100644 --- a/src/ft_draw_verline.c +++ b/src/ft_draw_verline.c @@ -11,6 +11,7 @@ /* ************************************************************************** */ #include <cub3d.h> +#include <stdio.h> static void ft_draw_floor(t_cub *cl, int32_t y, int32_t x) @@ -59,14 +60,16 @@ int8_t y = y1; ft_draw_ceil(cl, y, x); ft_choose_tex(cl); - while (y <= y2) + while (y1 < y2) { d = y * 256 - cl->wlist->y_size * 128 + cl->rlist.line_h * 128; + printf(" y : %d\ny_size : %d\nd : %d\nline_h : %d\n", y, cl->wlist->y_size, d, cl->rlist.line_h); cl->tlist[cl->w_side].tex_y = ((d * cl->tlist[cl->w_side].img_w) / cl->rlist.line_h) / 256; + /*printf("w_side : %d\nd : %d\ntex_y : %d\n", cl->w_side, d, cl->tlist[cl->w_side].tex_y);*/ ft_draw_texture(cl, x, y, cl->tlist[cl->w_side].tex_y); /**(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = (cl->rlist.side) ? 0x2200ffaa : 0x0000ffaa;*/ - y++; + y1++; } ft_draw_floor(cl, y, x); return (0); |