aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_textures.c
blob: bb5a6e4d8af299075739669823d8952af39caad1 (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
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_basic_keys.c                                    :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: fmoenne- <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/14 17:43:55 by fmoenne-          #+#    #+#             */
/*   Updated: 2020/02/14 17:43:56 by fmoenne-         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

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

/*
 * 0 : no
 * 1 : so
 * 2 : ea
 * 3 : we
 * 4 : sprite
 **/

void	ft_choose_tex(t_cub *clist)
{
	if (clist->rlist.side == 0 && clist->rlist.x_ray_dir < 0)
		clist->w_side = 0;
	else if (clist->rlist.side == 0 && clist->rlist.x_ray_dir > 0)
		clist->w_side = 1;
	else if (clist->rlist.side == 1 && clist->rlist.y_ray_dir > 0)
		clist->w_side = 2;
	else
		clist->w_side = 3;
}