increase scroll speed across contest zone

This commit is contained in:
2026-07-08 22:06:15 +02:00
parent 24c18f8ac6
commit de1ebb8a5f
7 changed files with 71 additions and 4 deletions

View File

@@ -53,6 +53,14 @@ struct WorldArtifacts
int artifactWinCount;
};
// View pan speed (REQ-UI-SCROLL-SPEED). Presentation-only; the simulation ignores these.
struct WorldScroll
{
double panSpeedSlow_tps; // tiles/s, used outside the contest zone
double panSpeedFast_tps; // tiles/s, used inside the contest zone
int panRampBandWidth_tiles; // full width of the ramp band straddling each contest-zone boundary
};
struct WorldConfig
{
int heightTiles; // REQ-GW-HEIGHT
@@ -73,4 +81,5 @@ struct WorldConfig
WorldWaves waves;
WorldTargeting targeting;
WorldArtifacts artifacts;
WorldScroll scroll;
};