aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_castray_loop.c
blob: 4f16423da46dffd4c36eb89eaa89a03a6bd2e3b0 (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
79
80
81
82
83
84
85
86
87
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_raycasting.c                                    :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: joelecle <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:22:57 by joelecle          #+#    #+#             */
/*   Updated: 2020/02/14 17:23:42 by joelecle         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <cub3d.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>

void
	ft_calc_tex(t_cub *cl)
{
	if (cl->rlist.side == 0)
		cl->rlist.wall_hit_x = (cl->plist.pos_x) +
			cl->rlist.wall_dist * cl->rlist.x_ray_dir;
	else
		cl->rlist.wall_hit_x = (cl->plist.pos_y) +
			cl->rlist.wall_dist * cl->rlist.y_ray_dir;
	cl->rlist.wall_hit_x -= floor(cl->rlist.wall_hit_x);
	cl->tlist[cl->w_side].tex_x = (int)(cl->rlist.wall_hit_x *
			(double)cl->tlist[cl->w_side].img_w);
	if (cl->rlist.side == 0 && cl->rlist.y_ray_dir > 0)
		cl->tlist[cl->w_side].tex_x = cl->tlist[cl->w_side].img_w
			- cl->tlist[cl->w_side].tex_x - 1;
	else if (cl->rlist.side == 1 && cl->rlist.x_ray_dir < 0)
		cl->tlist[cl->w_side].tex_x = cl->tlist[cl->w_side].img_w
			- cl->tlist[cl->w_side].tex_x - 1;
}

void
	ft_initray(uint16_t i, t_cub *cl)
{
	t_win		*wl;
	t_player	*pl;

	wl = &cl->wlist;
	pl = &cl->plist;
	pl->cam_x = 2 * i / (float)(wl->x_size) - 1;
	cl->rlist.y_ray_pos = pl->pos_y;
	cl->rlist.x_ray_pos = pl->pos_x;
	cl->rlist.y_ray_dir = -pl->dir_y + pl->plane_x *
		pl->cam_x;
	cl->rlist.x_ray_dir = pl->dir_x + pl->plane_y *
		pl->cam_x;
	cl->rlist.sqy = (int16_t)cl->rlist.y_ray_pos;
	cl->rlist.sqx = (int16_t)cl->rlist.x_ray_pos;
	ft_detect(cl);
	if (cl->rlist.side == 0)
	{
		cl->rlist.wall_dist = (cl->rlist.sqy - cl->rlist.y_ray_pos +
		(1 - cl->mlist.x_step) / 2) / cl->rlist.y_ray_dir;
	}
	else
	{
		cl->rlist.wall_dist = (cl->rlist.sqx - cl->rlist.x_ray_pos +
		(1 - cl->mlist.y_step) / 2) / cl->rlist.x_ray_dir;
	}
}

void
	ft_castray_loop(uint16_t i, t_win *wl, t_cub *cl)
{
	ft_initray(i, cl);
	cl->rlist.line_h = (int16_t)(wl->y_size / cl->rlist.wall_dist);
	cl->rlist.wall_t = -cl->rlist.line_h / 2 + wl->y_size / 2;
	if (cl->rlist.wall_t < 0)
		cl->rlist.wall_t = 0;
	cl->rlist.wall_b = cl->rlist.line_h / 2 + wl->y_size / 2;
	if (cl->rlist.wall_b >= (int16_t)wl->y_size)
		cl->rlist.wall_b = wl->y_size - 1;
	ft_choose_tex(i, cl);
	ft_calc_tex(cl);
	cl->rlist.tex_x_tab[i] = cl->tlist[cl->w_side].tex_x;
	cl->rlist.line_h_tab[i] = cl->rlist.line_h;
	cl->rlist.wall_t_tab[i] = cl->rlist.wall_t;
	cl->rlist.wall_b_tab[i] = cl->rlist.wall_b;
	cl->rlist.wall_dist_tab[i] = cl->rlist.wall_dist;
}