#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "deck.h"
#define TRUE 1
#define FALSE 0
#define bool int8_t
char *infile = "cards.inp",
*outfile = "cards.pck";
DECK deck[2];
FILE *inf, *outf;
static void getargs(int, char *[]);
static void count(void);
static void putem(void);
int
main(int ac, char *av[])
{
int n;
if (pledge("stdio rpath wpath cpath", NULL) == -1)
err(1, "pledge");
getargs(ac, av);
if ((inf = fopen(infile, "r")) == NULL)
err(1, "%s", infile);
count();
if ((CC_D.offsets = calloc(CC_D.num_cards + 1,
sizeof (int32_t))) == NULL ||
(CH_D.offsets = calloc(CH_D.num_cards + 1,
sizeof (int32_t))) == NULL)
err(1, NULL);
fseek(inf, 0L, SEEK_SET);
if ((outf = fopen(outfile, "w")) == NULL)
err(1, "%s", outfile);
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
fwrite(&deck[0].num_cards, sizeof(deck[0].num_cards), 1, outf);
fwrite(&deck[0].top_card, sizeof(deck[0].top_card), 1, outf);
fwrite(&deck[0].gojf_used, sizeof(deck[0].gojf_used), 1, outf);
fwrite(&deck[0].num_cards, sizeof(deck[0].num_cards), 1, outf);
fwrite(&deck[0].top_card, sizeof(deck[0].top_card), 1, outf);
fwrite(&deck[0].gojf_used, sizeof(deck[0].gojf_used), 1, outf);
fwrite(CC_D.offsets, sizeof(CC_D.offsets[0]), CC_D.num_cards, outf);
fwrite(CH_D.offsets, sizeof(CH_D.offsets[0]), CH_D.num_cards, outf);
putem();
fclose(inf);
fseek(outf, 0L, SEEK_SET);
deck[0].num_cards = htons(deck[0].num_cards);
fwrite(&deck[0].num_cards, sizeof(deck[0].num_cards), 1, outf);
deck[0].top_card = htons(deck[0].top_card);
fwrite(&deck[0].top_card, sizeof(deck[0].top_card), 1, outf);
fwrite(&deck[0].gojf_used, sizeof(deck[0].gojf_used), 1, outf);
deck[0].num_cards = ntohs(deck[0].num_cards);
deck[1].num_cards = htons(deck[1].num_cards);
fwrite(&deck[1].num_cards, sizeof(deck[1].num_cards), 1, outf);
deck[1].top_card = htons(deck[1].top_card);
fwrite(&deck[1].top_card, sizeof(deck[1].top_card), 1, outf);
fwrite(&deck[1].gojf_used, sizeof(deck[1].gojf_used), 1, outf);
deck[1].num_cards = ntohs(deck[1].num_cards);
for (n = 0 ; n < CC_D.num_cards ; n++) {
CC_D.offsets[n] = htonl(CC_D.offsets[n]);
fwrite(&CC_D.offsets[n], sizeof(CC_D.offsets[n]), 1, outf);
}
for (n = 0 ; n < CH_D.num_cards ; n++) {
CH_D.offsets[n] = htonl(CH_D.offsets[n]);
fwrite(&CH_D.offsets[n], sizeof(CH_D.offsets[n]), 1, outf);
}
fclose(outf);
printf("There were %d com. chest and %d chance cards\n", CC_D.num_cards,
CH_D.num_cards);
return 0;
}
static void
getargs(int ac, char *av[])
{
if (ac > 1)
infile = av[1];
if (ac > 2)
outfile = av[2];
}
static void
count(void)
{
bool newline;
DECK *in_deck;
int c;
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++;
}
static void
putem(void)
{
bool newline;
DECK *in_deck;
int c;
int16_t num;
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');
num = htons(num);
fwrite(&num, sizeof(num), 1, outf);
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');
num = htons(num);
fwrite(&num, sizeof(num), 1, outf);
}
else {
putc(c, outf);
newline = (c == '\n');
}
putc('\0', outf);
}