123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- /* $NetBSD: setup.c,v 1.14 2004/12/09 05:15:59 jmc Exp $ */
- /*
- * setup.c - set up all files for Phantasia
- */
- #include <sys/param.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include "include.h"
- int main(int, char *[]);
- void Error(const char *, const char *) __attribute__((__noreturn__));
- double drandom(void);
- /**/
- /************************************************************************
- /
- / FUNCTION NAME: main()
- /
- / FUNCTION: setup files for Phantasia 3.3.2
- /
- / AUTHOR: E. A. Estes, 12/4/85
- /
- / ARGUMENTS: none
- /
- / RETURN VALUE: none
- /
- / MODULES CALLED: time(), exit(), stat(), Error(), creat(), close(), fopen(),
- / fgets(), floor(), srandom(), umask(), drandom(), strcpy(), getuid(),
- / unlink(), fwrite(), fclose(), sscanf(), printf(), strlen(), fprintf()
- /
- / GLOBAL INPUTS: Curmonster, _iob[], Databuf[], *Monstfp, Enrgyvoid
- /
- / GLOBAL OUTPUTS: Curmonster, Databuf[], *Monstfp, Enrgyvoid
- /
- / DESCRIPTION:
- /
- / This program tries to verify the parameters specified in
- / the Makefile.
- /
- / Create all necessary files. Note that nothing needs to be
- / put in these files.
- / Also, the monster binary data base is created here.
- /
- / ************************************************************************/
- static const char *const files[] = { /* all files to create */
- _PATH_MONST,
- _PATH_PEOPLE,
- _PATH_MESS,
- _PATH_LASTDEAD,
- _PATH_MOTD,
- _PATH_GOLD,
- _PATH_VOID,
- _PATH_SCORE,
- NULL,
- };
- const char *monsterfile = "monsters.asc";
- int
- main(argc, argv)
- int argc;
- char *argv[];
- {
- const char *const *filename; /* for pointing to file names */
- int fd; /* file descriptor */
- FILE *fp; /* for opening files */
- struct stat fbuf; /* for getting files statistics */
- int ch;
- char *path;
- while ((ch = getopt(argc, argv, "m:")) != -1)
- switch(ch) {
- case 'm':
- monsterfile = optarg;
- break;
- case '?':
- default:
- break;
- }
- argc -= optind;
- argv += optind;
- srandom((unsigned) time(NULL)); /* prime random numbers */
- umask(0117); /* only owner can read/write created files */
- /* try to create data files */
- filename = &files[0];
- while (*filename != NULL)
- /* create each file */
- {
- path = strrchr(*filename, '/') + 1;
- if (stat(path, &fbuf) == 0)
- /* file exists; remove it */
- {
- if (unlink(path) < 0)
- Error("Cannot unlink %s.\n", path);
- /*NOTREACHED*/
- }
- if ((fd = creat(path, 0660)) < 0)
- Error("Cannot create %s.\n", path);
- /*NOTREACHED*/
- close(fd); /* close newly created file */
- ++filename; /* process next file */
- }
- /* Initialize an empty file placeholder for the grail location. */
- if ((fp = fopen(path, "w")) == NULL)
- Error("Cannot create %s.\n", path);
- fclose(fp);
- /* create binary monster data base */
- path = strrchr(_PATH_MONST, '/') + 1;
- if ((Monstfp = fopen(path, "w")) == NULL)
- Error("Cannot update %s.\n", path);
- else
- {
- if ((fp = fopen(monsterfile, "r")) == NULL)
- {
- fclose(Monstfp);
- Error("cannot open %s to create monster database.\n", "monsters.asc");
- }
- else
- {
- Curmonster.m_o_strength =
- Curmonster.m_o_speed =
- Curmonster.m_maxspeed =
- Curmonster.m_o_energy =
- Curmonster.m_melee =
- Curmonster.m_skirmish = 0.0;
- while (fgets(Databuf, SZ_DATABUF, fp) != NULL)
- /* read in text file, convert to binary */
- {
- sscanf(&Databuf[24], "%lf%lf%lf%lf%lf%d%d%lf",
- &Curmonster.m_strength, &Curmonster.m_brains,
- &Curmonster.m_speed, &Curmonster.m_energy,
- &Curmonster.m_experience, &Curmonster.m_treasuretype,
- &Curmonster.m_type, &Curmonster.m_flock);
- Databuf[24] = '\0';
- strcpy(Curmonster.m_name, Databuf);
- fwrite((char *) &Curmonster, SZ_MONSTERSTRUCT, 1, Monstfp);
- }
- fclose(fp);
- fflush(Monstfp);
- if (ferror(Monstfp))
- Error("Writing %s.\n", path);
- fclose(Monstfp);
- }
- }
- #ifdef MAKE_INSTALLS_THIS_AND_DOESNT_WANT_TO_HEAR_ABOUT_IT
- /* write to motd file */
- printf("One line 'motd' ? ");
- if (fgets(Databuf, SZ_DATABUF, stdin) == NULL)
- Databuf[0] = '\0';
- path = strrchr(_PATH_MOTD, '/') + 1;
- if ((fp = fopen(path, "w")) == NULL)
- Error("Cannot update %s.\n", path);
- else
- {
- fwrite(Databuf, sizeof(char), strlen(Databuf), fp);
- fclose(fp);
- }
- /* report compile-time options */
- printf("Compiled options:\n\n");
- printf("Phantasia destination directory: %s\n", _PATH_PHANTDIR);
- printf("Wizard: root UID: 0\n");
- #ifdef BSD41
- printf("Compiled for BSD 4.1\n");
- #endif
- #ifdef BSD42
- printf("Compiled for BSD 4.2\n");
- #endif
- #ifdef SYS3
- printf("Compiled for System III\n");
- #endif
- #ifdef SYS5
- printf("Compiled for System V\n");
- #endif
- #endif
- exit(0);
- /*NOTREACHED*/
- }
- /**/
- /************************************************************************
- /
- / FUNCTION NAME: Error()
- /
- / FUNCTION: print an error message, and exit
- /
- / AUTHOR: E. A. Estes, 12/4/85
- /
- / ARGUMENTS:
- / char *str - format string for printf()
- / char *file - file which caused error
- /
- / RETURN VALUE: none
- /
- / MODULES CALLED: exit(), perror(), fprintf()
- /
- / GLOBAL INPUTS: _iob[]
- /
- / GLOBAL OUTPUTS: none
- /
- / DESCRIPTION:
- / Print an error message, then exit.
- /
- / ************************************************************************/
- void
- Error(str, file)
- const char *str, *file;
- {
- fprintf(stderr, "Error: ");
- fprintf(stderr, str, file);
- perror(file);
- exit(1);
- /*NOTREACHED*/
- }
- /**/
- /************************************************************************
- /
- / FUNCTION NAME: drandom()
- /
- / FUNCTION: return a random number
- /
- / AUTHOR: E. A. Estes, 2/7/86
- /
- / ARGUMENTS: none
- /
- / RETURN VALUE: none
- /
- / MODULES CALLED: random()
- /
- / GLOBAL INPUTS: none
- /
- / GLOBAL OUTPUTS: none
- /
- / DESCRIPTION:
- /
- / ************************************************************************/
- double
- drandom()
- {
- if (sizeof(int) != 2)
- return((double) (random() & 0x7fff) / 32768.0);
- else
- return((double) random() / 32768.0);
- }
|