1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/* Mac-specific code for Xconq.
Copyright (C) 1992, 1993, 1994, 1995, 1996 Stanley T. Shebs.
Xconq is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version. See the file COPYING. */
#include "config.h"
#include "misc.h"
#include "dir.h"
#include "lisp.h"
#include "module.h"
#include "system.h"
void mac_abort PARAMS ((void));
extern void add_library_path PARAMS ((char *path));
#ifdef THINK_C
#include <MacHeaders>
#endif /* THINK_C */
#ifdef MPW
#include <Types.h>
#include <Resources.h>
#include <Events.h> /* for TickCount */
#include <TextUtils.h> /* for GetIndString */
#endif /* MPW */
#include <signal.h>
/* We need this in order to find string resources that have filenames
in them. */
#include "macdefs.h"
/* #include <sys/time.h> */
#ifndef c2p
#define c2p(STR,PBUF) \
strcpy(((char *) PBUF) + 1, STR); \
PBUF[0] = strlen(STR);
#endif
#ifndef p2c
#define p2c(PSTR,BUF) \
strncpy(BUF, ((char *) (PSTR) + 1), PSTR[0]); \
BUF[PSTR[0]] = '\0';
#endif
/* The HFS volume that the program started with. */
short initialvrefnum;
static char *news_fname;
static char *save_fname;
static char *checkpoint_fname;
static char *error_save_fname;
static char *statistics_fname;
#ifndef XCONQLIB
#define XCONQLIB ":lib"
#endif
char *
default_library_filename()
{
return XCONQLIB;
}
char *
news_filename()
{
Str255 tmpstr;
char tmpbuf[255];
if (news_fname == NULL) {
GetIndString(tmpstr, sFilenames, siNews);
p2c(tmpstr, tmpbuf);
if (!empty_string(tmpbuf))
news_fname = copy_string(tmpbuf);
else
news_fname = "news.txt";
}
return news_fname;
}
char *
saved_game_filename()
{
Str255 tmpstr;
char tmpbuf[255];
if (save_fname == NULL) {
GetIndString(tmpstr, sFilenames, siSavedGame);
p2c(tmpstr, tmpbuf);
if (!empty_string(tmpbuf))
save_fname = copy_string(tmpbuf);
else
save_fname = "Saved Game";
}
return save_fname;
}
char *
checkpoint_filename()
{
Str255 tmpstr;
char tmpbuf[255];
if (checkpoint_fname == NULL) {
GetIndString(tmpstr, sFilenames, siCheckpoint);
p2c(tmpstr, tmpbuf);
if (!empty_string(tmpbuf))
checkpoint_fname = copy_string(tmpbuf);
else
checkpoint_fname = "Checkpoint";
}
return checkpoint_fname;
}
char *
error_save_filename()
{
Str255 tmpstr;
char tmpbuf[255];
if (error_save_fname == NULL) {
GetIndString(tmpstr, sFilenames, siErrorSave);
p2c(tmpstr, tmpbuf);
if (!empty_string(tmpbuf))
error_save_fname = copy_string(tmpbuf);
else
error_save_fname = "Error Save";
}
return error_save_fname;
}
char *
statistics_filename()
{
Str255 tmpstr;
char tmpbuf[255];
if (statistics_fname == NULL) {
GetIndString(tmpstr, sFilenames, siStatistics);
p2c(tmpstr, tmpbuf);
if (!empty_string(tmpbuf))
statistics_fname = copy_string(tmpbuf);
else
statistics_fname = "Statistics";
}
return statistics_fname;
}
/* Attempt to open a library file. */
FILE *
open_module_library_file(Module *module)
{
short curvrefnum;
char fullnamebuf[255];
LibraryPath *p;
FILE *fp;
/* Can't open anonymous library modules. */
if (module->name == NULL)
return NULL;
/* Generate library pathname. */
for_all_library_paths(p) {
make_pathname(p->path, module->name, "g", fullnamebuf);
/* Now try to open the file. */
fp = fopen(fullnamebuf, "r");
if (fp != NULL) {
/* Remember the filename where we found it. */
module->filename = copy_string(fullnamebuf);
return fp;
}
/* Try the same name in a different directory. */
GetVol(NULL, &curvrefnum);
SetVol(NULL, initialvrefnum);
fp = fopen(fullnamebuf, "r");
SetVol(NULL, curvrefnum);
if (fp != NULL) {
/* Remember the filename (what about volume?) where we found it. */
module->filename = copy_string(fullnamebuf);
return fp;
}
}
return NULL;
}
FILE *
open_module_explicit_file(Module *module)
{
short curvrefnum;
char fullnamebuf[255];
LibraryPath *p;
FILE *fp = NULL;
if (module->filename == NULL) {
/* Try guessing a filename, since none supplied. */
if (module->name != NULL) {
for_all_library_paths(p) {
make_pathname(p->path, module->name, "g", fullnamebuf);
/* Now try to open the file. */
fp = fopen(fullnamebuf, "r");
if (fp != NULL)
return fp;
GetVol(NULL, &curvrefnum);
SetVol(NULL, initialvrefnum);
fp = fopen(fullnamebuf, "r");
SetVol(NULL, curvrefnum);
if (fp != NULL)
return fp;
}
}
} else {
/* Try some other random ideas. */
sprintf(fullnamebuf, "%s", module->filename);
fp = fopen(module->filename, "r");
if (fp != NULL) {
add_library_path("");
return fp;
}
sprintf(fullnamebuf, ":%s", module->filename);
fp = fopen(fullnamebuf, "r");
if (fp != NULL)
return fp;
sprintf(fullnamebuf, "%s%s", ":lib:", module->filename);
fp = fopen(fullnamebuf, "r");
if (fp != NULL)
return fp;
/* Try opening a library module under where the program started. */
GetVol(NULL, &curvrefnum);
SetVol(NULL, initialvrefnum);
fp = fopen(fullnamebuf, "r");
SetVol(NULL, curvrefnum);
}
return fp;
}
FILE *
open_library_file(char *filename)
{
short curvrefnum;
char fullnamebuf[255];
LibraryPath *p;
FILE *fp;
/* Now try to open the file. */
fp = fopen(filename, "r");
if (fp != NULL)
return fp;
/* Generate library pathname. */
for_all_library_paths(p) {
make_pathname(p->path, filename, NULL, fullnamebuf);
/* Now try to open the file. */
fp = fopen(fullnamebuf, "r");
if (fp != NULL)
return fp;
/* Change to volume where the program started. */
GetVol(NULL, &curvrefnum);
SetVol(NULL, initialvrefnum);
fp = fopen(fullnamebuf, "r");
SetVol(NULL, curvrefnum);
if (fp != NULL)
return fp;
}
return NULL;
}
FILE *
open_scorefile_for_reading(char *name)
{
short curvrefnum;
FILE *fp;
GetVol(NULL, &curvrefnum);
SetVol(NULL, initialvrefnum);
/* Now try to open the file. */
fp = fopen(name, "r");
SetVol(NULL, curvrefnum);
return fp;
}
FILE *
open_scorefile_for_writing(char *name)
{
short curvrefnum;
FILE *fp;
GetVol(NULL, &curvrefnum);
SetVol(NULL, initialvrefnum);
/* Now try to open the file. */
fp = fopen(name, "a");
SetVol(NULL, curvrefnum);
return fp;
}
void
make_pathname(char *path, char *name, char *extn, char *pathbuf)
{
strcpy(pathbuf, "");
if (!empty_string(path)) {
strcat(pathbuf, path);
strcat(pathbuf, ":");
}
strcat(pathbuf, name);
/* Don't add a second identical extension, but do add if extension
is different (in case we want "foo.12" -> "foo.12.g" for instance) */
if (strrchr(name, '.')
&& extn
&& strcmp(strrchr(name, '.') + 1, extn) == 0)
return;
if (!empty_string(extn)) {
strcat(pathbuf, ".");
strcat(pathbuf, extn);
}
}
/* Remove a saved game from the system. */
void
remove_saved_game()
{
}
void
init_signal_handlers()
{
}
int last_ticks = 0;
int
n_seconds_elapsed(n)
int n;
{
int ticks = TickCount();
if (((ticks - last_ticks) / 60) > n) {
last_ticks = ticks;
return TRUE;
} else {
return FALSE;
}
}
int last_ticks_for_ms = 0;
int
n_ms_elapsed(n)
int n;
{
return (((TickCount() - last_ticks_for_ms) * 16) > n);
}
void
record_ms()
{
last_ticks_for_ms = TickCount();
}
/* Instead of coredumping, which is not a normal Mac facility, we
drop into Macsbug. If we then "g" from Macsbug, the program will
exit cleanly. */
void
mac_abort ()
{
/* Make sure no output still buffered up, then zap into MacsBug. */
#if 0 /* how to know if stdio in use? */
fflush(stdout);
fflush(stderr);
printf("## Abort! ##\n");
#endif
#ifdef MPW_SADE
SysError(8005);
#else
Debugger();
#endif
/* "g" in MacsBug will then cause a regular error exit. */
exit(1);
}
|