#include "robots.h"
#include <fcntl.h>
#include <sys/types.h>
#include <pwd.h>
#include "pathnames.h"
typedef struct {
int s_uid;
int s_score;
char s_name[MAXNAME];
} SCORE;
const char *Scorefile = _PATH_SCORE;
int Max_per_uid = MAX_PER_UID;
static SCORE Top[MAXSCORES];
static int cmp_sc(const void *, const void *);
static void set_name(SCORE *);
void
score(void)
{
int inf;
SCORE *scp;
int uid;
bool done_show = false;
static int numscores, max_uid;
Newscore = false;
if ((inf = open(Scorefile, O_RDWR)) < 0) {
perror(Scorefile);
return;
}
if (read(inf, &max_uid, sizeof max_uid) == sizeof max_uid)
read(inf, Top, sizeof Top);
else {
for (scp = Top; scp < &Top[MAXSCORES]; scp++)
scp->s_score = -1;
max_uid = Max_per_uid;
}
uid = getuid();
if (Top[MAXSCORES-1].s_score <= Score) {
numscores = 0;
for (scp = Top; scp < &Top[MAXSCORES]; scp++)
if (scp->s_score < 0 ||
(scp->s_uid == uid && ++numscores == max_uid)) {
if (scp->s_score > Score)
break;
scp->s_score = Score;
scp->s_uid = uid;
set_name(scp);
Newscore = true;
break;
}
if (scp == &Top[MAXSCORES]) {
Top[MAXSCORES-1].s_score = Score;
Top[MAXSCORES-1].s_uid = uid;
set_name(&Top[MAXSCORES-1]);
Newscore = true;
}
if (Newscore)
qsort(Top, MAXSCORES, sizeof Top[0], cmp_sc);
}
if (!Newscore) {
Full_clear = false;
close(inf);
return;
}
else
Full_clear = true;
for (scp = Top; scp < &Top[MAXSCORES]; scp++) {
if (scp->s_score < 0)
break;
move((scp - Top) + 1, 15);
if (!done_show && scp->s_uid == uid && scp->s_score == Score)
standout();
printw(" %d\t%d\t%-8.8s ", (scp - Top) + 1, scp->s_score, scp->s_name);
if (!done_show && scp->s_uid == uid && scp->s_score == Score) {
standend();
done_show = true;
}
}
Num_scores = scp - Top;
refresh();
if (Newscore) {
lseek(inf, 0L, SEEK_SET);
write(inf, &max_uid, sizeof max_uid);
write(inf, Top, sizeof Top);
}
close(inf);
}
static void
set_name(SCORE *scp)
{
struct passwd *pp;
if ((pp = getpwuid(scp->s_uid)) == NULL)
strncpy(scp->s_name, "???", MAXNAME);
else
strncpy(scp->s_name, pp->pw_name, MAXNAME);
}
static int
cmp_sc(const void *s1, const void *s2)
{
return (((const SCORE *)s2)->s_score - ((const SCORE *)s1)->s_score);
}
void
show_score(void)
{
SCORE *scp;
int inf;
static int max_score;
if ((inf = open(Scorefile, O_RDONLY)) < 0) {
perror(Scorefile);
return;
}
for (scp = Top; scp < &Top[MAXSCORES]; scp++)
scp->s_score = -1;
read(inf, &max_score, sizeof max_score);
read(inf, Top, sizeof Top);
close(inf);
inf = 1;
for (scp = Top; scp < &Top[MAXSCORES]; scp++)
if (scp->s_score >= 0)
printf("%d\t%d\t%.*s\n", inf++, scp->s_score,
(int)sizeof(scp->s_name), scp->s_name);
}