blob: 2a1beb4ce71d345c5bba0a3f0f6e31c9c00ab4e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_key_loop.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/17 20:06:26 by rbousset #+# #+# */
/* Updated: 2020/02/17 20:06:29 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <cub3d.h>
#include <mlx.h>
#include <stdint.h>
#include <unistd.h>
void
ft_suffer_animation(t_cub *cl)
{
int32_t x;
int32_t y;
int8_t i;
/* cl->red_scr.img = mlx_new_image(cl->wlist.wlx, */
/* cl->wlist.x_size, cl->wlist.y_size); */
/* cl->red_scr.ptr = mlx_get_data_addr(cl->red_scr.img, &cl->red_scr.bpp, */
/* &cl->red_scr.sizeline, &cl->red_scr.endian); */
y = -1;
while (++y < (int32_t)cl->wlist.y_size)
{
x = -1;
while (++x < (int32_t)cl->wlist.x_size)
*(int*)(cl->img.ptr +
(x * 4 + (y * cl->img.sizeline))) = 0x00ffffff;
}
i = -1;
mlx_put_image_to_window(cl->wlist.wlx,
cl->wlist.winptr, cl->img.img, 0, 0);
sleep(5);
/* while (++i < 120) */
/* mlx_destroy_image(cl->wlist.wlx, cl->red_scr.img); */
}
|