-
Notifications
You must be signed in to change notification settings - Fork 39
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
Audio Graph (Version 0.2) and Internal Rework (Version 0.3) #13
Comments
Excellent, thanks for the flow graph. This is enough information to at least make a space in the UE4 port for this! |
@KITATUS another thing I should mention is that with the addition of audio a dedicated worker thread is required. As already stated out it will be possible to fully control the flow via the coming |
As much as I hate throwing videos at people, I think this video sums up pretty well how UE deals (read: WANTS you to deal) with tasks / threads in a practical example: https://www.youtube.com/watch?v=0Yyh3oQgonI - I would show some documentation but UE falls off a cliff when it comes to documentation that is actually useful for things like threads and tasks :P Hope it helps! |
@KITATUS The video was good for the beginning and helped me to gain a first insight into the unreal engine concurrent architecture. Integrating should be no problem than. I just requested access to the UE4 source code, I plan to look at it. |
If it helps take some stress from you, I am more than happy to integrate the next release with this memory management in and report back any pain points or changes I had to do to make it work (if any). That way you don't have to crawl through the source code of UE (which from too many years of experience, I warn can be very painful!) |
@KITATUS This would be nice! I poked around in some random files didn’t saw much code comments.... |
Is there anh API to send samples to the controller? Or hints? Or anything related to reverse engineering the audio part? I don't want the library to spawn a worker thread by default but I want to find an interface to send audio data to the controller (the thread is my responsibility). |
The controller is a normal audio device. You should be able to use it with no lib at all. I have a gist for demo: https://gist.github.com/Ohjurot/b0c04dfbd25fb71bc0da50947d313d1b |
@Ohjurot Neat! One thing to add: you can select proper audio device by the same DEVPKEY_Device_ContainerId property as in requested HID device: PS: This will work only via usual USB connection. Sending sound to a DualShock4/DualSense via Bluetooth is a way harder - there is no any Audio device present in Windows in this case... |
When I run the gist code, the gamepad is playing haptics only. I changed the sine wave to something more recognizable as a tone and heard it from my headphones when I set it to the first 2 channels. If I assign the value to the first two channels however nothing happens. Nothing comes out of the gamepad speaker. It seems that the controller is only responding to channels 3 and 4 using the haptics. If I use the official devnet library the gamepad itself plays audio from its speaker... But.. It's complicated for obvious reasons. |
@petersvp yes, this audio device is quadrophonic. Channels 1-2 are responsible for gamepad speaker (or attached headphones), channels 3-4 for haptics feedback. It is by design for usb connection to PC. |
My issue is that whatever I write to channels 1 and 2 seems ignored. I checked in mmsys.cpl that the volume isn't down to zero or something like this. Can't get any audio from the speaker, only from the haptics. |
AFAIK additional HID output report request should be sent to switch between speaker or headphones output or no output. I have found some related code. See |
Hello, looks like this linux tool actually knows much more... hidOutBuffer[0x07] = 3 << 4; // DS_OUTPUT_AUDIO_OUTPUT_PATH_SHIFT;
hidOutBuffer[0x05] = 256; And suddenly everything I do on Windows, everything that comes through MME and WASAPI, every other application started to play through the built-in speaker (I did set the gamepad as the default speaker). Thanks, now it's just some small work to get simple audio mixer working as part of the library so I can play some small waveforms and haptics through it. (I am basically writing a C# wrapper for use with Unity without the new Input system and will soon create a fork / new repo here on Github (and on Devnet too)) |
Audio
Sorry for the recent inactivity of this project but my EE university studies are currently quit demanding I didn't have much time. However, I have created a "Audio graph" to illustrate the audio flow currently planned.
You can take a look at it here https://github.com/Ohjurot/DualSense-Windows/blob/audio/Doc/Audio/audio_graph.pdf
Feedback is highly appreciated I have not started the implementation yet!
Rework and Additions
Since audio and some planed features require a more sophisticated allocation and background worker concept I’m planning to rework the internal flow of memory allocation and I/O calls to be more advanced and fully customisable (when things are done you will be able to integrate the API in your Engine's job system; But don’t worry there will be an easy to use
DefaultInit()
function)Currently I can't tell you much about the concrete plans because I have not started working on it. But there will be a
class IMemoryAllocator
andstruct API_FLOW_DESC
to optionally configure the behaviour of the API.The text was updated successfully, but these errors were encountered: