Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Static reflections issues #1310

Open
2 of 9 tasks
VReaperV opened this issue Sep 17, 2024 · 9 comments
Open
2 of 9 tasks

Static reflections issues #1310

VReaperV opened this issue Sep 17, 2024 · 9 comments

Comments

@VReaperV
Copy link
Contributor

VReaperV commented Sep 17, 2024

This is to keep track of issues with static cubemap reflections, since there's multiple of them.

To enable reflections, use /r_normalMapping 1; r_deluxeMapping 1; r_specularMapping 1; r_reflectionMapping 1; r_physicalMapping 0/, then /buildcubemaps. Material system currently also won't select the correct cubemaps since that requires the core feature to work properly first. Use /r_showCubeProbs 1 to see where they are placed.

Primary issues:

  • Cubemap placement is broken:
    unvanquished_2024-09-17_124020_000
    unvanquished_2024-09-17_124037_000
    Both in the sense of their distribution and them being placed outside the map/in geometry. The latter is mostly fixed now.
    Also see Cubemap probes placement/lookup is incorrect #1257.
  • The nearest cubemap is not selected correctly most of the time: usually it's not found at all, you have to get really close to a probe for it to work. This can be easily seen with r_showCubeProbs 1, which highlights the nearest and second nearest probes.
  • The second nearest cubemap seems to never be selected at all.
  • Doesn't work with PBR at all.
  • All cubemaps are rendered as pitch black or all white (mostly the former).
  • It should be possible to view the actual contents of cubemaps when using r_showCubeMaps 1.

Secondary issues:

  • The required cvar combinations to use static reflections are unclear unless you look at the code.
  • Cubemaps can only be built after loading a map.
  • Cubemaps are not cached.
@VReaperV
Copy link
Contributor Author

Perhaps it's better to distribute cubemaps more uniformly and access them through e. g. an octree. When building the cubemaps we'd need to somehow check if each spot is "inside" the map.

@slipher
Copy link
Member

slipher commented Sep 17, 2024

The second nearest cubemap seems to never be selected at all.

It can happen. It's just rare because the lookup only checks a 100x100x100 box and the probes are too sparsely distributed. In most voxels there isn't even one.

@VReaperV
Copy link
Contributor Author

Increasing the area it checks did indeed make the second lookup yield some probes.

@VReaperV
Copy link
Contributor Author

On map thermal, for example:
5 probes together in a space that you can't even go to without noclip:
unvanquished_2024-09-22_222029_000
Here most probes are in the same area, yet there are none above the platform:
unvanquished_2024-09-22_222053_000
And here you can see how the probes are bunched up to one side:
unvanquished_2024-09-22_222227_000

The current algorithm used to place probes just goes through every BSP node and places the probes there. It attempts to skip nodes in the void, but fails to actually do so.

@VReaperV
Copy link
Contributor Author

A few possible solutions to that:

  1. Place probes on a grid. For better distribution, we can still use the loop over BSP, but "snap" the probes to the grid.
  2. We can use the solution for shadow-castng lights reconstruction proposed in Possible solution to reconstruct light entities from lightmaps #1298 to find voxels (or, indeed, places on a grid) that have the most light rays going through them and perhaps distance to surfaces (i. e. a voxel that is close to some surfaces is less likely to be a probe candidate).
  3. There's also this paper: https://www.cs.cit.tum.de/fileadmin/w00cfj/cg/Research/Publications/2011/Assisted_environment_probe_placement/aepp.pdf, which explores the use of a combination of irradiance fields and image comparison to remove extra probes.

@VReaperV
Copy link
Contributor Author

Placing probes on a grid would also speed the lookup up by a lot, since right now it's quite slow while at the same time not even finding any probes a lot of the time.

@VReaperV
Copy link
Contributor Author

Something like 128 or 256 seems to be a reasonable probe spacing that balances the amount and distribution. With 128 some of the largest maps that we have (e. g. https://users.unvanquished.net/~sweet/pkg/map-voxelworld0_0.dpk) it'd only be a ~500 KB array. On regular maps it will be something like ~138 KB on the larger maps. We can also just put it in a cvar or parse it as an optional keyword in worldspawn.

@slipher
Copy link
Member

slipher commented Sep 22, 2024

Did you mean MB? If a probe uses 6 * 32*32 * 3 bytes that's 18K so you could only store a handful of them with that much memory.

@VReaperV
Copy link
Contributor Author

Did you mean MB? If a probe uses 6 * 32*32 * 3 bytes that's 18K so you could only store a handful of them with that much memory.

I meant for the lookup array. That array would just have an index corresponding to a cubemap, and different elements of that array can point to the same cubemap. The point of using it is to make the lookup fast.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants