From 490fceca2513f67d13b7b74b588c4e6adedf3c0d Mon Sep 17 00:00:00 2001 From: mibi88 <76903855+mibi88@users.noreply.github.com> Date: Wed, 31 Jul 2024 14:39:09 +0200 Subject: [PATCH] Running clang-format --- src/game.c | 4 ++-- src/npc.c | 20 ++++++++++++-------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/game.c b/src/game.c index a96ad4e..32de325 100644 --- a/src/game.c +++ b/src/game.c @@ -30,10 +30,10 @@ void interaction_available(Game *game) { /* simple distance check along X and Y axis */ /* Be careful to use world coordinates, not local (i.e.map) ones */ if((abs((int)game->player.wx - - (int)(game->map_level->npcs[i].curx>>PRECISION) * PXSIZE) < + (int)(game->map_level->npcs[i].curx >> PRECISION) * PXSIZE) < MAX_INTERACTION_DISTANCE * PXSIZE) && (abs((int)game->player.wy - - (int)(game->map_level->npcs[i].cury>>PRECISION) * PXSIZE) < + (int)(game->map_level->npcs[i].cury >> PRECISION) * PXSIZE) < MAX_INTERACTION_DISTANCE * PXSIZE)) { /* the player can do something */ game->player.canDoSomething = true; diff --git a/src/npc.c b/src/npc.c index 7342244..9c88246 100644 --- a/src/npc.c +++ b/src/npc.c @@ -108,8 +108,8 @@ int npc_pathfind(int32_t dest_x, int32_t dest_y, Map *full_map, NPC *npc) { int32_t w = full_map->w; int32_t h = full_map->h; - int32_t x = (npc->curx>>PRECISION) / T_WIDTH; - int32_t y = (npc->cury>>PRECISION) / T_HEIGHT; + int32_t x = (npc->curx >> PRECISION) / T_WIDTH; + int32_t y = (npc->cury >> PRECISION) / T_HEIGHT; dest_x /= T_WIDTH; dest_y /= T_HEIGHT; int32_t spos = y * w + x; @@ -213,8 +213,10 @@ void update_npc(NPC *npc) { if(!npc->hasPath || npc->paused == true) return; - float vecX = (float)(npc->xpath[npc->currentPoint] + npc->x) - (npc->curx>>PRECISION); - float vecY = (float)(npc->ypath[npc->currentPoint] + npc->y) - (npc->cury>>PRECISION); + float vecX = (float)(npc->xpath[npc->currentPoint] + npc->x) - + (npc->curx >> PRECISION); + float vecY = (float)(npc->ypath[npc->currentPoint] + npc->y) - + (npc->cury >> PRECISION); float vecN = length(vecX, vecY); if(vecN > 0.5f) { @@ -225,8 +227,8 @@ void update_npc(NPC *npc) { npc->currentPoint = npc->currentPoint % npc->path_length; } - npc->curx += vecX*(float)(1<cury += vecY*(float)(1<curx += vecX * (float)(1 << PRECISION); + npc->cury += vecY * (float)(1 << PRECISION); } void npc_draw(Game *game) { @@ -265,8 +267,10 @@ void npc_draw(Game *game) { } #endif // DEBUGMODE - int16_t delX = ((int16_t)((Data->curx>>PRECISION) * PXSIZE)) - (int16_t)pl->wx; - int16_t delY = ((int16_t)((Data->cury>>PRECISION) * PXSIZE)) - (int16_t)pl->wy; + int16_t delX = + ((int16_t)((Data->curx >> PRECISION) * PXSIZE)) - (int16_t)pl->wx; + int16_t delY = + ((int16_t)((Data->cury >> PRECISION) * PXSIZE)) - (int16_t)pl->wy; bopti_image_t *face = npc_sprites[Data->face]; dimage(pl->px - P_WIDTH / 2 + delX, pl->py - P_HEIGHT / 2 + delY, face); }