From 9ecf07755d848844340356f3d98de223b3362530 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 17 Jan 2019 14:11:12 +0100 Subject: [PATCH] racing:: side display --- hud.cpp | 3 +- racing.cpp | 87 ++++++++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 73 insertions(+), 17 deletions(-) diff --git a/hud.cpp b/hud.cpp index 0fbd5f05..b0f11579 100644 --- a/hud.cpp +++ b/hud.cpp @@ -373,7 +373,8 @@ void drawStats() { quickqueue(); } - if(racing::on) ; + if(racing::on) + racing::drawStats(); else if(vid.xres > vid.yres * 85/100 && vid.yres > vid.xres * 85/100) { int bycorner[4]; for(int u=0; u<4; u++) bycorner[u] = 0; diff --git a/racing.cpp b/racing.cpp index 92e73819..d11eb866 100644 --- a/racing.cpp +++ b/racing.cpp @@ -163,7 +163,7 @@ void write_ghosts(string seed, int mcode) { hwrite(f, ghostset()); } -transmatrix get_ghostmoment(ghostmoment& p) { +transmatrix get_ghostmoment_matrix(ghostmoment& p) { cell *w = rti[p.where_id].c; transmatrix T = spin_uchar(p.alpha) * xpush(uchar_to_frac(p.distance) * distance_multiplier) * spin_uchar(p.beta); return gmatrix[w] * T; @@ -454,9 +454,9 @@ void generate_track() { vector forbidden; for(auto& ghost: ghostset()[specialland]) - forbidden.push_back(get_ghostmoment(ghost.history[0])); - for(auto& ghost: oghostset()[specialland]) - forbidden.push_back(get_ghostmoment(ghost.history[0])); + forbidden.push_back(get_ghostmoment_matrix(ghost.history[0])); + for(auto& ghost: oghostset()[specialland]) + forbidden.push_back(get_ghostmoment_matrix(ghost.history[0])); for(int i=0; i ticks - race_start_tick;} ); - if(p == ghost.history.end()) p--, p->footphase = 0; - cell *w = rti[p->where_id].c; - if(!gmatrix.count(w)) return; +void draw_ghost_at(ghost& ghost, cell *w, const transmatrix& V, ghostmoment& p) { dynamicval x(getcs(), ghost.cs); - if(ghost.cs.charid == -1) { dynamicval pc(peace::on, true); - drawMonsterType(eMonster(ghost.cs.uicolor), w, get_ghostmoment(*p), ghost.cs.dresscolor, uchar_to_frac(p->footphase)); + drawMonsterType(eMonster(ghost.cs.uicolor), w, V, ghost.cs.dresscolor, uchar_to_frac(p.footphase)); return; } - drawMonsterType(moPlayer, w, get_ghostmoment(*p), 0, uchar_to_frac(p->footphase)); + drawMonsterType(moPlayer, w, V, 0, uchar_to_frac(p.footphase)); + } + +bool ghost_finished(ghost& ghost) { + auto p = std::find_if(ghost.history.begin(), ghost.history.end(), [] (const ghostmoment gm) { return gm.step > ticks - race_start_tick;} ); + return p == ghost.history.end(); + } + +ghostmoment& get_ghostmoment(ghost& ghost) { + auto p = std::find_if(ghost.history.begin(), ghost.history.end(), [] (const ghostmoment gm) { return gm.step > ticks - race_start_tick;} ); + if(p == ghost.history.end()) p--, p->footphase = 0; + return *p; + } + +void draw_ghost(ghost& ghost) { + auto& p = get_ghostmoment(ghost); + cell *w = rti[p.where_id].c; + if(!gmatrix.count(w)) return; + draw_ghost_at(ghost, w, get_ghostmoment_matrix(p), p); + } + +transmatrix racerel(ld rel) { + int bsize = vid.fsize * 2; + return atscreenpos(bsize, vid.yres - bsize - rel * (vid.yres - bsize*2) / 100, bsize) * spin(M_PI/2); + } + +int get_percentage(cell *c) { + return min(get_info(c).completion * 100 / (isize(track) - DROP), 100); + } + +int get_percentage(int i) { + return get_percentage(shmup::pc[i]->base); + } + +void draw_ghost_state(ghost& ghost) { + auto& p = get_ghostmoment(ghost); + cell *w = rti[p.where_id].c; + ld result = ghost_finished(ghost) ? 100 : get_percentage(w); + draw_ghost_at(ghost, w, racerel(result), p); + } + +void drawStats() { + + if(!racing::on) return; + + initquickqueue(); + + int bsize = vid.fsize * 2; + for(int y: {bsize, vid.yres - bsize}) { + curvepoint(atscreenpos(bsize, y, bsize) * C0); + curvepoint(atscreenpos(bsize/2, y, bsize) * C0); + curvepoint(atscreenpos(bsize*3/2, y, bsize) * C0); + curvepoint(atscreenpos(bsize, y, bsize) * C0); + } + queuecurve(0xFFFFFFFF, 0, PPR::ZERO); + + for(auto& ghost: ghostset()[specialland]) draw_ghost_state(ghost); + for(auto& ghost: oghostset()[specialland]) draw_ghost_state(ghost); + + for(int i=0; i d(multi::cpid, i); + drawMonsterType(moPlayer, shmup::pc[i]->base, racerel(race_finish_tick[i] ? 100 : get_percentage(i)), 0xFFFFFFC0, shmup::pc[i]->footphase); + } + + quickqueue(); } void markers() { @@ -1233,10 +1292,6 @@ void markers() { } } -int get_percentage(int i) { - return min(get_info(shmup::pc[i]->base).completion * 100 / (isize(track) - DROP), 100); - } - void add_debug(cell *c) { if(racing::on && racing::rti_id[c]) { auto& r = racing::get_info(c);