WwiseExternalSourceFileState.h 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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/WwiseFileState.h"
  17. #include "Wwise/WwiseStreamableFileStateInfo.h"
  18. class FWwiseFileCacheHandle;
  19. class WWISEFILEHANDLER_API FWwiseExternalSourceFileState : public FWwiseFileState, public AkExternalSourceInfo
  20. {
  21. public:
  22. const uint32 MemoryAlignment;
  23. const bool bDeviceMemory;
  24. const uint32 MediaId;
  25. const FName MediaPathName;
  26. const FName RootPath;
  27. TAtomic<int> PlayCount;
  28. protected:
  29. FWwiseExternalSourceFileState(uint32 InMemoryAlignment, bool bInDeviceMemory,
  30. uint32 InMediaId, const FName& InMediaPathName, const FName& InRootPath, int32 InCodecId);
  31. ~FWwiseExternalSourceFileState() override;
  32. public:
  33. bool CanDelete() const override { return FWwiseFileState::CanDelete() && PlayCount.Load() == 0; }
  34. virtual bool GetExternalSourceInfo(AkExternalSourceInfo& OutInfo);
  35. void IncrementPlayCount();
  36. bool DecrementPlayCount();
  37. protected:
  38. bool CanUnloadFromSoundEngine() const override { return FWwiseFileState::CanUnloadFromSoundEngine() && PlayCount == 0; }
  39. const TCHAR* GetManagingTypeName() const override final { return TEXT("External Source"); }
  40. uint32 GetShortId() const override final { return MediaId; }
  41. };
  42. class WWISEFILEHANDLER_API FWwiseInMemoryExternalSourceFileState : public FWwiseExternalSourceFileState
  43. {
  44. public:
  45. const uint8* Ptr;
  46. IMappedFileHandle* MappedHandle;
  47. IMappedFileRegion* MappedRegion;
  48. FWwiseInMemoryExternalSourceFileState(uint32 InMemoryAlignment, bool bInDeviceMemory,
  49. uint32 InMediaId, const FName& InMediaPathName, const FName& InRootPath, int32 InCodecId);
  50. ~FWwiseInMemoryExternalSourceFileState() override { Term(); }
  51. void OpenFile(FOpenFileCallback&& InCallback) override;
  52. void LoadInSoundEngine(FLoadInSoundEngineCallback&& InCallback) override;
  53. void UnloadFromSoundEngine(FUnloadFromSoundEngineCallback&& InCallback) override;
  54. void CloseFile(FCloseFileCallback&& InCallback) override;
  55. };
  56. class WWISEFILEHANDLER_API FWwiseStreamedExternalSourceFileState : public FWwiseExternalSourceFileState, public FWwiseStreamableFileStateInfo, public AkSourceSettings
  57. {
  58. public:
  59. const uint32 PrefetchSize;
  60. const uint32 StreamingGranularity;
  61. FWwiseFileCacheHandle* StreamedFile;
  62. FWwiseStreamedExternalSourceFileState(uint32 InMemoryAlignment, bool bInDeviceMemory,
  63. uint32 InPrefetchSize, uint32 InStreamingGranularity,
  64. uint32 InMediaId, const FName& InMediaPathName, const FName& InRootPath, int32 InCodecId);
  65. ~FWwiseStreamedExternalSourceFileState() override { Term(); }
  66. void CloseStreaming() override;
  67. FWwiseStreamableFileStateInfo* GetStreamableFileStateInfo() override { return this; }
  68. const FWwiseStreamableFileStateInfo* GetStreamableFileStateInfo() const override { return this; }
  69. void OpenFile(FOpenFileCallback&& InCallback) override;
  70. void LoadInSoundEngine(FLoadInSoundEngineCallback&& InCallback) override;
  71. void UnloadFromSoundEngine(FUnloadFromSoundEngineCallback&& InCallback) override;
  72. void CloseFile(FCloseFileCallback&& InCallback) override;
  73. bool CanProcessFileOp() const override;
  74. AKRESULT ProcessRead(AkFileDesc& InFileDesc, const AkIoHeuristics& InHeuristics, AkAsyncIOTransferInfo& OutTransferInfo, FWwiseAkFileOperationDone&& InFileOpDoneCallback) override;
  75. };