plr moves through walls
This commit is contained in:
@@ -3,12 +3,18 @@
|
||||
void plr_posx_decrement(t_game *game, t_plr *plr)
|
||||
{
|
||||
t_d_coord pos;
|
||||
int limit_x;
|
||||
int limit_y;
|
||||
|
||||
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 ;
|
||||
limit_x = plr_out_limits(game, pos.x, plr->pos.y);
|
||||
limit_y = plr_out_limits(game, plr->pos.x, pos.y);
|
||||
if (limit_x)
|
||||
pos.x = plr->exact.x;
|
||||
if (limit_y)
|
||||
pos.y = plr->exact.y;
|
||||
plr->exact.x = pos.x;
|
||||
plr->exact.y = pos.y;
|
||||
(plr->pos.x) = (int)(pos.x);
|
||||
@@ -18,12 +24,18 @@ void plr_posx_decrement(t_game *game, t_plr *plr)
|
||||
void plr_posy_decrement(t_game *game, t_plr *plr)
|
||||
{
|
||||
t_d_coord pos;
|
||||
int limit_x;
|
||||
int limit_y;
|
||||
|
||||
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 ;
|
||||
limit_x = plr_out_limits(game, pos.x, plr->pos.y);
|
||||
limit_y = plr_out_limits(game, plr->pos.x, pos.y);
|
||||
if (limit_x)
|
||||
pos.x = plr->exact.x;
|
||||
if (limit_y)
|
||||
pos.y = plr->exact.y;
|
||||
plr->exact.x = pos.x;
|
||||
plr->exact.y = pos.y;
|
||||
(plr->pos.x) = (int)(pos.x);
|
||||
@@ -33,12 +45,18 @@ void plr_posy_decrement(t_game *game, t_plr *plr)
|
||||
void plr_posx_increment(t_game *game, t_plr *plr)
|
||||
{
|
||||
t_d_coord pos;
|
||||
int limit_x;
|
||||
int limit_y;
|
||||
|
||||
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 ;
|
||||
limit_x = plr_out_limits(game, pos.x, plr->pos.y);
|
||||
limit_y = plr_out_limits(game, plr->pos.x, pos.y);
|
||||
if (limit_x)
|
||||
pos.x = plr->exact.x;
|
||||
if (limit_y)
|
||||
pos.y = plr->exact.y;
|
||||
plr->exact.x = pos.x;
|
||||
plr->exact.y = pos.y;
|
||||
(plr->pos.x) = (int)(pos.x);
|
||||
@@ -48,12 +66,18 @@ void plr_posx_increment(t_game *game, t_plr *plr)
|
||||
void plr_posy_increment(t_game *game, t_plr *plr)
|
||||
{
|
||||
t_d_coord pos;
|
||||
int limit_x;
|
||||
int limit_y;
|
||||
|
||||
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 ;
|
||||
limit_x = plr_out_limits(game, pos.x, plr->pos.y);
|
||||
limit_y = plr_out_limits(game, plr->pos.x, pos.y);
|
||||
if (limit_x)
|
||||
pos.x = plr->exact.x;
|
||||
if (limit_y)
|
||||
pos.y = plr->exact.y;
|
||||
plr->exact.x = pos.x;
|
||||
plr->exact.y = pos.y;
|
||||
(plr->pos.x) = (int)(pos.x);
|
||||
|
||||
Reference in New Issue
Block a user