mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-20 03:54:47 +00:00
3d:: pseudohept specified
This commit is contained in:
parent
a1ca5b2995
commit
b8913b39fd
@ -343,6 +343,13 @@ auto bt_config = addHook(hooks_args, 0, [] () {
|
||||
});
|
||||
#endif
|
||||
|
||||
bool pseudohept(cell *c) {
|
||||
if(DIM == 2)
|
||||
return c->type & c->master->distance & 1;
|
||||
else
|
||||
return (c->master->zebraval == 1) && (c->master->distance & 1);
|
||||
}
|
||||
|
||||
int celldistance3(cell *c1, cell *c2) { // [untested]
|
||||
int steps = 0;
|
||||
int d1 = celldistAlt(c1);
|
||||
|
@ -528,6 +528,12 @@ namespace euclid3 {
|
||||
return x;
|
||||
}
|
||||
|
||||
bool pseudohept(cell *c) {
|
||||
coord co = cubemap()->ispacemap[c->master];
|
||||
for(int i=0; i<3; i++) if(!(getcoord(co, i) & 1)) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
void draw() {
|
||||
dq::visited.clear();
|
||||
dq::enqueue(viewctr.at, cview());
|
||||
|
10
pattern2.cpp
10
pattern2.cpp
@ -1287,7 +1287,15 @@ bool pseudohept(cell *c) {
|
||||
#if CAP_IRR
|
||||
if(IRREGULAR) return irr::pseudohept(c);
|
||||
#endif
|
||||
if(binarytiling) return c->type & c->master->distance & 1;
|
||||
#if CAP_BT
|
||||
if(binarytiling) return binary::pseudohept(c);
|
||||
#endif
|
||||
#if MAXDIM == 4
|
||||
if(DIM == 3) {
|
||||
if(euclid) return euclid3::pseudohept(c);
|
||||
if(sphere) return sphere3::pseudohept(c);
|
||||
}
|
||||
#endif
|
||||
#if CAP_ARCM
|
||||
if(archimedean) return arcm::pseudohept(c);
|
||||
#endif
|
||||
|
@ -378,6 +378,10 @@ transmatrix relative_matrix(heptagon *h2, heptagon *h1) {
|
||||
return inverse(gmatr(h1)) * gmatr(h2);
|
||||
}
|
||||
|
||||
bool pseudohept(cell *c) {
|
||||
return c->master->zebraval < 16;
|
||||
}
|
||||
|
||||
void draw() {
|
||||
sphereflip = Id;
|
||||
auto m = (hrmap_spherical3*) currentmap;
|
||||
|
Loading…
Reference in New Issue
Block a user