tesselode / kira

Library for expressive game audio.
https://crates.io/crates/kira
Apache License 2.0
836 stars 42 forks source link

Would it Be Possible to Make the `AudioManager` `Sync + Send`? #60

Closed zicklag closed 5 months ago

zicklag commented 9 months ago

Hey there, I just wanted to open up the discussion as far as the possibility of making the AudioManager``Sync + Send.

I thought the issue might be related to the audio backend and possibly unavoidable, but then I saw that the CpalBackend is indeed Sync + Send.

The actual issue from the Rust error message seems to be that dyn Sound and dyn Modulator aren't necessarily Sync.

Would there be a way to add a feature flag maybe that additionally restricts Sound and Modulator to be Sync maybe?

zicklag commented 9 months ago

I just tested adding a Sync bound and to Sound and Modulator and it looks like that works.

tesselode commented 8 months ago

I'm not opposed to this in principle, but why do you need this?

zicklag commented 8 months ago

I need to be able to put the audio manager in an ECS resource that requires Sync + Send, so that it can be accessed across multiple threads.

jaakkojakara commented 7 months ago

This would likely be very useful for me too. I came across this issue while trying to figure out what is the best way to share the sound system between different contexts in different threads. In my use case it would be a game engine ui thread, and a game world thread, both of which need to play sounds. A simple solution would boil down to having an Arc<AudioManager> which could be cloned and given to both, but that would require the AudioManager to be Send + Sync.

Or is it just better to use multiple AudioManagers for this kind of thing? (Should you create multiple AudioManagers, does it work?)

tesselode commented 7 months ago

@jaakkojakara You can create multiple AudioManagers, but they can't share any resources, like clocks or tracks. You could use Arc<AudioManager>, but you won't be able to call a lot of the methods of AudioManager because they require &mut, so you should use Arc<Mutex<AudioManager>>.

tesselode commented 5 months ago

Resolved in v0.8.6.