mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-05 02:07:03 +00:00
-geo option works correctly when switching to the same geometry. -qpar2 now generates the extra primes automatically.
This commit is contained in:
parent
4fa25e9883
commit
300dfde6da
@ -236,7 +236,8 @@ else if(args()[0] == '-' && args()[1] == x && args()[2] == '0') { PHASEFROM(2);
|
||||
}
|
||||
else if(argis("-geo")) {
|
||||
shift(); targetgeometry = (eGeometry) argi();
|
||||
stop_game_and_switch_mode(rg::geometry);
|
||||
if(targetgeometry != rg::geometry)
|
||||
stop_game_and_switch_mode(rg::geometry);
|
||||
}
|
||||
else if(argis("-gp")) {
|
||||
PHASEFROM(2);
|
||||
@ -323,6 +324,10 @@ else if(args()[0] == '-' && args()[1] == x && args()[2] == '0') { PHASEFROM(2);
|
||||
shift(); sscanf(argcs(), "%d,%d", &a, &b);
|
||||
using namespace fieldpattern;
|
||||
current_extra = a;
|
||||
|
||||
auto& gxcur = fgeomextras[current_extra];
|
||||
while(b >= isize(gxcur.primes)) nextPrime(gxcur);
|
||||
|
||||
fgeomextras[current_extra].current_prime_id = b;
|
||||
enableFieldChange();
|
||||
if(geometry != gFieldQuotient) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user