1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

nilrider:: records and currentscores

This commit is contained in:
Zeno Rogue 2022-05-06 16:06:17 +02:00
parent aec4f78ac6
commit 09266b3059
3 changed files with 34 additions and 5 deletions

View File

@ -102,6 +102,11 @@ void level::init() {
println(hlog, "start.where = ", start.where);
println(hlog, "current.where = ", current.where, " : ", format("%p", &current));
int qgoals = isize(goals);
records[0].resize(qgoals, 0);
records[1].resize(qgoals, 0);
current_score.resize(qgoals, 0);
/* start facing slightly to the right from the slope */
for(auto b: {true, false}) while(true) {
auto c = start;

View File

@ -142,6 +142,12 @@ struct level {
vector<manual_replay> manual_replays;
vector<plan_replay> plan_replays;
/* vector of records in no-planning and planning for each goal (0 = no record known) */
vector<ld> records[2];
/* vector of current time for each goal */
vector<ld> current_score;
/** plan for the planning mode */
plan_t plan;
void init_plan();
@ -195,5 +201,5 @@ hyperpoint sym_to_heis(hyperpoint H);
extern int reversals;
extern bool loaded_or_planned;
extern bool planning_mode;
}

View File

@ -84,6 +84,27 @@ bool timestamp::collect(level *lev) {
if(t.x == xy.first && t.y == xy.second) collected_triangles |= (1<<i);
}
}
int gid = 0;
for(auto& g: lev->goals) {
bool gfailed = failed & Flag(gid);
bool gsuccess = goals & Flag(gid);
if(gfailed || gsuccess) continue;
checkerparam cp {this, lev, reversals};
auto res = g.check(cp);
if(res == grFailed) {
failed |= Flag(gid);
}
else if(res == grSuccess) {
goals |= Flag(gid);
lev->current_score[gid] = timer;
auto &res = lev->records[planning_mode][gid];
if(res == 0 || timer < res)
res = timer;
}
gid++;
}
return true;
}
@ -306,14 +327,11 @@ void timestamp::draw_instruments(level* l) {
for(auto& g: l->goals) {
bool gfailed = failed & Flag(gid);
bool gsuccess = goals & Flag(gid);
if(lshiftclick) gfailed = true, gsuccess = false;
if(anyctrlclick) gfailed = false, gsuccess = true;
string s = format_timer(timer);
shiftmatrix T = sId * atscreenpos(cx+rad/2, cy+(gid-1)*rad/1.2, pix * rad * 1.2);
poly_outline = 0xFF; color_t f = darkena(g.color, 0, 0xFF);
if(gsuccess) {
queuepoly(T * spin(90*degree), cgi.shGrail, f);
displaystr(cx+rad, cy+(gid-1)*rad/1.2, 0, vid.fsize*.75, s, 0, 0);
displaystr(cx+rad, cy+(gid-1)*rad/1.2, 0, vid.fsize*.75, format_timer(l->current_score[gid]), 0, 0);
}
else {
poly_outline = f; f = 0x40;