We’re building a game where it’s important for the player to understand the source of the sounds they’re hearing. As part of that, we want to apply a reverb effect of the room where the source is located, and not the listener. Using the correct reverb effect is also important in some situations to not break the immersion. (For a detailed discussion of the problem, see this article and this video).
The system we’re planning has conceptual similarities to Wwise’s “Rooms and Portals” system (although it’s much simpler).
To implement this, we need multiple “SFX Reverb” instances. The docs state:
As many as four instances of the reverb DSP can be added to the FMOD DSP graph, though each instance incurs a cost of more CPU time and memory usage.
which suggests that the effect is expensive, and we cannot have more than four. But the docs also state:
SFX Reverb is a time domain low CPU cost with high quality and flexibility.
which sounds like it’s a rather cheap effect and we can have multiple of them, like 12 or so.
As a quick test, I added five reverb instances in a row to an event, and FMOD doesn’t print a warning when I play that event in the game. So apparently, more than four reverb instances can be used.
How many instances can be effectively used, is there a hard limit? Do you have recommendations for games targeting modern desktop PCs?