aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/playerdb.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-31 13:54:27 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-31 13:54:27 +0100
commitd8fa3f0d2f638202b3f0ba6b62b1f11b1899d883 (patch)
tree36089fcbc568aa6f3eb31ef7614d9155d257b2aa /FICS/playerdb.c
parent70314a99fc3a31e8386327f879a3da65a61a22ac (diff)
Reformatted player_simul_over() and replaced sprintf() with snprintf()
Diffstat (limited to 'FICS/playerdb.c')
-rw-r--r--FICS/playerdb.c104
1 files changed, 59 insertions, 45 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c
index 64955b9..208804f 100644
--- a/FICS/playerdb.c
+++ b/FICS/playerdb.c
@@ -1865,53 +1865,67 @@ PUBLIC int player_num_results(int p, int result)
return count;
}
-PUBLIC int player_simul_over(int p, int g, int result)
+PUBLIC int
+player_simul_over(int p, int g, int result)
{
- int on, ong, p1, which = -1, won;
- char tmp[1024];
+ char tmp[1024];
+ int on, ong, p1, which = -1, won;
- for (won = 0; won < parray[p].simul_info.numBoards; won++) {
- if (parray[p].simul_info.boards[won] == g) {
- which = won;
- break;
- }
- }
- if (which == -1) {
- pprintf(p, "I can't find that game!\n");
- return -1;
- }
- pprintf(p, "\nBoard %d has completed.\n", won + 1);
- on = parray[p].simul_info.onBoard;
- ong = parray[p].simul_info.boards[on];
- parray[p].simul_info.boards[won] = -1;
- parray[p].simul_info.results[won] = result;
- if (player_num_active_boards(p) == 0) {
- sprintf(tmp, "\n{Simul (%s vs. %d) is over.}\nResults: %d Wins, %d Losses, %d Draws, %d Aborts\n",
- parray[p].name,
- parray[p].simul_info.numBoards,
- player_num_results(p, RESULT_WIN),
- player_num_results(p, RESULT_LOSS),
- player_num_results(p, RESULT_DRAW),
- player_num_results(p, RESULT_ABORT));
- for (p1 = 0; p1 < p_num; p1++) {
- if (parray[p].status != PLAYER_PROMPT)
- continue;
- if (!parray[p1].i_game && !player_is_observe(p1, g) && (p1 != p))
- continue;
- pprintf_prompt(p1, "%s", tmp);
- }
- parray[p].simul_info.numBoards = 0;
- pprintf_prompt(p, "\nThat was the last board, thanks for playing.\n");
- return 0;
- }
- if (ong == g) { /* This game is over */
- player_goto_next_board(p);
- } else {
- player_goto_board(p, parray[p].simul_info.onBoard);
- }
- pprintf_prompt(p, "\nThere are %d boards left.\n",
- player_num_active_boards(p));
- return 0;
+ for (won = 0; won < parray[p].simul_info.numBoards; won++) {
+ if (parray[p].simul_info.boards[won] == g) {
+ which = won;
+ break;
+ }
+ }
+
+ if (which == -1) {
+ pprintf(p, "I can't find that game!\n");
+ return -1;
+ }
+
+ pprintf(p, "\nBoard %d has completed.\n", (won + 1));
+
+ on = parray[p].simul_info.onBoard;
+ ong = parray[p].simul_info.boards[on];
+
+ parray[p].simul_info.boards[won] = -1;
+ parray[p].simul_info.results[won] = result;
+
+ if (player_num_active_boards(p) == 0) {
+ snprintf(tmp, sizeof tmp, "\n{Simul (%s vs. %d) is over.}\n"
+ "Results: %d Wins, %d Losses, %d Draws, %d Aborts\n",
+ parray[p].name,
+ parray[p].simul_info.numBoards,
+ player_num_results(p, RESULT_WIN),
+ player_num_results(p, RESULT_LOSS),
+ player_num_results(p, RESULT_DRAW),
+ player_num_results(p, RESULT_ABORT));
+
+ for (p1 = 0; p1 < p_num; p1++) {
+ if (parray[p].status != PLAYER_PROMPT)
+ continue;
+ if (!parray[p1].i_game && !player_is_observe(p1, g) &&
+ p1 != p)
+ continue;
+ pprintf_prompt(p1, "%s", tmp);
+ }
+
+ parray[p].simul_info.numBoards = 0;
+
+ pprintf_prompt(p, "\nThat was the last board, thanks for "
+ "playing.\n");
+
+ return 0;
+ }
+
+ if (ong == g) /* This game is over */
+ player_goto_next_board(p);
+ else
+ player_goto_board(p, parray[p].simul_info.onBoard);
+
+ pprintf_prompt(p, "\nThere are %d boards left.\n",
+ player_num_active_boards(p));
+ return 0;
}
PRIVATE void