WwiseSoundBankFileState.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*******************************************************************************
  2. The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
  3. Technology released in source code form as part of the game integration package.
  4. The content of this file may not be used without valid licenses to the
  5. AUDIOKINETIC Wwise Technology.
  6. Note that the use of the game engine is subject to the Unreal(R) Engine End User
  7. License Agreement at https://www.unrealengine.com/en-US/eula/unreal
  8. License Usage
  9. Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
  10. this file in accordance with the end user license agreement provided with the
  11. software or, alternatively, in accordance with the terms contained
  12. in a written agreement between you and Audiokinetic Inc.
  13. Copyright (c) 2023 Audiokinetic Inc.
  14. *******************************************************************************/
  15. #pragma once
  16. #include "Wwise/WwiseSoundBankManager.h"
  17. #include "Wwise/CookedData/WwiseSoundBankCookedData.h"
  18. #include "Wwise/WwiseFileState.h"
  19. class WWISEFILEHANDLER_API FWwiseSoundBankFileState : public FWwiseFileState, public FWwiseSoundBankCookedData
  20. {
  21. public:
  22. const FString RootPath;
  23. protected:
  24. FWwiseSoundBankFileState(const FWwiseSoundBankCookedData& InCookedData, const FString& InRootPath);
  25. public:
  26. ~FWwiseSoundBankFileState() override;
  27. const TCHAR* GetManagingTypeName() const override final { return TEXT("SoundBank"); }
  28. uint32 GetShortId() const override final { return SoundBankId; }
  29. };
  30. class WWISEFILEHANDLER_API FWwiseInMemorySoundBankFileState : public FWwiseSoundBankFileState
  31. {
  32. public:
  33. const uint8* Ptr;
  34. int64 FileSize;
  35. IMappedFileHandle* MappedHandle;
  36. IMappedFileRegion* MappedRegion;
  37. FWwiseInMemorySoundBankFileState(const FWwiseSoundBankCookedData& InCookedData, const FString& InRootPath);
  38. ~FWwiseInMemorySoundBankFileState() override { Term(); }
  39. bool LoadAsMemoryView() const;
  40. void OpenFile(FOpenFileCallback&& InCallback) override;
  41. void LoadInSoundEngine(FLoadInSoundEngineCallback&& InCallback) override;
  42. void UnloadFromSoundEngine(FUnloadFromSoundEngineCallback&& InCallback) override;
  43. bool CanCloseFile() const override;
  44. void CloseFile(FCloseFileCallback&& InCallback) override;
  45. private:
  46. void FreeMemoryIfNeeded();
  47. struct BankLoadCookie
  48. {
  49. FWwiseInMemorySoundBankFileState* BankFileState;
  50. FLoadInSoundEngineCallback Callback;
  51. BankLoadCookie(FWwiseInMemorySoundBankFileState* InBankFileState)
  52. : BankFileState(InBankFileState)
  53. {}
  54. BankLoadCookie(BankLoadCookie* InOther)
  55. {
  56. if(InOther)
  57. {
  58. BankFileState = InOther->BankFileState;
  59. Callback = MoveTemp(InOther->Callback);
  60. }
  61. }
  62. };
  63. struct BankUnloadCookie
  64. {
  65. FWwiseInMemorySoundBankFileState* BankFileState;
  66. FUnloadFromSoundEngineCallback Callback;
  67. BankUnloadCookie(FWwiseInMemorySoundBankFileState* InBankFileState)
  68. : BankFileState(InBankFileState)
  69. {}
  70. BankUnloadCookie(BankUnloadCookie* InOther)
  71. {
  72. if (InOther)
  73. {
  74. BankFileState = InOther->BankFileState;
  75. Callback = MoveTemp(InOther->Callback);
  76. }
  77. }
  78. };
  79. static void BankLoadCallback(
  80. AkUInt32 InBankID,
  81. const void* InMemoryBankPtr,
  82. AKRESULT InLoadResult,
  83. void* InCookie
  84. );
  85. static void BankUnloadCallback(
  86. AkUInt32 InBankID,
  87. const void* InMemoryBankPtr,
  88. AKRESULT InUnloadResult,
  89. void* InCookie
  90. );
  91. };