mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
rogueviz:: moved other viz to unsorted/
This commit is contained in:
parent
357117ce35
commit
373a7c3469
@ -556,10 +556,10 @@ int readArgs() {
|
|||||||
auto hook = addHook(hooks_args, 100, readArgs)
|
auto hook = addHook(hooks_args, 100, readArgs)
|
||||||
+ addHook(hooks_initgame, 100, bantar)
|
+ addHook(hooks_initgame, 100, bantar)
|
||||||
+ addHook(hooks_frame, 100, bantar_stats)
|
+ addHook(hooks_frame, 100, bantar_stats)
|
||||||
+ addHook(rvtour::hooks_build_rvtour, 100, [] (vector<tour::slide>& v) {
|
+ addHook(rvtour::hooks_build_rvtour, 140, [] (vector<tour::slide>& v) {
|
||||||
using namespace rvtour;
|
using namespace rvtour;
|
||||||
v.push_back(
|
v.push_back(
|
||||||
tour::slide{"Banach-Tarski-like", 62, LEGAL::NONE,
|
tour::slide{"unsorted/Banach-Tarski-like", 62, LEGAL::NONE,
|
||||||
"Banach-Tarski-like decomposition. Break a hyperbolic plane into two hyperbolic planes.\n\n"
|
"Banach-Tarski-like decomposition. Break a hyperbolic plane into two hyperbolic planes.\n\n"
|
||||||
"Press '5' to show the decomposition. Press any key to stop.\n\n"
|
"Press '5' to show the decomposition. Press any key to stop.\n\n"
|
||||||
"You will see a map of the decomposition. Press '5' again to return.",
|
"You will see a map of the decomposition. Press '5' again to return.",
|
||||||
|
@ -314,10 +314,10 @@ int readArgs() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int ah = addHook(hooks_args, 100, readArgs) +
|
int ah = addHook(hooks_args, 100, readArgs) +
|
||||||
addHook(rvtour::hooks_build_rvtour, 100, [] (vector<tour::slide>& v) {
|
addHook(rvtour::hooks_build_rvtour, 142, [] (vector<tour::slide>& v) {
|
||||||
using namespace tour;
|
using namespace tour;
|
||||||
v.push_back(
|
v.push_back(
|
||||||
tour::slide{"Collatz conjecture", 51, LEGAL::UNLIMITED | QUICKGEO,
|
tour::slide{"unsorted/Collatz conjecture", 51, LEGAL::UNLIMITED | QUICKGEO,
|
||||||
"The following slide is a visualization of the Collatz conjecture. "
|
"The following slide is a visualization of the Collatz conjecture. "
|
||||||
"Press '5' for a spiral rendering of the Collatz conjecture visualization.\n\n"
|
"Press '5' for a spiral rendering of the Collatz conjecture visualization.\n\n"
|
||||||
"Note that this, and many other RogueViz visualizations, have "
|
"Note that this, and many other RogueViz visualizations, have "
|
||||||
|
@ -347,10 +347,10 @@ auto xhook = addHook(hooks_args, 100, readArgs)
|
|||||||
+ addHook(hooks_handleKey, 0, handleKey)
|
+ addHook(hooks_handleKey, 0, handleKey)
|
||||||
+ addHook(hooks_prestats, 0, frame)
|
+ addHook(hooks_prestats, 0, frame)
|
||||||
+ addHook(clearmemory, 40, [] () { snubon = false; } )
|
+ addHook(clearmemory, 40, [] () { snubon = false; } )
|
||||||
+ addHook(rvtour::hooks_build_rvtour, 100, [] (vector<tour::slide>& v) {
|
+ addHook(rvtour::hooks_build_rvtour, 142, [] (vector<tour::slide>& v) {
|
||||||
using namespace tour;
|
using namespace tour;
|
||||||
v.push_back(
|
v.push_back(
|
||||||
tour::slide{"Pentagonal Exploration", 62, LEGAL::NONE | QUICKGEO,
|
tour::slide{"unsorted/Pentagonal Exploration", 62, LEGAL::NONE | QUICKGEO,
|
||||||
"Pentagonal Exploration explained at: http://www.roguetemple.com/z/sims/snub/\n\n"
|
"Pentagonal Exploration explained at: http://www.roguetemple.com/z/sims/snub/\n\n"
|
||||||
"Move the mouse nearer and further away from the X.\n\n"
|
"Move the mouse nearer and further away from the X.\n\n"
|
||||||
"Press 3 4 5 6 7 8 9 shift+4 shift+5 shift+6 to change the geometry.",
|
"Press 3 4 5 6 7 8 9 shift+4 shift+5 shift+6 to change the geometry.",
|
||||||
|
@ -353,10 +353,10 @@ int phooks = addHook(hooks_args, 100, readArgs)
|
|||||||
if(staircase::on) { staircase::showMenu(); return true; }
|
if(staircase::on) { staircase::showMenu(); return true; }
|
||||||
return false;
|
return false;
|
||||||
})
|
})
|
||||||
+ addHook(rvtour::hooks_build_rvtour, 100, [] (vector<tour::slide>& v) {
|
+ addHook(rvtour::hooks_build_rvtour, 141, [] (vector<tour::slide>& v) {
|
||||||
using namespace tour;
|
using namespace tour;
|
||||||
v.push_back(
|
v.push_back(
|
||||||
tour::slide{"Spiral Staircase", 62, LEGAL::NONE | QUICKGEO,
|
tour::slide{"unsorted/Spiral Staircase", 62, LEGAL::NONE | QUICKGEO,
|
||||||
"Spiral Staircase Demo. Press '5' to change the curvature or other parameters.",
|
"Spiral Staircase Demo. Press '5' to change the curvature or other parameters.",
|
||||||
|
|
||||||
[] (presmode mode) {
|
[] (presmode mode) {
|
||||||
|
Loading…
Reference in New Issue
Block a user