mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2024-11-14 13:26:10 +00:00
Ron Nazarov
34aaaf57e1
E as in the alias for extern, not the completely different E that's an alias for EXPLOSION used in objects.c.
152 lines
3.4 KiB
C
152 lines
3.4 KiB
C
/* SCCS Id: @(#)dgn_main.c 3.4 1994/09/23 */
|
|
/* Copyright (c) 1989 by Jean-Christophe Collet */
|
|
/* Copyright (c) 1990 by M. Stephenson */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
/*
|
|
* This file contains the main function for the parser
|
|
* and some useful functions needed by yacc
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "dlb.h"
|
|
|
|
/* Macintosh-specific code */
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
/* MacOS X has Unix-style files and processes */
|
|
#endif
|
|
|
|
#ifndef MPWTOOL
|
|
# define SpinCursor(x)
|
|
#endif
|
|
|
|
#define MAX_ERRORS 25
|
|
|
|
extern int yyparse(void);
|
|
extern int line_number;
|
|
const char *fname = "(stdin)";
|
|
int fatal_error = 0;
|
|
|
|
int main(int,char **);
|
|
void yyerror(const char *);
|
|
void yywarning(const char *);
|
|
int yywrap(void);
|
|
void init_yyin(FILE *);
|
|
void init_yyout(FILE *);
|
|
|
|
#define Fprintf (void)fprintf
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
char infile[64], outfile[64], basename[64];
|
|
FILE *fin, *fout;
|
|
int i, len;
|
|
boolean errors_encountered = FALSE;
|
|
|
|
Strcpy(infile, "(stdin)");
|
|
fin = stdin;
|
|
Strcpy(outfile, "(stdout)");
|
|
fout = stdout;
|
|
|
|
if (argc == 1) { /* Read standard input */
|
|
init_yyin(fin);
|
|
init_yyout(fout);
|
|
(void) yyparse();
|
|
if (fatal_error > 0)
|
|
errors_encountered = TRUE;
|
|
} else { /* Otherwise every argument is a filename */
|
|
for(i=1; i<argc; i++) {
|
|
fname = strcpy(infile, argv[i]);
|
|
/* the input file had better be a .pdf file */
|
|
len = strlen(fname) - 4; /* length excluding suffix */
|
|
if (len < 0 || strncmp(".pdf", fname + len, 4)) {
|
|
Fprintf(stderr,
|
|
"Error - file name \"%s\" in wrong format.\n",
|
|
fname);
|
|
errors_encountered = TRUE;
|
|
continue;
|
|
}
|
|
|
|
/* build output file name */
|
|
/* Use the whole name - strip off the last 3 or 4 chars. */
|
|
|
|
(void) strncpy(basename, infile, len);
|
|
basename[len] = '\0';
|
|
|
|
outfile[0] = '\0';
|
|
#ifdef PREFIX
|
|
(void) strcat(outfile, PREFIX);
|
|
#endif
|
|
(void) strcat(outfile, basename);
|
|
|
|
fin = freopen(infile, "r", stdin);
|
|
if (!fin) {
|
|
Fprintf(stderr, "Can't open %s for input.\n", infile);
|
|
perror(infile);
|
|
errors_encountered = TRUE;
|
|
continue;
|
|
}
|
|
fout = freopen(outfile, WRBMODE, stdout);
|
|
if (!fout) {
|
|
Fprintf(stderr, "Can't open %s for output.\n", outfile);
|
|
perror(outfile);
|
|
errors_encountered = TRUE;
|
|
continue;
|
|
}
|
|
init_yyin(fin);
|
|
init_yyout(fout);
|
|
(void) yyparse();
|
|
line_number = 1;
|
|
if (fatal_error > 0) {
|
|
errors_encountered = TRUE;
|
|
fatal_error = 0;
|
|
}
|
|
}
|
|
}
|
|
if (fout && fclose(fout) < 0) {
|
|
Fprintf(stderr, "Can't finish output file.");
|
|
perror(outfile);
|
|
errors_encountered = TRUE;
|
|
}
|
|
exit(errors_encountered ? EXIT_FAILURE : EXIT_SUCCESS);
|
|
/*NOTREACHED*/
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Each time the parser detects an error, it uses this function.
|
|
* Here we take count of the errors. To continue farther than
|
|
* MAX_ERRORS wouldn't be reasonable.
|
|
*/
|
|
|
|
void
|
|
yyerror(const char *s)
|
|
{
|
|
(void) fprintf(stderr,"%s : line %d : %s\n",fname,line_number, s);
|
|
if (++fatal_error > MAX_ERRORS) {
|
|
(void) fprintf(stderr,"Too many errors, good bye!\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Just display a warning (that is : a non fatal error)
|
|
*/
|
|
|
|
void
|
|
yywarning(const char *s)
|
|
{
|
|
(void) fprintf(stderr,"%s : line %d : WARNING : %s\n",fname,line_number,s);
|
|
}
|
|
|
|
int
|
|
yywrap(void)
|
|
{
|
|
SpinCursor(3); /* Don't know if this is a good place to put it ?
|
|
Is it called for our grammar ? Often enough ?
|
|
Too often ? -- h+ */
|
|
return 1;
|
|
}
|
|
|
|
/*dgn_main.c*/
|