X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=interpreters%2Fglulxe%2Funixstrt.c;h=2e62f22eace4e9d0e1182c796a432b0bf19de615;hb=75009f8f40bbb580194e1722db76f4644bf18641;hp=4e629055f097e6379d6a6fd0dbc92e12d848187c;hpb=89081782541e85e079f64839ffb26b4e74273eb7;p=projects%2Fchimara%2Fchimara.git diff --git a/interpreters/glulxe/unixstrt.c b/interpreters/glulxe/unixstrt.c index 4e62905..2e62f22 100644 --- a/interpreters/glulxe/unixstrt.c +++ b/interpreters/glulxe/unixstrt.c @@ -6,6 +6,7 @@ #include "glk.h" #include "glulxe.h" #include "glkstart.h" /* This comes with the Glk library. */ +#include /* The only command-line argument is the filename. */ glkunix_argumentlist_t glkunix_arguments[] = { @@ -21,9 +22,17 @@ int glkunix_startup_code(glkunix_startup_t *data) unsigned char buf[12]; int res; +#ifdef GARGLK + garglk_set_program_name("Glulxe 0.4.6"); + garglk_set_program_info("Glulxe 0.4.6 by Andrew Plotkin"); +#endif + if (data->argc <= 1) { init_err = "You must supply the name of a game file."; - return FALSE; +#ifdef GARGLK + return TRUE; /* Hack! but I want error message in glk window */ +#endif + return FALSE; } cx = data->argv[1]; @@ -34,6 +43,12 @@ int glkunix_startup_code(glkunix_startup_t *data) return TRUE; } +#ifdef GARGLK + cx = strrchr(data->argv[1], '/'); + if (!cx) cx = strrchr(data->argv[1], '\\'); + garglk_set_story_name(cx ? cx + 1 : data->argv[1]); +#endif + /* Now we have to check to see if it's a Blorb file. */ glk_stream_set_position(gamefile, 0, seekmode_Start);