fix(terrain): Cover the visible ground at high camera zoom#2785
Conversation
|
| Filename | Overview |
|---|---|
| Core/GameEngineDevice/Source/W3DDevice/GameClient/W3DView.cpp | Terrain draw window is now dynamically sized by projecting the four viewport corners onto the ground plane, clamped to the map extent and snapped to VERTEX_BUFFER_TILE blocks. Logic closely mirrors the existing updateCenter() ray projection; NaN/parallel-ray handling via the !(>=) idiom is correct. One unused variable (viewportMax) may produce a compiler warning. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[getDesiredTerrainDrawSize] --> B{DrawEntireTerrain?}
B -- Yes --> C[Set dimensions = full map extent\nreturn true]
B -- No --> D{cameraPitch > threshold\nor scripted camera?}
D -- Yes --> E[dimensions = NORMAL_DRAW_WIDTH/HEIGHT]
D -- No --> F[dimensions = LOW_ANGLE_DRAW_WIDTH/HEIGHT]
E --> G[Project 4 viewport corners\nonto ground plane via ray cast]
F --> G
G --> H[Clamp corners to ±mapExtent\nto handle NaN / parallel rays]
H --> I[Compute footprintSpan\n= max of X and Y span]
I --> J[Snap up to nearest\n1 + N×VERTEX_BUFFER_TILE_LENGTH block]
J --> K{zoomDrawSize > current dimensions?}
K -- Yes --> L[Grow dimensions.x and dimensions.y\nto zoomDrawSize]
K -- No --> M[No-op at normal zoom]
L --> N[return true]
M --> N
Reviews (6): Last reviewed commit: "perf(terrain): Grow the draw window only..." | Re-trigger Greptile
e001c0c to
c245104
Compare
|
Tidied the comments in
No functional change — comments only. |
Hi @Skyaero42, From the #2785 side, I think these are separate, complementary fixes rather than the same one:
Same file, but different functions ( They're actually complementary: #1711 raises the effective camera height on wide aspect ratios, which is exactly the zoomed-out condition where an un-sized terrain window stops covering the view and the water bleeds through. #2785 derives the window from the projected view corners, so it adapts automatically to whatever camera height #1711 produces. So #1711 can make the symptom more visible on wide screens, and #2785 fixes the rendering side of it. @Mauller can confirm the #1711 specifics/intent — I'm only speaking to how #2785 relates. Thanks! |
|
Hello @xezon @Skyaero42 I'd be happy to discuss or modify anything in this PR that you think is worth changing. I'm just trying to fix a display issue that I think is crucial given today's high resolutions. Thanks! |
|
I was able to test the fix during a 4h session (Generals Online fork with this fix backported), on various maps. All good ! |
|
There is a major deficit in reviewing capacity. You just gonna have to be patient. |
With the default settings (DrawEntireTerrain=No) the terrain is drawn only within a window of tiles around the view center. At high camera zoom this window no longer covers the visible ground, so any map water renders behind it. Maps that have no real water often still keep a map-sized "Default Water" polygon, which then makes the whole map look flooded. Players worked around this with DrawEntireTerrain=Yes, but that always draws the entire map and is very slow even at normal zoom (TheSuperHackers#2743). This change instead sizes the normal draw window to the actual visible footprint: it projects the four view corners onto the ground plane (the same method updateCenter() uses to position the window) and grows the draw size just enough to span them, bounded by the map extent and snapped to whole vertex-buffer tiles. At normal zoom the footprint is smaller than the normal window, so this is a no-op and behavior is unchanged; the window only grows as the camera zooms out. This does not change the DrawEntireTerrain path, but removes the need for it in the common case. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
c245104 to
bf9ab08
Compare
The terrain draw-window growth added in the previous commit was gated to the user-controlled camera only. The scripted camera, for example the main menu shell map, can also view past the regular draw window, which left the ground uncovered and the water plane showing through. Apply the growth to the scripted camera as well. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6fc47f85-1023-4457-9df0-8e97163e72f0
|
@Skyaero42 @xezon Update now that #2846 has landed. I rebased this PR on top of it, and the fix now lives inside the new Why it's still worth having alongside #2846:
So the two are complementary: #2846 makes the "draw everything" workaround fast; this PR removes the need for that workaround in the common case by sizing the draw window to the actual visible footprint. It's a no-op at normal zoom and grows only as you zoom out, bounded by the map extent and snapped to tile blocks so it doesn't reallocate every frame. The latest commit also extends the coverage to the scripted camera (for example the main-menu shell map), which can likewise see past the regular window. Happy to tweak anything. |
|
I did some quick performance comparisons:
@sailro Can you verify these findings? I'd be hesitant to add this code for |
The previous snapping always added a full spare vertex-buffer block (32 tiles) of margin before rounding up, so the draw window grew one block earlier than geometrically necessary. A footprint of 96-128 tiles - which the normal 129-vertex window (128 tiles) still covers - was drawn with a 161 window (25 blocks instead of 16, +56% terrain blocks), and some viewport aspect ratios crossed that threshold even at normal zoom. Compute the required block count directly with a ceiling division and add only a small centering margin (CENTER_LIMIT-sized), so the window stays at the normal size until the footprint truly exceeds it. This keeps the zoomed-out coverage while making the change a genuine no-op at normal zoom. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6fc47f85-1023-4457-9df0-8e97163e72f0
|
@Caball009 Thanks a lot for profiling this - your finding was real and pointed at an actual inefficiency in my code, which I've now fixed (latest commit). Root cause of the drop you saw with The fix:
So at any camera height where the visible terrain fits the normal window, this is now a genuine no-op - only the four corner-ray projections run, and On the two cost sources when actually zoomed out:
Comparing against the On your suggestion to apply it for Happy to share raw numbers or a capture if useful. |
Problem
With the default settings (
DrawEntireTerrain=No) the terrain is only drawn within a window of tiles around the view center. At high camera zoom this window no longer covers the visible ground, so any map water renders behind it. Many maps that have no real water still keep a map-sized "Default Water" polygon, which then makes the whole map look flooded when the camera is zoomed out.The legacy workaround was
DrawEntireTerrain=Yes, but that always draws the entire map and is very slow even at normal zoom (#2743).Fix
Size the normal draw window to the actual visible footprint instead of a fixed tile count:
updateCenter()already uses to position the window).NaNdraw size.At normal zoom the footprint is smaller than the normal window, so this is a no-op and behavior is unchanged; the window only grows as the camera zooms out. It works for all maps.
This change lives in the default
DrawEntireTerrain=Nopath. It does not modify theDrawEntireTerrainpath, so it does not by itself resolve #2743 — it removes the need for that slow workaround in the common case.Before / After
Before — zoomed out on a no-water map, the terrain window ends and the map's default water polygon fills the rest of the view:
After — the draw window covers the visible ground, so the sand renders all the way out (same scene type, patched build):
After on a stock map (Whiteout) — the real lake still renders correctly and the terrain fills the view (the black wedge top-left is genuinely off-map, past the terrain border at extreme zoom):
Testing
DrawEntireTerrain=Yes-style degradation).AI disclosure
Per the contribution guidelines: the code in this PR was written with the help of an LLM (GitHub Copilot CLI) and then reviewed, iterated on, and verified by a human. The approach — projecting the view footprint the same way
updateCenter()does, tile snapping, and map-extent /NaNbounding — was chosen deliberately, and the change was validated in-game across several maps and zoom levels. The diff is intentionally small and self-contained: one file, only the draw-size calculation inupdateTerrain().cc @xezon