aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_scene.c
blob: f96eae6448b986571f846f0f1c39af6296a29b3b (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_draw_scene.c                                    :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:28:46 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/14 17:28:46 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <cub3d.h>
#include <mlx.h>
#include <stdint.h>

static int8_t
	ft_put_stage(t_cub *clist)
{
	const uint32_t	x = 15;
	const uint32_t	y = clist->wlist.y_size
							- (clist->mlist.map_h * clist->mlist.scale) - 20;
	const uint8_t			len = 6 + ft_uintlen(clist->currlvl);
	char			*str;

	if (!(str = (char*)malloc((len + 1) * sizeof(char))))
		return (-1);
	ft_sprintf(str, "Stage %hd", clist->currlvl);
	if (clist->mlist.isnlvl)
	{
		mlx_string_put(clist->wlist.wlx,
						clist->wlist.winptr,
						x, y,
						0x00ff0000,
						str);
	}
	ft_memdel((void**)&str);
	return (0);
}

void
	ft_draw_scene(t_cub *clist)
{
	clist->img.img = mlx_new_image(clist->wlist.wlx,
				clist->wlist.x_size, clist->wlist.y_size);
	clist->img.ptr = mlx_get_data_addr(clist->img.img, &clist->img.bpp,
				&clist->img.sizeline, &clist->img.endian);
	ft_castray(clist);
	if (clist->ishud)
	{
		ft_draw_hud(clist);
		ft_error(FT_RET_ALLOC_ERR, FT_ERR_ALLOCATE, clist);
	}
	mlx_put_image_to_window(clist->wlist.wlx,
							clist->wlist.winptr, clist->img.img, 0, 0);
	if (clist->ishud)
	{
		if (ft_put_stage(clist) < 0)
		{
			ft_error(FT_RET_ALLOC_ERR, FT_ERR_ALLOCATE, clist);
		}
	}
	mlx_destroy_image(clist->wlist.wlx, clist->img.img);
}

void
	ft_draw_scene_bmp(t_cub *clist)
{
	clist->img.img = mlx_new_image(clist->wlist.wlx,
				clist->wlist.x_size, clist->wlist.y_size);
	clist->img.ptr = mlx_get_data_addr(clist->img.img, &clist->img.bpp,
				&clist->img.sizeline, &clist->img.endian);
	ft_castray(clist);
	if (ft_save_to_bmp(clist) < 0)
		ft_error(FT_RET_BMP_ERR, FT_ERR_WR_BMP, clist);
	mlx_destroy_image(clist->wlist.wlx, clist->img.img);
}