Document, in particular use of UTF-8. Simplify code in a couple of

places, but no functional changes.
This commit is contained in:
Markus Armbruster 2005-06-13 19:02:49 +00:00
parent 9046ff0ad2
commit 71e164ed30
17 changed files with 199 additions and 105 deletions

View file

@ -144,8 +144,7 @@ extern s_char *iesplur(int n);
extern s_char *plur(int n, s_char *no, s_char *yes); extern s_char *plur(int n, s_char *no, s_char *yes);
extern char *getstarg(char *input, char *prompt, char buf[]); extern char *getstarg(char *input, char *prompt, char buf[]);
extern char *getstring(char *prompt, char buf[]); extern char *getstring(char *prompt, char buf[]);
extern char *ugetstring(char *prompt, char buf[] extern char *ugetstring(char *prompt, char buf[]);
/* buf is message text */);
extern s_char *prbuf(s_char *format, ...) extern s_char *prbuf(s_char *format, ...)
ATTRIBUTE((format (printf, 1, 2))); ATTRIBUTE((format (printf, 1, 2)));

View file

@ -58,8 +58,8 @@ struct player {
struct cmndstr *command; struct cmndstr *command;
struct iop *iop; struct iop *iop;
char combuf[1024]; /* command input buffer, UTF-8 */ char combuf[1024]; /* command input buffer, UTF-8 */
s_char *argp[128]; char *argp[128]; /* arguments, ASCII */
s_char *condarg; char *condarg; /* conditional, ASCII */
time_t lasttime; time_t lasttime;
int ncomstat; int ncomstat;
int minleft; int minleft;

View file

@ -63,8 +63,7 @@ extern void finish_server(void);
*/ */
extern int check_market(void); extern int check_market(void);
extern void set_coastal(struct sctstr *); extern void set_coastal(struct sctstr *);
extern int sendmessage(struct natstr *, struct natstr *, char *message extern int sendmessage(struct natstr *, struct natstr *, char *message, int);
/* message is message text */, int);
extern void gift(int, int, s_char *, int, s_char *); extern void gift(int, int, s_char *, int, s_char *);
extern int display_mark(i_type, int); extern int display_mark(i_type, int);
extern int want_to_abandon(struct sctstr *, i_type, int, struct lndstr *); extern int want_to_abandon(struct sctstr *, i_type, int, struct lndstr *);
@ -592,32 +591,29 @@ extern int pln_identchance(struct plnstr *, int, int);
extern void pln_set_tech(struct plnstr *, int); extern void pln_set_tech(struct plnstr *, int);
/* pr.c */ /* pr.c */
extern void pr(char *, ...) ATTRIBUTE((format (printf, 1, 2))); extern void pr(char *, ...) ATTRIBUTE((format (printf, 1, 2)));
extern void uprnf(char *buf /* buf is message text */); extern void uprnf(char *buf);
extern void pr_id(struct player *, int, s_char *, ...) extern void pr_id(struct player *, int, char *, ...)
ATTRIBUTE((format (printf, 3, 4))); ATTRIBUTE((format (printf, 3, 4)));
extern void pr_flash(struct player *, char *format extern void pr_flash(struct player *, char *format, ...)
/* format is message text */, ...)
ATTRIBUTE((format (printf, 2, 3))); ATTRIBUTE((format (printf, 2, 3)));
extern void pr_inform(struct player *, s_char *, ...) extern void pr_inform(struct player *, char *, ...)
ATTRIBUTE((format (printf, 2, 3))); ATTRIBUTE((format (printf, 2, 3)));
extern void pr_wall(s_char *, ...) extern void pr_wall(char *, ...)
ATTRIBUTE((format (printf, 1, 2))); ATTRIBUTE((format (printf, 1, 2)));
extern void pr_player(struct player *pl, int id, s_char *buf); extern void pr_player(struct player *pl, int id, s_char *buf);
extern void upr_player(struct player *pl, int id, char *buf extern void upr_player(struct player *pl, int id, char *buf);
/* buf is message text */);
extern void pr_hilite(s_char *buf); extern void pr_hilite(s_char *buf);
extern void prredir(s_char *redir); extern void prredir(char *redir);
extern void prexec(s_char *file); extern void prexec(char *file);
extern void prprompt(int min, int btu); extern void prprompt(int min, int btu);
extern int prmptrd(char *prompt, char *str, int size); extern int prmptrd(char *prompt, char *str, int size);
extern int uprmptrd(char *prompt, char *str /* str is message text */, extern int uprmptrd(char *prompt, char *str, int size);
int size);
extern void prdate(void); extern void prdate(void);
extern void prxy(s_char *format, coord x, coord y, natid country); extern void prxy(char *format, coord x, coord y, natid country);
extern void PR(int, s_char *, ...) ATTRIBUTE((format (printf, 2, 3))); extern void PR(int, char *, ...) ATTRIBUTE((format (printf, 2, 3)));
extern void PRdate(natid cn); extern void PRdate(natid cn);
extern void pr_beep(void); extern void pr_beep(void);
extern void mpr(int, s_char *, ...) ATTRIBUTE((format (printf, 2, 3))); extern void mpr(int, char *, ...) ATTRIBUTE((format (printf, 2, 3)));
extern size_t copy_ascii_no_funny(char *, char *); extern size_t copy_ascii_no_funny(char *, char *);
extern size_t copy_utf8_no_funny(char *, char *); extern size_t copy_utf8_no_funny(char *, char *);
extern size_t copy_utf8_to_ascii_no_funny(char *, char *); extern size_t copy_utf8_to_ascii_no_funny(char *, char *);

View file

@ -74,7 +74,7 @@ flash(void)
} }
if (player->argp[2]) { if (player->argp[2]) {
for (sp = &player->combuf[0]; *sp && *sp != ' '; ++sp) ; for (sp = player->combuf; *sp && *sp != ' '; ++sp) ;
for (++sp; *sp && *sp != ' '; ++sp) ; for (++sp; *sp && *sp != ' '; ++sp) ;
buf[0] = ':'; buf[0] = ':';
if (player->flags & PF_UTF8) if (player->flags & PF_UTF8)
@ -103,7 +103,7 @@ wall(void)
us = getnatp(player->cnum); us = getnatp(player->cnum);
if (player->argp[1]) { if (player->argp[1]) {
for (sp = &player->combuf[0]; *sp && *sp != ' '; ++sp) ; for (sp = player->combuf; *sp && *sp != ' '; ++sp) ;
buf[0] = ':'; buf[0] = ':';
if (player->flags & PF_UTF8) if (player->flags & PF_UTF8)
strcpy(buf+1, sp); strcpy(buf+1, sp);
@ -122,23 +122,28 @@ wall(void)
return RET_OK; return RET_OK;
} }
/*
* Send flash message MESSAGE from US to TO.
* MESSAGE is UTF-8. Long messages are broken into several parts.
* A header identifying US is prepended to each part. The first
* header is more verbose if ONESHOT.
*/
int int
sendmessage(struct natstr *us, struct natstr *to, char *message sendmessage(struct natstr *us, struct natstr *to, char *message, int oneshot)
/* message is message text */, int oneshot)
{ {
struct player *other; struct player *other;
struct tm *tm; struct tm *tm;
time_t now; time_t now;
int sent = 0; int sent = 0;
struct natstr *wto; struct natstr *wto;
char c; /* c is message text */ char c;
int pos; int pos;
pos = ufindpfx(message, 60); pos = ufindpfx(message, 60);
c = message[pos]; c = message[pos];
if (c) if (c)
message[pos] = '\0'; message[pos] = '\0';
time(&now); time(&now);
tm = localtime(&now); tm = localtime(&now);
for (other = player_next(0); other != 0; other = player_next(other)) { for (other = player_next(0); other != 0; other = player_next(other)) {

View file

@ -70,7 +70,7 @@ static int
play_list(struct player *joe) play_list(struct player *joe)
{ {
time_t now; time_t now;
char com[1 + 6*20 + 2]; /* user text */ char com[1 + 6*20 + 2]; /* UTF-8 */
struct natstr *natp; struct natstr *natp;
struct natstr *us; struct natstr *us;
int n; int n;

View file

@ -64,7 +64,7 @@ rea(void)
int size; int size;
unsigned int nbytes; unsigned int nbytes;
char buf[1024]; char buf[1024];
char msgbuf[4096]; /* message text */ char msgbuf[4096]; /* UTF-8 */
int lasttype; int lasttype;
int lastcnum; int lastcnum;
time_t lastdate; time_t lastdate;

View file

@ -47,9 +47,9 @@ shut(void)
int shutdown_minutes; int shutdown_minutes;
int shutdown_was_pending; int shutdown_was_pending;
char buf[1024]; char buf[1024];
s_char msgbuf[100]; /* user text */ char msgbuf[100];
struct natstr *us; struct natstr *us;
s_char *p; char *p;
if (update_pending) { if (update_pending) {
pr("Update is pending\n"); pr("Update is pending\n");

View file

@ -46,8 +46,7 @@ tele(void)
{ {
natid to; natid to;
struct natstr *natp; struct natstr *natp;
int teltype; char buf[MAXTELSIZE + 1]; /* UTF-8 */
s_char buf[MAXTELSIZE + 1];
int n; int n;
natp = getnatp(player->cnum); natp = getnatp(player->cnum);
@ -113,8 +112,7 @@ tele(void)
pr("%s is rejecting your telegrams.\n", cname(to)); pr("%s is rejecting your telegrams.\n", cname(to));
return RET_SYN; return RET_SYN;
} }
teltype = /* player->god ? TEL_BULLETIN : */ TEL_NORM; if (typed_wu(player->cnum, to, buf, TEL_NORM) < 0) {
if (typed_wu(player->cnum, to, buf, teltype) < 0) {
logerror("tele: typed_wu failed to #%d", n); logerror("tele: typed_wu failed to #%d", n);
return RET_FAIL; return RET_FAIL;
} }

View file

@ -50,7 +50,7 @@ turn(void)
struct telstr tgm; struct telstr tgm;
char *p; char *p;
char buf[1024]; char buf[1024];
char msgbuf[MAXTELSIZE + 1]; /* message text */ char msgbuf[MAXTELSIZE + 1]; /* UTF-8 */
char *msgfilepath; char *msgfilepath;
p = getstarg(player->argp[1], "on, off or motd? ", buf); p = getstarg(player->argp[1], "on, off or motd? ", buf);

View file

@ -44,19 +44,19 @@ getstring(char *prompt, char *buf)
{ {
*buf = '\0'; *buf = '\0';
if (prmptrd(prompt, buf, 1024) < 0) if (prmptrd(prompt, buf, 1024) < 0)
return 0; return NULL;
return buf; return buf;
} }
/* /*
* Print sub-prompt PROMPT, receive a line of UTF8 input into BUF[1024]. * Print sub-prompt PROMPT, receive a line of UTF-8 input into BUF[1024].
* Return BUF on success, else NULL. * Return BUF on success, else NULL.
*/ */
char * char *
ugetstring(char *prompt, char *buf /* buf is message text */) ugetstring(char *prompt, char *buf)
{ {
*buf = '\0'; *buf = '\0';
if (uprmptrd(prompt, buf, 1024) < 0) if (uprmptrd(prompt, buf, 1024) < 0)
return 0; return NULL;
return buf; return buf;
} }

View file

@ -37,7 +37,7 @@
/* /*
* Parse user command in BUF. * Parse user command in BUF.
* BUF is user text. * BUF is UTF-8.
* Set ARG[0] to point to the command name. * Set ARG[0] to point to the command name.
* Set ARG[1..N] to point to arguments, where N is the number of * Set ARG[1..N] to point to arguments, where N is the number of
* arguments. Set ARG[N+1..127] to NULL. * arguments. Set ARG[N+1..127] to NULL.
@ -45,9 +45,8 @@
* set *CONDP to the conditional argument if present, else NULL. * set *CONDP to the conditional argument if present, else NULL.
* Command name and arguments are copied into SPACE[], whose size must * Command name and arguments are copied into SPACE[], whose size must
* be at least strlen(BUF) + 1. * be at least strlen(BUF) + 1.
* If *REDIR is not null, recognize the redirection syntax, and set * If *REDIR is not null, recognize redirection syntax, and set *REDIR
* *REDIR to redirection string if present, else NULL. The * to UTF-8 redirection string if present, else NULL.
* redirection string is user text.
* Return number of slots used in ARG[], or -1 on error. * Return number of slots used in ARG[], or -1 on error.
*/ */
int int

View file

@ -48,10 +48,9 @@
/* /*
* Execute command named by player->argp[0]. * Execute command named by player->argp[0].
* BUF is the raw command line (user text). It should have been * BUF is the raw UTF-8 command line. It should have been passed to
* passed to parse() to set up player->argp. * parse() to set up player->argp.
* If REDIR is not null, it's the command's redirection; it is user * If REDIR is not null, it's the command's redirection, in UTF-8.
* text.
* Return -1 if the command is not unique or doesn't exist, else 0. * Return -1 if the command is not unique or doesn't exist, else 0.
*/ */
int int

View file

@ -165,7 +165,7 @@ gamedown(void)
{ {
FILE *down_fp; FILE *down_fp;
struct telstr tgm; struct telstr tgm;
char buf[MAXTELSIZE + 1]; /* message text */ char buf[MAXTELSIZE + 1]; /* UTF-8 */
if (player->god) if (player->god)
return 0; return 0;

View file

@ -158,7 +158,7 @@ int
command(void) command(void)
{ {
unsigned int x; unsigned int x;
char *redir; char *redir; /* UTF-8 */
char scanspace[1024]; char scanspace[1024];
if (getcommand(player->combuf) < 0) if (getcommand(player->combuf) < 0)
@ -306,18 +306,20 @@ execute(void)
char buf[1024]; char buf[1024];
int failed; int failed;
char *p; char *p;
char *redir; char *redir; /* UTF-8 */
char scanspace[1024]; char scanspace[1024];
failed = 0; failed = 0;
redir = 0; redir = NULL;
p = getstarg(player->argp[1], "File? ", buf); p = getstarg(player->argp[1], "File? ", buf);
if (p == NULL || *p == '\0') if (p == NULL || *p == '\0')
return RET_SYN; return RET_SYN;
/* FIXME should use raw argument here, to support UTF-8 file names */
prexec(player->argp[1]); prexec(player->argp[1]);
while (!failed && status()) { while (!failed && status()) {
if (recvclient(buf, sizeof(buf)) < 0) if (recvclient(buf, sizeof(buf)) < 0)
break; break;
@ -326,7 +328,7 @@ execute(void)
failed = 1; failed = 1;
continue; continue;
} }
if (redir == 0) if (redir == NULL)
pr("\nExecute : %s\n", buf); pr("\nExecute : %s\n", buf);
if (dispatch(buf, redir) < 0) if (dispatch(buf, redir) < 0)
failed = 1; failed = 1;
@ -334,7 +336,7 @@ execute(void)
if (failed) { if (failed) {
while (recvclient(buf, sizeof(buf)) >= 0) ; while (recvclient(buf, sizeof(buf)) >= 0) ;
} }
if (redir == 0) if (redir == NULL)
pr("Execute : %s\n", failed ? "aborted" : "terminated"); pr("Execute : %s\n", failed ? "aborted" : "terminated");
return RET_OK; return RET_OK;
} }
@ -344,7 +346,7 @@ show_motd(void)
{ {
FILE *motd_fp; FILE *motd_fp;
struct telstr tgm; struct telstr tgm;
char buf[MAXTELSIZE + 1]; /* message text */ char buf[MAXTELSIZE + 1]; /* UTF-8 */
if ((motd_fp = fopen(motdfil, "rb")) == NULL) { if ((motd_fp = fopen(motdfil, "rb")) == NULL) {
if (errno == ENOENT) if (errno == ENOENT)

View file

@ -40,17 +40,16 @@
static int tilde_escape(char *s); static int tilde_escape(char *s);
/* /*
* Read a telegram for RECIPIENT into BUF. * Read a telegram for RECIPIENT into BUF, in UTF-8.
* BUF must have space for MAXTELSIZE+1 characters. * BUF must have space for MAXTELSIZE+1 characters.
* Return telegram length, or -1 on error. * Return telegram length, or -1 on error.
* Note: telegrams are message text (see doc/unicode).
*/ */
int int
getele(char *recipient, char *buf) getele(char *recipient, char *buf)
{ {
char *bp; char *bp;
size_t len; size_t len;
char buffer[MAXTELSIZE + 2]; /* message text */ char buffer[MAXTELSIZE + 2]; /* UTF-8 */
char left[16]; char left[16];
pr("Enter telegram for %s\n", recipient); pr("Enter telegram for %s\n", recipient);

View file

@ -57,7 +57,12 @@
static void outid(struct player *pl, int n); static void outid(struct player *pl, int n);
/*VARARGS*/ /*
* Print to current player similar to printf().
* Use printf-style FORMAT with the optional arguments.
* Note: `to print' without further qualifications means sending
* C_DATA text.
*/
void void
pr(char *format, ...) pr(char *format, ...)
{ {
@ -68,8 +73,10 @@ pr(char *format, ...)
(void)vsprintf(buf, format, ap); (void)vsprintf(buf, format, ap);
va_end(ap); va_end(ap);
if (player->flags & PF_UTF8) if (player->flags & PF_UTF8)
/* normal text needs to be converted to user text */
upr_player(player, C_DATA, buf); upr_player(player, C_DATA, buf);
else else
/* normal text and user text are identical */
pr_player(player, C_DATA, buf); pr_player(player, C_DATA, buf);
} }
@ -90,11 +97,19 @@ uprnf(char *buf)
pr_player(player, C_DATA, buf); pr_player(player, C_DATA, buf);
} }
/*VARARGS*/ /*
* Send some text to P with id ID, line-buffered.
* Format text to send using printf-style FORMAT and optional
* arguments. It is assumed to be already user text. Plain ASCII and
* text received from the same player are fine, for anything else the
* caller has to deal with output filtering.
* If a partial line with different id is buffered, terminate it with
* a newline first.
*/
void void
pr_id(struct player *p, int id, s_char *format, ...) pr_id(struct player *p, int id, char *format, ...)
{ {
s_char buf[4096]; char buf[4096];
va_list ap; va_list ap;
if (p->curid >= 0) { if (p->curid >= 0) {
@ -107,11 +122,15 @@ pr_id(struct player *p, int id, s_char *format, ...)
pr_player(p, id, buf); pr_player(p, id, buf);
} }
/*
* Send C_FLASH text to PL.
* Format text to send using printf-style FORMAT and optional
* arguments. It is assumed to be UTF-8.
*/
void void
pr_flash(struct player *pl, char *format pr_flash(struct player *pl, char *format, ...)
/* format is message text */, ...)
{ {
char buf[4096]; /* buf is message text */ char buf[4096]; /* UTF-8 */
va_list ap; va_list ap;
if (pl->state != PS_PLAYING) if (pl->state != PS_PLAYING)
@ -125,10 +144,15 @@ pr_flash(struct player *pl, char *format
io_output(pl->iop, IO_NOWAIT); io_output(pl->iop, IO_NOWAIT);
} }
/*
* Send C_INFORM text to PL.
* Format text to send using printf-style FORMAT and optional
* arguments. It is assumed to be plain ASCII.
*/
void void
pr_inform(struct player *pl, s_char *format, ...) pr_inform(struct player *pl, char *format, ...)
{ {
s_char buf[4096]; char buf[4096];
va_list ap; va_list ap;
if (pl->state != PS_PLAYING) if (pl->state != PS_PLAYING)
@ -140,10 +164,15 @@ pr_inform(struct player *pl, s_char *format, ...)
io_output(pl->iop, IO_NOWAIT); io_output(pl->iop, IO_NOWAIT);
} }
/*
* Send C_FLASH text to everyone.
* Format text to send using printf-style FORMAT and optional
* arguments. It is assumed to be plain ASCII.
*/
void void
pr_wall(s_char *format, ...) pr_wall(char *format, ...)
{ {
s_char buf[4096]; char buf[4096]; /* UTF-8 */
struct player *p; struct player *p;
va_list ap; va_list ap;
@ -158,12 +187,18 @@ pr_wall(s_char *format, ...)
} }
} }
/*
* Send ID text BUF to PL, line-buffered.
* BUF is user text.
* If a partial line with different id is buffered, terminate it with
* a newline first.
*/
void void
pr_player(struct player *pl, int id, s_char *buf) pr_player(struct player *pl, int id, char *buf)
{ {
register s_char *p; char *p;
register s_char *bp; char *bp;
register int len; int len;
bp = buf; bp = buf;
while (*bp != '\0') { while (*bp != '\0') {
@ -174,7 +209,7 @@ pr_player(struct player *pl, int id, s_char *buf)
if (pl->curid == -1) if (pl->curid == -1)
outid(pl, id); outid(pl, id);
p = strchr(bp, '\n'); p = strchr(bp, '\n');
if (p != 0) { if (p != NULL) {
len = (p - bp) + 1; len = (p - bp) + 1;
if (pl->command && (pl->command->c_flags & C_MOD)) if (pl->command && (pl->command->c_flags & C_MOD))
io_write(pl->iop, bp, len, IO_NOWAIT); io_write(pl->iop, bp, len, IO_NOWAIT);
@ -189,13 +224,17 @@ pr_player(struct player *pl, int id, s_char *buf)
} }
} }
/*
* Send ID text BUF to PL, line-buffered.
* If a partial line with different id is buffered, terminate it with
* a newline first.
*/
void void
upr_player(struct player *pl, int id, char *buf upr_player(struct player *pl, int id, char *buf)
/* buf is message text */)
{ {
register char *bp; /* bp is message text */ char *bp;
register int standout = 0; int standout = 0;
char printbuf[2]; /* bp is message text */ char printbuf[2];
char ch; char ch;
printbuf[0] = '\0'; printbuf[0] = '\0';
@ -258,7 +297,8 @@ pr_hilite(s_char *buf)
} }
/* /*
* output hex code + space * Send id N to PL.
* This runs always at the beginning of a line.
*/ */
static void static void
outid(struct player *pl, int n) outid(struct player *pl, int n)
@ -278,58 +318,89 @@ outid(struct player *pl, int n)
pl->curid = n; pl->curid = n;
} }
/*
* Send redirection request REDIR to the current player.
* REDIR is UTF-8, but non-ASCII characters can occur only if the
* player sent them. Therefore, it is also user text.
*/
void void
prredir(s_char *redir) prredir(char *redir)
{ {
pr_id(player, *redir == '>' ? C_REDIR : C_PIPE, "%s\n", redir); pr_id(player, *redir == '>' ? C_REDIR : C_PIPE, "%s\n", redir);
} }
/*
* Send script execute request FILE to the current player.
* REDIR is UTF-8, but non-ASCII characters can occur only if the
* player sent them. Therefore, it is also user text.
*/
void void
prexec(s_char *file) prexec(char *file)
{ {
pr_id(player, C_EXECUTE, "%s\n", file); pr_id(player, C_EXECUTE, "%s\n", file);
} }
/*
* Send a command prompt to the current player.
*/
void void
prprompt(int min, int btu) prprompt(int min, int btu)
{ {
pr_id(player, C_PROMPT, "%d %d\n", min, btu); pr_id(player, C_PROMPT, "%d %d\n", min, btu);
} }
/*
* Prompt for a line of non-command input.
* Send C_FLUSH prompt PROMPT to the current player.
* Read a line of input into BUF[SIZE] and convert it to ASCII.
* Return number of bytes in BUF[], not counting the terminating 0,
* or -1 on error.
*/
int int
prmptrd(char *prompt, char *str, int size) prmptrd(char *prompt, char *buf, int size)
{ {
int r; int r;
char *cp; char *cp;
pr_id(player, C_FLUSH, "%s\n", prompt); pr_id(player, C_FLUSH, "%s\n", prompt);
if ((r = recvclient(str, size)) < 0) if ((r = recvclient(buf, size)) < 0)
return r; return r;
time(&player->curup); time(&player->curup);
if (*str == 0) if (*buf == 0)
return 1; return 1;
if (player->flags & PF_UTF8) if (player->flags & PF_UTF8)
return copy_utf8_to_ascii_no_funny(str, str); return copy_utf8_to_ascii_no_funny(buf, buf);
return copy_ascii_no_funny(str, str); return copy_ascii_no_funny(buf, buf);
} }
/*
* Prompt for a line of non-command, UTF-8 input.
* Send C_FLUSH prompt PROMPT to the current player.
* Read a line of input into BUF[SIZE], replacing funny characters by
* '?'. The result is UTF-8.
* Return number of bytes in BUF[], not counting the terminating 0,
* or -1 on error.
*/
int int
uprmptrd(char *prompt, char *str /* str is message text */, int size) uprmptrd(char *prompt, char *buf, int size)
{ {
int r; int r;
char *cp; /* cp is message text */ char *cp;
pr_id(player, C_FLUSH, "%s\n", prompt); pr_id(player, C_FLUSH, "%s\n", prompt);
if ((r = recvclient(str, size)) < 0) if ((r = recvclient(buf, size)) < 0)
return r; return r;
time(&player->curup); time(&player->curup);
if (*str == 0) if (*buf == 0)
return 1; return 1;
if (player->flags & PF_UTF8) if (player->flags & PF_UTF8)
return copy_utf8_no_funny(str, str); return copy_utf8_no_funny(buf, buf);
return copy_ascii_no_funny(str, str); return copy_ascii_no_funny(buf, buf);
} }
/*
* Print the current time in ctime() format.
*/
void void
prdate(void) prdate(void)
{ {
@ -340,12 +411,14 @@ prdate(void)
} }
/* /*
* print x,y formatting as country * Print coordinates X, Y for COUNTRY.
* FORMAT must be a printf-style format string that converts exactly
* two int values.
*/ */
void void
prxy(s_char *format, coord x, coord y, natid country) prxy(char *format, coord x, coord y, natid country)
{ {
s_char buf[255]; char buf[255];
struct natstr *np; struct natstr *np;
np = getnatp(country); np = getnatp(country);
@ -353,15 +426,23 @@ prxy(s_char *format, coord x, coord y, natid country)
pr(buf); pr(buf);
} }
/*VARARGS*/ /*
* Print to country CN similar to printf().
* Use printf-style FORMAT with the optional arguments.
* Output is buffered until a newline arrives.
* If CN is the current player, print just like pr().
* Else print into a bulletin.
* Because printing like pr() requires normal text, and bulletins
* require user text, only plain ASCII is allowed.
*/
void void
PR(int cn, s_char *format, ...) PR(int cn, char *format, ...)
{ {
/* XXX should really do this on a per-nation basis */ /* XXX should really do this on a per-nation basis */
static s_char longline[MAXNOC][512]; static char longline[MAXNOC][512];
int newline; int newline;
va_list ap; va_list ap;
s_char buf[1024]; char buf[1024];
va_start(ap, format); va_start(ap, format);
(void)vsprintf(buf, format, ap); (void)vsprintf(buf, format, ap);
@ -377,6 +458,11 @@ PR(int cn, s_char *format, ...)
} }
} }
/*
* Print the current time in ctime() format to country CN.
* If CN is the current player, print like prdate().
* Else print into a bulletin.
*/
void void
PRdate(natid cn) PRdate(natid cn)
{ {
@ -386,6 +472,9 @@ PRdate(natid cn)
PR(cn, ctime(&now)); PR(cn, ctime(&now));
} }
/*
* Sound the current player's bell.
*/
void void
pr_beep(void) pr_beep(void)
{ {
@ -395,10 +484,18 @@ pr_beep(void)
pr("\07"); pr("\07");
} }
/*
* Print to country CN similar to printf().
* Use printf-style FORMAT with the optional arguments.
* If CN is the current player, print just like pr().
* Else print into a bulletin.
* Because printing like pr() requires normal text, and bulletins
* require user text, only plain ASCII is allowed.
*/
void void
mpr(int cn, s_char *format, ...) mpr(int cn, char *format, ...)
{ {
s_char buf[4096]; char buf[4096];
va_list ap; va_list ap;
va_start(ap, format); va_start(ap, format);

View file

@ -80,8 +80,8 @@ telegram_is_new(natid to, struct telstr *tel)
/* /*
* Send a telegram from FROM to TO. * Send a telegram from FROM to TO.
* Format text to send under control of printf-style FORMAT using * Format text to send using printf-style FORMAT and optional
* optional arguments. It is plain ASCII. * arguments. It is plain ASCII.
* If running from the update, telegram type is TEL_UPDATE. * If running from the update, telegram type is TEL_UPDATE.
* Else if FROM is a deity, type is TEL_BULLETIN. * Else if FROM is a deity, type is TEL_BULLETIN.
* Else it is TEL_NORM. * Else it is TEL_NORM.
@ -108,7 +108,7 @@ wu(natid from, natid to, char *format, ...)
/* /*
* Send a telegram from FROM to TO. * Send a telegram from FROM to TO.
* MESSAGE is the text to send, encoded as message text. * MESSAGE is the text to send, in UTF-8.
* TYPE is the telegram type. * TYPE is the telegram type.
* Return 0 on success, -1 on error. * Return 0 on success, -1 on error.
*/ */