2003-08-07 13:36:50 +04:00
|
|
|
/* $NetBSD: initdeck.c,v 1.15 2003/08/07 09:37:28 agc Exp $ */
|
1995-03-23 11:28:00 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-03-23 11:28:00 +03:00
|
|
|
* Copyright (c) 1980, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:36:50 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1999-12-30 04:40:08 +03:00
|
|
|
#ifdef __NetBSD__
|
1997-10-12 21:45:06 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1997-10-12 21:45:06 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-03-23 11:28:00 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)initdeck.c 8.1 (Berkeley) 5/31/93";
|
|
|
|
#else
|
2003-08-07 13:36:50 +04:00
|
|
|
__RCSID("$NetBSD: initdeck.c,v 1.15 2003/08/07 09:37:28 agc Exp $");
|
1995-03-23 11:28:00 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
1999-12-30 04:40:08 +03:00
|
|
|
#endif /* __NetBSD__ */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-10-12 21:45:06 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2000-07-31 15:39:00 +04:00
|
|
|
#include <string.h>
|
1999-08-21 13:23:44 +04:00
|
|
|
#include <sys/types.h>
|
1997-10-12 21:45:06 +04:00
|
|
|
#include "deck.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2000-07-31 15:39:00 +04:00
|
|
|
#ifndef u_int32_t
|
|
|
|
#define u_int32_t unsigned int
|
|
|
|
#endif
|
|
|
|
|
|
|
|
u_int32_t
|
|
|
|
h2nl(u_int32_t h)
|
|
|
|
{
|
|
|
|
unsigned char c[4];
|
|
|
|
u_int32_t rv;
|
|
|
|
|
|
|
|
c[0] = (h >> 24) & 0xff;
|
|
|
|
c[1] = (h >> 16) & 0xff;
|
|
|
|
c[2] = (h >> 8) & 0xff;
|
|
|
|
c[3] = (h >> 0) & 0xff;
|
|
|
|
memcpy(&rv, c, sizeof rv);
|
|
|
|
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* This program initializes the card files for monopoly.
|
|
|
|
* It reads in a data file with Com. Chest cards, followed by
|
2001-07-22 17:33:58 +04:00
|
|
|
* the Chance card. The two are separated by a line of "%-".
|
|
|
|
* All other cards are separated by lines of "%%". In the front
|
1993-03-21 12:45:37 +03:00
|
|
|
* of the file is the data for the decks in the same order.
|
|
|
|
* This includes the seek pointer for the start of each card.
|
|
|
|
* All cards start with their execution code, followed by the
|
|
|
|
* string to print, terminated with a null byte.
|
|
|
|
*/
|
|
|
|
|
1999-08-21 14:40:03 +04:00
|
|
|
#define TRUE 1
|
|
|
|
#define FALSE 0
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-08-21 14:40:03 +04:00
|
|
|
#define bool char
|
1993-03-21 12:45:37 +03:00
|
|
|
|
Add use of `const' where appropriate to the games.
This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).
Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
1999-09-09 01:17:44 +04:00
|
|
|
const char *infile = "cards.inp", /* input file */
|
|
|
|
*outfile = "cards.pck"; /* "packed" file */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
DECK deck[2];
|
|
|
|
|
|
|
|
FILE *inf, *outf;
|
|
|
|
|
1997-10-12 21:45:06 +04:00
|
|
|
/* initdeck.c */
|
1999-12-30 04:40:08 +03:00
|
|
|
int main(int, char *[]);
|
|
|
|
static void getargs(int, char *[]);
|
|
|
|
static void fwrite_be_offt(off_t, FILE *);
|
|
|
|
static void count(void);
|
|
|
|
static void putem(void);
|
1997-10-12 21:45:06 +04:00
|
|
|
|
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(ac, av)
|
1999-08-21 14:40:03 +04:00
|
|
|
int ac;
|
|
|
|
char *av[];
|
|
|
|
{
|
1999-12-30 04:40:08 +03:00
|
|
|
int i, nc;
|
|
|
|
|
|
|
|
/* sanity test */
|
|
|
|
if (sizeof(int) != 4) {
|
|
|
|
fprintf(stderr, "sizeof(int) != 4\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
1999-08-21 13:23:44 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
getargs(ac, av);
|
|
|
|
if ((inf = fopen(infile, "r")) == NULL) {
|
|
|
|
perror(infile);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
count();
|
|
|
|
/*
|
|
|
|
* allocate space for pointers.
|
|
|
|
*/
|
1999-12-30 04:40:08 +03:00
|
|
|
CC_D.offsets = (off_t *)calloc(CC_D.num_cards + 1, /* sizeof (off_t) */ 8);
|
|
|
|
CH_D.offsets = (off_t *)calloc(CH_D.num_cards + 1, /* sizeof (off_t) */ 8);
|
|
|
|
if (CC_D.offsets == NULL || CH_D.offsets == NULL) {
|
|
|
|
fprintf(stderr, "out of memory\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
1999-09-09 01:57:16 +04:00
|
|
|
fseek(inf, 0L, SEEK_SET);
|
1999-12-30 04:40:08 +03:00
|
|
|
if ((outf = fopen(outfile, "w")) == NULL) {
|
|
|
|
perror(outfile);
|
|
|
|
exit(1);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-08-21 13:23:44 +04:00
|
|
|
/*
|
|
|
|
* these fields will be overwritten after the offsets are calculated,
|
|
|
|
* so byte-order doesn't matter yet.
|
|
|
|
*/
|
|
|
|
fwrite(&nc, sizeof(nc), 1, outf);
|
|
|
|
fwrite(&nc, sizeof(nc), 1, outf);
|
1999-12-30 04:40:08 +03:00
|
|
|
fwrite(CC_D.offsets, /* sizeof (off_t) */ 8, CC_D.num_cards, outf);
|
|
|
|
fwrite(CH_D.offsets, /* sizeof (off_t) */ 8, CH_D.num_cards, outf);
|
1999-08-21 13:23:44 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* write out the cards themselves (calculating the offsets).
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
putem();
|
|
|
|
|
|
|
|
fclose(inf);
|
1999-09-09 01:57:16 +04:00
|
|
|
fseek(outf, 0, SEEK_SET);
|
1999-08-21 13:23:44 +04:00
|
|
|
|
|
|
|
/* number of community chest cards first... */
|
2000-07-31 15:39:00 +04:00
|
|
|
nc = h2nl(CC_D.num_cards);
|
1999-08-21 13:23:44 +04:00
|
|
|
fwrite(&nc, sizeof(nc), 1, outf);
|
|
|
|
/* ... then number of chance cards. */
|
2000-07-31 15:39:00 +04:00
|
|
|
nc = h2nl(CH_D.num_cards);
|
1999-08-21 13:23:44 +04:00
|
|
|
fwrite(&nc, sizeof(nc), 1, outf);
|
|
|
|
|
1999-12-30 04:40:08 +03:00
|
|
|
/* dump offsets in big-endian byte order */
|
1999-08-21 13:23:44 +04:00
|
|
|
for (i = 0; i < CC_D.num_cards; i++)
|
1999-12-30 04:40:08 +03:00
|
|
|
fwrite_be_offt(CC_D.offsets[i], outf);
|
1999-08-21 13:23:44 +04:00
|
|
|
for (i = 0; i < CH_D.num_cards; i++)
|
1999-12-30 04:40:08 +03:00
|
|
|
fwrite_be_offt(CH_D.offsets[i], outf);
|
1999-08-21 13:23:44 +04:00
|
|
|
|
1999-09-10 04:18:20 +04:00
|
|
|
fflush(outf);
|
1999-12-30 04:40:08 +03:00
|
|
|
if (ferror(outf)) {
|
|
|
|
perror(outfile);
|
|
|
|
exit(1);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
fclose(outf);
|
1999-08-21 14:40:03 +04:00
|
|
|
printf("There were %d com. chest and %d chance cards\n",
|
|
|
|
CC_D.num_cards, CH_D.num_cards);
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
1997-10-12 21:45:06 +04:00
|
|
|
static void
|
1993-03-21 12:45:37 +03:00
|
|
|
getargs(ac, av)
|
1999-08-21 14:40:03 +04:00
|
|
|
int ac;
|
|
|
|
char *av[];
|
1997-10-12 21:45:06 +04:00
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
if (ac > 1)
|
|
|
|
infile = av[1];
|
|
|
|
if (ac > 2)
|
|
|
|
outfile = av[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* count the cards
|
|
|
|
*/
|
1997-10-12 21:45:06 +04:00
|
|
|
static void
|
|
|
|
count()
|
|
|
|
{
|
1999-08-21 14:40:03 +04:00
|
|
|
bool newline;
|
|
|
|
DECK *in_deck;
|
|
|
|
int c;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
newline = TRUE;
|
|
|
|
in_deck = &CC_D;
|
|
|
|
while ((c=getc(inf)) != EOF)
|
|
|
|
if (newline && c == '%') {
|
|
|
|
newline = FALSE;
|
|
|
|
in_deck->num_cards++;
|
|
|
|
if (getc(inf) == '-')
|
|
|
|
in_deck = &CH_D;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
newline = (c == '\n');
|
|
|
|
in_deck->num_cards++;
|
|
|
|
}
|
1999-08-21 14:40:03 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* put strings in the file
|
|
|
|
*/
|
1997-10-12 21:45:06 +04:00
|
|
|
static void
|
|
|
|
putem()
|
|
|
|
{
|
1999-08-21 14:40:03 +04:00
|
|
|
bool newline;
|
|
|
|
DECK *in_deck;
|
|
|
|
int c;
|
|
|
|
int num;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
in_deck = &CC_D;
|
|
|
|
CC_D.num_cards = 1;
|
|
|
|
CH_D.num_cards = 0;
|
|
|
|
CC_D.offsets[0] = ftell(outf);
|
|
|
|
putc(getc(inf), outf);
|
|
|
|
putc(getc(inf), outf);
|
|
|
|
for (num = 0; (c=getc(inf)) != '\n'; )
|
|
|
|
num = num * 10 + (c - '0');
|
2000-07-31 15:39:00 +04:00
|
|
|
putw(h2nl(num), outf);
|
1993-03-21 12:45:37 +03:00
|
|
|
newline = FALSE;
|
|
|
|
while ((c=getc(inf)) != EOF)
|
|
|
|
if (newline && c == '%') {
|
|
|
|
putc('\0', outf);
|
|
|
|
newline = FALSE;
|
|
|
|
if (getc(inf) == '-')
|
|
|
|
in_deck = &CH_D;
|
|
|
|
while (getc(inf) != '\n')
|
|
|
|
continue;
|
|
|
|
in_deck->offsets[in_deck->num_cards++] = ftell(outf);
|
|
|
|
if ((c=getc(inf)) == EOF)
|
|
|
|
break;
|
|
|
|
putc(c, outf);
|
|
|
|
putc(c = getc(inf), outf);
|
|
|
|
for (num = 0; (c=getc(inf)) != EOF && c != '\n'; )
|
|
|
|
num = num * 10 + (c - '0');
|
2000-07-31 15:39:00 +04:00
|
|
|
putw(h2nl(num), outf);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
putc(c, outf);
|
|
|
|
newline = (c == '\n');
|
|
|
|
}
|
|
|
|
putc('\0', outf);
|
|
|
|
}
|
1999-12-30 04:40:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* fwrite_be_offt:
|
|
|
|
* Write out the off paramater as a 64 bit big endian number
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
|
|
|
fwrite_be_offt(off, f)
|
|
|
|
off_t off;
|
|
|
|
FILE *f;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned char c[8];
|
|
|
|
|
|
|
|
for (i = 7; i >= 0; i--) {
|
|
|
|
c[i] = off & 0xff;
|
|
|
|
off >>= 8;
|
|
|
|
}
|
|
|
|
fwrite(c, sizeof(c), 1, f);
|
|
|
|
}
|