arb:: parameters shown

This commit is contained in:
Zeno Rogue 2020-05-01 17:12:13 +02:00
parent d8d7bf01bd
commit d95615bea2
1 changed files with 10 additions and 1 deletions

View File

@ -53,6 +53,7 @@ struct hr_polygon_error : hr_exception {
vector<transmatrix> v;
eGeometryClass c;
int id;
map<string, cld> params;
hr_polygon_error(const vector<transmatrix>& _v, int _id) : v(_v), c(cgclass), id(_id) {}
~hr_polygon_error() noexcept(true) {}
};
@ -151,6 +152,10 @@ EX void load_tile(exp_parser& ep, bool unit) {
catch(hr_parse_exception& ex) {
throw hr_parse_exception(ex.s + ep.where());
}
catch(hr_polygon_error& poly) {
poly.params = ep.extra_params;
throw;
}
cc.connections.resize(cc.size());
for(int i=0; i<isize(cc.connections); i++)
cc.connections[i] = make_tuple(cc.id, i, false);
@ -527,7 +532,11 @@ void run(string fname) {
set_variation(v);
current = t;
start_debugger(poly);
addMessage("polygon error, debugger started");
string help = XLAT("Polygon number %1 did not close correctly. Here is the picture to help you understand the issue.\n\n", its(poly.id));
showstartmenu = false;
for(auto& p: poly.params)
help += lalign(-1, p.first, " = ", p.second, "\n");
gotoHelp(help);
}
catch(hr_parse_exception& ex) {
println(hlog, "failed: ", ex.s);