aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/movecheck.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-03-16 21:24:35 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2024-03-16 21:24:35 +0100
commit475939b51ef3814d15a25ab39a335700fb3acc32 (patch)
tree584928e4b0395b30bd5cae576f9c68176fe093ad /FICS/movecheck.c
parent91dc85bdb295d3bad1b6c86f4437b401d25c04a3 (diff)
Reformatted possible_king_moves()
Diffstat (limited to 'FICS/movecheck.c')
-rw-r--r--FICS/movecheck.c42
1 files changed, 23 insertions, 19 deletions
diff --git a/FICS/movecheck.c b/FICS/movecheck.c
index adaa989..9b7cd9e 100644
--- a/FICS/movecheck.c
+++ b/FICS/movecheck.c
@@ -552,26 +552,30 @@ PRIVATE void possible_queen_moves(game_state_t * gs,
possible_bishop_moves(gs, onf, onr, posf, posr, numpos);
}
-PRIVATE void possible_king_moves(game_state_t * gs,
- int onf, int onr,
- int *posf, int *posr, int *numpos)
+PRIVATE void
+possible_king_moves(game_state_t *gs, int onf, int onr, int *posf, int *posr,
+ int *numpos)
{
- static int kingJumps[8][2] = {{-1, -1}, {0, -1}, {1, -1}, {-1, 1},
- {0, 1}, {1, 1}, {-1, 0}, {1, 0}};
- int f, r;
- int j;
-
- for (j = 0; j < 8; j++) {
- f = kingJumps[j][0] + onf;
- r = kingJumps[j][1] + onr;
- if ((f < 0) || (f > 7))
- continue;
- if ((r < 0) || (r > 7))
- continue;
- if ((gs->board[f][r] == NOPIECE) ||
- (iscolor(gs->board[f][r], CToggle(gs->onMove))))
- add_pos(f, r, posf, posr, numpos);
- }
+ int f, r;
+ int j;
+ static int kingJumps[8][2] = {
+ {-1, -1}, {0, -1}, {1, -1}, {-1, 1}, {0, 1}, {1, 1}, {-1, 0},
+ {1, 0}
+ };
+
+ for (j = 0; j < 8; j++) {
+ f = kingJumps[j][0] + onf;
+ r = kingJumps[j][1] + onr;
+
+ if (f < 0 || f > 7)
+ continue;
+ if (r < 0 || r > 7)
+ continue;
+
+ if (gs->board[f][r] == NOPIECE || iscolor(gs->board[f][r],
+ CToggle(gs->onMove)))
+ add_pos(f, r, posf, posr, numpos);
+ }
}
/* Doesn't check for check */