diff options
author | Rudy Bousset <rbousset@z2r5p2.le-101.fr> | 2020-02-18 20:05:42 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p2.le-101.fr> | 2020-02-18 20:05:42 +0100 |
commit | 2a25aa55bdf6fcca6a9b7dd51542950fdab2e707 (patch) | |
tree | d8460282eaa4dcb72816e6fb82a5a73f4f32941a /src/ft_draw_textures.c | |
parent | Added map two too (diff) | |
download | 42-cub3d-2a25aa55bdf6fcca6a9b7dd51542950fdab2e707.tar.gz 42-cub3d-2a25aa55bdf6fcca6a9b7dd51542950fdab2e707.tar.bz2 42-cub3d-2a25aa55bdf6fcca6a9b7dd51542950fdab2e707.tar.xz 42-cub3d-2a25aa55bdf6fcca6a9b7dd51542950fdab2e707.tar.zst 42-cub3d-2a25aa55bdf6fcca6a9b7dd51542950fdab2e707.zip |
okok
Diffstat (limited to 'src/ft_draw_textures.c')
-rw-r--r-- | src/ft_draw_textures.c | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/src/ft_draw_textures.c b/src/ft_draw_textures.c index ec20f33..942e386 100644 --- a/src/ft_draw_textures.c +++ b/src/ft_draw_textures.c @@ -10,6 +10,7 @@ /* */ /* ************************************************************************** */ +#include <libft.h> #include <cub3d.h> #include <stdint.h> #include <stdio.h> @@ -24,16 +25,33 @@ void ft_draw_texture(t_cub *cl, int x, int y, int tex_y) { + /* t_rgb rgb; */ /*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 * + /* ft_printf("DATA {{{{{%hd}}}}}\nW_SIDE> %d\n\n\n", */ + /* (int16_t)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * */ + /* cl->tlist[cl->w_side].img_h * tex_y] */ + /* , cl->w_side); */ + /* rgb.r = */ + /* (int8_t)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * */ + /* cl->tlist[cl->w_side].img_h * tex_y]; */ + /* rgb.g = */ + /* (int8_t)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * */ + /* cl->tlist[cl->w_side].img_h * tex_y + 1]; */ + /* rgb.b = */ + /* (int8_t)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]; */ + /* *(int*)(cl->img.ptr + (x * 4 + (y * cl->img.sizeline))) = ft_rgb_to_hex(rgb); */ + + + 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 * cl->tlist[cl->w_side].img_h * tex_y]; cl->img.ptr[x * 4 + (cl->img.sizeline * y) + 1] = - (char)cl->tlist[cl->w_side].ptr[cl->tlist[cl->w_side].tex_x * 4 + 4 * + (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 + 1]; 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 * + (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 + cl->wlist->x_size * y + 3] = (char)0; } |