Community Q&A

Welcome to Audiokinetic’s community-driven Q&A forum. This is the place where Wwise and Strata users help each other out. For direct help from our team, please use the Support Tickets page. To report a bug, use the Bug Report option in the Audiokinetic Launcher. (Note that Bug Reports submitted to the Q&A forum will be rejected. Using our dedicated Bug Report system ensures your report is seen by the right people and has the best chance of being fixed.)

To get the best answers quickly, follow these tips when posting a question:

  • Be Specific: What are you trying to achieve, or what specific issue are you running into?
  • Include Key Details: Include details like your Wwise and game engine versions, operating system, etc.
  • Explain What You've Tried: Let others know what troubleshooting steps you've already taken.
  • Focus on the Facts: Describe the technical facts of your issue. Focusing on the problem helps others find a solution quickly.

0 votes
Hi! I'm trying to integrate Wwise in my engine following the IntegrationDemo and Cube Demo as examples. And It's driving me crazy. I see links to samples, other projects, a lot of Plugin/FX libs linked etc etc.
All I ask is, Can anyone point me to anywhere (documentation, example, url...) where says "ok, to implement wwise you just need that lib, that other one, the SDK include and that's all, not all the "look our demos which links to samples and a lot of stuff you probably will never need".

Also, if any programmer from wwise can take a look over the Q&A and star answering people, would be great.

Last question, people who pays commercial license, is q&a all the support they have? Or do they have an special forum or something?

 

Thanks
in General Discussion by M.Bruno R. (300 points)
edited by M.Bruno R.

1 Answer

0 votes
Take a look at this walkthrough:

https://www.audiokinetic.com/library/2015.1_5418/?source=SDK&id=workingwithsdks.html

This is the minimum if you have a C++ game engine.  If you have Unity, it is something else however (more simple).
by Bernard R. (Audiokinetic) (35.8k points)
WOW! Hello! Thanks a lot for your answer. Actually that help is the one I have been following to implement wwise, but never specifies which .libs and .h+.cpp you actually need, so, when you encounter a problem like this one https://www.audiokinetic.com/qa/1560/error-communicationcentral-where-network-gamesocket-classes, there is no way to know how fix It. All it does is show some code, couple of includes and remit the user to the integrationDemo. However, I could almost integrate it using the sounEngine.dll after analyze  the sound.cpp within the Cube demo.  
Now I'm finding some other problems:

AkSOundEngine project (the one that generates akSoundEngine.lib and dll) doesn't compile on __vectorcall calling convention. It gives problems of redefinition with the memoryHooks.
Also I have to change this line in the AkSoundEngineDLL.rc
#include "afxres.h"

for this other thing
#include "WinResrc.h"
#define IDC_STATIC  -1

Apparently is the only way It works on VS2013.

I will keep looking for fixes and posting them here. Anyway Bernard, if you have any advice to give me, It very welcomed.
Thanks a lot for taking time.
...