mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-20 23:51:29 -07:00
Build a lot of conditioned-out test and helper programs.
Most of these aren't especially useful, but if we're going to have them in the code base at all, we should at least ensure they compile: bit-rotted conditioned-out code is of no value. One of the new programs is 'galaxieseditor', which borrows most of the Galaxies code but changes the UI so that you can create and remove _dots_ instead of edges, and then run the solver to see whether it can solve the puzzle you've designed. Unlike the rest, this is a GUI helper tool, using the 'guiprogram' cmake function introduced in the previous commit. The programs are: - 'combi', a test program for the utility module that generates all combinations of n things - 'divvy', a test program for the module that divides a rectangle at random into equally-sized polyominoes - 'penrose-test', a test program for the Penrose-tiling generator used in Loopy, which outputs an SVG of a piece of tiling - 'penrose-vector', a much smaller test program for the vector arithmetic subroutines in that code - 'sort-test', a test of this code base's local array sorting routine - 'tree234-test', the exhaustive test code that's been in tree234.c all along. Not all of them compiled first time. Most of the fixes were the usual kind of thing: fixing compiler warnings by removing unused variables/functions, bringing uses of internal APIs up to date. A notable one was that galaxieseditor's interpret_move() modified the input game state, which was an error all along and is now detected by me having made it a const pointer; I had to replace that with an extra wrinkle in the move-string format, so that now execute_move() makes the modification. The one I'm _least_ proud of is squelching a huge number of format-string warnings in tree234-test by interposing a variadic function without __attribute__((printf)).
This commit is contained in:
35
tree234.c
35
tree234.c
@ -34,7 +34,15 @@
|
||||
#include "puzzles.h" /* for smalloc/sfree */
|
||||
|
||||
#ifdef TEST
|
||||
#define LOG(x) (printf x)
|
||||
#include <stdarg.h>
|
||||
static void logprintf(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
vprintf(fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
#define LOG(x) (logprintf x)
|
||||
#define smalloc malloc
|
||||
#define srealloc realloc
|
||||
#define sfree free
|
||||
@ -1486,7 +1494,7 @@ tree234 *copytree234(tree234 *t, copyfn234 copyfn, void *copyfnstate) {
|
||||
/*
|
||||
* Error reporting function.
|
||||
*/
|
||||
void error(char *fmt, ...) {
|
||||
void error(const char *fmt, ...) {
|
||||
va_list ap;
|
||||
printf("ERROR: ");
|
||||
va_start(ap, fmt);
|
||||
@ -1519,13 +1527,14 @@ int dispnode(node234 *n, int level, dispctx *ctx) {
|
||||
|
||||
if (n->elems[2])
|
||||
len = sprintf(ctx->levels[0]+xpos, " %s%s%s",
|
||||
n->elems[0], n->elems[1], n->elems[2]);
|
||||
(char *)n->elems[0], (char *)n->elems[1],
|
||||
(char *)n->elems[2]);
|
||||
else if (n->elems[1])
|
||||
len = sprintf(ctx->levels[0]+xpos, " %s%s",
|
||||
n->elems[0], n->elems[1]);
|
||||
(char *)n->elems[0], (char *)n->elems[1]);
|
||||
else
|
||||
len = sprintf(ctx->levels[0]+xpos, " %s",
|
||||
n->elems[0]);
|
||||
(char *)n->elems[0]);
|
||||
return xpos + 1 + (len-1) / 2;
|
||||
} else {
|
||||
int xpos[4], nkids;
|
||||
@ -1561,13 +1570,14 @@ int dispnode(node234 *n, int level, dispctx *ctx) {
|
||||
ctx->levels[level][x++] = '_';
|
||||
if (nkids==4)
|
||||
x += sprintf(ctx->levels[level]+x, ".%s.%s.%s.",
|
||||
n->elems[0], n->elems[1], n->elems[2]);
|
||||
(char *)n->elems[0], (char *)n->elems[1],
|
||||
(char *)n->elems[2]);
|
||||
else if (nkids==3)
|
||||
x += sprintf(ctx->levels[level]+x, ".%s.%s.",
|
||||
n->elems[0], n->elems[1]);
|
||||
(char *)n->elems[0], (char *)n->elems[1]);
|
||||
else
|
||||
x += sprintf(ctx->levels[level]+x, ".%s.",
|
||||
n->elems[0]);
|
||||
(char *)n->elems[0]);
|
||||
while (x < xpos[nkids-1])
|
||||
ctx->levels[level][x++] = '_';
|
||||
ctx->levels[level][x] = '\0';
|
||||
@ -1895,7 +1905,7 @@ int mycmp(void *av, void *bv) {
|
||||
return strcmp(a, b);
|
||||
}
|
||||
|
||||
char *strings[] = {
|
||||
const char *const strings_init[] = {
|
||||
"0", "2", "3", "I", "K", "d", "H", "J", "Q", "N", "n", "q", "j", "i",
|
||||
"7", "G", "F", "D", "b", "x", "g", "B", "e", "v", "V", "T", "f", "E",
|
||||
"S", "8", "A", "k", "X", "p", "C", "R", "a", "o", "r", "O", "Z", "u",
|
||||
@ -1916,7 +1926,8 @@ char *strings[] = {
|
||||
#endif
|
||||
};
|
||||
|
||||
#define NSTR lenof(strings)
|
||||
#define NSTR lenof(strings_init)
|
||||
char *strings[NSTR];
|
||||
|
||||
void findtest(void) {
|
||||
static const int rels[] = {
|
||||
@ -2028,10 +2039,12 @@ int main(void) {
|
||||
int tworoot, tmplen;
|
||||
unsigned seed = 0;
|
||||
tree234 *tree2, *tree3, *tree4;
|
||||
int c;
|
||||
|
||||
setvbuf(stdout, NULL, _IOLBF, 0);
|
||||
|
||||
for (i = 0; i < (int)NSTR; i++)
|
||||
strings[i] = dupstr(strings_init[i]);
|
||||
|
||||
for (i = 0; i < (int)NSTR; i++) in[i] = 0;
|
||||
array = NULL;
|
||||
arraylen = arraysize = 0;
|
||||
|
Reference in New Issue
Block a user