summaryrefslogtreecommitdiffstats
path: root/gomoku
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-06-04 06:41:50 +0000
committerdholland <dholland@NetBSD.org>2009-06-04 06:41:50 +0000
commit92f1b6ea9c2921a6cbe51be12d242d1bb40b1995 (patch)
tree8aed3002c5a7ced1a5dc06cd33c8af86e74b7639 /gomoku
parent82d42178708c6108bb6c1649bd4bb11cbf0507e1 (diff)
downloadbsdgames-darwin-92f1b6ea9c2921a6cbe51be12d242d1bb40b1995.tar.gz
bsdgames-darwin-92f1b6ea9c2921a6cbe51be12d242d1bb40b1995.tar.zst
bsdgames-darwin-92f1b6ea9c2921a6cbe51be12d242d1bb40b1995.zip
Remove remaining references to sprintf.
Diffstat (limited to 'gomoku')
-rw-r--r--gomoku/gomoku.h4
-rw-r--r--gomoku/pickmove.c79
2 files changed, 47 insertions, 36 deletions
diff --git a/gomoku/gomoku.h b/gomoku/gomoku.h
index 1f04ecf8..5f2382fb 100644
--- a/gomoku/gomoku.h
+++ b/gomoku/gomoku.h
@@ -1,4 +1,4 @@
-/* $NetBSD: gomoku.h,v 1.13 2009/06/04 06:27:47 dholland Exp $ */
+/* $NetBSD: gomoku.h,v 1.14 2009/06/04 06:41:50 dholland Exp $ */
/*
* Copyright (c) 1994
@@ -290,7 +290,7 @@ void makeempty(struct combostr *);
void appendcombo(struct combostr *, int);
void updatecombo(struct combostr *, int);
void markcombo(struct combostr *);
-void printcombo(struct combostr *, char *);
+void printcombo(struct combostr *, char *, size_t);
void makecombo(struct combostr *, struct spotstr *, int, int);
void makecombo2(struct combostr *, struct spotstr *, int, int);
int sortcombo(struct combostr **, struct combostr **, struct combostr *);
diff --git a/gomoku/pickmove.c b/gomoku/pickmove.c
index eb65a3e0..8f65d894 100644
--- a/gomoku/pickmove.c
+++ b/gomoku/pickmove.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pickmove.c,v 1.16 2009/06/04 06:27:47 dholland Exp $ */
+/* $NetBSD: pickmove.c,v 1.17 2009/06/04 06:41:50 dholland Exp $ */
/*
* Copyright (c) 1994
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)pickmove.c 8.2 (Berkeley) 5/3/95";
#else
-__RCSID("$NetBSD: pickmove.c,v 1.16 2009/06/04 06:27:47 dholland Exp $");
+__RCSID("$NetBSD: pickmove.c,v 1.17 2009/06/04 06:41:50 dholland Exp $");
#endif
#endif /* not lint */
@@ -409,6 +409,7 @@ makecombo2(struct combostr *ocbp, struct spotstr *osp, int off, int s)
int baseB, fcnt, emask, bmask, n;
union comboval ocb, fcb;
struct combostr **scbpp, *fcbp;
+ char tmp[128];
/* try to combine a new frame with those found so far */
ocb.s = s;
@@ -494,13 +495,13 @@ makecombo2(struct combostr *ocbp, struct spotstr *osp, int off, int s)
combocnt++;
if ((c == 1 && debug > 1) || debug > 3) {
- debuglog(fmtbuf, "%c c %d %d m %x %x o %d %d",
+ debuglog("%c c %d %d m %x %x o %d %d",
"bw"[curcolor],
ncbp->c_framecnt[0], ncbp->c_framecnt[1],
ncbp->c_emask[0], ncbp->c_emask[1],
ncbp->c_voff[0], ncbp->c_voff[1]);
- printcombo(ncbp, fmtbuf);
- debuglog("%s", fmtbuf);
+ printcombo(ncbp, tmp, sizeof(tmp));
+ debuglog("%s", tmp);
}
if (c > 1) {
/* record the empty spots that will complete this combo */
@@ -641,6 +642,7 @@ makecombo(struct combostr *ocbp, struct spotstr *osp, int off, int s)
int baseB, fcnt, emask, verts;
union comboval ocb;
struct overlap_info vertices[1];
+ char tmp[128];
ocb.s = s;
baseB = ocb.c.a + ocb.c.b - 1;
@@ -744,8 +746,8 @@ makecombo(struct combostr *ocbp, struct spotstr *osp, int off, int s)
ncbp->c_framecnt[0], ncbp->c_framecnt[1],
ncbp->c_emask[0], ncbp->c_emask[1],
ncbp->c_voff[0], ncbp->c_voff[1]);
- printcombo(ncbp, fmtbuf);
- debuglog("%s", fmtbuf);
+ printcombo(ncbp, tmp, sizeof(tmp));
+ debuglog("%s", tmp);
}
if (c > 1) {
/* record the empty spots that will complete this combo */
@@ -782,10 +784,11 @@ makeempty(struct combostr *ocbp)
struct spotstr *sp;
int s, d, m, emask, i;
int nframes;
+ char tmp[128];
if (debug > 2) {
- printcombo(ocbp, fmtbuf);
- debuglog("E%c %s", "bw"[curcolor], fmtbuf);
+ printcombo(ocbp, tmp, sizeof(tmp));
+ debuglog("E%c %s", "bw"[curcolor], tmp);
}
/* should never happen but check anyway */
@@ -1196,17 +1199,18 @@ sortcombo(struct combostr **scbpp, struct combostr **cbpp,
#ifdef DEBUG
if (debug > 3) {
- char *str;
+ char buf[128];
+ size_t pos;
debuglog("sortc: %s%c l%d", stoc(fcbp->c_vertex),
pdir[fcbp->c_dir], curlevel);
- str = fmtbuf;
+ pos = 0;
for (cpp = cbpp; cpp < cbpp + curlevel; cpp++) {
- sprintf(str, " %s%c", stoc((*cpp)->c_vertex),
- pdir[(*cpp)->c_dir]);
- str += strlen(str);
+ snprintf(buf + pos, sizeof(buf) - pos, " %s%c",
+ stoc((*cpp)->c_vertex), pdir[(*cpp)->c_dir]);
+ pos += strlen(buf + pos);
}
- debuglog("%s", fmtbuf);
+ debuglog("%s", buf);
}
#endif /* DEBUG */
@@ -1254,26 +1258,29 @@ inserted:
/* we found a match */
#ifdef DEBUG
if (debug > 3) {
- char *str;
+ char buf[128];
+ size_t pos;
debuglog("sort1: n%d", n);
- str = fmtbuf;
+ pos = 0;
for (cpp = scbpp; cpp < scbpp + n; cpp++) {
- sprintf(str, " %s%c", stoc((*cpp)->c_vertex),
+ snprintf(buf + pos, sizeof(buf) - pos, " %s%c",
+ stoc((*cpp)->c_vertex),
pdir[(*cpp)->c_dir]);
- str += strlen(str);
+ pos += strlen(buf + pos);
}
- debuglog("%s", fmtbuf);
- printcombo(cbp, fmtbuf);
- debuglog("%s", fmtbuf);
- str = fmtbuf;
+ debuglog("%s", buf);
+ printcombo(cbp, buf, sizeof(buf));
+ debuglog("%s", buf);
cbpp--;
+ pos = 0;
for (cpp = cbpp; cpp < cbpp + n; cpp++) {
- sprintf(str, " %s%c", stoc((*cpp)->c_vertex),
+ snprintf(buf + pos, sizeof(buf) - pos, " %s%c",
+ stoc((*cpp)->c_vertex),
pdir[(*cpp)->c_dir]);
- str += strlen(str);
+ pos += strlen(buf + pos);
}
- debuglog("%s", fmtbuf);
+ debuglog("%s", buf);
}
#endif /* DEBUG */
return (1);
@@ -1294,21 +1301,25 @@ inserted:
}
/*
- * Print the combo into string 'str'.
+ * Print the combo into string buffer 'buf'.
*/
void
-printcombo(struct combostr *cbp, char *str)
+printcombo(struct combostr *cbp, char *buf, size_t max)
{
struct combostr *tcbp;
+ size_t pos = 0;
+
+ snprintf(buf + pos, max - pos, "%x/%d",
+ cbp->c_combo.s, cbp->c_nframes);
+ pos += strlen(buf + pos);
- sprintf(str, "%x/%d", cbp->c_combo.s, cbp->c_nframes);
- str += strlen(str);
for (; (tcbp = cbp->c_link[1]) != NULL; cbp = cbp->c_link[0]) {
- sprintf(str, " %s%c%x", stoc(tcbp->c_vertex), pdir[tcbp->c_dir],
- cbp->c_flags);
- str += strlen(str);
+ snprintf(buf + pos, max - pos, " %s%c%x",
+ stoc(tcbp->c_vertex), pdir[tcbp->c_dir], cbp->c_flags);
+ pos += strlen(buf + pos);
}
- sprintf(str, " %s%c", stoc(cbp->c_vertex), pdir[cbp->c_dir]);
+ snprintf(buf + pos, max - pos, " %s%c",
+ stoc(cbp->c_vertex), pdir[cbp->c_dir]);
}
#ifdef DEBUG