2018-02-08 23:40:26 +00:00
|
|
|
// Hyperbolic Rogue -- commandline options
|
|
|
|
// Copyright (C) 2011-2018 Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
2018-06-10 23:58:31 +00:00
|
|
|
namespace hr {
|
|
|
|
|
2017-12-01 23:22:01 +00:00
|
|
|
#if CAP_COMMANDLINE
|
|
|
|
const char *scorefile = "hyperrogue.log";
|
2018-02-26 12:14:20 +00:00
|
|
|
|
2018-07-19 22:04:23 +00:00
|
|
|
namespace arg {
|
2018-02-26 12:14:20 +00:00
|
|
|
eLand readland(const string& ss) {
|
2017-12-01 23:22:01 +00:00
|
|
|
if(ss == "II") return laCrossroads2;
|
|
|
|
if(ss == "III") return laCrossroads3;
|
|
|
|
if(ss == "IV") return laCrossroads4;
|
|
|
|
if(ss == "V") return laCrossroads5;
|
2018-02-26 12:14:20 +00:00
|
|
|
for(int l=0; l<landtypes; l++) if(appears(linf[l].name, ss)) {
|
2017-12-01 23:22:01 +00:00
|
|
|
return eLand(l);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return laNone;
|
|
|
|
}
|
|
|
|
|
2018-02-26 12:14:20 +00:00
|
|
|
eItem readItem(const string& ss) {
|
|
|
|
for(int i=0; i<ittypes; i++) if(appears(iinf[i].name, ss)) {
|
2017-12-01 23:22:01 +00:00
|
|
|
return eItem(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return itNone;
|
|
|
|
}
|
|
|
|
|
2018-02-26 12:14:20 +00:00
|
|
|
eMonster readMonster(const string& ss) {
|
|
|
|
for(int i=0; i<motypes; i++) if(appears(minf[i].name, ss)) {
|
2017-12-01 23:22:01 +00:00
|
|
|
return eMonster(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return moNone;
|
|
|
|
}
|
2018-07-19 22:04:23 +00:00
|
|
|
}
|
2017-12-01 23:22:01 +00:00
|
|
|
|
|
|
|
void initializeCLI() {
|
|
|
|
printf("HyperRogue by Zeno Rogue <zeno@attnam.com>, version " VER "\n");
|
|
|
|
|
2019-02-08 23:18:56 +00:00
|
|
|
#if !NOLICENSE
|
2017-12-01 23:22:01 +00:00
|
|
|
printf("released under GNU General Public License version 2 and thus\n");
|
|
|
|
printf("comes with absolutely no warranty; see COPYING for details\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FHS
|
|
|
|
static string sbuf, cbuf;
|
|
|
|
if(getenv("HOME")) {
|
|
|
|
sbuf = getenv("HOME"); sbuf += "/."; sbuf += scorefile;
|
|
|
|
cbuf = getenv("HOME"); cbuf += "/."; cbuf += conffile;
|
|
|
|
scorefile = sbuf.c_str();
|
|
|
|
conffile = cbuf.c_str();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-02-26 12:14:20 +00:00
|
|
|
namespace arg {
|
|
|
|
vector<string> argument;
|
|
|
|
int pos;
|
|
|
|
|
|
|
|
void lshift() { pos++; }
|
2019-04-23 10:02:58 +00:00
|
|
|
void unshift() { pos--; }
|
2018-02-26 12:14:20 +00:00
|
|
|
|
|
|
|
void shift() {
|
2019-04-23 10:02:58 +00:00
|
|
|
lshift(); if(pos >= isize(argument)) { printf("Missing parameter\n"); exit(1); }
|
2018-02-26 12:14:20 +00:00
|
|
|
}
|
|
|
|
|
2019-04-22 20:59:37 +00:00
|
|
|
bool nomore() { return pos >= isize(argument); }
|
|
|
|
|
2018-02-26 12:14:20 +00:00
|
|
|
const string& args() { return argument[pos]; }
|
|
|
|
const char* argcs() { return args().c_str(); }
|
|
|
|
int argi() { return atoi(argcs()); }
|
2018-07-09 16:07:47 +00:00
|
|
|
unsigned arghex() { return strtoll(argcs(), NULL, 16); }
|
2018-09-10 17:28:12 +00:00
|
|
|
ld argf() { return parseld(args()); }
|
2018-11-10 18:49:41 +00:00
|
|
|
bool argis(const string& s) { if(args()[0] == '-' && args()[1] == '-') return args().substr(1) == s; return args() == s; }
|
2018-02-26 12:14:20 +00:00
|
|
|
|
2019-04-23 10:02:58 +00:00
|
|
|
void init(int argc, char **argv) { for(int i=0; i<argc; i++) argument.push_back(argv[i]); lshift(); }
|
2018-02-26 12:14:20 +00:00
|
|
|
|
|
|
|
void phaseerror(int x) {
|
|
|
|
printf("Command line error: cannot read command '%s' from phase %d in phase %d\n", args().c_str(), x, curphase);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-11-11 10:06:32 +00:00
|
|
|
bool dialog_launched = false;
|
|
|
|
|
|
|
|
void launch_dialog(const reaction_t& r) {
|
|
|
|
if(!dialog_launched) {
|
|
|
|
popScreenAll();
|
|
|
|
showstartmenu = false;
|
|
|
|
dialog_launched = true;
|
|
|
|
}
|
|
|
|
if(r) pushScreen(r);
|
|
|
|
}
|
|
|
|
|
2018-02-26 12:14:20 +00:00
|
|
|
}
|
2018-04-05 22:30:56 +00:00
|
|
|
|
2018-11-11 10:06:32 +00:00
|
|
|
|
2017-12-01 23:22:01 +00:00
|
|
|
int arg::readCommon() {
|
2018-06-10 21:49:52 +00:00
|
|
|
|
|
|
|
// first phase options
|
|
|
|
|
2018-07-19 22:04:23 +00:00
|
|
|
if(argis("-s")) { PHASE(1); shift(); scorefile = argcs(); }
|
2018-06-10 21:49:52 +00:00
|
|
|
else if(argis("-nogui")) { PHASE(1); noGUI = true; }
|
2018-06-13 22:06:54 +00:00
|
|
|
#ifndef EMSCRIPTEN
|
2018-06-10 21:49:52 +00:00
|
|
|
else if(argis("-font")) { PHASE(1); shift(); fontpath = args(); }
|
2018-06-13 22:06:54 +00:00
|
|
|
#endif
|
2018-06-10 21:49:52 +00:00
|
|
|
|
2017-12-28 15:46:10 +00:00
|
|
|
else if(argis("-test"))
|
|
|
|
callhooks(hooks_tests);
|
2018-06-10 22:58:38 +00:00
|
|
|
else if(argis("-offline")) {
|
|
|
|
PHASE(1);
|
|
|
|
offlineMode = true;
|
|
|
|
}
|
2019-05-12 23:57:40 +00:00
|
|
|
else if(argis("-debf")) {
|
|
|
|
shift();
|
|
|
|
string s = args();
|
|
|
|
for(char c: s) {
|
|
|
|
for(int i=0; i<int(strlen(DF_KEYS)); i++) {
|
|
|
|
if(DF_KEYS[i] == c) debugflags |= (1<<i);
|
|
|
|
if(DF_KEYS[i] == (c ^ 32)) debugflags &= ~(1<<i);
|
|
|
|
}
|
|
|
|
}
|
2017-12-01 23:22:01 +00:00
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-run")) {
|
2018-06-10 22:58:38 +00:00
|
|
|
PHASE(3);
|
|
|
|
start_game();
|
|
|
|
mainloop(); quitmainloop = false;
|
2017-12-01 23:22:01 +00:00
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-msg")) {
|
2017-12-14 01:50:28 +00:00
|
|
|
shift(); addMessage(args());
|
2018-04-05 22:30:56 +00:00
|
|
|
printf("%s\n", args().c_str());
|
2017-12-14 01:50:28 +00:00
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-msg0")) {
|
2017-12-14 01:50:28 +00:00
|
|
|
clearMessages();
|
|
|
|
}
|
2017-12-01 23:22:01 +00:00
|
|
|
#if CAP_TOUR
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-tour")) {
|
2018-06-10 22:58:38 +00:00
|
|
|
PHASEFROM(2); start_game(); tour::start();
|
2017-12-01 23:22:01 +00:00
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-presentation")) {
|
2018-06-10 22:58:38 +00:00
|
|
|
PHASEFROM(2); tour::texts = false;
|
|
|
|
start_game(); tour::start();
|
2017-12-01 23:22:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-draw")) {
|
2017-12-01 23:22:01 +00:00
|
|
|
PHASE(3); drawscreen();
|
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-rotate")) {
|
2019-01-24 13:48:53 +00:00
|
|
|
PHASE(3); start_game();
|
2018-09-05 13:17:24 +00:00
|
|
|
shift(); ld a = argf();
|
|
|
|
shift(); ld b = argf();
|
|
|
|
View = View * spin(M_PI * 2 * a / b);
|
|
|
|
}
|
2019-03-21 18:12:13 +00:00
|
|
|
else if(argis("-rotate3")) {
|
|
|
|
PHASE(3); start_game();
|
|
|
|
shift(); ld a = argf();
|
|
|
|
shift(); ld b = argf();
|
|
|
|
View = View * cspin(1, 2, M_PI * 2 * a / b);
|
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-exit")) {
|
2017-12-01 23:22:01 +00:00
|
|
|
PHASE(3); printf("Success.\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
2018-06-10 21:49:52 +00:00
|
|
|
|
|
|
|
// graphical options
|
|
|
|
else if(argis("-noscr")) {
|
|
|
|
PHASE(3);
|
|
|
|
popScreenAll();
|
|
|
|
showstartmenu = false;
|
|
|
|
}
|
|
|
|
|
2018-11-30 13:59:29 +00:00
|
|
|
else if(argis("-viz")) {
|
|
|
|
PHASE(3);
|
|
|
|
showstartmenu = false;
|
|
|
|
start_game();
|
|
|
|
popScreenAll();
|
|
|
|
clearMessages();
|
|
|
|
nohud = true;
|
|
|
|
mapeditor::drawplayer = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(argis("-vizhr")) {
|
|
|
|
PHASE(3);
|
|
|
|
showstartmenu = false;
|
|
|
|
popScreenAll();
|
|
|
|
clearMessages();
|
|
|
|
}
|
|
|
|
|
2018-06-10 21:49:52 +00:00
|
|
|
// informational
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("-version") || argis("-v")) {
|
2018-06-10 22:58:38 +00:00
|
|
|
printf("HyperRogue version " VER "\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
2018-06-10 21:49:52 +00:00
|
|
|
else if(argis("-L")) {
|
|
|
|
printf("Treasures:\n");
|
|
|
|
for(int i=1; i<ittypes; i++)
|
|
|
|
if(itemclass(eItem(i)) == IC_TREASURE)
|
|
|
|
printf(" %s\n", iinf[i].name);
|
|
|
|
printf("\n");
|
|
|
|
printf("Orbs:\n");
|
|
|
|
for(int i=1; i<ittypes; i++)
|
|
|
|
if(itemclass(eItem(i)) == IC_ORB)
|
|
|
|
printf(" %s\n", iinf[i].name);
|
|
|
|
printf("\n");
|
|
|
|
printf("Other items:\n");
|
|
|
|
for(int i=1; i<ittypes; i++)
|
|
|
|
if(itemclass(eItem(i)) == IC_OTHER)
|
|
|
|
printf(" %s\n", iinf[i].name);
|
|
|
|
printf("\n");
|
|
|
|
printf("Monsters:\n");
|
|
|
|
for(int i=1; i<motypes; i++)
|
|
|
|
printf(" %s\n", minf[i].name);
|
|
|
|
printf("\n");
|
|
|
|
printf("Lands:\n");
|
|
|
|
for(int i=1; i<landtypes; i++)
|
|
|
|
printf(" %s\n", linf[i].name);
|
|
|
|
printf("\n");
|
|
|
|
printf("Walls:\n");
|
|
|
|
for(int i=0; i<walltypes; i++)
|
|
|
|
printf(" %s\n", winf[i].name);
|
|
|
|
printf("\n");
|
|
|
|
exit(0);
|
|
|
|
}
|
2018-11-10 18:49:41 +00:00
|
|
|
else if(argis("")) {}
|
|
|
|
else if(argis("-help") || argis("-h")) {
|
2017-12-01 23:22:01 +00:00
|
|
|
printf("Press F1 while playing to get ingame options.\n\n");
|
|
|
|
printf("HyperRogue accepts the following command line options:\n");
|
|
|
|
printf(" -c FILE - use the specified configuration file\n");
|
|
|
|
printf(" -s FILE - use the specified highscore file\n");
|
|
|
|
printf(" -m FILE - use the specified soundtrack (music)\n");
|
|
|
|
printf(" -se DIR - the directory containing sound effects\n");
|
|
|
|
printf(" -lev FILE - use the specified filename for the map editor (without loading)\n");
|
|
|
|
printf(" -load FILE - use the specified filename for the map editor\n");
|
|
|
|
printf(" -canvas COLOR - set background color or pattern code for the canvas\n");
|
|
|
|
printf(" --version, -v - show the version number\n");
|
|
|
|
printf(" --help, -h - show the commandline options\n");
|
|
|
|
printf(" -f* - toggle fullscreen mode\n");
|
|
|
|
printf(" -wm n, -mm n - start in the given wallmode or monmode\n");
|
|
|
|
printf(" -r WxHxF - use the given resolution and font size\n");
|
|
|
|
printf(" -o* - toggle the OpenGL mode\n");
|
|
|
|
printf(" -W LAND - start in the given land (cheat)\n");
|
|
|
|
printf(" -W2 LAND - make the given land easy to find (also turns on autocheat)\n");
|
|
|
|
printf(" -ch - auto-enable cheat mode\n");
|
|
|
|
printf(" -geo n - switch geometry (1=Euclidean, 2=spherical, 3=elliptic, 4/5=quotient)\n");
|
|
|
|
printf(" -qs <desc> - fieldpattern: quotient by the given <desc> (must be followed by qpar)\n");
|
|
|
|
printf(" -qpar <prime> - fieldpattern: use the given prime instead of 43\n");
|
|
|
|
printf(" -cs <desc> - fieldpattern: set subpath to the given <desc> (cannot be followed by qpar)\n");
|
|
|
|
printf(" -csp - fieldpattern: find the subpath of order <prime> (cannot be followed by qpar)\n");
|
|
|
|
printf(" -S* - toggle Shmup\n");
|
|
|
|
printf(" -P n - switch Shmup number of players (n=1..7)\n");
|
|
|
|
printf(" -PM - switch the model index\n");
|
|
|
|
printf(" -H* - toggle Hardcore\n");
|
|
|
|
printf(" -T* - toggle Tactical\n");
|
|
|
|
printf(" -7* - toggle heptagonal mode\n");
|
|
|
|
printf(" -C* - toggle Chaos mode\n");
|
|
|
|
printf(" -R* - toggle Random Pattern\n");
|
|
|
|
printf(" -Y id - enable Yendor, level id\n");
|
|
|
|
printf(" -D - disable all the special game modes\n");
|
|
|
|
printf(" -L - list of features\n");
|
|
|
|
printf(" -debugf 7 - output debugging information to hyperrogue-debug.txt\n");
|
|
|
|
printf(" -debuge 7 - output debugging information to stderr\n");
|
|
|
|
printf(" -offline - don't connect to Steam (for Steam versions)\n");
|
|
|
|
printf(" -I ITEM n - start with n of ITEM (activates cheat and disables ghosts)\n");
|
|
|
|
printf(" -fix - fix the seed\n");
|
|
|
|
printf("Toggles: -o0 disables, -o1 enables, -o switches");
|
|
|
|
printf("Not all options are documented, see hyper.cpp");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
else return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
purehookset hooks_config;
|
|
|
|
|
|
|
|
hookset<int()> *hooks_args;
|
|
|
|
|
|
|
|
namespace arg {
|
|
|
|
int curphase;
|
|
|
|
|
|
|
|
auto ah = addHook(hooks_args, 0, readCommon);
|
|
|
|
|
|
|
|
void read(int phase) {
|
|
|
|
curphase = phase;
|
|
|
|
callhooks(hooks_config);
|
2018-06-22 12:47:24 +00:00
|
|
|
while(pos < isize(argument)) {
|
2017-12-01 23:22:01 +00:00
|
|
|
for(auto& h: *hooks_args) {
|
|
|
|
int r = h.second(); if(r == 2) return; if(r == 0) { lshift(); goto cont; }
|
|
|
|
}
|
2018-02-26 12:14:20 +00:00
|
|
|
printf("Unknown option: %s\n", argcs());
|
2017-12-01 23:22:01 +00:00
|
|
|
exit(3);
|
|
|
|
cont: ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2018-06-10 23:58:31 +00:00
|
|
|
|
|
|
|
}
|