1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-06 02:37:19 +00:00

rogueviz::som:: using new atscreenpos

This commit is contained in:
Zeno Rogue 2025-03-08 12:44:11 +01:00
parent 8be5986704
commit b7d50896ec

View File

@ -1401,17 +1401,17 @@ bool draw_heatmap() {
int pixstep = 4;
int width = heatmap_width;
for(int y=width; y<vid.yres-width; y+=pixstep) {
curvepoint(atscreenpos(width, y, 1) * C0);
curvepoint(atscreenpos(width*2, y, 1) * C0);
curvepoint(atscreenpos(width*2, y+pixstep, 1) * C0);
curvepoint(atscreenpos(width, y+pixstep, 1) * C0);
queuecurve(shiftless(Id), 0, darkena(heatmap(ilerp(width, vid.yres-width, y+pixstep/2.)), 0, 0xFF), PPR::LINE);
curvepoint(eupoint(width, y));
curvepoint(eupoint(width*2, y));
curvepoint(eupoint(width*2, y+pixstep));
curvepoint(eupoint(width, y+pixstep));
queuecurve(atscreenpos(0,0), 0, darkena(heatmap(ilerp(width, vid.yres-width, y+pixstep/2.)), 0, 0xFF), PPR::LINE);
}
for(int p=0; p<=10; p++) {
ld y = lerp(width, vid.yres-width, p / 10.);
curvepoint(atscreenpos(width*2, y, 1) * C0);
curvepoint(atscreenpos(width*3, y, 1) * C0);
queuecurve(shiftless(Id), 0xFFFFFFFF, 0, PPR::LINE);
curvepoint(eupoint(width*2, y));
curvepoint(eupoint(width*3, y));
queuecurve(atscreenpos(0,0), 0xFFFFFFFF, 0, PPR::LINE);
}
quickqueue();
return true;