2019-08-10 11:43:24 +00:00
|
|
|
// Hyperbolic Rogue -- Goldberg-Coxeter construction
|
|
|
|
// Copyright (C) 2011-2019 Zeno Rogue, see 'hyper.cpp' for details
|
|
|
|
|
|
|
|
/** \file goldberg.cpp
|
|
|
|
* \brief Goldberg-Coxeter construction
|
|
|
|
*
|
|
|
|
* This is generally not used for standard pure and bitruncated tilings, even though they are technically Goldberg too.
|
|
|
|
*/
|
|
|
|
|
2019-09-05 07:15:40 +00:00
|
|
|
#include "hyper.h"
|
2019-08-09 20:37:11 +00:00
|
|
|
namespace hr {
|
|
|
|
|
2020-07-12 18:52:32 +00:00
|
|
|
#if HDR
|
|
|
|
struct hrmap;
|
|
|
|
extern hrmap *currentmap;
|
|
|
|
#endif
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX namespace gp {
|
|
|
|
|
|
|
|
#if HDR
|
2019-11-26 23:41:52 +00:00
|
|
|
struct loc : pair<int, int> {
|
|
|
|
loc() {}
|
|
|
|
|
|
|
|
loc(int x, int y) : pair<int,int> (x,y) {}
|
|
|
|
|
|
|
|
loc operator+(loc e2) {
|
|
|
|
return loc(first+e2.first, second+e2.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
loc operator-(loc e2) {
|
|
|
|
return loc(first-e2.first, second-e2.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
loc operator*(loc e2) {
|
|
|
|
return loc(first*e2.first-second*e2.second,
|
|
|
|
first*e2.second + e2.first*second + (S3 == 3 ? second*e2.second : 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
loc operator*(int i) {
|
|
|
|
return loc(first*i, second*i);
|
|
|
|
}
|
2020-07-12 18:52:32 +00:00
|
|
|
|
|
|
|
int operator %(int i) {
|
|
|
|
return gmod(first, i) + gmod(second, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
loc operator /(int i) {
|
|
|
|
return loc(first/i, second/i);
|
|
|
|
}
|
2021-07-21 08:49:09 +00:00
|
|
|
|
|
|
|
loc conj() {
|
|
|
|
if(S3 == 4) return loc(first, -second);
|
|
|
|
return loc(first+second, -second);
|
|
|
|
}
|
2020-07-12 18:52:32 +00:00
|
|
|
|
2019-11-26 23:41:52 +00:00
|
|
|
};
|
2019-08-09 20:37:11 +00:00
|
|
|
|
|
|
|
struct local_info {
|
|
|
|
int last_dir;
|
|
|
|
loc relative;
|
|
|
|
int first_dir;
|
|
|
|
int total_dir;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2021-07-29 10:06:52 +00:00
|
|
|
EX local_info current_li;
|
|
|
|
EX cell *li_for;
|
2019-08-09 20:37:11 +00:00
|
|
|
|
|
|
|
EX loc eudir(int d) {
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 3) {
|
|
|
|
d %= 6; if (d < 0) d += 6;
|
|
|
|
switch(d) {
|
2019-11-26 23:41:52 +00:00
|
|
|
case 0: return loc(1, 0);
|
|
|
|
case 1: return loc(0, 1);
|
|
|
|
case 2: return loc(-1, 1);
|
|
|
|
case 3: return loc(-1, 0);
|
|
|
|
case 4: return loc(0, -1);
|
|
|
|
case 5: return loc(1, -1);
|
|
|
|
default: return loc(0, 0);
|
2018-07-10 02:13:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else switch(d&3) {
|
2019-11-26 23:41:52 +00:00
|
|
|
case 0: return loc(1, 0);
|
|
|
|
case 1: return loc(0, 1);
|
|
|
|
case 2: return loc(-1, 0);
|
|
|
|
case 3: return loc(0, -1);
|
|
|
|
default: return loc(0, 0);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-04 16:00:40 +00:00
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int length(loc p) {
|
2019-12-08 09:59:09 +00:00
|
|
|
return euc::dist(p.first, p.second);
|
2019-03-10 13:35:30 +00:00
|
|
|
}
|
|
|
|
|
2019-02-17 17:28:20 +00:00
|
|
|
#if CAP_GP
|
2019-08-09 20:37:11 +00:00
|
|
|
EX loc param = loc(1, 0);
|
2019-02-17 17:28:20 +00:00
|
|
|
|
2019-09-05 10:00:55 +00:00
|
|
|
EX hyperpoint next;
|
2019-02-17 17:28:20 +00:00
|
|
|
|
|
|
|
struct goldberg_mapping_t {
|
|
|
|
cellwalker cw;
|
|
|
|
signed char rdir;
|
|
|
|
signed char mindir;
|
|
|
|
loc start;
|
2019-11-26 23:43:30 +00:00
|
|
|
transmatrix adjm;
|
2019-02-17 17:28:20 +00:00
|
|
|
};
|
|
|
|
|
2020-01-18 15:03:32 +00:00
|
|
|
EX int fixg6(int x) { return gmod(x, SG6); }
|
2018-07-10 02:13:35 +00:00
|
|
|
|
2021-07-18 16:32:50 +00:00
|
|
|
const int GOLDBERG_LIMIT_HALF = GOLDBERG_LIMIT/2;
|
|
|
|
const int GOLDBERG_MASK_HALF = GOLDBERG_MASK/2;
|
|
|
|
|
2019-09-05 10:00:55 +00:00
|
|
|
EX int get_code(const local_info& li) {
|
2018-04-05 22:40:53 +00:00
|
|
|
return
|
2021-07-18 16:32:50 +00:00
|
|
|
((li.relative.first & GOLDBERG_MASK_HALF) << 0) +
|
|
|
|
((li.relative.second & GOLDBERG_MASK_HALF) << (GOLDBERG_BITS-1)) +
|
|
|
|
((fixg6(li.total_dir)) << (2*GOLDBERG_BITS-2)) +
|
|
|
|
((li.last_dir & 15) << (2*GOLDBERG_BITS+2));
|
2018-04-04 16:00:40 +00:00
|
|
|
}
|
2018-04-05 22:40:53 +00:00
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX local_info get_local_info(cell *c) {
|
2020-07-12 18:52:32 +00:00
|
|
|
if(INVERSE) {
|
|
|
|
c = get_mapped(c);
|
|
|
|
return UIU(get_local_info(c));
|
|
|
|
}
|
2018-04-05 22:40:53 +00:00
|
|
|
local_info li;
|
|
|
|
if(c == c->master->c7) {
|
|
|
|
li.relative = loc(0,0);
|
|
|
|
li.first_dir = -1;
|
|
|
|
li.last_dir = -1;
|
|
|
|
li.total_dir = -1;
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-04-05 22:40:53 +00:00
|
|
|
else {
|
|
|
|
vector<int> dirs;
|
|
|
|
while(c != c->master->c7) {
|
2018-08-17 22:46:45 +00:00
|
|
|
dirs.push_back(c->c.spin(0));
|
|
|
|
c = c->move(0);
|
2018-04-05 22:40:53 +00:00
|
|
|
}
|
|
|
|
li.first_dir = dirs[0];
|
|
|
|
li.last_dir = dirs.back();
|
|
|
|
|
|
|
|
loc at(0,0);
|
|
|
|
int dir = 0;
|
2018-04-03 21:25:43 +00:00
|
|
|
at = at + eudir(dir);
|
2018-04-05 22:40:53 +00:00
|
|
|
dirs.pop_back();
|
|
|
|
while(dirs.size()) {
|
2018-07-10 02:13:35 +00:00
|
|
|
dir += dirs.back() + SG3;
|
2018-04-05 22:40:53 +00:00
|
|
|
dirs.pop_back();
|
|
|
|
at = at + eudir(dir);
|
|
|
|
}
|
|
|
|
li.relative = at;
|
2018-07-10 02:13:35 +00:00
|
|
|
li.total_dir = dir + SG3;
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-04-05 22:40:53 +00:00
|
|
|
return li;
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int last_dir(cell *c) {
|
2018-04-05 22:40:53 +00:00
|
|
|
return get_local_info(c).last_dir;
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX loc get_coord(cell *c) {
|
2018-04-05 22:40:53 +00:00
|
|
|
return get_local_info(c).relative;
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int pseudohept_val(cell *c) {
|
2018-04-03 21:25:43 +00:00
|
|
|
loc v = get_coord(c);
|
2020-01-18 15:03:32 +00:00
|
|
|
return gmod(v.first - v.second, 3);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
2018-04-11 13:55:43 +00:00
|
|
|
// mapping of the local equilateral triangle
|
|
|
|
// goldberg_map[y][x].cw is the cellwalker in this triangle at position (x,y)
|
|
|
|
// facing local direction 0
|
|
|
|
|
2021-07-18 16:32:50 +00:00
|
|
|
goldberg_mapping_t goldberg_map[GOLDBERG_LIMIT][GOLDBERG_LIMIT];
|
2018-04-09 15:40:38 +00:00
|
|
|
void clear_mapping() {
|
2021-07-18 16:32:50 +00:00
|
|
|
for(int y=0; y<GOLDBERG_LIMIT; y++) for(int x=0; x<GOLDBERG_LIMIT; x++) {
|
2018-08-17 22:46:45 +00:00
|
|
|
goldberg_map[y][x].cw.at = NULL;
|
2018-04-09 15:40:38 +00:00
|
|
|
goldberg_map[y][x].rdir = -1;
|
2018-05-01 17:32:41 +00:00
|
|
|
goldberg_map[y][x].mindir = 0;
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 15:40:38 +00:00
|
|
|
goldberg_mapping_t& get_mapping(loc c) {
|
2021-07-18 16:32:50 +00:00
|
|
|
return goldberg_map[c.second&GOLDBERG_MASK][c.first&GOLDBERG_MASK];
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int spawn;
|
|
|
|
|
2018-05-01 17:32:41 +00:00
|
|
|
cell*& peek(cellwalker cw) {
|
2018-08-17 22:46:45 +00:00
|
|
|
return cw.at->move(cw.spin);
|
2018-05-01 17:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cellwalker get_localwalk(const goldberg_mapping_t& wc, int dir) {
|
2018-07-10 02:13:35 +00:00
|
|
|
if(dir < wc.mindir) dir += SG6;
|
|
|
|
if(dir >= wc.mindir + SG6) dir -= SG6;
|
2018-05-01 17:32:41 +00:00
|
|
|
return wc.cw + dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_localwalk(goldberg_mapping_t& wc, int dir, const cellwalker& cw) {
|
2018-07-10 02:13:35 +00:00
|
|
|
if(dir < wc.mindir) dir += SG6;
|
|
|
|
if(dir >= wc.mindir + SG6) dir -= SG6;
|
2018-05-01 17:32:41 +00:00
|
|
|
wc.cw = cw - dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pull(loc at, int dir) {
|
|
|
|
auto& wc = get_mapping(at);
|
|
|
|
auto at1 = at + eudir(dir);
|
2018-07-10 02:13:35 +00:00
|
|
|
int dir1 = fixg6(dir+SG3);
|
2018-05-01 17:32:41 +00:00
|
|
|
cellwalker wcw = get_localwalk(wc, dir);
|
|
|
|
auto& wc1= get_mapping(at1);
|
2018-08-17 22:46:45 +00:00
|
|
|
if(wc1.cw.at) {
|
2018-05-01 17:32:41 +00:00
|
|
|
if(peek(wcw)) {
|
|
|
|
auto wcw1 = get_localwalk(wc1, dir1);
|
|
|
|
if(wcw + wstep != wcw1) {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, (at1, " : ", (wcw+wstep), " / ", wcw1, " (pull error from ", at, " :: ", wcw, ")") );
|
2018-05-01 17:32:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-11-30 17:28:29 +00:00
|
|
|
if(do_adjm) wc1.adjm = wc.adjm * get_adj(wcw.at, wcw.spin);
|
2018-05-01 17:32:41 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(peek(wcw)) {
|
|
|
|
set_localwalk(wc1, dir1, wcw + wstep);
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, (at1, " :", wcw+wstep, " (pulled from ", at, " :: ", wcw, ")"));
|
2019-11-30 17:28:29 +00:00
|
|
|
if(do_adjm) wc1.adjm = wc.adjm * get_adj(wcw.at, wcw.spin);
|
2018-05-01 17:32:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-26 23:43:30 +00:00
|
|
|
|
|
|
|
EX bool do_adjm;
|
2018-07-10 02:13:35 +00:00
|
|
|
|
2018-04-03 21:25:43 +00:00
|
|
|
void conn1(loc at, int dir, int dir1) {
|
2018-04-09 15:40:38 +00:00
|
|
|
auto& wc = get_mapping(at);
|
2018-05-01 17:32:41 +00:00
|
|
|
auto wcw = get_localwalk(wc, dir);
|
2018-04-09 15:40:38 +00:00
|
|
|
auto& wc1 = get_mapping(at + eudir(dir));
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB0(DF_GP, (format(" md:%02d s:%d", wc.mindir, wc.cw.spin)); )
|
2021-09-30 11:10:52 +00:00
|
|
|
DEBB0(DF_GP, (" connection ", at, "/", dir, " ", wc.cw+dir, "=", wcw, " ~ ", at+eudir(dir), "/", dir1, " "); )
|
2018-08-17 22:46:45 +00:00
|
|
|
if(!wc1.cw.at) {
|
2018-07-10 16:01:42 +00:00
|
|
|
wc1.start = wc.start;
|
2018-05-01 17:32:41 +00:00
|
|
|
if(peek(wcw)) {
|
2021-09-30 11:10:52 +00:00
|
|
|
DEBB0(DF_GP, (" (pulled) "); )
|
2018-05-01 17:32:41 +00:00
|
|
|
set_localwalk(wc1, dir1, wcw + wstep);
|
2019-11-30 17:28:29 +00:00
|
|
|
if(do_adjm) wc1.adjm = wc.adjm * get_adj(wcw.at, wcw.spin);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-05-01 17:32:41 +00:00
|
|
|
else {
|
2018-08-17 22:46:45 +00:00
|
|
|
peek(wcw) = newCell(SG6, wc.cw.at->master);
|
|
|
|
wcw.at->c.setspin(wcw.spin, 0, false);
|
2018-05-01 17:32:41 +00:00
|
|
|
set_localwalk(wc1, dir1, wcw + wstep);
|
2019-11-26 23:43:30 +00:00
|
|
|
if(do_adjm) wc1.adjm = wc.adjm;
|
2018-04-03 21:25:43 +00:00
|
|
|
spawn++;
|
2021-09-30 11:10:52 +00:00
|
|
|
DEBB0(DF_GP, (" (created) "); )
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB0(DF_GP, (wc1.cw+dir1, " "));
|
2018-05-01 17:32:41 +00:00
|
|
|
auto wcw1 = get_localwalk(wc1, dir1);
|
|
|
|
if(peek(wcw)) {
|
|
|
|
if(wcw+wstep != wcw1) {
|
2021-09-30 11:10:52 +00:00
|
|
|
DEBB(DF_GP, ("FAIL: ", wcw, " connected to ", wcw+wstep, " not to ", wcw1); exit(1); )
|
2018-05-01 17:32:41 +00:00
|
|
|
}
|
|
|
|
else {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, ("(was there)"));
|
2018-05-01 17:32:41 +00:00
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-05-01 17:32:41 +00:00
|
|
|
else {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, ("ok"));
|
2018-08-17 22:46:45 +00:00
|
|
|
peek(wcw) = wcw1.at;
|
|
|
|
wcw.at->c.setspin(wcw.spin, wcw1.spin, wcw.mirrored != wcw1.mirrored);
|
2018-05-01 17:32:41 +00:00
|
|
|
if(wcw+wstep != wcw1) {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP | DF_ERROR, ("assertion failed"));
|
2018-04-03 21:25:43 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2019-11-26 23:43:30 +00:00
|
|
|
if(do_adjm) {
|
2019-11-30 17:28:29 +00:00
|
|
|
get_adj(wcw.at, wcw.spin) = inverse(wc.adjm) * wc1.adjm;
|
|
|
|
get_adj(wcw1.at, wcw1.spin) = inverse(wc1.adjm) * wc.adjm;
|
2019-11-26 23:43:30 +00:00
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void conn(loc at, int dir) {
|
2018-07-10 02:13:35 +00:00
|
|
|
conn1(at, fixg6(dir), fixg6(dir+SG3));
|
|
|
|
conn1(at + eudir(dir), fixg6(dir+SG3), fixg6(dir));
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 23:43:30 +00:00
|
|
|
EX map<pair<cell*, int>, transmatrix> gp_adj;
|
2019-11-30 17:28:29 +00:00
|
|
|
|
|
|
|
EX transmatrix& get_adj(cell *c, int i) { return gp_adj[make_pair(c,i)]; }
|
2019-11-26 23:43:30 +00:00
|
|
|
|
2018-05-01 17:32:41 +00:00
|
|
|
goldberg_mapping_t& set_heptspin(loc at, heptspin hs) {
|
|
|
|
auto& ac0 = get_mapping(at);
|
2018-08-17 22:46:45 +00:00
|
|
|
ac0.cw = cellwalker(hs.at->c7, hs.spin, hs.mirrored);
|
2018-07-10 16:01:42 +00:00
|
|
|
ac0.start = at;
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, (at, " : ", ac0.cw));
|
2018-05-01 17:32:41 +00:00
|
|
|
return ac0;
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX void extend_map(cell *c, int d) {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, ("EXTEND ",c, " ", d));
|
2021-09-30 11:10:52 +00:00
|
|
|
indenter ind(2);
|
2018-04-03 21:25:43 +00:00
|
|
|
if(c->master->c7 != c) {
|
2022-01-08 18:20:35 +00:00
|
|
|
auto c1 = c;
|
|
|
|
auto d1 = d;
|
2018-04-03 21:25:43 +00:00
|
|
|
while(c->master->c7 != c) {
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, (c, " direction 0 corresponds to ", c->move(0), " direction ", c->c.spin(0)); )
|
2018-08-17 22:46:45 +00:00
|
|
|
d = c->c.spin(0);
|
|
|
|
c = c->move(0);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
// c move 0 equals c' move spin(0)
|
|
|
|
extend_map(c, d);
|
2019-08-09 12:39:21 +00:00
|
|
|
extend_map(c, c->c.fix(d-1));
|
|
|
|
extend_map(c, c->c.fix(d+1));
|
2022-01-08 18:20:35 +00:00
|
|
|
if(S3 == 4 && !c1->move(d1)) {
|
2018-07-10 02:13:35 +00:00
|
|
|
for(int i=0; i<S7; i++)
|
|
|
|
for(int j=0; j<S7; j++)
|
|
|
|
extend_map(createStep(c->master, i)->c7, j);
|
2022-01-08 18:20:35 +00:00
|
|
|
}
|
|
|
|
if(S3 == 4 && !c1->move(d1)) {
|
|
|
|
for(int i=0; i<S7; i++)
|
|
|
|
for(int i1=0; i1<S7; i1++)
|
|
|
|
for(int j=0; j<S7; j++)
|
|
|
|
extend_map(createStep(createStep(c->master, i), i1)->c7, j);
|
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 4 && param.first <= param.second) { d--; if(d<0) d += S7; }
|
2018-04-09 15:40:38 +00:00
|
|
|
clear_mapping();
|
2018-04-03 21:25:43 +00:00
|
|
|
|
|
|
|
// we generate a local map from an Euclidean grid to the
|
|
|
|
// hyperbolic grid we build.
|
|
|
|
|
|
|
|
// we fill the equilateral triangle with the following vertices:
|
|
|
|
|
2018-07-10 02:13:35 +00:00
|
|
|
loc vc[4];
|
2018-04-03 21:25:43 +00:00
|
|
|
vc[0] = loc(0,0);
|
|
|
|
vc[1] = param;
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 3)
|
|
|
|
vc[2] = param * loc(0,1);
|
|
|
|
else
|
|
|
|
vc[2] = param * loc(1,1),
|
|
|
|
vc[3] = param * loc(0,1);
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2018-05-01 17:32:41 +00:00
|
|
|
heptspin hs(c->master, d, false);
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2018-05-01 17:32:41 +00:00
|
|
|
auto& ac0 = set_heptspin(vc[0], hs);
|
|
|
|
ac0.mindir = -1;
|
2018-07-10 02:13:35 +00:00
|
|
|
auto& ac1 = set_heptspin(vc[1], hs + wstep - SG3);
|
2018-05-26 23:07:44 +00:00
|
|
|
ac1.mindir = 0;
|
2018-07-10 02:13:35 +00:00
|
|
|
auto& ac2 = set_heptspin(vc[S3-1], S3 == 3 ? hs + 1 + wstep - 4 : hs + 1 + wstep + 1);
|
|
|
|
ac2.mindir = S3 == 3 ? 1 : -2;
|
|
|
|
if(S3 == 4) {
|
|
|
|
set_heptspin(vc[2], hs + wstep - 1 + wstep + 1).mindir = -3;
|
|
|
|
}
|
2019-11-26 23:43:30 +00:00
|
|
|
|
2021-04-07 20:41:44 +00:00
|
|
|
do_adjm = quotient || sphere;
|
2019-11-26 23:43:30 +00:00
|
|
|
if(do_adjm) {
|
|
|
|
auto m = (hrmap_standard*)currentmap;
|
|
|
|
get_mapping(vc[0]).adjm = Id;
|
|
|
|
get_mapping(vc[1]).adjm = m->adj(c->master, d);
|
|
|
|
get_mapping(vc[S3-1]).adjm = m->adj(c->master, (d+1)%c->master->type);
|
|
|
|
if(S3 == 4) {
|
|
|
|
heptspin hs1 = hs + wstep - 1;
|
|
|
|
get_mapping(vc[2]).adjm = m->adj(c->master, d) * m->adj(hs1.at, hs1.spin);
|
|
|
|
}
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
|
2021-09-30 11:11:55 +00:00
|
|
|
auto fix_mirrors = [&] {
|
2021-09-30 10:05:16 +00:00
|
|
|
if(ac1.cw.mirrored != hs.mirrored) ac1.cw--;
|
|
|
|
if(ac2.cw.mirrored != hs.mirrored) ac2.cw--;
|
2022-01-08 17:55:06 +00:00
|
|
|
if(S3 == 4) {
|
|
|
|
auto& ac3 = get_mapping(vc[2]);
|
|
|
|
if(ac3.cw.mirrored != hs.mirrored) ac3.cw--;
|
|
|
|
}
|
2021-09-30 11:11:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if(S3 == 4 && param == loc(1,1)) {
|
|
|
|
fix_mirrors();
|
2018-07-10 02:13:35 +00:00
|
|
|
conn(loc(0,0), 1);
|
|
|
|
conn(loc(0,1), 0);
|
|
|
|
conn(loc(0,1), 1);
|
|
|
|
conn(loc(0,1), 2);
|
|
|
|
conn(loc(0,1), 3);
|
|
|
|
return;
|
|
|
|
}
|
2021-09-30 11:11:55 +00:00
|
|
|
|
|
|
|
if(S3 == 4 && param.first == param.second && nonorientable) {
|
|
|
|
fix_mirrors();
|
|
|
|
|
|
|
|
int size = param.first;
|
|
|
|
|
|
|
|
// go along the boundary of the 'diamond'
|
|
|
|
|
|
|
|
for(int dir=0; dir<4; dir++) {
|
|
|
|
int dir_orth = (dir+1) & 3;
|
|
|
|
|
|
|
|
loc at = vc[dir];
|
|
|
|
|
|
|
|
for(int i=0; i<size; i++) {
|
|
|
|
if(!pull(at, dir)) break;
|
|
|
|
at = at + eudir(dir);
|
|
|
|
|
|
|
|
if(!pull(at, dir_orth)) break;
|
|
|
|
at = at + eudir(dir_orth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// build the skeleton
|
|
|
|
|
|
|
|
for(int dir=0; dir<4; dir++) {
|
|
|
|
int dir_orth = (dir+1) & 3;
|
|
|
|
for(int i=0; i<size; i++) {
|
|
|
|
conn(vc[dir] + eudir(dir_orth) * i, dir_orth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill everything
|
|
|
|
|
|
|
|
for(int y=0; y<2*size; y++) {
|
|
|
|
int xdist = min(y, 2*size-y);
|
|
|
|
for(int x=0; x<xdist; x++)
|
|
|
|
for(int d=0; d<4; d++) {
|
|
|
|
conn(loc(x, y), d);
|
|
|
|
conn(loc(-x, y), d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2018-06-21 23:48:46 +00:00
|
|
|
if(nonorientable && param.first == param.second) {
|
2018-05-01 17:32:41 +00:00
|
|
|
int x = param.first;
|
2021-09-30 11:11:55 +00:00
|
|
|
fix_mirrors();
|
2018-05-01 17:32:41 +00:00
|
|
|
|
|
|
|
for(int d=0; d<3; d++) for(int k=0; k<3; k++)
|
|
|
|
for(int i=0; i<x; i++) {
|
|
|
|
int dd = (2*d+k);
|
|
|
|
loc cx = vc[d] + eudir(dd) * i;
|
|
|
|
if(!pull(cx, dd)) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i=0; i<=2*x; i++)
|
|
|
|
for(int d=0; d<3; d++) {
|
|
|
|
loc cx = vc[d] + eudir(1+2*d) * i;
|
|
|
|
if(i < 2*x) conn(cx, 1+2*d);
|
|
|
|
int jmax = x-i, drev = 2*d;
|
|
|
|
if(jmax < 0) drev += 3, jmax = -jmax;
|
|
|
|
for(int j=0; j<jmax; j++) {
|
|
|
|
loc cy = cx + eudir(drev) * j;
|
|
|
|
conn(cy, drev);
|
|
|
|
conn(cy, drev+1);
|
|
|
|
conn(cy, drev+2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
|
|
|
|
// then we set the edges of our big equilateral triangle (in a symmetric way)
|
2018-07-10 02:13:35 +00:00
|
|
|
for(int i=0; i<S3; i++) {
|
2018-04-03 21:25:43 +00:00
|
|
|
loc start = vc[i];
|
2018-07-10 02:13:35 +00:00
|
|
|
loc end = vc[(i+1)%S3];
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, ("from ", start, " to ", end); )
|
2018-04-03 21:25:43 +00:00
|
|
|
loc rel = param;
|
|
|
|
auto build = [&] (loc& at, int dx, bool forward) {
|
2018-07-10 02:13:35 +00:00
|
|
|
int dx1 = dx + SG2*i;
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, (at, " .. ", make_pair(at + eudir(dx1), fixg6(dx1+SG3))));
|
2018-04-03 21:25:43 +00:00
|
|
|
conn(at, dx1);
|
2018-07-10 02:13:35 +00:00
|
|
|
if(forward) get_mapping(at).rdir = fixg6(dx1);
|
|
|
|
else get_mapping(at+eudir(dx1)).rdir = fixg6(dx1+SG3);
|
2018-04-03 21:25:43 +00:00
|
|
|
at = at + eudir(dx1);
|
|
|
|
};
|
2018-07-10 02:13:35 +00:00
|
|
|
while(rel.first >= 2 && (S3 == 3 ? rel.first >= 2 - rel.second : true)) {
|
2018-04-03 21:25:43 +00:00
|
|
|
build(start, 0, true);
|
2018-07-10 02:13:35 +00:00
|
|
|
build(end, SG3, false);
|
2018-04-03 21:25:43 +00:00
|
|
|
rel.first -= 2;
|
|
|
|
}
|
|
|
|
while(rel.second >= 2) {
|
|
|
|
build(start, 1, true);
|
2018-07-10 02:13:35 +00:00
|
|
|
build(end, 1+SG3, false);
|
2018-04-03 21:25:43 +00:00
|
|
|
rel.second -= 2;
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
while(rel.second <= -2 && S3 == 3) {
|
2018-04-13 12:50:40 +00:00
|
|
|
build(start, 5, true);
|
|
|
|
build(end, 2, false);
|
|
|
|
rel.second += 2;
|
|
|
|
rel.first -= 2;
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 3) while((rel.first>0 && rel.second > 0) | (rel.first > 1 && rel.second < 0)) {
|
2018-04-03 21:25:43 +00:00
|
|
|
build(start, 0, true);
|
|
|
|
build(end, 3, false);
|
|
|
|
rel.first -= 2;
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 4 && rel == loc(1,1)) {
|
|
|
|
if(param == loc(3,1) || param == loc(5,1)) {
|
|
|
|
build(start, 1, true);
|
|
|
|
build(end, 2, false);
|
|
|
|
rel.first--;
|
|
|
|
rel.second--;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
build(start, 0, true);
|
|
|
|
build(end, 3, false);
|
|
|
|
rel.first--;
|
|
|
|
rel.second--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(int k=0; k<SG6; k++)
|
|
|
|
if(start + eudir(k+SG2*i) == end)
|
2018-04-03 21:25:43 +00:00
|
|
|
build(start, k, true);
|
2019-05-12 23:57:40 +00:00
|
|
|
if(start != end) { DEBB(DF_GP | DF_ERROR, ("assertion failed: start ", start, " == end ", end)); exit(1); }
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// now we can fill the interior of our big equilateral triangle
|
|
|
|
loc at = vc[0];
|
2018-07-10 02:13:35 +00:00
|
|
|
int maxstep = 3000;
|
2018-04-03 21:25:43 +00:00
|
|
|
while(true) {
|
2019-05-12 23:57:40 +00:00
|
|
|
maxstep--; if(maxstep < 0) { DEBB(DF_GP | DF_ERROR, ("maxstep exceeded")); exit(1); }
|
2018-04-09 15:40:38 +00:00
|
|
|
auto& wc = get_mapping(at);
|
2018-04-03 21:25:43 +00:00
|
|
|
int dx = wc.rdir;
|
|
|
|
auto at1 = at + eudir(dx);
|
2018-04-09 15:40:38 +00:00
|
|
|
auto& wc1 = get_mapping(at1);
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, (make_pair(at, dx), " ", make_pair(at1, wc1.rdir)));
|
2018-04-03 21:25:43 +00:00
|
|
|
int df = wc1.rdir - dx;
|
2018-07-10 02:13:35 +00:00
|
|
|
if(df < 0) df += SG6;
|
|
|
|
if(df == SG3) break;
|
|
|
|
if(S3 == 3) switch(df) {
|
2018-04-03 21:25:43 +00:00
|
|
|
case 0:
|
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
at = at1;
|
|
|
|
continue;
|
|
|
|
case 2: {
|
|
|
|
conn(at, dx+1);
|
|
|
|
wc.rdir = (dx+1) % 6;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 1: {
|
|
|
|
auto at2 = at + eudir(dx+1);
|
2018-04-09 15:40:38 +00:00
|
|
|
auto& wc2 = get_mapping(at2);
|
2018-08-17 22:46:45 +00:00
|
|
|
if(wc2.cw.at) { at = at1; continue; }
|
2018-04-03 21:25:43 +00:00
|
|
|
wc.rdir = (dx+1) % 6;
|
|
|
|
conn(at, (dx+1) % 6);
|
|
|
|
conn(at1, (dx+2) % 6);
|
|
|
|
conn(at2, (dx+0) % 6);
|
|
|
|
wc1.rdir = -1;
|
|
|
|
wc2.rdir = dx;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2018-11-24 16:01:49 +00:00
|
|
|
println(hlog, "case unhandled ", df);
|
2018-04-03 21:25:43 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
else switch(df) {
|
|
|
|
case 0:
|
|
|
|
case 3:
|
|
|
|
at = at1;
|
|
|
|
continue;
|
|
|
|
case 1:
|
|
|
|
auto at2 = at + eudir(dx+1);
|
|
|
|
auto& wc2 = get_mapping(at2);
|
2018-08-17 22:46:45 +00:00
|
|
|
if(wc2.cw.at) {
|
2018-07-10 02:13:35 +00:00
|
|
|
auto at3 = at1 + eudir(wc1.rdir);
|
|
|
|
auto& wc3 = get_mapping(at3);
|
|
|
|
auto at4 = at3 + eudir(wc3.rdir);
|
|
|
|
if(at4 == at2) {
|
|
|
|
wc.rdir = (dx+1)%4;
|
|
|
|
wc1.rdir = -1;
|
|
|
|
wc3.rdir = -1;
|
|
|
|
conn(at, (dx+1)%4);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
at = at1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wc.rdir = (dx+1)%4;
|
|
|
|
wc1.rdir = -1;
|
|
|
|
wc2.rdir = dx%4;
|
2018-07-10 16:01:42 +00:00
|
|
|
int bdir = -1;
|
|
|
|
int bdist = 100;
|
|
|
|
for(int d=0; d<4; d++) {
|
|
|
|
auto &wcm = get_mapping(at2 + eudir(d));
|
2018-08-17 22:46:45 +00:00
|
|
|
if(wcm.cw.at && length(wcm.start - at2) < bdist)
|
2018-07-10 16:01:42 +00:00
|
|
|
bdist = length(wcm.start - at2), bdir = d;
|
|
|
|
}
|
|
|
|
if(bdir != -1) conn(at2 + eudir(bdir), bdir ^ 2);
|
2018-07-10 02:13:35 +00:00
|
|
|
conn(at, (dx+1)%4);
|
|
|
|
conn(at2, dx%4);
|
2018-07-10 16:01:42 +00:00
|
|
|
|
|
|
|
at = param * loc(1,0) + at * loc(0, 1);
|
2018-07-10 02:13:35 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-05-01 17:32:41 +00:00
|
|
|
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GP, ("DONE"))
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
2019-09-05 10:00:55 +00:00
|
|
|
EX hyperpoint loctoh_ort(loc at) {
|
2019-02-17 17:47:19 +00:00
|
|
|
return point3(at.first, at.second, 1);
|
2018-04-03 23:19:21 +00:00
|
|
|
}
|
2018-04-05 22:40:53 +00:00
|
|
|
|
2018-07-10 02:13:35 +00:00
|
|
|
hyperpoint corner_coords6[7] = {
|
2019-02-17 17:47:19 +00:00
|
|
|
point3(2, -1, 0),
|
|
|
|
point3(1, 1, 0),
|
|
|
|
point3(-1, 2, 0),
|
|
|
|
point3(-2, 1, 0),
|
|
|
|
point3(-1, -1, 0),
|
|
|
|
point3(1, -2, 0),
|
|
|
|
point3(0, 0, 0) // center, not a corner
|
2018-04-05 22:40:53 +00:00
|
|
|
};
|
2018-07-10 02:13:35 +00:00
|
|
|
|
|
|
|
hyperpoint corner_coords4[7] = {
|
2019-02-17 17:47:19 +00:00
|
|
|
point3(1.5, -1.5, 0),
|
|
|
|
// point3(1, 0, 0),
|
|
|
|
point3(1.5, 1.5, 0),
|
|
|
|
// point3(0, 1, 0),
|
|
|
|
point3(-1.5, 1.5, 0),
|
|
|
|
// point3(-1, 0, 0),
|
|
|
|
point3(-1.5, -1.5, 0),
|
|
|
|
// point3(0, -1, 0),
|
|
|
|
point3(0, 0, 0),
|
|
|
|
point3(0, 0, 0),
|
|
|
|
point3(0, 0, 0)
|
2018-07-10 02:13:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define corner_coords (S3==3 ? corner_coords6 : corner_coords4)
|
2018-05-01 17:32:55 +00:00
|
|
|
|
|
|
|
hyperpoint cornmul(const transmatrix& corners, const hyperpoint& c) {
|
2019-01-11 01:22:19 +00:00
|
|
|
if(sphere && S3 == 3) {
|
2018-05-01 17:32:55 +00:00
|
|
|
ld cmin = c[0] * c[1] * c[2] * (6 - S7);
|
2019-02-17 17:47:19 +00:00
|
|
|
return corners * point3(c[0] + cmin, c[1] + cmin, c[2] + cmin);
|
2018-05-01 17:32:55 +00:00
|
|
|
}
|
|
|
|
else return corners * c;
|
|
|
|
}
|
2018-04-05 22:40:53 +00:00
|
|
|
|
|
|
|
hyperpoint atz(const transmatrix& T, const transmatrix& corners, loc at, int cornerid = 6, ld cf = 3) {
|
2018-04-03 23:19:21 +00:00
|
|
|
int sp = 0;
|
|
|
|
again:
|
2019-08-09 12:03:43 +00:00
|
|
|
auto corner = corners * (loctoh_ort(at) + (corner_coords[cornerid] / cf));
|
2018-04-03 23:19:21 +00:00
|
|
|
if(corner[1] < -1e-6 || corner[2] < -1e-6) {
|
|
|
|
at = at * eudir(1);
|
2018-07-10 02:13:35 +00:00
|
|
|
if(cornerid < SG6) cornerid = (1 + cornerid) % SG6;
|
2018-04-03 23:19:21 +00:00
|
|
|
sp++;
|
|
|
|
goto again;
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
if(sp>SG3) sp -= SG6;
|
2018-04-03 23:19:21 +00:00
|
|
|
|
2018-05-01 17:32:55 +00:00
|
|
|
return normalize(spin(2*M_PI*sp/S7) * cornmul(T, corner));
|
2018-04-03 23:19:21 +00:00
|
|
|
}
|
|
|
|
|
2018-04-05 22:40:53 +00:00
|
|
|
transmatrix dir_matrix(int i) {
|
2019-11-25 21:08:43 +00:00
|
|
|
auto ddspin = [] (int d) -> transmatrix {
|
|
|
|
return spin(M_PI - d * 2 * M_PI / S7 - cgi.hexshift);
|
|
|
|
};
|
2019-05-26 16:04:02 +00:00
|
|
|
return spin(-cgi.gpdata->alpha) * build_matrix(
|
2018-04-05 22:40:53 +00:00
|
|
|
C0,
|
2019-11-25 21:08:43 +00:00
|
|
|
ddspin(i) * xpush0(cgi.tessf),
|
|
|
|
ddspin(i+1) * xpush0(cgi.tessf),
|
2019-05-15 07:36:25 +00:00
|
|
|
C03
|
2018-04-05 22:40:53 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-04-03 23:19:21 +00:00
|
|
|
void prepare_matrices() {
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.gpdata->corners = inverse(build_matrix(
|
2018-04-03 23:19:21 +00:00
|
|
|
loctoh_ort(loc(0,0)),
|
|
|
|
loctoh_ort(param),
|
2019-05-15 07:36:25 +00:00
|
|
|
loctoh_ort(param * loc(0,1)),
|
|
|
|
C03
|
2018-04-03 23:19:21 +00:00
|
|
|
));
|
2020-01-18 15:03:32 +00:00
|
|
|
cgi.gpdata->Tf.resize(S7);
|
2018-04-03 23:19:21 +00:00
|
|
|
for(int i=0; i<S7; i++) {
|
2018-04-05 22:40:53 +00:00
|
|
|
transmatrix T = dir_matrix(i);
|
2021-07-18 16:32:50 +00:00
|
|
|
for(int x=-GOLDBERG_LIMIT_HALF; x<GOLDBERG_LIMIT_HALF; x++)
|
|
|
|
for(int y=-GOLDBERG_LIMIT_HALF; y<GOLDBERG_LIMIT_HALF; y++)
|
2018-07-10 02:13:35 +00:00
|
|
|
for(int d=0; d<(S3==3?6:4); d++) {
|
2018-04-03 23:19:21 +00:00
|
|
|
loc at = loc(x, y);
|
|
|
|
|
2019-05-26 16:04:02 +00:00
|
|
|
hyperpoint h = atz(T, cgi.gpdata->corners, at, 6);
|
|
|
|
hyperpoint hl = atz(T, cgi.gpdata->corners, at + eudir(d), 6);
|
2021-07-18 16:32:50 +00:00
|
|
|
cgi.gpdata->Tf[i][x&GOLDBERG_MASK][y&GOLDBERG_MASK][d] = rgpushxto0(h) * rspintox(gpushxto0(h) * hl) * spin(M_PI);
|
2018-04-03 23:19:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-04 00:46:44 +00:00
|
|
|
|
2019-09-05 10:00:55 +00:00
|
|
|
EX hyperpoint get_corner_position(const local_info& li, int cid, ld cf IS(3)) {
|
2018-04-05 22:40:53 +00:00
|
|
|
int i = li.last_dir;
|
|
|
|
if(i == -1)
|
2019-05-26 16:04:02 +00:00
|
|
|
return atz(dir_matrix(cid), cgi.gpdata->corners, li.relative, 0, cf);
|
2018-04-05 22:40:53 +00:00
|
|
|
else {
|
2021-07-18 16:32:50 +00:00
|
|
|
auto& cellmatrix = cgi.gpdata->Tf[i][li.relative.first&GOLDBERG_MASK][li.relative.second&GOLDBERG_MASK][fixg6(li.total_dir)];
|
2019-05-26 16:04:02 +00:00
|
|
|
return inverse(cellmatrix) * atz(dir_matrix(i), cgi.gpdata->corners, li.relative, fixg6(cid + li.total_dir), cf);
|
2018-04-05 22:40:53 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-04 00:46:44 +00:00
|
|
|
|
2019-09-05 10:00:55 +00:00
|
|
|
EX hyperpoint get_corner_position(cell *c, int cid, ld cf IS(3)) {
|
2018-05-04 00:46:44 +00:00
|
|
|
return get_corner_position(get_local_info(c), cid, cf);
|
|
|
|
}
|
2018-04-03 23:19:21 +00:00
|
|
|
|
2018-04-10 15:06:04 +00:00
|
|
|
map<pair<int, int>, loc> center_locs;
|
|
|
|
|
2020-07-12 18:52:32 +00:00
|
|
|
EX void compute_geometry(bool inv) {
|
2018-04-10 15:06:04 +00:00
|
|
|
center_locs.clear();
|
2020-07-12 18:52:32 +00:00
|
|
|
if(GOLDBERG_INV || inv) {
|
2019-05-26 16:04:02 +00:00
|
|
|
if(!cgi.gpdata) cgi.gpdata = make_shared<geometry_information::gpdata_t>();
|
2020-07-12 18:43:58 +00:00
|
|
|
gp::clear_plainshapes();
|
2018-04-03 21:25:43 +00:00
|
|
|
int x = param.first;
|
|
|
|
int y = param.second;
|
2018-11-27 20:17:00 +00:00
|
|
|
if(S3 == 3)
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.gpdata->area = ((2*x+y) * (2*x+y) + y*y*3) / 4;
|
2018-11-27 20:17:00 +00:00
|
|
|
else
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.gpdata->area = x * x + y * y;
|
2019-02-17 17:47:19 +00:00
|
|
|
next = point3(x+y/2., -y * sqrt(3) / 2, 0);
|
2019-02-27 22:41:28 +00:00
|
|
|
ld scale = 1 / hypot_d(2, next);
|
2020-07-12 18:52:32 +00:00
|
|
|
if(!GOLDBERG) scale = 1;
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.crossf *= scale;
|
|
|
|
cgi.hepvdist *= scale;
|
|
|
|
cgi.hexhexdist *= scale;
|
|
|
|
cgi.hexvdist *= scale;
|
|
|
|
cgi.rhexf *= scale;
|
2018-04-03 21:25:43 +00:00
|
|
|
// spin = spintox(next);
|
|
|
|
// ispin = rspintox(next);
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.gpdata->alpha = -atan2(next[1], next[0]) * 6 / S7;
|
2018-07-10 16:01:55 +00:00
|
|
|
if(S3 == 3)
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.base_distlimit = (cgi.base_distlimit + log(scale) / log(2.618)) / scale;
|
2018-07-10 16:01:55 +00:00
|
|
|
else
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.base_distlimit = 3 * max(param.first, param.second) + 2 * min(param.first, param.second);
|
2018-11-23 22:46:26 +00:00
|
|
|
if(S7 == 12)
|
2019-05-26 16:04:02 +00:00
|
|
|
cgi.base_distlimit = 2 * param.first + 2 * param.second + 1;
|
|
|
|
if(cgi.base_distlimit > SEE_ALL)
|
|
|
|
cgi.base_distlimit = SEE_ALL;
|
2018-04-03 23:19:21 +00:00
|
|
|
prepare_matrices();
|
2019-05-12 23:57:40 +00:00
|
|
|
DEBB(DF_GEOM | DF_POLY, ("scale = ", scale));
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-13 12:50:40 +00:00
|
|
|
|
|
|
|
loc config;
|
|
|
|
|
2022-01-08 18:30:46 +00:00
|
|
|
EX bool rotate_and_check_limits(loc& v) {
|
2018-04-13 12:50:40 +00:00
|
|
|
int& x = v.first, &y = v.second;
|
|
|
|
while(x < 0 || y < 0 || (x == 0 && y > 0))
|
|
|
|
v = v * loc(0, 1);
|
2022-01-08 18:30:46 +00:00
|
|
|
return 2*(x+y) < (1<<GOLDBERG_BITS);
|
|
|
|
}
|
|
|
|
|
|
|
|
EX bool check_limits(loc v) {
|
|
|
|
return rotate_and_check_limits(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
loc internal_representation(loc v) {
|
|
|
|
int& x = v.first, &y = v.second;
|
|
|
|
while(!rotate_and_check_limits(v)) {
|
|
|
|
if(x > y) x--; else y--;
|
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 3 && y > x) v = v * loc(1, -1);
|
2018-04-13 12:50:40 +00:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2019-09-05 10:00:55 +00:00
|
|
|
EX loc human_representation(loc v) {
|
2018-04-13 12:50:40 +00:00
|
|
|
int& x = v.first, &y = v.second;
|
2018-07-10 02:13:35 +00:00
|
|
|
if(S3 == 3) while(x < 0 || y < 0 || (x == 0 && y > 0))
|
2018-04-13 12:50:40 +00:00
|
|
|
v = v * loc(0, 1);
|
|
|
|
return v;
|
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2020-07-12 18:52:32 +00:00
|
|
|
EX eVariation variation_for(loc xy) {
|
|
|
|
if(xy.first == 1 && xy.second == 0)
|
|
|
|
return eVariation::pure;
|
|
|
|
if(xy.first == 1 && xy.second == 1 && S3 == 3)
|
|
|
|
return eVariation::bitruncated;
|
|
|
|
return eVariation::goldberg;
|
|
|
|
}
|
|
|
|
|
2022-01-08 18:20:53 +00:00
|
|
|
EX void whirl_set(loc xy) {
|
2018-04-13 12:50:40 +00:00
|
|
|
xy = internal_representation(xy);
|
2018-06-21 23:48:46 +00:00
|
|
|
if(xy.second && xy.second != xy.first && nonorientable) {
|
|
|
|
addMessage(XLAT("This does not work in non-orientable geometries"));
|
2018-04-13 12:50:40 +00:00
|
|
|
xy.second = 0;
|
2018-04-11 13:55:43 +00:00
|
|
|
}
|
2018-04-13 12:50:40 +00:00
|
|
|
config = human_representation(xy);
|
2018-04-03 21:25:43 +00:00
|
|
|
auto g = screens;
|
2018-04-13 12:50:40 +00:00
|
|
|
if(xy.first == 0 && xy.second == 0) xy.first = 1;
|
2020-08-01 14:43:21 +00:00
|
|
|
stop_game();
|
|
|
|
param = xy;
|
2018-04-13 12:50:40 +00:00
|
|
|
if(xy.first == 1 && xy.second == 0) {
|
2020-08-01 14:43:21 +00:00
|
|
|
set_variation(eVariation::pure);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-07-10 02:13:35 +00:00
|
|
|
else if(xy.first == 1 && xy.second == 1 && S3 == 3) {
|
2020-08-01 14:43:21 +00:00
|
|
|
set_variation(eVariation::bitruncated);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2020-09-16 16:48:04 +00:00
|
|
|
else
|
|
|
|
set_variation(eVariation::goldberg);
|
2018-06-10 22:58:38 +00:00
|
|
|
start_game();
|
2018-04-03 21:25:43 +00:00
|
|
|
screens = g;
|
|
|
|
}
|
|
|
|
|
|
|
|
string helptext() {
|
2018-05-20 13:15:38 +00:00
|
|
|
return XLAT(
|
2018-04-10 03:12:40 +00:00
|
|
|
"Goldberg polyhedra are obtained by adding extra hexagons to a dodecahedron. "
|
|
|
|
"GP(x,y) means that, to get to a nearest non-hex from any non-hex, you should move x "
|
2018-04-03 21:25:43 +00:00
|
|
|
"cells in any direction, turn right 60 degrees, and move y cells. "
|
2018-04-10 03:12:40 +00:00
|
|
|
"HyperRogue generalizes this to any tesselation with 3 faces per vertex. "
|
2018-05-20 13:15:38 +00:00
|
|
|
"By default HyperRogue uses bitruncation, which corresponds to GP(1,1)."
|
|
|
|
);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
2018-08-20 00:04:49 +00:00
|
|
|
void show() {
|
2018-12-13 16:02:10 +00:00
|
|
|
cmode = sm::SIDE | sm::MAYDARK;
|
2018-04-03 21:25:43 +00:00
|
|
|
gamescreen(0);
|
2018-07-17 00:29:18 +00:00
|
|
|
dialog::init(XLAT("variations"));
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2018-08-21 17:00:41 +00:00
|
|
|
int min_quality_chess = 0;
|
|
|
|
|
2018-08-20 00:04:49 +00:00
|
|
|
int min_quality = 0;
|
2018-08-21 22:14:31 +00:00
|
|
|
#if CAP_TEXTURE
|
2018-08-20 00:04:49 +00:00
|
|
|
if((texture::config.tstate == texture::tsActive) && (S7 % 2 == 1)) {
|
2018-08-21 17:00:41 +00:00
|
|
|
if(texture::cgroup == cpFootball || texture::cgroup == cpThree) min_quality = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((texture::config.tstate == texture::tsActive) && (S7 % 2 == 1) && (S3 == 4)) {
|
|
|
|
if(texture::cgroup == cpChess) min_quality = 1;
|
2018-08-02 20:26:07 +00:00
|
|
|
}
|
2018-08-21 22:14:31 +00:00
|
|
|
#endif
|
2018-08-21 17:00:41 +00:00
|
|
|
if(min_quality == 0 && min_quality_chess == 0) {
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::addBoolItem(XLAT("pure"), PURE || (GOLDBERG && univ_param() == loc(1,0)), 'a');
|
2018-04-10 03:12:40 +00:00
|
|
|
dialog::lastItem().value = "GP(1,0)";
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action_confirmed([] { whirl_set(loc(1, 0)); });
|
2018-04-10 03:12:40 +00:00
|
|
|
}
|
2018-08-21 17:00:41 +00:00
|
|
|
|
2020-07-12 18:52:32 +00:00
|
|
|
if(min_quality_chess == 0) {
|
2019-11-27 23:42:09 +00:00
|
|
|
dialog::addBoolItem(XLAT("bitruncated"), BITRUNCATED, 'b');
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action_confirmed([] {
|
|
|
|
if(S3 == 4) {
|
|
|
|
if(!BITRUNCATED) {
|
|
|
|
stop_game();
|
|
|
|
set_variation(eVariation::bitruncated);
|
|
|
|
start_game();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
whirl_set(loc(1, 1));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-23 12:33:25 +00:00
|
|
|
dialog::lastItem().value = S3 == 3 ? "GP(1,1)" : ONOFF(BITRUNCATED);
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2018-08-21 17:00:41 +00:00
|
|
|
if(min_quality == 0 || min_quality_chess) {
|
2021-05-23 12:33:25 +00:00
|
|
|
dialog::addBoolItem(S3 == 3 ? XLAT("chamfered") : XLAT("expanded"), univ_param() == loc(2,0) && GOLDBERG, 'c');
|
2018-04-10 03:12:40 +00:00
|
|
|
dialog::lastItem().value = "GP(2,0)";
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action_confirmed([] {
|
|
|
|
whirl_set(loc(2, 0));
|
|
|
|
});
|
2018-04-10 03:12:40 +00:00
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2018-07-10 19:11:02 +00:00
|
|
|
if(S3 == 3) {
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::addBoolItem(XLAT("2x bitruncated"), GOLDBERG && univ_param() == loc(3,0), 'd');
|
2018-07-10 19:11:02 +00:00
|
|
|
dialog::lastItem().value = "GP(3,0)";
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action_confirmed([] {
|
|
|
|
whirl_set(loc(3, 0));
|
|
|
|
});
|
2018-07-10 19:11:02 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-08-28 15:17:34 +00:00
|
|
|
dialog::addBoolItem(XLAT("rectified"), param == loc(1,1) && GOLDBERG, 'd');
|
2018-07-11 10:25:33 +00:00
|
|
|
dialog::lastItem().value = "GP(1,1)";
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action_confirmed([] {
|
|
|
|
whirl_set(loc(1, 1));
|
|
|
|
});
|
2018-07-10 19:11:02 +00:00
|
|
|
}
|
2018-04-03 21:25:43 +00:00
|
|
|
|
|
|
|
dialog::addBreak(100);
|
2018-04-13 12:50:40 +00:00
|
|
|
dialog::addSelItem("x", its(config.first), 'x');
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action([] { dialog::editNumber(config.first, 0, 8, 1, 1, "x", helptext()); });
|
2018-04-13 12:50:40 +00:00
|
|
|
dialog::addSelItem("y", its(config.second), 'y');
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action([] { dialog::editNumber(config.second, 0, 8, 1, 1, "y", helptext()); });
|
2018-06-17 10:02:47 +00:00
|
|
|
|
2022-01-08 18:30:46 +00:00
|
|
|
if(!check_limits(config))
|
|
|
|
dialog::addInfo(XLAT("Outside of the supported limits"));
|
2018-06-22 02:42:39 +00:00
|
|
|
if(config.second && config.second != config.first && nonorientable) {
|
|
|
|
dialog::addInfo(XLAT("This does not work in non-orientable geometries"));
|
|
|
|
}
|
2018-08-20 00:04:49 +00:00
|
|
|
else if((config.first-config.second)%3 && min_quality)
|
2018-06-17 10:02:47 +00:00
|
|
|
dialog::addInfo(XLAT("This pattern needs x-y divisible by 3"));
|
2018-08-21 17:00:41 +00:00
|
|
|
else if((config.first-config.second)%2 && min_quality_chess)
|
|
|
|
dialog::addInfo(XLAT("This pattern needs x-y divisible by 2"));
|
2020-09-16 16:48:04 +00:00
|
|
|
else {
|
|
|
|
dialog::addBoolItem(XLAT("select"), param == internal_representation(config) && !IRREGULAR && !INVERSE, 'f');
|
|
|
|
dialog::lastItem().value = "GP(x,y)";
|
|
|
|
}
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::add_action_confirmed([] { whirl_set(config); });
|
|
|
|
|
|
|
|
dialog::addBreak(100);
|
2018-07-17 00:29:18 +00:00
|
|
|
|
2020-10-15 14:33:52 +00:00
|
|
|
#if CAP_IRR
|
2018-08-20 00:04:49 +00:00
|
|
|
if(irr::supports(geometry)) {
|
2018-08-28 15:17:34 +00:00
|
|
|
dialog::addBoolItem(XLAT("irregular"), IRREGULAR, 'i');
|
2018-12-14 17:21:52 +00:00
|
|
|
dialog::add_action(dialog::add_confirmation([=] () {
|
2018-08-20 00:04:49 +00:00
|
|
|
if(min_quality && !irr::bitruncations_requested) irr::bitruncations_requested++;
|
2022-05-21 11:08:42 +00:00
|
|
|
if(euclid && (!closed_manifold || nonorientable)) {
|
2019-11-30 15:00:23 +00:00
|
|
|
println(hlog, XLAT("To create Euclidean irregular tesselations, first enable a torus"));
|
|
|
|
return;
|
|
|
|
}
|
2018-08-28 15:17:34 +00:00
|
|
|
if(!IRREGULAR) irr::visual_creator();
|
2018-12-14 17:21:52 +00:00
|
|
|
}));
|
2018-07-17 00:29:18 +00:00
|
|
|
}
|
2020-10-15 14:33:52 +00:00
|
|
|
#endif
|
2018-04-03 21:25:43 +00:00
|
|
|
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::addBreak(100);
|
|
|
|
int style = 0;
|
|
|
|
auto v0 = variation_for(param);
|
|
|
|
bool bad_bi = BITRUNCATED && a4;
|
|
|
|
if(!bad_bi) {
|
|
|
|
dynamicval<eVariation> v(variation, v0);
|
|
|
|
if(geosupport_football() == 2) style = 3;
|
|
|
|
if(geosupport_chessboard()) style = 2;
|
|
|
|
}
|
|
|
|
if(style == 2) {
|
|
|
|
dialog::addBoolItem(XLAT("inverse rectify"), UNRECTIFIED, 'r');
|
|
|
|
dialog::add_action_confirmed([v0] {
|
2020-07-12 22:55:42 +00:00
|
|
|
param = univ_param();
|
2020-07-12 18:52:32 +00:00
|
|
|
if(UNRECTIFIED) set_variation(v0);
|
|
|
|
else set_variation(eVariation::unrectified);
|
|
|
|
start_game();
|
2020-07-12 22:55:42 +00:00
|
|
|
config = human_representation(univ_param());
|
2018-12-14 17:21:52 +00:00
|
|
|
});
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
else if(style == 3) {
|
|
|
|
dialog::addBoolItem(XLAT("inverse truncate"), UNTRUNCATED, 't');
|
|
|
|
dialog::add_action_confirmed([v0] {
|
2020-07-12 22:55:42 +00:00
|
|
|
param = univ_param();
|
2020-07-12 18:52:32 +00:00
|
|
|
if(UNTRUNCATED) set_variation(v0);
|
|
|
|
else set_variation(eVariation::untruncated);
|
|
|
|
start_game();
|
2018-12-14 17:21:52 +00:00
|
|
|
});
|
2020-07-12 18:52:32 +00:00
|
|
|
dialog::addBoolItem(XLAT("warped version"), WARPED, 'w');
|
|
|
|
dialog::add_action_confirmed([v0] {
|
2020-07-12 22:55:42 +00:00
|
|
|
param = univ_param();
|
2020-07-12 18:52:32 +00:00
|
|
|
if(WARPED) set_variation(v0);
|
|
|
|
else set_variation(eVariation::warped);
|
|
|
|
start_game();
|
2018-12-14 17:21:52 +00:00
|
|
|
});
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dialog::addBreak(100);
|
|
|
|
dialog::addItem(XLAT("swap x and y"), 'z');
|
|
|
|
dialog::add_action([] { swap(config.first, config.second); });
|
|
|
|
|
|
|
|
bool have_dual = !bad_bi && !IRREGULAR && !WARPED;
|
|
|
|
if(S3 == 3 && UNTRUNCATED && (univ_param()*loc(1,1)) % 3) have_dual = false;
|
|
|
|
if(S3 == 4 && UNRECTIFIED && (univ_param()*loc(1,1)) % 2) have_dual = false;
|
|
|
|
|
|
|
|
if(have_dual) {
|
|
|
|
dialog::addItem(XLAT("dual of current"), 'D');
|
|
|
|
dialog::add_action([] {
|
|
|
|
auto p = univ_param();
|
|
|
|
if(S3 == 3 && !UNTRUNCATED) {
|
|
|
|
println(hlog, "set param to ", p * loc(1,1));
|
|
|
|
whirl_set(p * loc(1, 1));
|
|
|
|
set_variation(eVariation::untruncated);
|
|
|
|
start_game();
|
2020-07-12 22:55:42 +00:00
|
|
|
config = human_representation(univ_param());
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
else if(S3 == 4 && !UNRECTIFIED) {
|
|
|
|
whirl_set(p * loc(1, 1));
|
|
|
|
set_variation(eVariation::unrectified);
|
|
|
|
start_game();
|
2020-07-12 22:55:42 +00:00
|
|
|
config = human_representation(univ_param());
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
else if(S3 == 3 && UNTRUNCATED) {
|
|
|
|
println(hlog, "whirl_set to ", (p * loc(1,1)) / 3);
|
|
|
|
whirl_set((p * loc(1,1)) / 3);
|
2020-07-12 22:55:42 +00:00
|
|
|
config = human_representation(univ_param());
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
else if(S3 == 4 && UNRECTIFIED) {
|
|
|
|
whirl_set((p * loc(1,1)) / 2);
|
2020-07-12 22:55:42 +00:00
|
|
|
config = human_representation(univ_param());
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
2018-12-14 17:21:52 +00:00
|
|
|
});
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dialog::addBreak(100);
|
|
|
|
dialog::addHelp();
|
|
|
|
dialog::add_action([] { gotoHelp(helptext()); });
|
|
|
|
dialog::addBack();
|
|
|
|
dialog::display();
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX loc univ_param() {
|
2020-07-12 18:52:32 +00:00
|
|
|
if(GOLDBERG_INV) return param;
|
2018-08-28 15:17:34 +00:00
|
|
|
else if(PURE) return loc(1,0);
|
2018-04-10 15:06:04 +00:00
|
|
|
else return loc(1,1);
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX void configure() {
|
2018-04-10 15:06:04 +00:00
|
|
|
auto l = univ_param();
|
2018-04-13 12:50:40 +00:00
|
|
|
param = l;
|
|
|
|
config = human_representation(l);
|
2018-08-20 00:04:49 +00:00
|
|
|
pushScreen(gp::show);
|
2018-04-03 21:25:43 +00:00
|
|
|
}
|
2018-04-06 20:22:33 +00:00
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX void be_in_triangle(local_info& li) {
|
2018-04-10 06:05:35 +00:00
|
|
|
int sp = 0;
|
|
|
|
auto& at = li.relative;
|
|
|
|
again:
|
2019-05-26 16:04:02 +00:00
|
|
|
auto corner = cgi.gpdata->corners * loctoh_ort(at);
|
2018-04-10 06:05:35 +00:00
|
|
|
if(corner[1] < -1e-6 || corner[2] < -1e-6) {
|
|
|
|
at = at * eudir(1);
|
|
|
|
sp++;
|
|
|
|
goto again;
|
|
|
|
}
|
2018-07-10 16:03:41 +00:00
|
|
|
if(sp>SG3) sp -= SG6;
|
2019-08-09 12:12:33 +00:00
|
|
|
li.last_dir = gmod(li.last_dir - sp, S7);
|
2018-04-10 06:05:35 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 15:06:04 +00:00
|
|
|
// from some point X, (0,0) is in distance dmain, param is in distance d0, and param*z is in distance d1
|
|
|
|
// what is the distance of at from X?
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int solve_triangle(int dmain, int d0, int d1, loc at) {
|
2018-04-10 15:06:04 +00:00
|
|
|
loc centerloc(0, 0);
|
|
|
|
auto rel = make_pair(d0-dmain, d1-dmain);
|
|
|
|
if(center_locs.count(rel))
|
|
|
|
centerloc = center_locs[rel];
|
|
|
|
else {
|
|
|
|
bool found = false;
|
|
|
|
for(int y=-20; y<=20; y++)
|
|
|
|
for(int x=-20; x<=20; x++) {
|
|
|
|
loc c(x, y);
|
|
|
|
int cc = length(c);
|
|
|
|
int c0 = length(c - param);
|
|
|
|
int c1 = length(c - param*loc(0,1));
|
|
|
|
if(c0-cc == d0-dmain && c1-cc == d1-dmain)
|
|
|
|
found = true, centerloc = c;
|
|
|
|
}
|
2018-07-10 16:03:41 +00:00
|
|
|
if(!found && !quotient) {
|
2018-11-24 16:01:49 +00:00
|
|
|
println(hlog, "Warning: centerloc not found: ", make_tuple(dmain, d0, d1));
|
2018-07-10 16:03:41 +00:00
|
|
|
}
|
|
|
|
center_locs[rel] = centerloc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dmain + length(centerloc-at) - length(centerloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
int solve_quad(int dmain, int d0, int d1, int dx, loc at) {
|
|
|
|
loc centerloc(0, 0);
|
|
|
|
auto rel = make_pair(d0-dmain, (d1-dmain) + 1000 * (dx-dmain) + 1000000);
|
|
|
|
if(center_locs.count(rel))
|
|
|
|
centerloc = center_locs[rel];
|
|
|
|
else {
|
|
|
|
bool found = false;
|
|
|
|
for(int y=-20; y<=20; y++)
|
|
|
|
for(int x=-20; x<=20; x++) {
|
|
|
|
loc c(x, y);
|
|
|
|
int cc = length(c);
|
|
|
|
int c0 = length(c - param);
|
|
|
|
int c1 = length(c - param*loc(0,1));
|
|
|
|
int c2 = length(c - param*loc(1,1));
|
|
|
|
if(c0-cc == d0-dmain && c1-cc == d1-dmain && c2-cc == dx-dmain)
|
|
|
|
found = true, centerloc = c;
|
|
|
|
}
|
|
|
|
if(!found && !quotient) {
|
2018-11-24 16:01:49 +00:00
|
|
|
println(hlog, "Warning: centerloc not found: ", make_tuple(dmain, d0, d1, dx));
|
2018-07-10 16:03:41 +00:00
|
|
|
}
|
2018-04-10 15:06:04 +00:00
|
|
|
center_locs[rel] = centerloc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dmain + length(centerloc-at) - length(centerloc);
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX hyperpoint get_master_coordinates(cell *c) {
|
2018-12-03 09:40:19 +00:00
|
|
|
auto li = get_local_info(c);
|
|
|
|
be_in_triangle(li);
|
2019-05-26 16:04:02 +00:00
|
|
|
return cgi.gpdata->corners * loctoh_ort(li.relative);
|
2018-12-03 09:40:19 +00:00
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int compute_dist(cell *c, int master_function(cell*)) {
|
2020-07-12 18:52:32 +00:00
|
|
|
if(!GOLDBERG) return master_function(c);
|
2018-04-06 20:22:33 +00:00
|
|
|
auto li = get_local_info(c);
|
2018-04-10 22:55:05 +00:00
|
|
|
be_in_triangle(li);
|
2018-04-06 20:22:33 +00:00
|
|
|
|
|
|
|
cell *cm = c->master->c7;
|
|
|
|
|
|
|
|
int i = li.last_dir;
|
|
|
|
auto at = li.relative;
|
|
|
|
|
|
|
|
auto dmain = master_function(cm);
|
|
|
|
auto d0 = master_function(createStep(cm->master, i)->c7);
|
2019-08-09 12:39:21 +00:00
|
|
|
auto d1 = master_function(createStep(cm->master, cm->c.fix(i+1))->c7);
|
2018-04-06 20:22:33 +00:00
|
|
|
|
2018-07-10 16:03:41 +00:00
|
|
|
if(S3 == 4) {
|
|
|
|
heptspin hs(cm->master, i);
|
|
|
|
hs += wstep; hs+=-1; hs += wstep;
|
2018-08-17 22:46:45 +00:00
|
|
|
auto d2 = master_function(hs.at->c7);
|
2018-07-10 16:03:41 +00:00
|
|
|
return solve_quad(dmain, d0, d1, d2, at);
|
|
|
|
}
|
|
|
|
|
2018-04-10 15:06:04 +00:00
|
|
|
return solve_triangle(dmain, d0, d1, at);
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int dist_2() {
|
2018-04-10 15:06:04 +00:00
|
|
|
return length(univ_param());
|
2018-04-06 20:22:33 +00:00
|
|
|
}
|
2018-04-10 15:06:04 +00:00
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int dist_3() {
|
2018-04-10 15:06:04 +00:00
|
|
|
return length(univ_param() * loc(1,1));
|
|
|
|
}
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int dist_1() {
|
2018-04-10 15:06:04 +00:00
|
|
|
return dist_3() - dist_2();
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
#else
|
2019-08-09 20:37:11 +00:00
|
|
|
EX int dist_1() { return 1; }
|
|
|
|
EX int dist_2() { return BITRUNCATED ? 2 : 1; }
|
|
|
|
EX int dist_3() { return BITRUNCATED ? 3 : 2; }
|
2019-02-17 17:28:20 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX array<heptagon*, 3> get_masters(cell *c) {
|
2019-02-17 17:28:20 +00:00
|
|
|
if(0);
|
|
|
|
#if CAP_GP
|
2020-07-12 18:52:32 +00:00
|
|
|
else if(INVERSE) {
|
|
|
|
c = get_mapped(c);
|
|
|
|
return UIU(get_masters(c));
|
|
|
|
}
|
2019-02-17 17:28:20 +00:00
|
|
|
else if(GOLDBERG) {
|
|
|
|
auto li = get_local_info(c);
|
|
|
|
be_in_triangle(li);
|
|
|
|
auto cm = c->master;
|
|
|
|
int i = li.last_dir;
|
2019-08-09 12:12:33 +00:00
|
|
|
return make_array(cm, cm->cmove(i), cm->cmodmove(i+1));
|
2019-02-17 17:28:20 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if CAP_IRR
|
|
|
|
else if(IRREGULAR)
|
|
|
|
return irr::get_masters(c);
|
|
|
|
#endif
|
|
|
|
else
|
2019-08-19 11:55:20 +00:00
|
|
|
return make_array(c->cmove(0)->master, c->cmove(2)->master, c->cmove(4)->master);
|
2019-02-17 17:28:20 +00:00
|
|
|
}
|
2018-04-10 15:06:04 +00:00
|
|
|
|
2019-08-09 20:37:11 +00:00
|
|
|
EX string operation_name() {
|
2019-02-17 17:28:20 +00:00
|
|
|
if(0);
|
|
|
|
#if CAP_IRR
|
|
|
|
else if(IRREGULAR)
|
|
|
|
return XLAT("irregular");
|
|
|
|
#endif
|
|
|
|
else if(DUAL)
|
|
|
|
return XLAT("dual");
|
|
|
|
else if(PURE)
|
|
|
|
return XLAT("pure");
|
|
|
|
else if(BITRUNCATED)
|
|
|
|
return XLAT("bitruncated");
|
|
|
|
#if CAP_GP
|
2020-07-12 18:52:32 +00:00
|
|
|
else if(GOLDBERG && param == loc(1, 0))
|
2019-02-17 17:28:20 +00:00
|
|
|
return XLAT("pure");
|
2020-07-12 18:52:32 +00:00
|
|
|
else if(GOLDBERG && param == loc(1, 1) && S3 == 3)
|
2019-02-17 17:28:20 +00:00
|
|
|
return XLAT("bitruncated");
|
2020-07-12 18:52:32 +00:00
|
|
|
else if(GOLDBERG && param == loc(1, 1) && S3 == 4)
|
2019-02-17 17:28:20 +00:00
|
|
|
return XLAT("rectified");
|
2020-07-12 18:52:32 +00:00
|
|
|
else if(UNRECTIFIED && param == loc(1, 1) && S3 == 4)
|
|
|
|
return XLAT("dual");
|
|
|
|
else if(UNTRUNCATED && param == loc(1, 1) && S3 == 3)
|
|
|
|
return XLAT("dual");
|
|
|
|
else if(GOLDBERG && param == loc(2, 0))
|
2019-02-17 17:28:20 +00:00
|
|
|
return S3 == 3 ? XLAT("chamfered") : XLAT("expanded");
|
2020-07-12 18:52:32 +00:00
|
|
|
else if(GOLDBERG && param == loc(3, 0) && S3 == 3)
|
2019-02-17 17:28:20 +00:00
|
|
|
return XLAT("2x bitruncated");
|
2022-02-17 20:00:10 +00:00
|
|
|
#if MAXMDIM >= 4
|
2021-07-06 23:48:20 +00:00
|
|
|
else if(variation == eVariation::subcubes)
|
2021-07-09 12:01:55 +00:00
|
|
|
return XLAT("subcubed") + "(" + its(reg3::subcube_count) + ")";
|
|
|
|
else if(variation == eVariation::dual_subcubes)
|
|
|
|
return XLAT("dual-subcubed") + "(" + its(reg3::subcube_count) + ")";
|
|
|
|
else if(variation == eVariation::bch)
|
|
|
|
return XLAT("bitruncated-subcubed") + "(" + its(reg3::subcube_count) + ")";
|
|
|
|
else if(variation == eVariation::coxeter)
|
|
|
|
return XLAT("subdivided") + "(" + its(reg3::coxeter_param) + ")";
|
2022-02-17 20:00:10 +00:00
|
|
|
#endif
|
2019-02-17 17:28:20 +00:00
|
|
|
else {
|
|
|
|
auto p = human_representation(param);
|
2020-07-12 18:52:32 +00:00
|
|
|
string s = "GP(" + its(p.first) + "," + its(p.second) + ")";
|
|
|
|
if(UNRECTIFIED) return XLAT("unrectified") + " " + s;
|
|
|
|
if(WARPED) return XLAT("warped") + " " + s;
|
|
|
|
if(UNTRUNCATED) return XLAT("untruncated") + " " + s;
|
|
|
|
return s;
|
2019-02-17 17:28:20 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
else return "UNSUPPORTED";
|
|
|
|
#endif
|
|
|
|
}
|
2020-07-12 18:52:32 +00:00
|
|
|
|
|
|
|
/* inverse map */
|
|
|
|
|
|
|
|
EX hrmap *pmap;
|
|
|
|
// EX geometry_information *underlying_cgip;
|
|
|
|
|
|
|
|
struct hrmap_inverse : hrmap {
|
|
|
|
hrmap *underlying_map;
|
|
|
|
|
|
|
|
map<cell*, cell*> mapping;
|
|
|
|
map<cell*, int> shift;
|
|
|
|
|
|
|
|
template<class T> auto in_underlying(const T& t) -> decltype(t()) {
|
|
|
|
dynamicval<hrmap*> gpm(pmap, this);
|
|
|
|
dynamicval<eVariation> gva(variation, variation_for(param));
|
|
|
|
dynamicval<hrmap*> gu(currentmap, underlying_map);
|
|
|
|
// dynamicval<geometry_information*> gc(cgip, underlying_cgip);
|
|
|
|
return t();
|
|
|
|
}
|
|
|
|
|
|
|
|
cell* get_mapped(cell *underlying_cell, int set_shift) {
|
|
|
|
if(mapping.count(underlying_cell))
|
|
|
|
return mapping[underlying_cell];
|
|
|
|
int d = underlying_cell->type;
|
|
|
|
if(UNTRUNCATED) d /= 2;
|
|
|
|
if(WARPED && set_shift < 2) d /= 2;
|
|
|
|
cell *c = newCell(d, underlying_cell->master);
|
|
|
|
mapping[underlying_cell] = c;
|
|
|
|
if(!UNRECTIFIED) shift[c] = set_shift;
|
|
|
|
mapping[c] = underlying_cell;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2021-07-12 13:20:04 +00:00
|
|
|
transmatrix relative_matrixh(heptagon *h2, heptagon *h1, const hyperpoint& hint) override {
|
2020-09-22 13:51:15 +00:00
|
|
|
return in_underlying([&] { return currentmap->relative_matrix(h2, h1, hint); });
|
|
|
|
}
|
|
|
|
|
2021-07-12 13:20:04 +00:00
|
|
|
transmatrix relative_matrixc(cell *c2, cell *c1, const hyperpoint& hint) override {
|
2020-10-06 19:11:27 +00:00
|
|
|
c1 = mapping[c1];
|
|
|
|
c2 = mapping[c2];
|
2020-09-22 13:51:15 +00:00
|
|
|
return in_underlying([&] { return currentmap->relative_matrix(c2, c1, hint); });
|
|
|
|
}
|
|
|
|
|
2020-07-12 18:52:32 +00:00
|
|
|
~hrmap_inverse() {
|
|
|
|
in_underlying([this] { delete underlying_map; });
|
|
|
|
}
|
|
|
|
|
|
|
|
heptagon *getOrigin() override { return in_underlying([this] { return underlying_map->getOrigin(); }); }
|
|
|
|
|
|
|
|
cell *gs;
|
|
|
|
|
|
|
|
cell* gamestart() override {
|
|
|
|
return gs;
|
|
|
|
}
|
|
|
|
|
|
|
|
hrmap_inverse() {
|
|
|
|
if(0) {
|
|
|
|
println(hlog, "making ucgi");
|
|
|
|
dynamicval<eVariation> gva(variation, variation_for(param));
|
|
|
|
check_cgi();
|
|
|
|
cgi.require_basics();
|
|
|
|
// underlying_cgip = cgip;
|
|
|
|
println(hlog, "done ucgi");
|
|
|
|
}
|
|
|
|
bool warped = WARPED;
|
|
|
|
in_underlying([&,this] {
|
|
|
|
initcells();
|
|
|
|
underlying_map = currentmap;
|
|
|
|
gs = currentmap->gamestart();
|
|
|
|
if(!warped) gs = gs->cmove(0);
|
|
|
|
});
|
|
|
|
if(UNTRUNCATED) gs = get_mapped(gs, 1);
|
|
|
|
else gs = get_mapped(gs, 2);
|
|
|
|
for(hrmap*& m: allmaps) if(m == underlying_map) m = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cell *create_move(cell *parent, int d) {
|
|
|
|
if(UNRECTIFIED) {
|
|
|
|
cellwalker cw(mapping[parent], d);
|
2021-09-30 10:04:58 +00:00
|
|
|
bool b = cw.mirrored;
|
2020-07-12 18:52:32 +00:00
|
|
|
in_underlying([&] {
|
|
|
|
cw += wstep;
|
|
|
|
cw --;
|
|
|
|
cw += wstep;
|
|
|
|
cw --;
|
2021-09-30 10:04:58 +00:00
|
|
|
if(cw.mirrored != b) cw++;
|
2020-07-12 18:52:32 +00:00
|
|
|
});
|
|
|
|
cw.at = get_mapped(cw.at, 0);
|
|
|
|
parent->c.connect(d, cw.at, cw.spin, cw.mirrored);
|
|
|
|
return cw.at;
|
|
|
|
}
|
|
|
|
if(UNTRUNCATED) {
|
|
|
|
cellwalker cw(mapping[parent], 2*d+shift[parent]);
|
|
|
|
in_underlying([&] {
|
|
|
|
cw += wstep;
|
|
|
|
});
|
|
|
|
cw.at = get_mapped(cw.at, cw.spin & 1);
|
|
|
|
parent->c.connect(d, cw.at, cw.spin / 2, cw.mirrored);
|
|
|
|
return cw.at;
|
|
|
|
}
|
|
|
|
if(WARPED) {
|
|
|
|
int sh = shift[parent];
|
|
|
|
if(sh == 2) {
|
|
|
|
cellwalker cw(mapping[parent], d);
|
|
|
|
in_underlying([&] { cw += wstep; });
|
|
|
|
cw.at = get_mapped(cw.at, cw.spin & 1);
|
|
|
|
parent->c.connect(d, cw.at, cw.spin / 2, cw.mirrored);
|
|
|
|
return cw.at;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cellwalker cw(mapping[parent], 2*d+sh);
|
|
|
|
in_underlying([&] {
|
|
|
|
cw += wstep;
|
|
|
|
});
|
|
|
|
cw.at = get_mapped(cw.at, 2);
|
|
|
|
parent->c.connect(d, cw.at, cw.spin, cw.mirrored);
|
|
|
|
return cw.at;
|
|
|
|
}
|
|
|
|
}
|
2021-03-24 19:25:44 +00:00
|
|
|
throw hr_exception("unimplemented");
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
transmatrix adj(cell *c, int d) override {
|
|
|
|
transmatrix T;
|
|
|
|
if(UNRECTIFIED) {
|
|
|
|
cellwalker cw(mapping[c], d);
|
|
|
|
in_underlying([&] {
|
|
|
|
T = currentmap->adj(cw.at, cw.spin);
|
|
|
|
cw += wstep;
|
|
|
|
cw --;
|
|
|
|
T = T * currentmap->adj(cw.at, cw.spin);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if(UNTRUNCATED) {
|
|
|
|
cellwalker cw(mapping[c], 2*d+shift[c]);
|
|
|
|
in_underlying([&] { T = currentmap->adj(cw.at, cw.spin); });
|
|
|
|
}
|
|
|
|
if(WARPED) {
|
|
|
|
int sh = shift[c];
|
|
|
|
if(sh == 2) {
|
|
|
|
auto c1 = mapping[c];
|
|
|
|
in_underlying([&] { T = currentmap->adj(c1, d); });
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cellwalker cw(mapping[c], 2*d+shift[c]);
|
|
|
|
in_underlying([&] { T = currentmap->adj(cw.at, cw.spin); });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return T;
|
|
|
|
}
|
|
|
|
|
2020-07-27 17:36:19 +00:00
|
|
|
void draw_at(cell *at, const shiftmatrix& where) override {
|
2020-07-12 18:52:32 +00:00
|
|
|
|
|
|
|
dq::clear_all();
|
|
|
|
|
|
|
|
auto enqueue = (quotient ? dq::enqueue_by_matrix_c : dq::enqueue_c);
|
2020-07-27 17:36:19 +00:00
|
|
|
enqueue(at, where);
|
2020-07-12 18:52:32 +00:00
|
|
|
|
|
|
|
while(!dq::drawqueue_c.empty()) {
|
|
|
|
auto& p = dq::drawqueue_c.front();
|
2020-07-27 16:49:04 +00:00
|
|
|
cell *c = p.first;
|
|
|
|
shiftmatrix V = p.second;
|
2020-07-12 18:52:32 +00:00
|
|
|
auto c1 = get_mapped(c, 0);
|
|
|
|
|
|
|
|
in_underlying([&] {
|
|
|
|
if(GOLDBERG) {
|
2021-07-29 10:06:52 +00:00
|
|
|
gp::current_li = gp::get_local_info(c1);
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
else {
|
2021-07-29 10:06:52 +00:00
|
|
|
gp::current_li.relative.first = shvid(c1);
|
|
|
|
gp::current_li.relative.second = shift[c];
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
dq::drawqueue_c.pop();
|
|
|
|
|
|
|
|
if(!do_draw(c, V)) continue;
|
|
|
|
drawcell(c, V);
|
|
|
|
|
|
|
|
for(int i=0; i<c->type; i++) if(c->cmove(i))
|
2020-07-27 16:49:04 +00:00
|
|
|
enqueue(c->move(i), optimized_shift(V * adj(c, i)));
|
2020-07-12 18:52:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 21:34:50 +00:00
|
|
|
void find_cell_connection(cell *c, int d) override {
|
|
|
|
inverse_move(c, d);
|
|
|
|
}
|
|
|
|
|
|
|
|
int shvid(cell *c) override {
|
|
|
|
return gp::get_plainshape_id(c);
|
|
|
|
}
|
2021-06-14 07:38:05 +00:00
|
|
|
|
|
|
|
hyperpoint get_corner(cell *c, int cid, ld cf) override {
|
|
|
|
if(UNTRUNCATED) {
|
|
|
|
cell *c1 = gp::get_mapped(c);
|
|
|
|
cellwalker cw(c1, cid*2);
|
|
|
|
if(!gp::untruncated_shift(c)) cw--;
|
|
|
|
hyperpoint h = UIU(nearcorner(c1, cw.spin));
|
|
|
|
return mid_at_actual(h, 3/cf);
|
|
|
|
}
|
|
|
|
if(UNRECTIFIED) {
|
|
|
|
cell *c1 = gp::get_mapped(c);
|
|
|
|
hyperpoint h = UIU(nearcorner(c1, cid));
|
|
|
|
return mid_at_actual(h, 3/cf);
|
|
|
|
}
|
|
|
|
if(WARPED) {
|
|
|
|
int sh = gp::untruncated_shift(c);
|
|
|
|
cell *c1 = gp::get_mapped(c);
|
|
|
|
if(sh == 2) {
|
|
|
|
cellwalker cw(c, cid);
|
|
|
|
hyperpoint h1 = UIU(tC0(currentmap->adj(c1, cid)));
|
|
|
|
cw--;
|
|
|
|
hyperpoint h2 = UIU(tC0(currentmap->adj(c1, cw.spin)));
|
|
|
|
hyperpoint h = mid(h1, h2);
|
|
|
|
return mid_at_actual(h, 3/cf);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cellwalker cw(c1, cid*2);
|
|
|
|
if(!gp::untruncated_shift(c)) cw--;
|
|
|
|
hyperpoint h = UIU(nearcorner(c1, cw.spin));
|
|
|
|
h = mid(h, C0);
|
|
|
|
return mid_at_actual(h, 3/cf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return C0;
|
|
|
|
}
|
2020-07-12 18:52:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EX hrmap* new_inverse() { return new hrmap_inverse; }
|
|
|
|
|
|
|
|
hrmap_inverse* inv_map() { return (hrmap_inverse*)currentmap; }
|
|
|
|
|
|
|
|
EX hrmap* get_underlying_map() { return inv_map()->underlying_map; }
|
|
|
|
EX cell* get_mapped(cell *c) { return inv_map()->get_mapped(c, 0); }
|
|
|
|
EX int untruncated_shift(cell *c) { return inv_map()->shift[c]; }
|
2020-07-12 22:54:12 +00:00
|
|
|
|
|
|
|
EX void delete_mapped(cell *c) {
|
|
|
|
if(!pmap) return;
|
|
|
|
auto i = (hrmap_inverse*) pmap;
|
|
|
|
if(i->mapping.count(c))
|
|
|
|
destroy_cell(i->mapping[c]);
|
|
|
|
}
|
2020-07-12 18:52:32 +00:00
|
|
|
|
|
|
|
EX cell *inverse_move(cell *c, int d) { return inv_map()->create_move(c, d); }
|
|
|
|
|
|
|
|
#if HDR
|
|
|
|
template<class T> auto in_underlying_geometry(const T& f) -> decltype(f()) {
|
|
|
|
if(!INVERSE) return f();
|
|
|
|
dynamicval<hrmap*> gpm(pmap, currentmap);
|
|
|
|
dynamicval<eVariation> gva(variation, variation_for(param));
|
|
|
|
dynamicval<hrmap*> gu(currentmap, get_underlying_map());
|
|
|
|
// dynamicval<geometry_information*> gc(cgip, underlying_cgip);
|
|
|
|
return f();
|
|
|
|
}
|
|
|
|
|
|
|
|
#define UIU(x) hr::gp::in_underlying_geometry([&] { return (x); })
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-02-17 17:28:20 +00:00
|
|
|
|
2018-06-11 16:00:40 +00:00
|
|
|
}}
|