aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorsalaaad2 <arthurdurant263@gmail.com>2020-02-18 18:57:45 +0100
committersalaaad2 <arthurdurant263@gmail.com>2020-02-18 18:57:45 +0100
commitcbf73a5e2d4f1fda6e6267854954b78417678540 (patch)
tree060a265f0388bc7816827493e3d969506c3daf71 /src
parentpas loin (diff)
download42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.gz
42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.bz2
42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.xz
42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.tar.zst
42-cub3d-cbf73a5e2d4f1fda6e6267854954b78417678540.zip
gang
Diffstat (limited to 'src')
-rw-r--r--src/ft_draw_textures.c4
-rw-r--r--src/ft_draw_verline.c7
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);