62 lines
1.2 KiB
C
62 lines
1.2 KiB
C
#include "cube3d.h"
|
|
|
|
void plr_posx_decrement(t_game *game, t_plr *plr)
|
|
{
|
|
t_d_coord pos;
|
|
|
|
pos.x = plr->exact.x - PLR_MV;
|
|
pos.y = plr->exact.y;
|
|
rotate_double(plr, &pos);
|
|
if (plr_out_limits(game, pos.x, pos.y))
|
|
return ;
|
|
plr->exact.x = pos.x;
|
|
plr->exact.y = pos.y;
|
|
(plr->pos.x) = (int)(pos.x);
|
|
(plr->pos.y) = (int)(pos.y);
|
|
}
|
|
|
|
void plr_posy_decrement(t_game *game, t_plr *plr)
|
|
{
|
|
t_d_coord pos;
|
|
|
|
pos.x = plr->exact.x;
|
|
pos.y = plr->exact.y - PLR_MV;
|
|
rotate_double(plr, &(pos));
|
|
if (plr_out_limits(game, pos.x, pos.y))
|
|
return ;
|
|
plr->exact.x = pos.x;
|
|
plr->exact.y = pos.y;
|
|
(plr->pos.x) = (int)(pos.x);
|
|
(plr->pos.y) = (int)(pos.y);
|
|
}
|
|
|
|
void plr_posx_increment(t_game *game, t_plr *plr)
|
|
{
|
|
t_d_coord pos;
|
|
|
|
pos.x = plr->exact.x + PLR_MV;
|
|
pos.y = plr->exact.y;
|
|
rotate_double(plr, &(pos));
|
|
if (plr_out_limits(game, pos.x, pos.y))
|
|
return ;
|
|
plr->exact.x = pos.x;
|
|
plr->exact.y = pos.y;
|
|
(plr->pos.x) = (int)(pos.x);
|
|
(plr->pos.y) = (int)(pos.y);
|
|
}
|
|
|
|
void plr_posy_increment(t_game *game, t_plr *plr)
|
|
{
|
|
t_d_coord pos;
|
|
|
|
pos.x = plr->exact.x;
|
|
pos.y = plr->exact.y + PLR_MV;
|
|
rotate_double(plr, &(pos));
|
|
if (plr_out_limits(game, pos.x, pos.y))
|
|
return ;
|
|
plr->exact.x = pos.x;
|
|
plr->exact.y = pos.y;
|
|
(plr->pos.x) = (int)(pos.x);
|
|
(plr->pos.y) = (int)(pos.y);
|
|
}
|