2017-08-13 18:49:38 +00:00
|
|
|
// Hyperbolic Rogue -- configuration
|
|
|
|
|
|
|
|
// Copyright (C) 2017- Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
videopar vid;
|
|
|
|
|
2017-08-06 12:50:16 +00:00
|
|
|
#if ISANDROID
|
|
|
|
#define ANDROID_SETTINGS settingsChanged = true;
|
|
|
|
#else
|
|
|
|
#define ANDROID_SETTINGS ;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
charstyle& getcs(int id) {
|
|
|
|
if(multi::players>1 && id >= 0 && id < multi::players)
|
|
|
|
return multi::scs[id];
|
2017-07-10 18:47:38 +00:00
|
|
|
else
|
|
|
|
return vid.cs;
|
|
|
|
}
|
|
|
|
|
|
|
|
string csnameid(int id) {
|
|
|
|
if(id == 0) return XLAT("male");
|
|
|
|
if(id == 1) return XLAT("female");
|
|
|
|
if(id == 2) return XLAT("Prince");
|
|
|
|
if(id == 3) return XLAT("Princess");
|
|
|
|
if(id == 4 || id == 5) return XLAT("cat");
|
|
|
|
if(id == 6 || id == 7) return XLAT("dog");
|
|
|
|
if(id == 8 || id == 9) return XLATN("Familiar");
|
|
|
|
return XLAT("none");
|
|
|
|
}
|
|
|
|
|
|
|
|
string csname(charstyle& cs) {
|
|
|
|
return csnameid(cs.charid);
|
|
|
|
}
|
|
|
|
|
|
|
|
int playergender() {
|
|
|
|
return (getcs().charid&1) ? GEN_F : GEN_M;
|
|
|
|
}
|
|
|
|
int princessgender() {
|
|
|
|
int g = playergender();
|
|
|
|
if(vid.samegender) return g;
|
|
|
|
return g == GEN_M ? GEN_F : GEN_M;
|
|
|
|
}
|
|
|
|
|
|
|
|
int default_language;
|
|
|
|
|
|
|
|
int lang() {
|
|
|
|
if(vid.language >= 0)
|
|
|
|
return vid.language;
|
|
|
|
return default_language;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool autojoy = true;
|
|
|
|
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-16 21:00:55 +00:00
|
|
|
struct supersaver {
|
2017-07-10 18:47:38 +00:00
|
|
|
string name;
|
2017-07-16 21:00:55 +00:00
|
|
|
virtual string save() = 0;
|
|
|
|
virtual void load(const string& s) = 0;
|
|
|
|
virtual bool dosave() = 0;
|
2017-07-24 22:21:36 +00:00
|
|
|
virtual void reset() = 0;
|
2017-07-10 18:47:38 +00:00
|
|
|
};
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
vector<shared_ptr<supersaver>> savers;
|
|
|
|
|
|
|
|
template<class T> struct dsaver : supersaver {
|
|
|
|
T& val;
|
|
|
|
T dft;
|
|
|
|
bool dosave() { return val != dft; }
|
2017-07-24 22:21:36 +00:00
|
|
|
void reset() { val = dft; }
|
2017-07-16 21:00:55 +00:00
|
|
|
dsaver(T& val) : val(val) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T> struct saver : dsaver<T> {};
|
|
|
|
|
|
|
|
template<class T, class U, class V> void addsaver(T& i, U name, V dft) {
|
|
|
|
auto s = make_shared<saver<T>> (i);
|
|
|
|
s->dft = i = dft;
|
|
|
|
s->name = name;
|
|
|
|
savers.push_back(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T> void addsaver(T& i, string name) {
|
|
|
|
addsaver(i, name, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T> struct saverenum : supersaver {
|
|
|
|
T& val;
|
|
|
|
T dft;
|
|
|
|
bool dosave() { return val != dft; }
|
2017-07-24 22:21:36 +00:00
|
|
|
void reset() { val = dft; }
|
2017-07-16 21:00:55 +00:00
|
|
|
saverenum<T>(T& v) : val(v) { }
|
2017-07-10 18:47:38 +00:00
|
|
|
string save() { return its(val); }
|
2017-07-16 21:00:55 +00:00
|
|
|
void load(const string& s) { val = (T) atoi(s.c_str()); }
|
2017-07-10 18:47:38 +00:00
|
|
|
};
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
template<class T, class U> void addsaverenum(T& i, U name) {
|
|
|
|
auto s = make_shared<saverenum<T>> (i);
|
|
|
|
s->dft = i;
|
|
|
|
s->name = name;
|
|
|
|
savers.push_back(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> struct saver<int> : dsaver<int> {
|
|
|
|
saver<int>(int& val) : dsaver<int>(val) { }
|
|
|
|
string save() { return its(val); }
|
|
|
|
void load(const string& s) { val = atoi(s.c_str()); }
|
2017-07-10 18:47:38 +00:00
|
|
|
};
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
template<> struct saver<char> : dsaver<char> {
|
|
|
|
saver<char>(char& val) : dsaver<char>(val) { }
|
|
|
|
string save() { return its(val); }
|
|
|
|
void load(const string& s) { val = atoi(s.c_str()); }
|
2017-07-10 18:47:38 +00:00
|
|
|
};
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
template<> struct saver<bool> : dsaver<bool> {
|
|
|
|
saver<bool>(bool& val) : dsaver<bool>(val) { }
|
|
|
|
string save() { return val ? "yes" : "no"; }
|
|
|
|
void load(const string& s) { val = size(s) && s[0] == 'y'; }
|
|
|
|
};
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
template<> struct saver<unsigned> : dsaver<unsigned> {
|
|
|
|
saver<unsigned>(unsigned& val) : dsaver<unsigned>(val) { }
|
|
|
|
string save() { return itsh(val); }
|
2017-08-06 12:50:16 +00:00
|
|
|
void load(const string& s) { val = (unsigned) strtoll(s.c_str(), NULL, 16); }
|
2017-07-16 21:00:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<> struct saver<ld> : dsaver<ld> {
|
|
|
|
saver<ld>(ld& val) : dsaver<ld>(val) { }
|
|
|
|
string save() { return ftssmart(val); }
|
|
|
|
void load(const string& s) { val = atof(s.c_str()); }
|
|
|
|
};
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !CAP_CONFIG
|
|
|
|
template<class T, class U, class V> void addsaver(T& i, U name, V dft) {
|
|
|
|
i = dft;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T, class U> void addsaver(T& i, U name) {}
|
|
|
|
template<class T, class U> void addsaverenum(T& i, U name) {}
|
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
void addsaver(charstyle& cs, string s) {
|
|
|
|
addsaver(cs.charid, s + ".charid");
|
|
|
|
addsaver(cs.skincolor, s + ".skincolor");
|
|
|
|
addsaver(cs.haircolor, s + ".haircolor");
|
|
|
|
addsaver(cs.dresscolor, s + ".dresscolor");
|
|
|
|
addsaver(cs.swordcolor, s + ".swordcolor");
|
|
|
|
addsaver(cs.dresscolor2, s + ".dresscolor2");
|
|
|
|
addsaver(cs.uicolor, s + ".uicolor");
|
|
|
|
}
|
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
// R:239, G:208, B:207
|
|
|
|
|
|
|
|
unsigned int skincolors[] = { 7, 0xD0D0D0FF, 0xEFD0C9FF, 0xC77A58FF, 0xA58869FF, 0x602010FF, 0xFFDCB1FF, 0xEDE4C8FF };
|
|
|
|
unsigned int haircolors[] = { 8, 0x686868FF, 0x8C684AFF, 0xF2E1AEFF, 0xB55239FF, 0xFFFFFFFF, 0x804000FF, 0x502810FF, 0x301800FF };
|
|
|
|
unsigned int dresscolors[] = { 6, 0xC00000FF, 0x00C000FF, 0x0000C0FF, 0xC0C000FF, 0xC0C0C0FF, 0x202020FF };
|
|
|
|
unsigned int dresscolors2[] = { 7, 0x8080FFC0, 0x80FF80C0, 0xFF8080C0, 0xFFFF80C0, 0xFF80FFC0, 0x80FFFFC0, 0xFFFFFF80 };
|
|
|
|
unsigned int swordcolors[] = { 6, 0xC0C0C0FF, 0xFFFFFFFF, 0xFFC0C0FF, 0xC0C0FFFF, 0x808080FF, 0x202020FF };
|
|
|
|
unsigned int eyecolors[] = { 4, 0x00C000FF, 0x0000C0FF, 0xC00000FF, 0xC0C000FF };
|
|
|
|
|
|
|
|
|
|
|
|
void initcs(charstyle &cs) {
|
|
|
|
cs.charid = 0;
|
|
|
|
cs.skincolor = 0xD0D0D0FF;
|
|
|
|
cs.haircolor = 0x686868FF;
|
|
|
|
cs.dresscolor = 0xC00000FF;
|
|
|
|
cs.swordcolor = 0xD0D0D0FF;
|
|
|
|
cs.dresscolor2= 0x8080FFC0;
|
|
|
|
cs.uicolor = 0xFF0000FF;
|
|
|
|
}
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-10 18:47:38 +00:00
|
|
|
void loadcs(FILE *f, charstyle& cs, int xvernum) {
|
|
|
|
int gflags, err =
|
|
|
|
fscanf(f, "%d%d%x%x%x%x", &gflags, &vid.language, &cs.skincolor, &cs.haircolor, &cs.swordcolor, &cs.dresscolor);
|
|
|
|
|
|
|
|
if(err) cs.charid = gflags & 15;
|
|
|
|
if(err) vid.samegender = (gflags & 16) ? true : false;
|
|
|
|
if(cs.charid == 3) if(fscanf(f, "%x", &cs.dresscolor2))
|
|
|
|
;
|
|
|
|
if(xvernum >= 8990) if(fscanf(f, "%x", &cs.uicolor))
|
|
|
|
;
|
|
|
|
}
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
void initConfig() {
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
// basic config
|
|
|
|
addsaver(vid.flashtime, "flashtime", 8);
|
|
|
|
addsaver(vid.mobilecompasssize, "mobile compass size", 30);
|
|
|
|
addsaver(vid.axes, "movement help", 1);
|
|
|
|
addsaver(vid.shifttarget, "shift-targetting", 2);
|
|
|
|
addsaver(vid.steamscore, "scores to Steam", 1);
|
|
|
|
initcs(vid.cs); addsaver(vid.cs, "single");
|
|
|
|
addsaver(vid.samegender, "princess choice", false);
|
|
|
|
addsaver(vid.language, "language", -1);
|
|
|
|
addsaver(vid.drawmousecircle, "mouse circle", ISMOBILE || ISPANDORA);
|
|
|
|
addsaver(vid.revcontrol, "reverse control", false);
|
|
|
|
addsaver(musicvolume, "music volume");
|
|
|
|
addsaver(effvolume, "sound effect volume");
|
|
|
|
addsaverenum(glyphsortorder, "glyph sort order");
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
// basic graphics
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
addsaver(vid.usingGL, "usingGL", true);
|
|
|
|
addsaver(vid.antialias, "antialias", AA_NOGL | AA_FONT | AA_LINES | AA_LINEWIDTH | AA_VERSION);
|
|
|
|
addsaver(vid.linewidth, "linewidth", 1);
|
|
|
|
addsaver(vid.scale, "scale", 1);
|
|
|
|
addsaver(vid.alpha, "projection", 1);
|
|
|
|
addsaver(vid.sspeed, "scrollingspeed", 0);
|
|
|
|
addsaver(vid.mspeed, "movement speed", 1);
|
|
|
|
addsaver(vid.full, "fullscreen", false);
|
2017-07-22 23:33:27 +00:00
|
|
|
addsaver(vid.aurastr, "aura strength", ISMOBILE ? 0 : 128);
|
2017-07-16 21:00:55 +00:00
|
|
|
addsaver(vid.aurasmoothen, "aura smoothen", 5);
|
|
|
|
addsaver(vid.graphglyph, "graphical items/kills", 1);
|
|
|
|
addsaver(vid.particles, "extra effects", 1);
|
|
|
|
addsaver(vid.framelimit, "frame limit", 75);
|
|
|
|
addsaver(vid.xres, "xres");
|
|
|
|
addsaver(vid.yres, "yres");
|
|
|
|
addsaver(vid.fsize, "font size");
|
|
|
|
addsaver(vid.darkhepta, "mark heptagons", false);
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
// special graphics
|
|
|
|
|
|
|
|
addsaver(vid.eye, "eye distance", 0);
|
|
|
|
addsaver(vid.ballangle, "ball angle", 20);
|
|
|
|
addsaver(vid.yshift, "Y shift", 0);
|
|
|
|
addsaver(vid.camera_angle, "camera angle", 0);
|
|
|
|
addsaver(vid.ballproj, "ballproj", 1);
|
2017-07-22 23:33:27 +00:00
|
|
|
addsaver(vid.monmode, "monster display mode", ISMOBILE ? 2 : 4);
|
|
|
|
addsaver(vid.wallmode, "wall display mode", ISMOBILE ? 3 : 5);
|
2017-07-16 21:00:55 +00:00
|
|
|
|
|
|
|
addsaver(geom3::depth, "3D depth");
|
|
|
|
addsaver(geom3::camera, "3D camera level");
|
|
|
|
addsaver(geom3::wall_height, "3D wall height");
|
|
|
|
addsaver(geom3::rock_wall_ratio, "3D rock-wall ratio");
|
|
|
|
addsaver(geom3::human_wall_ratio, "3D human-wall ratio");
|
|
|
|
addsaver(geom3::lake_top, "3D lake top");
|
|
|
|
addsaver(geom3::lake_bottom, "3D lake bottom");
|
|
|
|
addsaver(geom3::tc_depth, "3D TC depth");
|
|
|
|
addsaver(geom3::tc_camera, "3D TC camera");
|
|
|
|
addsaver(geom3::tc_alpha, "3D TC alpha");
|
|
|
|
addsaver(geom3::highdetail, "3D highdetail");
|
|
|
|
addsaver(geom3::middetail, "3D middetail");
|
|
|
|
|
|
|
|
addsaver(rug::renderonce, "rug-renderonce");
|
|
|
|
addsaver(rug::rendernogl, "rug-rendernogl");
|
|
|
|
addsaver(rug::texturesize, "rug-texturesize");
|
|
|
|
addsaver(rug::scale, "rug-scale");
|
|
|
|
|
|
|
|
addsaverenum(pmodel, "used model");
|
|
|
|
addsaver(polygonal::SI, "polygon sides");
|
|
|
|
addsaver(polygonal::STAR, "polygon star factor");
|
|
|
|
addsaver(polygonal::deg, "polygonal degree");
|
2017-07-24 22:21:36 +00:00
|
|
|
addsaver(conformal::autobandhistory, "include history"); // check!
|
2017-07-16 21:00:55 +00:00
|
|
|
addsaver(conformal::lvspeed, "lineview speed");
|
|
|
|
|
|
|
|
addsaver(polygonal::maxcoef, "polynomial degree");
|
|
|
|
for(int i=0; i<polygonal::MSI; i++) {
|
|
|
|
addsaver(polygonal::coefr[i], "polynomial "+its(i)+".real");
|
|
|
|
addsaver(polygonal::coefi[i], "polynomial "+its(i)+".imag");
|
|
|
|
}
|
|
|
|
|
|
|
|
addsaver(conformal::bandhalf, "band width");
|
|
|
|
addsaver(conformal::bandsegment, "band segment");
|
|
|
|
addsaver(conformal::rotation, "conformal rotation");
|
|
|
|
addsaver(conformal::autoband, "automatic band");
|
|
|
|
addsaver(conformal::autobandhistory, "automatic band history");
|
|
|
|
addsaver(conformal::dospiral, "do spiral");
|
|
|
|
|
|
|
|
// control
|
|
|
|
|
|
|
|
addsaver(vid.joyvalue, "vid.joyvalue", 4800);
|
|
|
|
addsaver(vid.joyvalue2, "vid.joyvalue2", 5600);
|
|
|
|
addsaver(vid.joypanthreshold, "vid.joypanthreshold", 2500);
|
|
|
|
addsaver(vid.joypanspeed, "vid.joypanspeed", ISPANDORA ? 0.0001 : 0);
|
|
|
|
addsaver(autojoy, "autojoy");
|
|
|
|
|
|
|
|
vid.killreduction = 0;
|
|
|
|
|
2017-08-06 12:50:16 +00:00
|
|
|
addsaver(vid.skipstart, "skip the start menu", false);
|
|
|
|
addsaver(vid.quickmouse, "quick mouse", !ISPANDORA);
|
|
|
|
|
|
|
|
// colors
|
|
|
|
|
|
|
|
addsaver(backcolor, "color:background");
|
|
|
|
addsaver(forecolor, "color:foreground");
|
|
|
|
addsaver(bordcolor, "color:borders");
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
// modes
|
|
|
|
|
|
|
|
addsaverenum(geometry, "mode-geometry");
|
|
|
|
addsaver(shmup::on, "mode-shmup", false);
|
|
|
|
addsaver(hardcore, "mode-hardcore", false);
|
|
|
|
addsaver(chaosmode, "mode-chaos");
|
|
|
|
addsaver(inv::on, "mode-Orb Strategy");
|
|
|
|
addsaver(purehepta, "mode-heptagonal", false);
|
2017-07-24 22:21:36 +00:00
|
|
|
addsaver(peace::on, "mode-peace");
|
2017-08-06 12:50:16 +00:00
|
|
|
addsaver(peace::otherpuzzles, "mode-peace-submode");
|
|
|
|
addsaverenum(specialland, "land for special modes");
|
2017-07-24 22:21:36 +00:00
|
|
|
|
|
|
|
addsaver(viewdists, "expansion mode");
|
2017-10-08 12:49:49 +00:00
|
|
|
|
|
|
|
addsaver(vid.msgleft, "message style", 2);
|
|
|
|
addsaver(vid.msglimit, "message limit", 5);
|
2017-08-13 18:49:38 +00:00
|
|
|
|
|
|
|
#if CAP_SHMUP
|
|
|
|
shmup::initConfig();
|
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 22:21:36 +00:00
|
|
|
void resetModes() {
|
|
|
|
popAllGames();
|
2017-09-30 09:25:55 +00:00
|
|
|
firstland = laIce; vid.scfg.players = 1;
|
2017-07-24 22:21:36 +00:00
|
|
|
if(shmup::on) restartGame('s');
|
|
|
|
if(inv::on) restartGame('i');
|
|
|
|
if(chaosmode) restartGame('C');
|
|
|
|
if(purehepta) restartGame('7');
|
|
|
|
if(peace::on) restartGame('P');
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_TOUR
|
2017-07-24 22:21:36 +00:00
|
|
|
if(tour::on) restartGame('T');
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-07-24 22:21:36 +00:00
|
|
|
if(yendor::on) restartGame('y');
|
|
|
|
if(tactic::on) restartGame('t');
|
|
|
|
if(randomPatternsMode) restartGame('r');
|
|
|
|
if(geometry != gNormal) { targetgeometry = gNormal; restartGame('g'); }
|
|
|
|
}
|
2017-08-13 18:49:38 +00:00
|
|
|
|
|
|
|
#if CAP_CONFIG
|
2017-07-24 22:21:36 +00:00
|
|
|
void resetConfig() {
|
|
|
|
dynamicval<int> rx(vid.xres, 0);
|
|
|
|
dynamicval<int> ry(vid.yres, 0);
|
|
|
|
dynamicval<int> rf(vid.fsize, 0);
|
|
|
|
dynamicval<bool> rfs(vid.full, false);
|
|
|
|
for(auto s: savers)
|
|
|
|
if(s->name.substr(0,5) != "mode-")
|
|
|
|
s->reset();
|
|
|
|
}
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-07-24 22:21:36 +00:00
|
|
|
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-10 18:47:38 +00:00
|
|
|
void saveConfig() {
|
|
|
|
DEBB(DF_INIT, (debugfile,"save config\n"));
|
|
|
|
FILE *f = fopen(conffile, "wt");
|
|
|
|
if(!f) {
|
|
|
|
addMessage(s0 + "Could not open the config file: " + conffile);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
int pt_depth = 0, pt_camera = 0, pt_alpha = 0;
|
|
|
|
using namespace geom3;
|
|
|
|
if(tc_depth > tc_camera) pt_depth++;
|
|
|
|
if(tc_depth < tc_camera) pt_camera++;
|
|
|
|
if(tc_depth > tc_alpha ) pt_depth++;
|
|
|
|
if(tc_depth < tc_alpha ) pt_alpha ++;
|
|
|
|
if(tc_alpha > tc_camera) pt_alpha++;
|
|
|
|
if(tc_alpha < tc_camera) pt_camera++;
|
2017-07-16 21:00:55 +00:00
|
|
|
tc_alpha = pt_alpha;
|
|
|
|
tc_camera = pt_camera;
|
|
|
|
tc_depth = pt_depth;
|
2017-07-10 18:47:38 +00:00
|
|
|
}
|
2017-07-16 21:00:55 +00:00
|
|
|
|
|
|
|
for(auto s: savers) if(s->dosave())
|
|
|
|
fprintf(f, "%s=%s\n", s->name.c_str(), s->save().c_str());
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
fclose(f);
|
2017-07-22 23:33:27 +00:00
|
|
|
#if ISMOBILE==0
|
2017-07-10 18:47:38 +00:00
|
|
|
addMessage(s0 + "Configuration saved to: " + conffile);
|
|
|
|
#else
|
|
|
|
addMessage(s0 + "Configuration saved");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void readf(FILE *f, ld& x) {
|
|
|
|
double fl = x;
|
|
|
|
if(fscanf(f, "%lf", &fl))
|
|
|
|
;
|
|
|
|
x = fl;
|
|
|
|
}
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
void loadOldConfig(FILE *f) {
|
2017-07-22 23:33:27 +00:00
|
|
|
int gl=1, aa=1, bb=1, cc, dd;
|
2017-07-16 21:00:55 +00:00
|
|
|
int err;
|
|
|
|
float a, b, c, d;
|
|
|
|
err=fscanf(f, "%f%f%f%f\n", &a, &b, &c, &d);
|
|
|
|
if(err == 4) {
|
|
|
|
vid.scale = a; vid.eye = b; vid.alpha = c; vid.sspeed = d;
|
|
|
|
}
|
|
|
|
err=fscanf(f, "%d%d%d%d%d%d%d", &vid.wallmode, &vid.monmode, &vid.axes, &musicvolume, &vid.framelimit, &gl, &vid.antialias);
|
|
|
|
vid.usingGL = gl;
|
|
|
|
if(vid.antialias == 0) vid.antialias = AA_VERSION | AA_LINES | AA_LINEWIDTH;
|
|
|
|
if(vid.antialias == 1) vid.antialias = AA_NOGL | AA_VERSION | AA_LINES | AA_LINEWIDTH | AA_FONT;
|
|
|
|
double jps = vid.joypanspeed;
|
|
|
|
err=fscanf(f, "%d%d%d%lf%d%d", &vid.joyvalue, &vid.joyvalue2, &vid.joypanthreshold, &jps, &aa, &vid.flashtime);
|
|
|
|
vid.joypanspeed = jps;
|
|
|
|
autojoy = aa; aa = 0;
|
|
|
|
|
|
|
|
loadcs(f, vid.cs, 0);
|
|
|
|
|
|
|
|
aa=0; bb=0;
|
|
|
|
err=fscanf(f, "%d%d", &aa, &bb);
|
|
|
|
vid.darkhepta = aa; vid.shifttarget = bb;
|
|
|
|
|
2017-08-06 12:50:16 +00:00
|
|
|
aa = geometry; bb = specialland; cc = shmup::on; dd = hardcore;
|
2017-07-16 21:00:55 +00:00
|
|
|
err=fscanf(f, "%d%d%d%d", &aa, &bb, &cc, &dd);
|
2017-08-06 12:50:16 +00:00
|
|
|
geometry = eGeometry(aa); specialland = eLand(bb); shmup::on = cc; hardcore = dd;
|
2017-07-16 21:00:55 +00:00
|
|
|
|
|
|
|
shmup::loadConfig(f);
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
aa = rug::renderonce; bb = rug::rendernogl; cc = purehepta; dd = chaosmode;
|
|
|
|
int ee = vid.steamscore;
|
2017-07-16 21:00:55 +00:00
|
|
|
double rs = rug::scale;
|
|
|
|
err=fscanf(f, "%d%d%d%d%lf%d%d", &aa, &bb, &rug::texturesize, &cc, &rs, &ee, &dd);
|
|
|
|
rug::renderonce = aa; rug::rendernogl = bb; purehepta = cc; chaosmode = dd; vid.steamscore = ee;
|
|
|
|
rug::scale = rs;
|
|
|
|
|
2017-07-24 22:21:36 +00:00
|
|
|
aa=conformal::autobandhistory;
|
2017-07-16 21:00:55 +00:00
|
|
|
double ps = polygonal::STAR, lv = conformal::lvspeed;
|
|
|
|
int pmb = pmodel;
|
|
|
|
err=fscanf(f, "%d%d%lf%d%d%lf",
|
|
|
|
&pmb, &polygonal::SI, &ps, &polygonal::deg,
|
|
|
|
&aa, &lv);
|
|
|
|
pmodel = eModel(pmb);
|
2017-07-24 22:21:36 +00:00
|
|
|
conformal::autobandhistory = aa; polygonal::STAR = ps; conformal::lvspeed = lv;
|
2017-07-16 21:00:55 +00:00
|
|
|
|
|
|
|
aa=conformal::autoband; bb=conformal::autobandhistory; cc=conformal::dospiral;
|
|
|
|
err=fscanf(f, "%d%d%d%d%d%d",
|
|
|
|
&conformal::bandhalf, &conformal::bandsegment, &conformal::rotation,
|
|
|
|
&aa, &bb, &cc);
|
|
|
|
conformal::autoband = aa; conformal::autobandhistory = bb; conformal::dospiral = cc;
|
|
|
|
|
|
|
|
err=fscanf(f, "%d", &polygonal::maxcoef);
|
|
|
|
if(polygonal::maxcoef < 0) polygonal::maxcoef = 0;
|
|
|
|
if(polygonal::maxcoef > polygonal::MSI) polygonal::maxcoef = polygonal::MSI;
|
|
|
|
for(int i=0; i<=polygonal::maxcoef; i++) {
|
|
|
|
double re=0, im=0;
|
|
|
|
err=fscanf(f, "%lf%lf", &re, &im);
|
|
|
|
polygonal::coefr[i] = re;
|
|
|
|
polygonal::coefi[i] = im;
|
|
|
|
}
|
|
|
|
|
|
|
|
aa=vid.revcontrol; bb=vid.drawmousecircle;
|
|
|
|
d = vid.mspeed;
|
|
|
|
err=fscanf(f, "%d%d%d%f%d%d", &aa, &bb, &sightrange, &d, &effvolume, &vid.particles);
|
|
|
|
vid.mspeed = d;
|
|
|
|
if(sightrange < 4) sightrange = 4;
|
|
|
|
if(sightrange > 7) sightrange = 7;
|
|
|
|
vid.revcontrol = aa; vid.drawmousecircle = bb;
|
|
|
|
|
|
|
|
readf(f, geom3::depth); readf(f, geom3::camera); readf(f, geom3::wall_height);
|
|
|
|
readf(f, geom3::rock_wall_ratio); readf(f, geom3::human_wall_ratio);
|
|
|
|
readf(f, geom3::lake_top); readf(f, geom3::lake_bottom);
|
|
|
|
|
|
|
|
err=fscanf(f, "%d %d %d", &geom3::tc_depth, &geom3::tc_camera, &geom3::tc_alpha);
|
|
|
|
|
|
|
|
readf(f, geom3::highdetail);
|
|
|
|
geom3::middetail = 200; readf(f, geom3::middetail);
|
|
|
|
if(geom3::middetail == 200) {
|
|
|
|
if(ISMOBILE)
|
|
|
|
geom3::highdetail = 0, geom3::middetail = 3;
|
|
|
|
else
|
|
|
|
geom3::highdetail = geom3::middetail = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
int gso = glyphsortorder; err=fscanf(f, "%d", &gso); glyphsortorder = eGlyphsortorder(gso);
|
|
|
|
|
|
|
|
readf(f, vid.yshift); readf(f, vid.camera_angle); readf(f, vid.ballangle); readf(f, vid.ballproj);
|
|
|
|
|
|
|
|
jps = vid.linewidth;
|
|
|
|
err=fscanf(f, "%d%d%d%d%lf\n", &vid.mobilecompasssize, &vid.aurastr, &vid.aurasmoothen, &vid.graphglyph, &jps);
|
|
|
|
vid.linewidth = jps;
|
|
|
|
}
|
|
|
|
|
|
|
|
map<string, shared_ptr<supersaver> > allconfigs;
|
|
|
|
|
|
|
|
void parseline(const string& str) {
|
|
|
|
for(int i=0; i<size(str); i++) if(str[i] == '=') {
|
|
|
|
string cname = str.substr(0, i);
|
|
|
|
if(!allconfigs.count(cname)) {
|
|
|
|
printf("Warning: unknown config variable: %s\n", str.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto sav = allconfigs[cname];
|
|
|
|
sav->load(str.substr(i+1));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
printf("Warning: config line without equality sign: %s\n", str.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void loadNewConfig(FILE *f) {
|
|
|
|
for(auto& c: savers) allconfigs[c->name] = c;
|
|
|
|
string rd;
|
|
|
|
while(true) {
|
|
|
|
int c = fgetc(f);
|
|
|
|
if(c == -1) break;
|
|
|
|
if(c == 10 || c == 13) {
|
|
|
|
if(rd != "") parseline(rd);
|
|
|
|
rd = "";
|
|
|
|
}
|
|
|
|
else rd += c;
|
|
|
|
}
|
|
|
|
allconfigs.clear();
|
|
|
|
}
|
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
void loadConfig() {
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
DEBB(DF_INIT, (debugfile,"load config\n"));
|
2017-07-10 18:47:38 +00:00
|
|
|
vid.xres = 9999; vid.yres = 9999; vid.framelimit = 300;
|
|
|
|
FILE *f = fopen(conffile, "rt");
|
|
|
|
if(f) {
|
|
|
|
int err;
|
2017-07-16 21:00:55 +00:00
|
|
|
int fs;
|
2017-07-10 18:47:38 +00:00
|
|
|
err=fscanf(f, "%d%d%d%d", &vid.xres, &vid.yres, &fs, &vid.fsize);
|
2017-07-16 21:00:55 +00:00
|
|
|
if(!err)
|
|
|
|
loadNewConfig(f);
|
|
|
|
else {
|
|
|
|
vid.full = fs;
|
|
|
|
loadOldConfig(f);
|
2017-07-10 18:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
DEBB(DF_INIT, (debugfile,"Loaded configuration: %s\n", conffile));
|
|
|
|
}
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
polygonal::solve();
|
2017-07-10 18:47:38 +00:00
|
|
|
precalc();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void showAllConfig() {
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addItem(XLAT("exit configuration"), 'v');
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addItem(XLAT("save the current config"), 's');
|
2017-07-12 16:03:53 +00:00
|
|
|
if(getcstat == 's')
|
|
|
|
mouseovers = XLAT("Config file: %1", conffile);
|
2017-07-10 18:47:38 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void handleAllConfig(int sym, int uni) {
|
|
|
|
if(sym == SDLK_F1 || uni == 'h') gotoHelp(help);
|
|
|
|
|
|
|
|
else if(uni == 'v') popScreen();
|
|
|
|
else if(sym == SDLK_ESCAPE) popScreen();
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-10 18:47:38 +00:00
|
|
|
else if(uni == 's') saveConfig();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void showGraphConfig() {
|
2017-07-12 17:50:39 +00:00
|
|
|
gamescreen(0);
|
2017-08-06 12:50:16 +00:00
|
|
|
cmode = vid.xres > vid.yres * 1.4 ? sm::SIDE : 0;
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
dialog::init(XLAT("graphics configuration"));
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_GLORNOT
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addBoolItem(XLAT("openGL mode"), vid.usingGL, 'o');
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!vid.usingGL)
|
|
|
|
dialog::addBoolItem(XLAT("anti-aliasing"), vid.antialias & AA_NOGL, 'O');
|
|
|
|
|
|
|
|
if(vid.usingGL)
|
|
|
|
dialog::addSelItem(XLAT("anti-aliasing"),
|
|
|
|
(vid.antialias & AA_POLY) ? "polygons" :
|
|
|
|
(vid.antialias & AA_LINES) ? "lines" :
|
|
|
|
(vid.antialias & AA_MULTI) ? "multisampling" :
|
|
|
|
"NO", 'O');
|
|
|
|
|
|
|
|
if(vid.usingGL) {
|
|
|
|
dialog::addSelItem(XLAT("line width"), fts(vid.linewidth), 'w');
|
|
|
|
// dialog::addBoolItem(XLAT("finer lines at the boundary"), vid.antialias & AA_LINEWIDTH, 'b');
|
|
|
|
}
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_FRAMELIMIT
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addSelItem(XLAT("framerate limit"), its(vid.framelimit), 'l');
|
2017-07-12 16:03:53 +00:00
|
|
|
if(getcstat == 'l')
|
|
|
|
mouseovers = XLAT("Reduce the framerate limit to conserve CPU energy");
|
2017-07-10 18:47:38 +00:00
|
|
|
#endif
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if !ISIOS && !ISWEB
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addBoolItem(XLAT("fullscreen mode"), (vid.full), 'f');
|
|
|
|
#endif
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("scrolling speed"), fts(vid.sspeed), 'a');
|
2017-07-12 16:03:53 +00:00
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addSelItem(XLAT("movement animation speed"), fts(vid.mspeed), 'm');
|
|
|
|
|
|
|
|
dialog::addBoolItem(XLAT("extra graphical effects"), (vid.particles), 'u');
|
|
|
|
|
|
|
|
#ifdef WHATEVER
|
|
|
|
dialog::addSelItem(XLAT("whatever"), fts(whatever), 'j');
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char *glyphsortnames[6] = {
|
|
|
|
"first on top", "first on bottom",
|
|
|
|
"last on top", "last on bottom",
|
|
|
|
"by land", "by number"
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *glyphmodenames[3] = {"letters", "auto", "images"};
|
|
|
|
dialog::addSelItem(XLAT("inventory/kill sorting"), XLAT(glyphsortnames[glyphsortorder]), 'k');
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("inventory/kill mode"), XLAT(glyphmodenames[vid.graphglyph]), 'd');
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if ISMOBILE==1
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addSelItem(XLAT("font scale"), its(fontscale), 'b');
|
|
|
|
#endif
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("sight range"), its(sightrange), 'r');
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if ISMOBILE==1
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addSelItem(XLAT("compass size"), its(vid.mobilecompasssize), 'c');
|
|
|
|
#endif
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("aura brightness"), its(vid.aurastr), 'z');
|
|
|
|
dialog::addSelItem(XLAT("aura smoothening factor"), its(vid.aurasmoothen), 'x');
|
|
|
|
|
|
|
|
showAllConfig();
|
|
|
|
dialog::display();
|
|
|
|
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
|
|
|
|
if(uni == 'O') uni = 'o', shiftmul = -1;
|
|
|
|
|
|
|
|
char xuni = uni | 96;
|
|
|
|
|
|
|
|
if(xuni == 'u') vid.particles = !vid.particles;
|
|
|
|
if(xuni == 'd') vid.graphglyph = (1+vid.graphglyph)%3;
|
|
|
|
|
2017-07-12 17:50:39 +00:00
|
|
|
if(xuni == 'j')
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(whatever, -10, 10, 1, 0, XLAT("whatever"),
|
|
|
|
XLAT("Whatever."));
|
|
|
|
|
|
|
|
if(xuni == 'a') dialog::editNumber(vid.sspeed, -5, 5, 1, 0,
|
|
|
|
XLAT("scrolling speed"),
|
2017-07-12 16:03:53 +00:00
|
|
|
XLAT("+5 = center instantly, -5 = do not center the map")
|
|
|
|
+ "\n\n" +
|
|
|
|
XLAT("press Space or Home to center on the PC"));
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
if(xuni == 'm') dialog::editNumber(vid.mspeed, -5, 5, 1, 0,
|
|
|
|
XLAT("movement animation speed"),
|
|
|
|
XLAT("+5 = move instantly"));
|
|
|
|
|
2017-07-12 17:50:39 +00:00
|
|
|
if(xuni == 'r')
|
2017-08-18 00:58:55 +00:00
|
|
|
dialog::editNumber(sightrange, 4, allowIncreasedSight() ? 10 : 7, 1, 7, XLAT("sight range"),
|
2017-07-10 18:47:38 +00:00
|
|
|
XLAT("Roughly 42% cells are on the edge of your sight range. Reducing "
|
|
|
|
"the sight range makes HyperRogue work faster, but also makes "
|
|
|
|
"the game effectively harder."));
|
|
|
|
|
|
|
|
if(xuni == 'k') {
|
|
|
|
glyphsortorder = eGlyphsortorder((glyphsortorder+6+(shiftmul>0?1:-1)) % gsoMAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(xuni == 'f') switchFullscreen();
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_GLORNOT
|
2017-07-10 18:47:38 +00:00
|
|
|
if(xuni == 'o' && shiftmul > 0) switchGL();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(xuni == 'o' && shiftmul < 0) {
|
|
|
|
if(!vid.usingGL)
|
|
|
|
vid.antialias ^= AA_NOGL | AA_FONT;
|
|
|
|
else if(vid.antialias & AA_MULTI)
|
|
|
|
vid.antialias ^= AA_MULTI;
|
|
|
|
else if(vid.antialias & AA_POLY)
|
|
|
|
vid.antialias ^= AA_POLY | AA_LINES | AA_MULTI;
|
|
|
|
else if(vid.antialias & AA_LINES)
|
|
|
|
vid.antialias |= AA_POLY;
|
|
|
|
else
|
|
|
|
vid.antialias |= AA_LINES;
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_SDL
|
2017-07-10 18:47:38 +00:00
|
|
|
setvideomode();
|
2017-07-22 23:33:27 +00:00
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// if(xuni == 'b') vid.antialias ^= AA_LINEWIDTH;
|
|
|
|
|
|
|
|
if(xuni == 'w' && vid.usingGL)
|
|
|
|
dialog::editNumber(vid.linewidth, 0, 10, 0.1, 1, XLAT("line width"), "");
|
|
|
|
|
|
|
|
if(xuni == 'c')
|
|
|
|
dialog::editNumber(vid.mobilecompasssize, 0, 100, 10, 20, XLAT("compass size"), "");
|
2017-07-22 23:33:27 +00:00
|
|
|
|
|
|
|
#if CAP_FRAMELIMIT
|
2017-07-10 18:47:38 +00:00
|
|
|
if(xuni == 'l')
|
|
|
|
dialog::editNumber(vid.framelimit, 5, 300, 10, 300, XLAT("framerate limit"), "");
|
2017-07-22 23:33:27 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ISMOBILE
|
2017-07-10 18:47:38 +00:00
|
|
|
if(xuni =='b')
|
|
|
|
dialog::editNumber(fontscale, 0, 400, 10, 100, XLAT("font scale"), "");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(xuni =='z')
|
|
|
|
dialog::editNumber(vid.aurastr, 0, 256, 10, 128, XLAT("aura brightness"), "");
|
|
|
|
else if(xuni =='x')
|
|
|
|
dialog::editNumber(vid.aurasmoothen, 1, 180, 1, 5, XLAT("aura smoothening factor"), "");
|
|
|
|
|
|
|
|
handleAllConfig(sym, xuni);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void switchFullscreen() {
|
|
|
|
vid.full = !vid.full;
|
2017-07-22 23:33:27 +00:00
|
|
|
#if ISANDROID
|
2017-07-10 18:47:38 +00:00
|
|
|
addMessage(XLAT("Reenter HyperRogue to apply this setting"));
|
2017-08-06 12:50:16 +00:00
|
|
|
ANDROID_SETTINGS
|
2017-07-10 18:47:38 +00:00
|
|
|
#endif
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_SDL
|
2017-07-10 18:47:38 +00:00
|
|
|
if(true) {
|
|
|
|
vid.xres = vid.full ? vid.xscr : 9999;
|
|
|
|
vid.yres = vid.full ? vid.yscr : 9999;
|
|
|
|
extern bool setfsize;
|
|
|
|
setfsize = true;
|
|
|
|
}
|
|
|
|
setvideomode();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void switchGL() {
|
|
|
|
vid.usingGL = !vid.usingGL;
|
|
|
|
if(vid.usingGL) addMessage(XLAT("openGL mode enabled"));
|
|
|
|
if(!vid.usingGL) addMessage(XLAT("openGL mode disabled"));
|
2017-08-06 12:50:16 +00:00
|
|
|
ANDROID_SETTINGS;
|
|
|
|
#if CAP_SDL
|
2017-07-10 18:47:38 +00:00
|
|
|
setvideomode();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-07-24 22:21:36 +00:00
|
|
|
void resetConfigMenu();
|
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
void showBasicConfig() {
|
|
|
|
gamescreen(3);
|
|
|
|
const char *axmodes[5] = {"OFF", "auto", "light", "heavy", "arrows"};
|
|
|
|
dialog::init(XLAT("basic configuration"));
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
if(CAP_TRANS) dialog::addSelItem(XLAT("language"), XLAT("EN"), 'l');
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addSelItem(XLAT("player character"), numplayers() > 1 ? "" : csname(vid.cs), 'g');
|
2017-07-12 16:03:53 +00:00
|
|
|
if(getcstat == 'g')
|
|
|
|
mouseovers = XLAT("Affects looks and grammar");
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
if(CAP_AUDIO) {
|
|
|
|
dialog::addSelItem(XLAT("background music volume"), its(musicvolume), 'b');
|
|
|
|
dialog::addSelItem(XLAT("sound effects volume"), its(effvolume), 'e');
|
|
|
|
}
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
// input:
|
|
|
|
dialog::addSelItem(XLAT("help for keyboard users"), XLAT(axmodes[vid.axes]), 'c');
|
|
|
|
|
|
|
|
dialog::addBoolItem(XLAT("reverse pointer control"), (vid.revcontrol), 'r');
|
|
|
|
dialog::addBoolItem(XLAT("draw circle around the target"), (vid.drawmousecircle), 'd');
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("message flash time"), its(vid.flashtime), 't');
|
2017-10-08 12:49:49 +00:00
|
|
|
dialog::addSelItem(XLAT("limit messages shown"), its(vid.msglimit), 'z');
|
|
|
|
|
|
|
|
const char* msgstyles[3] = {"centered", "left-aligned", "line-broken"};
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("message style"), XLAT(msgstyles[vid.msgleft]), 'a');
|
2017-07-22 23:33:27 +00:00
|
|
|
|
|
|
|
#if ISMOBILE
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addBoolItem(XLAT("targetting ranged Orbs long-click only"), (vid.shifttarget&2), 'i');
|
|
|
|
#else
|
|
|
|
dialog::addBoolItem(XLAT("targetting ranged Orbs Shift+click only"), (vid.shifttarget&1), 'i');
|
|
|
|
#endif
|
2017-07-22 23:33:27 +00:00
|
|
|
|
|
|
|
#if ISSTEAM
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::addBoolItem(XLAT("send scores to Steam leaderboards"), (vid.steamscore&1), 'l');
|
|
|
|
#endif
|
|
|
|
|
2017-08-06 12:50:16 +00:00
|
|
|
dialog::addBoolItem(XLAT("skip the start menu"), vid.skipstart, 'm');
|
|
|
|
#if !ISMOBILE
|
|
|
|
dialog::addBoolItem(XLAT("quick mouse"), vid.quickmouse, 'M');
|
|
|
|
#endif
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
if(CAP_SHMUP && !ISMOBILE)
|
|
|
|
dialog::addSelItem(XLAT("configure keys/joysticks"), "", 'p');
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-24 22:21:36 +00:00
|
|
|
dialog::addItem(XLAT("reset all configuration"), 'R');
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-08-06 12:50:16 +00:00
|
|
|
showAllConfig();
|
2017-07-24 22:21:36 +00:00
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::display();
|
|
|
|
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
|
|
|
|
char xuni = uni | 96;
|
|
|
|
|
|
|
|
if(uni >= 32 && uni < 64) xuni = uni;
|
2017-08-06 12:50:16 +00:00
|
|
|
|
|
|
|
if(uni == 'M') vid.quickmouse = !vid.quickmouse;
|
|
|
|
else if(xuni == 'm') vid.skipstart = !vid.skipstart;
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
if(xuni == 'c') { vid.axes += 60 + (shiftmul > 0 ? 1 : -1); vid.axes %= 5; }
|
2017-07-22 23:33:27 +00:00
|
|
|
|
|
|
|
if(CAP_AUDIO && xuni == 'b') {
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(musicvolume, 0, 128, 10, 60, XLAT("background music volume"), "");
|
|
|
|
}
|
2017-07-22 23:33:27 +00:00
|
|
|
if(CAP_AUDIO && xuni == 'e') {
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(effvolume, 0, 128, 10, 60, XLAT("sound effects volume"), "");
|
|
|
|
}
|
|
|
|
|
2017-08-06 12:50:16 +00:00
|
|
|
if(CAP_TRANS && xuni == 'l')
|
|
|
|
pushScreen(selectLanguageScreen);
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
if(xuni == 'g') pushScreen(showCustomizeChar);
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_SHMUP
|
2017-07-10 18:47:38 +00:00
|
|
|
if(xuni == 'p') {
|
|
|
|
pushScreen(shmup::showShmupConfig);
|
|
|
|
multi::shmupcfg = shmup::on;
|
|
|
|
}
|
2017-07-22 23:33:27 +00:00
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-24 22:21:36 +00:00
|
|
|
if(uni == 'r') vid.revcontrol = !vid.revcontrol;
|
2017-07-10 18:47:38 +00:00
|
|
|
if(xuni == 'd') vid.drawmousecircle = !vid.drawmousecircle;
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-24 22:21:36 +00:00
|
|
|
if(uni == 'R') pushScreen(resetConfigMenu);
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if ISSTEAM
|
2017-07-10 18:47:38 +00:00
|
|
|
if(xuni == 'l') vid.steamscore = vid.steamscore^1;
|
|
|
|
#endif
|
|
|
|
if(xuni == 't')
|
|
|
|
dialog::editNumber(vid.flashtime, 0, 64, 1, 8, XLAT("message flash time"),
|
|
|
|
XLAT("How long should the messages stay on the screen."));
|
2017-10-08 12:49:49 +00:00
|
|
|
|
|
|
|
if(xuni == 'z')
|
|
|
|
dialog::editNumber(vid.msglimit, 0, 64, 1, 5, XLAT("limit messages shown"),
|
|
|
|
XLAT("Maximum number of messages on screen."));
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
if(xuni == 'i') { vid.shifttarget = vid.shifttarget^3; }
|
2017-10-08 12:49:49 +00:00
|
|
|
|
|
|
|
if(xuni == 'a') { vid.msgleft = (1+vid.msgleft) % 3; }
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
handleAllConfig(sym, xuni);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-07-22 23:33:27 +00:00
|
|
|
#if CAP_SDLJOY
|
2017-07-10 18:47:38 +00:00
|
|
|
void showJoyConfig() {
|
|
|
|
gamescreen(4);
|
|
|
|
|
|
|
|
dialog::init(XLAT("joystick configuration"));
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("first joystick position (movement)"), its(joyx)+","+its(joyy), 0);
|
|
|
|
dialog::addSelItem(XLAT("second joystick position (panning)"), its(panjoyx)+","+its(panjoyy), 0);
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("joystick mode"), XLAT(autojoy ? "automatic" : "manual"), 'p');
|
2017-07-12 16:03:53 +00:00
|
|
|
if(getcstat == 'p') {
|
|
|
|
if(autojoy)
|
|
|
|
mouseovers = XLAT("joystick mode: automatic (release the joystick to move)");
|
|
|
|
if(!autojoy)
|
|
|
|
mouseovers = XLAT("joystick mode: manual (press a button to move)");
|
|
|
|
}
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("first joystick: movement threshold"), its(vid.joyvalue), 'a');
|
|
|
|
dialog::addSelItem(XLAT("first joystick: execute movement threshold"), its(vid.joyvalue2), 'b');
|
|
|
|
dialog::addSelItem(XLAT("second joystick: pan threshold"), its(vid.joypanthreshold), 'c');
|
|
|
|
dialog::addSelItem(XLAT("second joystick: panning speed"), fts(vid.joypanspeed * 1000), 'd');
|
|
|
|
|
|
|
|
dialog::addItem(XLAT("back"), 'v');
|
|
|
|
dialog::display();
|
|
|
|
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
char xuni = uni | 96;
|
|
|
|
if(xuni == 'p') autojoy = !autojoy;
|
|
|
|
else if(xuni == 'a')
|
|
|
|
dialog::editNumber(vid.joyvalue, 0, 32768, 100, 4800, XLAT("first joystick: movement threshold"), "");
|
|
|
|
else if(xuni == 'b')
|
|
|
|
dialog::editNumber(vid.joyvalue2, 0, 32768, 100, 5600, XLAT("first joystick: execute movement threshold"), "");
|
|
|
|
else if(xuni == 'c')
|
|
|
|
dialog::editNumber(vid.joypanthreshold, 0, 32768, 100, 2500, XLAT("second joystick: pan threshold"), "");
|
|
|
|
else if(xuni == 'd')
|
|
|
|
dialog::editNumber(vid.joypanspeed, 0, 1e-2, 1e-5, 1e-4, XLAT("second joystick: panning speed"), "");
|
|
|
|
|
|
|
|
else if(doexiton(sym, uni)) popScreen();
|
|
|
|
};
|
|
|
|
}
|
2017-07-22 23:33:27 +00:00
|
|
|
#endif
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
void projectionDialog() {
|
|
|
|
geom3::tc_alpha = ticks;
|
|
|
|
dialog::editNumber(vid.alpha, -5, 5, .1, 1,
|
|
|
|
XLAT("projection"),
|
|
|
|
XLAT("HyperRogue uses the Minkowski hyperboloid model internally. "
|
2017-07-12 17:50:39 +00:00
|
|
|
"Klein and Poincaré models can be obtained by perspective, "
|
2017-07-10 18:47:38 +00:00
|
|
|
"and the Gans model is obtained by orthogonal projection. "
|
|
|
|
// "This parameter specifies the distance from the hyperboloid center "
|
|
|
|
// "to the eye. "
|
|
|
|
"See also the conformal mode (in the special modes menu) "
|
|
|
|
"for more models."));
|
|
|
|
}
|
|
|
|
|
|
|
|
string explain3D(ld *param) {
|
|
|
|
using namespace geom3;
|
|
|
|
if(param == &highdetail || param == &middetail)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"Objects at distance less than %1 absolute units "
|
|
|
|
"from the center will be displayed with high "
|
|
|
|
"detail, and at distance at least %2 with low detail.",
|
|
|
|
fts3(highdetail), fts3(middetail)
|
|
|
|
);
|
|
|
|
|
|
|
|
if(param == &camera)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"Camera is placed %1 absolute units above a plane P in a three-dimensional "
|
|
|
|
"world. Ground level is actually an equidistant surface, %2 absolute units "
|
|
|
|
"below the plane P. The plane P (as well as the ground level or any "
|
|
|
|
"other equidistant surface below it) is viewed at an angle of %3 "
|
|
|
|
"(the tangent of the angle between the point in "
|
|
|
|
"the center of your vision and a faraway location is 1/cosh(c) = %4).",
|
|
|
|
fts3(camera),
|
|
|
|
fts3(depth),
|
|
|
|
fts3(atan(1/cosh(camera))*2*180/M_PI),
|
|
|
|
fts3(1/cosh(camera)));
|
|
|
|
if(param == &depth)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"Ground level is actually an equidistant surface, "
|
|
|
|
"%1 absolute units below the plane P. "
|
|
|
|
"Theoretically, this value affects the world -- "
|
|
|
|
"for example, eagles could fly %2 times faster by "
|
|
|
|
"flying above the ground level, on the plane P -- "
|
|
|
|
"but the actual game mechanics are not affected. "
|
|
|
|
"(Distances reported by the vector graphics editor "
|
|
|
|
"are not about points on the ground level, but "
|
|
|
|
"about the matching points on the plane P -- "
|
|
|
|
"divide them by the factor above to get actual "
|
|
|
|
"distances.)"
|
|
|
|
|
|
|
|
,
|
|
|
|
fts3(depth), fts3(cosh(depth)));
|
|
|
|
// mention absolute units
|
|
|
|
|
|
|
|
if(param == &vid.alpha)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"If we are viewing an equidistant g absolute units below a plane, "
|
|
|
|
"from a point c absolute units above the plane, this corresponds "
|
|
|
|
"to viewing a Minkowski hyperboloid from a point "
|
|
|
|
"tanh(g)/tanh(c) units below the center. This in turn corresponds to "
|
2017-07-12 17:50:39 +00:00
|
|
|
"the PoincarÚ model for g=c, and Klein-Beltrami model for g=0.");
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
if(param == &wall_height)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"The height of walls, in absolute units. For the current values of g and c, "
|
|
|
|
"wall height of %1 absolute units corresponds to projection value of %2.",
|
|
|
|
fts3(wall_height), fts3(factor_to_projection(geom3::WALL)));
|
|
|
|
|
|
|
|
if(param == &rock_wall_ratio)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"The ratio of Rock III to walls is %1, so Rock III are %2 absolute units high. "
|
|
|
|
"Length of paths on the Rock III level is %3 of the corresponding length on the "
|
|
|
|
"ground level.",
|
|
|
|
fts3(rock_wall_ratio), fts3(wall_height * rock_wall_ratio),
|
|
|
|
fts3(cosh(depth - wall_height * rock_wall_ratio) / cosh(depth)));
|
|
|
|
|
|
|
|
if(param == &human_wall_ratio)
|
|
|
|
return
|
|
|
|
XLAT(
|
|
|
|
"Humans are %1 "
|
|
|
|
"absolute units high. Your head travels %2 times the distance travelled by your "
|
|
|
|
"feet.",
|
|
|
|
fts3(wall_height * human_wall_ratio),
|
|
|
|
fts3(cosh(depth - wall_height * human_wall_ratio) / cosh(depth)));
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void show3D() {
|
2017-07-12 17:50:39 +00:00
|
|
|
gamescreen(0);
|
|
|
|
cmode = sm::SIDE | sm::A3;
|
2017-07-10 18:47:38 +00:00
|
|
|
using namespace geom3;
|
|
|
|
dialog::init(XLAT("3D configuration"));
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("High detail range"), fts(highdetail), 'n');
|
|
|
|
dialog::addSelItem(XLAT("Mid detail range"), fts(middetail), 'm');
|
|
|
|
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addSelItem(XLAT("Camera level above the plane"), fts3(camera), 'c');
|
|
|
|
dialog::addSelItem(XLAT("Ground level below the plane"), fts3(depth), 'g');
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("Projection at the ground level"), fts3(vid.alpha), 'a');
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addSelItem(XLAT("Height of walls"), fts3(wall_height), 'w');
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("Rock-III to wall ratio"), fts3(rock_wall_ratio), 'r');
|
|
|
|
dialog::addSelItem(XLAT("Human to wall ratio"), fts3(human_wall_ratio), 'h');
|
|
|
|
dialog::addSelItem(XLAT("Level of water surface"), fts3(lake_top), 'l');
|
|
|
|
dialog::addSelItem(XLAT("Level of water bottom"), fts3(lake_bottom), 'k');
|
|
|
|
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addSelItem(XLAT("Y shift"), fts3(vid.yshift), 'y');
|
|
|
|
dialog::addSelItem(XLAT("camera rotation"), fts3(vid.camera_angle), 's');
|
|
|
|
dialog::addSelItem(XLAT("distance between eyes"), fts3(vid.eye), 'e');
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addBoolItem(XLAT("ball model"), pmodel == mdBall, 'B');
|
|
|
|
dialog::addBoolItem(XLAT("hyperboloid model"), pmodel == mdHyperboloid, 'M');
|
|
|
|
dialog::addSelItem(XLAT("camera rotation in ball model"), fts3(vid.ballangle), 'b');
|
|
|
|
dialog::addSelItem(XLAT("projection in ball model"), fts3(vid.ballproj), 'x');
|
|
|
|
|
|
|
|
dialog::addBreak(50);
|
|
|
|
if(!(wmspatial || mmspatial))
|
|
|
|
dialog::addInfo(XLAT("set 3D monsters or walls in basic config first"));
|
|
|
|
else if(invalid != "")
|
|
|
|
dialog::addInfo(XLAT("error: "+invalid));
|
|
|
|
else
|
|
|
|
dialog::addInfo(XLAT("parameters set correctly"));
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addItem(XLAT("exit 3D configuration"), 'v');
|
|
|
|
dialog::display();
|
|
|
|
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
using namespace geom3;
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
|
|
|
|
if(uni == 'n')
|
2017-07-12 17:50:39 +00:00
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(geom3::highdetail, 0, 5, .5, 7, XLAT("High detail range"), "");
|
|
|
|
else if(uni == 'm')
|
2017-07-12 17:50:39 +00:00
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(geom3::middetail, 0, 5, .5, 7, XLAT("Mid detail range"), "");
|
|
|
|
else if(uni == 'c')
|
|
|
|
tc_camera = ticks,
|
|
|
|
dialog::editNumber(geom3::camera, 0, 5, .1, 1, XLAT("Camera level above the plane"), "");
|
|
|
|
else if(uni == 'g')
|
|
|
|
tc_depth = ticks,
|
|
|
|
dialog::editNumber(geom3::depth, 0, 5, .1, 1, XLAT("Ground level below the plane"), "");
|
|
|
|
else if(uni == 'a')
|
|
|
|
projectionDialog();
|
|
|
|
else if(uni == 'w')
|
|
|
|
dialog::editNumber(geom3::wall_height, 0, 1, .1, .3, XLAT("Height of walls"), "");
|
|
|
|
else if(uni == 'l')
|
|
|
|
dialog::editNumber(geom3::lake_top, 0, 1, .1, .25, XLAT("Level of water surface"), "");
|
|
|
|
else if(uni == 'k')
|
|
|
|
dialog::editNumber(geom3::lake_bottom, 0, 1, .1, .9, XLAT("Level of water bottom"), "");
|
|
|
|
else if(uni == 'r')
|
|
|
|
dialog::editNumber(geom3::rock_wall_ratio, 0, 1, .1, .9, XLAT("Rock-III to wall ratio"), "");
|
|
|
|
else if(uni == 'h')
|
|
|
|
dialog::editNumber(geom3::human_wall_ratio, 0, 1, .1, .7, XLAT("Human to wall ratio"), "");
|
|
|
|
|
2017-07-12 17:50:39 +00:00
|
|
|
else if(uni == 'e')
|
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(vid.eye, -10, 10, 0.01, 0, XLAT("distance between eyes"),
|
|
|
|
XLAT("Watch the Minkowski hyperboloid or the hypersian rug mode with the "
|
|
|
|
"red/cyan 3D glasses."));
|
|
|
|
|
|
|
|
else if(uni == 'y')
|
2017-07-12 17:50:39 +00:00
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(vid.yshift, 0, 1, .1, 0, XLAT("Y shift"),
|
|
|
|
"Don't center on the player character."
|
|
|
|
);
|
|
|
|
else if(uni == 's')
|
2017-07-12 17:50:39 +00:00
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(vid.camera_angle, -180, 180, 5, 0, XLAT("camera rotation"),
|
|
|
|
"Rotate the camera. Can be used to obtain a first person perspective, "
|
|
|
|
"or third person perspective when combined with Y shift."
|
|
|
|
);
|
|
|
|
else if(uni == 'b')
|
2017-07-12 17:50:39 +00:00
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(vid.ballangle, 0, 90, 5, 0, XLAT("camera rotation in ball model"),
|
|
|
|
"Rotate the camera in ball/hyperboloid model.");
|
|
|
|
else if(uni == 'x')
|
2017-07-12 17:50:39 +00:00
|
|
|
cmode &= sm::A3,
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::editNumber(vid.ballproj, 0, 100, .1, 0, XLAT("projection in ball model"),
|
|
|
|
"This parameter affects the ball model the same way as the projection parameter affects the disk model.");
|
|
|
|
else if(uni == 'B')
|
|
|
|
pmodel = (pmodel == mdBall ? mdDisk : mdBall);
|
|
|
|
else if(uni == 'M')
|
|
|
|
pmodel = (pmodel == mdHyperboloid ? mdDisk : mdHyperboloid);
|
|
|
|
|
|
|
|
else if(doexiton(sym, uni)) popScreen();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-07-16 21:00:55 +00:00
|
|
|
void switchcolor(unsigned int& c, unsigned int* cs) {
|
2017-07-10 18:47:38 +00:00
|
|
|
dialog::openColorDialog(c, cs);
|
|
|
|
}
|
|
|
|
|
2017-08-06 12:50:16 +00:00
|
|
|
double cc_footphase;
|
|
|
|
int lmousex, lmousey;
|
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
void showCustomizeChar() {
|
2017-08-06 12:50:16 +00:00
|
|
|
|
|
|
|
cc_footphase += hypot(mousex - lmousex, mousey - lmousey);
|
|
|
|
lmousex = mousex; lmousey = mousey;
|
|
|
|
|
2017-07-10 18:47:38 +00:00
|
|
|
gamescreen(4);
|
|
|
|
dialog::init(XLAT("Customize character"));
|
|
|
|
|
|
|
|
if(shmup::on || multi::players) shmup::cpid = shmup::cpid_edit % shmup::players;
|
|
|
|
charstyle& cs = getcs();
|
|
|
|
|
|
|
|
dialog::addSelItem(XLAT("character"), csname(cs), 'g');
|
|
|
|
dialog::addColorItem(XLAT("skin color"), cs.skincolor, 's');
|
|
|
|
dialog::addColorItem(XLAT("weapon color"), cs.swordcolor, 'w');
|
|
|
|
dialog::addColorItem(XLAT("hair color"), cs.haircolor, 'h');
|
|
|
|
|
|
|
|
if(cs.charid >= 1) dialog::addColorItem(XLAT("dress color"), cs.dresscolor, 'd');
|
|
|
|
else dialog::addBreak(100);
|
|
|
|
if(cs.charid == 3) dialog::addColorItem(XLAT("dress color II"), cs.dresscolor2, 'f');
|
|
|
|
else dialog::addBreak(100);
|
|
|
|
|
|
|
|
dialog::addColorItem(XLAT("movement color"), cs.uicolor, 'u');
|
|
|
|
|
|
|
|
if(!shmup::on && multi::players == 1) dialog::addSelItem(XLAT("save whom"), XLAT1(minf[moPrincess].name), 'p');
|
|
|
|
|
|
|
|
if(numplayers() > 1) dialog::addSelItem(XLAT("player"), its(shmup::cpid+1), 'a');
|
|
|
|
|
|
|
|
dialog::addBreak(50);
|
|
|
|
dialog::addItem(XLAT("return to the game"), 'v');
|
|
|
|
dialog::display();
|
|
|
|
|
|
|
|
int firsty = dialog::items[0].position / 2;
|
2017-08-06 12:50:16 +00:00
|
|
|
int scale = firsty - 2 * vid.fsize;
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
initquickqueue();
|
2017-08-06 12:50:16 +00:00
|
|
|
transmatrix V = atscreenpos(vid.xres/2, firsty, scale);
|
2017-07-10 18:47:38 +00:00
|
|
|
|
|
|
|
double alpha = atan2(mousex - vid.xres/2, mousey - firsty) - M_PI/2;
|
2017-08-06 12:50:16 +00:00
|
|
|
drawMonsterType(moPlayer, NULL, V * spin(alpha), 0, cc_footphase / scale);
|
2017-07-10 18:47:38 +00:00
|
|
|
quickqueue();
|
|
|
|
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
char xuni = uni | 96;
|
|
|
|
|
|
|
|
if(shmup::on || multi::players) shmup::cpid = shmup::cpid_edit % shmup::players;
|
|
|
|
charstyle& cs = getcs();
|
|
|
|
if(xuni == 'a') { shmup::cpid_edit++; shmup::cpid_edit %= 60; }
|
|
|
|
if(xuni == 'g') {
|
|
|
|
cs.charid++;
|
2017-08-06 12:50:16 +00:00
|
|
|
if(cs.charid == 2 && !princess::everSaved && !autocheat) cs.charid = 4;
|
2017-07-10 18:47:38 +00:00
|
|
|
cs.charid %= 10;
|
|
|
|
}
|
|
|
|
if(xuni == 'p') vid.samegender = !vid.samegender;
|
|
|
|
bool cat = cs.charid >= 4;
|
|
|
|
if(xuni == 's') switchcolor(cs.skincolor, cat ? haircolors : skincolors);
|
|
|
|
if(xuni == 'h') switchcolor(cs.haircolor, haircolors);
|
|
|
|
if(xuni == 'w') switchcolor(cs.swordcolor, cat ? eyecolors : swordcolors);
|
|
|
|
if(xuni == 'd') switchcolor(cs.dresscolor, cat ? haircolors : dresscolors);
|
|
|
|
if(xuni == 'f') switchcolor(cs.dresscolor2, dresscolors2);
|
|
|
|
if(xuni == 'u') switchcolor(cs.uicolor, eyecolors);
|
|
|
|
if(xuni == 'v' || sym == SDLK_ESCAPE) popScreen();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_CONFIG
|
2017-07-24 22:21:36 +00:00
|
|
|
void resetConfigMenu() {
|
|
|
|
dialog::init(XLAT("reset all configuration"));
|
|
|
|
dialog::addInfo("Are you sure?");
|
|
|
|
dialog::addItem("yes, and delete the config file", 'd');
|
|
|
|
dialog::addItem("yes", 'y');
|
|
|
|
dialog::addItem("cancel", 'n');
|
|
|
|
dialog::addItem("reset the special game modes", 'r');
|
|
|
|
dialog::display();
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
|
|
|
|
if(uni == 'd') {
|
|
|
|
resetConfig();
|
|
|
|
unlink(conffile);
|
|
|
|
popScreen();
|
|
|
|
}
|
|
|
|
else if(uni == 'y') {
|
|
|
|
printf("reseting config\n");
|
|
|
|
resetConfig();
|
|
|
|
printf("config reset\n");
|
|
|
|
popScreen();
|
|
|
|
}
|
|
|
|
else if(uni == 'r')
|
|
|
|
resetModes();
|
|
|
|
else if(uni == 'n' || doexiton(sym, uni))
|
|
|
|
popScreen();
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-08-06 12:50:16 +00:00
|
|
|
|
2017-08-13 18:49:38 +00:00
|
|
|
#if CAP_TRANS
|
2017-08-06 12:50:16 +00:00
|
|
|
void selectLanguageScreen() {
|
|
|
|
gamescreen(4);
|
|
|
|
dialog::init("select language"); // intentionally not translated
|
|
|
|
|
|
|
|
int v = vid.language;
|
|
|
|
dynamicval<int> d(vid.language, -1);
|
|
|
|
|
|
|
|
for(int i=0; i<NUMLAN-1 || i == v; i++) {
|
|
|
|
vid.language = i;
|
|
|
|
dialog::addSelItem(XLAT("EN"), its(100 * transcompleteness[i] / transcompleteness[0]) + "%", 'a'+i);
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog::addBreak(50);
|
|
|
|
vid.language = -1;
|
|
|
|
dialog::addBoolItem(XLAT("default") + ": " + XLAT("EN"), v == -1, '0');
|
|
|
|
dialog::addItem(XLAT("exit configuration"), '1');
|
|
|
|
|
|
|
|
dialog::addBreak(50);
|
|
|
|
|
|
|
|
vid.language = v;
|
|
|
|
if(lang() >= 1)
|
|
|
|
dialog::addHelp(XLAT("add credits for your translation here"));
|
|
|
|
else
|
|
|
|
dialog::addHelp(XLAT("original language"));
|
|
|
|
|
|
|
|
if(lang() != 0) {
|
|
|
|
string tw = "";
|
|
|
|
string s = XLAT("TRANSLATIONWARNING");
|
|
|
|
if(s != "" && s != "TRANSLATIONWARNING") tw += s;
|
|
|
|
s = XLAT("TRANSLATIONWARNING2");
|
|
|
|
if(s != "" && s != "TRANSLATIONWARNING2") { if(tw != "") tw += " "; tw += s; }
|
|
|
|
if(tw != "") {
|
|
|
|
dialog::addHelp(tw);
|
|
|
|
dialog::lastItem().color = 0xFF0000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog::display();
|
|
|
|
|
|
|
|
keyhandler = [] (int sym, int uni) {
|
|
|
|
dialog::handleNavigation(sym, uni);
|
|
|
|
|
|
|
|
char xuni = uni | 96;
|
|
|
|
if(uni == '0') {
|
|
|
|
vid.language = -1;
|
|
|
|
ANDROID_SETTINGS;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(xuni >= 'a' && xuni < 'a'+NUMLAN) {
|
|
|
|
vid.language = xuni - 'a';
|
|
|
|
ANDROID_SETTINGS;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if(doexiton(sym, uni))
|
|
|
|
popScreen();
|
|
|
|
};
|
|
|
|
}
|
2017-08-13 18:49:38 +00:00
|
|
|
#endif
|
2017-09-30 09:25:55 +00:00
|
|
|
|