/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_extra_keys.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:22:32 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:23:42 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include #include int ft_left_key(t_cub *clist) { t_player *pl; float sav_dir_x; float sav_plane_x; const float rot_speed = FT_ROT_SPEED; pl = &clist->plist; sav_dir_x = pl->dir_x; pl->dir_x = pl->dir_x * cos(rot_speed) - pl->dir_y * sin(rot_speed); pl->dir_y = sav_dir_x * sin(rot_speed) + pl->dir_y * cos(rot_speed); sav_plane_x = pl->plane_x; pl->plane_x = pl->plane_x * cos(rot_speed) - pl->plane_y * sin(rot_speed); pl->plane_y = sav_plane_x * sin(rot_speed) + pl->plane_y * cos(rot_speed); return (0); } int ft_right_key(t_cub *clist) { t_player *pl; float sav_dir_x; float sav_plane_x; const float rot_speed = FT_ROT_SPEED; pl = &clist->plist; sav_dir_x = pl->dir_x; pl->dir_x = pl->dir_x * cos(-rot_speed) - pl->dir_y * sin(-rot_speed); pl->dir_y = sav_dir_x * sin(-rot_speed) + pl->dir_y * cos(-rot_speed); sav_plane_x = pl->plane_x; pl->plane_x = pl->plane_x * cos(-rot_speed) - pl->plane_y * sin(-rot_speed); pl->plane_y = sav_plane_x * sin(-rot_speed) + pl->plane_y * cos(-rot_speed); return (0); } int ft_f1_key(t_cub *clist) { if (clist->ishud == 0) { clist->ishud = 1; ft_draw_scene(clist); } else if (clist->ishud == 1) { clist->ishud = 0; ft_draw_scene(clist); } return (0); } int ft_space_key(t_cub *clist) { uint8_t w_id; w_id = clist->plist.handles_weapon; w_id = (w_id == 2) ? (1) : (w_id); w_id = (w_id == 4) ? (2) : (w_id); if (clist->plist.fire == 0 && (clist->plist.ammo[w_id] > 0 || clist->plist.ammo[w_id] == -4)) { clist->plist.ammo[w_id] -= w_id; clist->sfx[clist->plist.handles_weapon + 7].sfx_play(clist->sfx); clist->plist.fire = 1; } return (0); }