<div dir="ltr"><div>Thanks Chris, that is clear.</div><div><br></div><div>I'll try it out and if I run into any issues, I'll ask here again!</div><div><br></div><div>The batching of OpenAL commands per context seems like a pain though. I see OpenAL-soft has an extension for per-thread contexts which also looks pretty useful. </div><div><br></div><div>--Patrick</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, May 16, 2020 at 2:48 AM Chris Robinson <<a href="mailto:chris.kcat@gmail.com">chris.kcat@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, 15 May 2020 15:44:05 -0500<br>
Patrick Baggett <<a href="mailto:baggett.patrick@gmail.com" target="_blank">baggett.patrick@gmail.com</a>> wrote:<br>
<br>
> I've been planning out a split-screen video game. I have a plan for<br>
> supporting split-screen via a single sound card. Is whether it is<br>
> possible to have OpenAL render sound to two different sound cards<br>
> *simultaneously*.<br>
> <br>
> Use case: split screen with two players each having headphones and<br>
> hearing only *their* sounds.<br>
> <br>
> There is a limit of one active context per process - but does that<br>
> mean I can create only one context? Or does it mean that I can create<br>
> multiple and I just need to constantly use alcMakeCurrent() to switch<br>
> between them to issue commands? Or would making a context not-current<br>
> disable all processing? Any idea of the overhead of constantly<br>
> swapping contexts?<br>
<br>
With OpenAL Soft, it's definitely possible to create multiple contexts,<br>
with multiple devices. Changing the context would only change which one<br>
commands are issued to, and doesn't stop processing/output for<br>
non-current contexts. There's not too much overhead with changing<br>
contexts, though it would be a good idea to minimize changes by<br>
updating the sounds, environments, and listener for each player<br>
together. e.g.<br>
<br>
alcMakeContextCurrent(Player1Ctx);<br>
updatePlayer1Sounds();<br>
updatePlayer1Listener();<br>
<br>
alcMakeContextCurrent(Player2Ctx);<br>
updatePlayer2Sounds();<br>
updatePlayer2Listener();<br>
<br>
... etc ...<br>
<br>
Just be aware each context with each device will be completely<br>
separate. Each one will have its own list of sources and buffers and<br>
the like, so if the same sound is heard by multiple players, each one<br>
would need its own buffer to hold the sound and its own source to play<br>
it.<br>
<br>
> In my testing machine, I have two separate sound cards. The first is a<br>
> Creative X-FI card that is supported by Creative's OpenAL hardware<br>
> implementation. The second is an on-board Realtek chip that is<br>
> supported by the OpenAL-soft (v1.20.1).<br>
<br>
Using two separate implementations would depend on using the router. It<br>
might still work with the router, but I'm not familiar enough with it's<br>
or the hardware driver's inner workings to know for sure.<br>
_______________________________________________<br>
openal mailing list<br>
<a href="mailto:openal@openal.org" target="_blank">openal@openal.org</a><br>
<a href="http://openal.org/mailman/listinfo/openal" rel="noreferrer" target="_blank">http://openal.org/mailman/listinfo/openal</a><br>
</blockquote></div></div>