1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00
hyperrogue/rogueviz/rewriting.cpp

178 lines
4.3 KiB
C++
Raw Normal View History

2020-01-18 23:34:38 +00:00
// Hyperbolic Rogue -- infinite-order tessellations
// Copyright (C) 2011-2019 Zeno Rogue, see 'hyper.cpp' for details
/** \file inforder3.cpp
* \brief infinite-order tessellations
*
* very simple
*/
#include "../hyper.h"
namespace hr {
namespace rewriting {
bool symmetric;
string start;
vector<pair<string, string> > rules;
2020-01-19 10:50:04 +00:00
set<pair<string, string> > ruleset;
2020-01-18 23:34:38 +00:00
2020-01-19 10:50:04 +00:00
set<pair<string, bool>> find_matches(string s) {
set<pair<string, bool>> res;
2020-01-18 23:34:38 +00:00
for(auto& p: rules) {
size_t next = s.find(p.first);
while(next != string::npos) {
2020-01-19 10:50:04 +00:00
res.emplace(s.substr(0, next) + p.second + s.substr(next+isize(p.first)), ruleset.count({p.second, p.first}));
2020-01-18 23:34:38 +00:00
next = s.find(p.first, next+1);
}
}
return res;
}
struct hrmap_rewrite : hrmap_hyperbolic {
map<heptagon*, string> asg;
map<string, heptagon*> asg_rev;
heptagon *create_step(heptagon *h, int direction) {
if(h->move(direction)) return h->move(direction);
2020-01-19 10:50:04 +00:00
if(asg.empty()) { asg[h] = start; h->zebraval = 0; }
2020-01-18 23:34:38 +00:00
auto matches = find_matches(asg[h]);
2020-01-19 10:50:04 +00:00
int next = h->zebraval;
2020-01-18 23:34:38 +00:00
2020-01-19 10:50:04 +00:00
if(matches.empty() && next == 0) {
h->c.connect(0, h, 0, false);
return h;
}
for(auto& msym: matches) {
if(h->move(next)) { next++; continue; }
bool symmetric = msym.second;
const string& m = msym.first;
2020-01-18 23:34:38 +00:00
if(symmetric) {
auto matches1 = find_matches(m);
heptagon *h1;
if(asg_rev[m]) h1 = asg_rev[m];
else {
h1 = tailored_alloc<heptagon> (isize(matches1));
h1->alt = NULL;
h1->s = hsA;
h1->cdata = NULL;
2020-01-19 10:50:04 +00:00
h1->distance = h->distance;
h1->zebraval = 0;
2020-01-18 23:34:38 +00:00
h1->c7 = newCell(isize(matches1), h1);
asg[h1] = m;
asg_rev[m] = h1;
}
int next1 = 0;
2020-01-19 10:50:04 +00:00
for(auto& s: matches1) { if(s.first == asg[h]) break; next1++; }
2020-01-18 23:34:38 +00:00
h->c.connect(next, h1, next1, false);
}
else {
int deg = 1 + isize(find_matches(m));
auto h1 = tailored_alloc<heptagon> (deg);
h->c.connect(next, h1, 0, false);
h1->alt = NULL;
h1->s = hsA;
h1->cdata = NULL;
h1->distance = h->distance + 1;
2020-01-19 10:50:04 +00:00
h1->zebraval = 1;
2020-01-18 23:34:38 +00:00
h1->c7 = newCell(deg, h1);
asg[h1] = m;
}
next++;
}
2020-01-19 10:50:04 +00:00
if(next != h->type) { println(hlog, "degree error"); exit(1); }
2020-01-18 23:34:38 +00:00
return h->move(direction);
}
};
bool labeller(cell* c, const transmatrix& V) {
auto m = dynamic_cast<hrmap_rewrite*> (currentmap);
if(m) {
string s = m->asg[c->master];
2020-01-19 10:50:04 +00:00
queuestr(V, 0.5, s, colortables['j'][c->master->distance+1]);
2020-01-18 23:34:38 +00:00
}
return false;
}
2020-01-19 10:50:04 +00:00
void load_rules(vector<string> vs) {
stop_game();
set_geometry(gInfOrderMixed);
ginf[gInfOrderMixed].distlimit = {1, 1};
ginf[gInfOrderMixed].flags |= qEXPERIMENTAL;
start = "";
rules.clear();
ruleset.clear();
for(string line: vs) {
if(line == "") continue;
auto i = line.find("->");
if(i != string::npos) {
rules.emplace_back(line.substr(0, i), line.substr(i+2));
ruleset.emplace(line.substr(0, i), line.substr(i+2));
}
else start = line;
}
ginf[gInfOrderMixed].sides = isize(find_matches(start));
if(!ginf[gInfOrderMixed].sides) ginf[gInfOrderMixed].sides = 1;
ginf[gInfOrderMixed].flags |= qANYQ;
}
#if ISWEB
extern "C" {
void load_web_rules() {
string s = get_value("rules") + '\n';
vector<string> split;
string cc = "";
for(char c: s) if(c == '\n' || c == '\r') split.push_back(cc), cc = ""; else cc += c;
load_rules(split);
start_game();
clearMessages();
}
}
#endif
2020-01-18 23:34:38 +00:00
auto hooks =
addHook(hooks_args, 100, [] {
using namespace arg;
if(0) ;
2020-01-19 10:50:04 +00:00
#if ISWEB
else if(argis("-rww")) {
load_web_rules();
}
#endif
2020-01-18 23:34:38 +00:00
else if(argis("-rwr")) {
shift();
fhstream ss(argcs(), "rt");
2020-01-19 10:50:04 +00:00
vector<string> vs;
2020-01-18 23:34:38 +00:00
string line;
2020-01-19 10:50:04 +00:00
while(scan(ss, line)) vs.push_back(line);
load_rules(vs);
2020-01-18 23:34:38 +00:00
}
else return 1;
return 0;
}) +
addHook(hooks_newmap, 100, [] {
if(geometry == gInfOrderMixed && !rules.empty()) return (hrmap*) new hrmap_rewrite;
return (hrmap*) nullptr;
})
+ addHook(hooks_drawcell, 100, labeller);
}
}