/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   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>

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