mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-19 23:30:25 +00:00
Möbius transformations configurable
This commit is contained in:
parent
8e7abf6292
commit
b6f4220d47
@ -293,6 +293,8 @@ void initConfig() {
|
||||
addsaver(vid.use_smart_range, "smart-range", 0);
|
||||
addsaver(vid.smart_range_detail, "smart-range-detail", 8);
|
||||
addsaver(vid.cells_drawn_limit, "limit on cells drawn", 10000);
|
||||
|
||||
addsaver(vid.skiprope, "mobius", 0);
|
||||
|
||||
#if CAP_SHMUP
|
||||
shmup::initConfig();
|
||||
|
@ -672,6 +672,9 @@ namespace conformal {
|
||||
|
||||
if(model_has_transition())
|
||||
dialog::addSelItem(XLAT("model transition"), fts3(model_transition), 't');
|
||||
|
||||
if(among(pmodel, mdJoukowsky, mdJoukowskyInverted))
|
||||
dialog::addSelItem(XLAT("Möbius transformations"), fts3(vid.skiprope), 'S');
|
||||
|
||||
if(pmodel == mdHemisphere && euclid) {
|
||||
dialog::addSelItem(XLAT("parameter"), fts3(vid.euclid_to_sphere), 'l');
|
||||
@ -739,6 +742,8 @@ namespace conformal {
|
||||
dialog::editNumber(model_transition, 0, 1, 0.1, 1, XLAT("model transition"),
|
||||
"You can change this parameter for a transition from another model to this one."
|
||||
);
|
||||
else if(uni == 'S')
|
||||
dialog::editNumber(vid.skiprope, 0, 360, 15, 0, XLAT("Möbius transformations"), "");
|
||||
else if(uni == 'b' && pmodel == mdHalfplane)
|
||||
dialog::editNumber(model_orientation, 0, 2, 0.25, 1, XLAT("halfplane scale"), "");
|
||||
else if(uni == 's') {
|
||||
|
@ -652,6 +652,9 @@ void show() {
|
||||
dialog::addBoolItem(XLAT("joukowsky_anim"), joukowsky_anim, 'j');
|
||||
dialog::add_action([] () { joukowsky_anim = !joukowsky_anim; });
|
||||
}
|
||||
if(among(pmodel, mdJoukowsky, mdJoukowskyInverted)) {
|
||||
animator(XLAT("Möbius transformations"), skiprope_rotation, 'S');
|
||||
}
|
||||
dialog::addBoolItem(XLAT("circle"), ma == maCircle, '4');
|
||||
dialog::add_action([] () { ma = maCircle;
|
||||
rotation_center_h = viewctr;
|
||||
|
Loading…
Reference in New Issue
Block a user