aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ft_darken_rgb.c23
-rw-r--r--src/ft_draw_verline.c35
2 files changed, 25 insertions, 33 deletions
diff --git a/src/ft_darken_rgb.c b/src/ft_darken_rgb.c
new file mode 100644
index 0000000..3e61f49
--- /dev/null
+++ b/src/ft_darken_rgb.c
@@ -0,0 +1,23 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_darken_rgb.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/03/05 16:04:28 by rbousset #+# #+# */
+/* Updated: 2020/03/05 16:04:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <cub3d.h>
+#include <stdint.h>
+
+uint32_t
+ ft_darken_rgb(t_rgb rgb)
+{
+ t_rgb darker;
+
+ darker = rgb;
+ return (ft_rgb_to_hex(darker));
+}
diff --git a/src/ft_draw_verline.c b/src/ft_draw_verline.c
index d9a35cc..89eedea 100644
--- a/src/ft_draw_verline.c
+++ b/src/ft_draw_verline.c
@@ -11,6 +11,7 @@
/* ************************************************************************** */
#include <cub3d.h>
+#include <stdint.h>
static void
ft_draw_floor(t_cub *cl, int32_t y, int32_t x)
@@ -18,7 +19,7 @@ static void
while ((uint32_t)y < cl->wlist.y_size)
{
*(int*)(cl->img.ptr +
- (x * 4 + (y * cl->img.sizeline))) = ft_rgb_to_hex(cl->f_rgb);
+ (x * 4 + (y * cl->img.sizeline))) = ft_darken_rgb(cl->f_rgb);
y++;
}
}
@@ -37,38 +38,6 @@ static void
}
}
-/*
-** #include <libft.h>
-** static void
-** ft_draw_ceil_tex(t_cub *cl, int x, int y)
-** {
-** int16_t i;
-** int32_t d;
-** int32_t tex_y;
-**
-** i = 0;
-** while (i < y)
-** {
-** d = i * 256 - cl->wlist.y_size * 128 + cl->rlist.line_h * 128;
-** d = (d <= 0) ? (-d) : (d);
-** ft_printf("%d\n", d);
-** tex_y = ((d * cl->tlist[1].img_h) / cl->rlist.line_h) / 256;
-** (tex_y <= 0) ? (tex_y = 1) : 0;
-** cl->img.ptr[x * 4 + (cl->img.sizeline * i)] =
-** (int8_t)cl->tlist[1].ptr[cl->tlist[1].tex_x * 4 + 4 *
-** cl->tlist[1].img_h * tex_y];
-** cl->img.ptr[x * 4 + (cl->img.sizeline * i) + 1] =
-** (int8_t)cl->tlist[1].ptr[cl->tlist[1].tex_x * 4 + 4 *
-** cl->tlist[1].img_h * tex_y + 1];
-** cl->img.ptr[x * 4 + (cl->img.sizeline * i) + 2] =
-** (int8_t)cl->tlist[1].ptr[cl->tlist[1].tex_x * 4 + 4 *
-** cl->tlist[1].img_h * tex_y + 2];
-** cl->img.ptr[x * 4 + cl->wlist.x_size * i + 3] = (char)0;
-** i++;
-** }
-** }
-*/
-
int8_t
ft_draw_verline(t_cub *cl, int32_t x, int32_t y, int32_t y2)
{