Symbol: player
games/fish/fish.c
253
drawcard(int player, int *hand)
games/fish/fish.c
261
if (player == USER || hand[card] == CARDS) {
games/fish/fish.c
262
printplayer(player);
games/fish/fish.c
266
chkwinner(player, hand);
games/fish/fish.c
274
gofish(int askedfor, int player, int *hand)
games/fish/fish.c
276
printplayer(OTHER(player));
games/fish/fish.c
278
if (askedfor == drawcard(player, hand)) {
games/fish/fish.c
279
printplayer(player);
games/fish/fish.c
281
printplayer(player);
games/fish/fish.c
289
goodmove(int player, int move, int *hand, int *opphand)
games/fish/fish.c
291
printplayer(OTHER(player));
games/fish/fish.c
299
printplayer(player);
games/fish/fish.c
301
chkwinner(player, hand);
games/fish/fish.c
304
chkwinner(OTHER(player), opphand);
games/fish/fish.c
306
printplayer(player);
games/fish/fish.c
311
chkwinner(int player, int *hand)
games/fish/fish.c
318
printplayer(player);
games/fish/fish.c
339
printplayer(int player)
games/fish/fish.c
341
switch (player) {
games/monop/cards.c
251
if (i != player)
games/monop/cards.c
260
if (i != player)
games/monop/execute.c
171
buy(player, sqp);
games/monop/execute.c
177
else if (sqp->owner == player)
games/monop/execute.c
222
player = 0;
games/monop/execute.c
271
fprintf(outf, "currentplayer %d\n", player);
games/monop/execute.c
537
if (getnum("currentplayer", txt, 0, num_play-1, &player) < 0) {
games/monop/execute.c
544
cur_p = &play[player];
games/monop/misc.c
262
printhold(player);
games/monop/misc.c
81
player = (player + 1) % num_play;
games/monop/misc.c
82
cur_p = &play[player];
games/monop/monop.c
233
printf("\n%s (%d) (cash $%d) on %s\n", cur_p->name, player + 1,
games/monop/monop.c
329
player = max_pl;
games/monop/monop.c
84
int player, /* current player number */
games/monop/monop.h
136
extern int num_play, player, num_doub, num_luck;
games/monop/trade.c
246
if (new_own == player)
games/monop/trade.c
267
if (new_own == player)
games/monop/trade.c
269
} while (new_own == player);
games/monop/trade.c
283
trades[1].trader = player;
games/monop/trade.c
303
free(play[player].name);
games/monop/trade.c
304
for (i = player; i < num_play; i++) {
games/monop/trade.c
311
if (board[i].owner > player)
games/monop/trade.c
313
player = player == 0 ? num_play - 1 : player - 1;
games/monop/trade.c
78
if (tradee == player) {
games/monop/trade.c
84
tradee = 1 - player;
games/monop/trade.c
85
get_list(0, player);
games/phantasia/gamesupport.c
48
struct player *playerp; /* pointer to structure to alter */
games/phantasia/misc.c
1057
initplayer(struct player *playerp)
games/phantasia/misc.c
1224
descrstatus(struct player *playerp)
games/phantasia/misc.c
507
descrtype(struct player *playerp, bool shortflag)
games/phantasia/misc.c
585
findname(const char *name, struct player *playerp)
games/phantasia/misc.c
650
freerecord(struct player *playerp, long loc)
games/phantasia/misc.c
813
writerecord(struct player *playerp, long place)
games/phantasia/misc.c
940
readrecord(struct player *playerp, long loc)
games/phantasia/misc.c
97
descrlocation(struct player *playerp, bool shortflag)
games/phantasia/phantdefs.h
121
#define SZ_PLAYERSTRUCT sizeof(struct player) /* size of player structure */
games/phantasia/phantglobs.c
35
struct player Player; /* stats for player */
games/phantasia/phantglobs.c
36
struct player Other; /* stats for another player */
games/phantasia/phantglobs.h
104
void writerecord(struct player *, long);
games/phantasia/phantglobs.h
33
extern struct player Player; /* stats for player */
games/phantasia/phantglobs.h
34
extern struct player Other; /* stats for another player */
games/phantasia/phantglobs.h
63
const char *descrlocation(struct player *, bool);
games/phantasia/phantglobs.h
64
const char *descrstatus(struct player *);
games/phantasia/phantglobs.h
65
const char *descrtype(struct player *, bool);
games/phantasia/phantglobs.h
84
long findname(const char *, struct player *);
games/phantasia/phantglobs.h
85
void freerecord(struct player *, long);
games/phantasia/phantglobs.h
90
void initplayer(struct player *);
games/phantasia/phantglobs.h
98
void readrecord(struct player *, long);
games/sail/pl_3.c
234
send_grap(sp, player);
games/sail/pl_7.c
1104
ms = SHIP(player);
games/sail/pl_7.c
912
mvselprintw(which + 3, 4, which, player, 60,
games/sail/pl_7.c
924
move(player + 3, 63);
games/sail/pl_7.c
93
int player;
games/sail/pl_7.c
953
player = sp - SHIP(0);
games/sail/pl_7.c
978
up(&player, NULL);
games/sail/pl_7.c
982
down(&player, NULL, cc->vessels,
games/sail/pl_7.c
991
if (player < 0)
games/sail/pl_7.c
995
fp = SHIP(player)->file;
games/sail/player.h
93
extern int player;
games/snake/snscore/snscore.c
53
struct player players[MAXPLAYERS], temp;