42_cube3D/game/init.c

40 lines
1.3 KiB
C
Raw Normal View History

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* init.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/04/27 14:50:22 by erey-bet #+# #+# */
/* Updated: 2023/05/04 14:34:47 by erey-bet ### ########.fr */
/* */
/* ************************************************************************** */
#include "game.h"
2023-05-03 11:48:36 -04:00
void init_ply(t_map map, t_ply *ply)
{
2023-05-03 11:48:36 -04:00
ply->pos_x = map.ply_x;
ply->pos_y = map.ply_y;
ply->dir_x = -1;
ply->dir_y = 0;
ply->pla_x = 0.66;
ply->pla_y = 0.66;
}
2023-05-02 09:39:16 -04:00
void init_ray(t_ray *ray)
{
2023-05-03 06:45:40 -04:00
ray->dir_x = 0;
ray->dir_y = 0;
}
2023-05-03 11:48:36 -04:00
void init(t_map map, t_game *game)
{
2023-05-03 06:45:40 -04:00
game->mlx = mlx_init(WIDTH, HEIGHT, "jan lili", true);
if (!game->mlx)
return ;
game->map = map;
2023-05-03 11:48:36 -04:00
init_ply(map, &game->ply);
init_ray(&game->ray);
}