Game client codebase including: - CharacterActionControl: Character and creature management - GlobalScript: Network, items, skills, quests, utilities - RYLClient: Main client application with GUI and event handlers - Engine: 3D rendering engine (RYLGL) - MemoryManager: Custom memory allocation - Library: Third-party dependencies (DirectX, boost, etc.) - Tools: Development utilities 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
64 lines
1.9 KiB
C++
64 lines
1.9 KiB
C++
|
|
#ifndef _Wave_H_
|
|
#define _Wave_H_
|
|
|
|
#include <windows.h>
|
|
#include <mmsystem.h>
|
|
#include <mmreg.h>
|
|
|
|
|
|
#define WAVEFILE_READ 1
|
|
#define WAVEFILE_WRITE 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Miscellaneous helper functions
|
|
//-----------------------------------------------------------------------------
|
|
#define SAFE_DELETE(p) { if(p) { delete (p); (p)=NULL; } }
|
|
#define SAFE_DELETE_ARRAY(p) { if(p) { delete[] (p); (p)=NULL; } }
|
|
#define SAFE_RELEASE(p) { if(p) { (p)->Release(); (p)=NULL; } }
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Name: class CWaveFile
|
|
// Desc: Encapsulates reading or writing sound data to or from a wave file
|
|
//-----------------------------------------------------------------------------
|
|
class CWaveFile
|
|
{
|
|
public:
|
|
WAVEFORMATEX* m_pwfx; // Pointer to WAVEFORMATEX structure
|
|
HMMIO m_hmmio; // MM I/O handle for the WAVE
|
|
MMCKINFO m_ck; // Multimedia RIFF chunk
|
|
MMCKINFO m_ckRiff; // Use in opening a WAVE file
|
|
DWORD m_dwSize; // The size of the wave file
|
|
MMIOINFO m_mmioinfoOut;
|
|
DWORD m_dwFlags;
|
|
BOOL m_bIsReadingFromMemory;
|
|
BYTE* m_pbData;
|
|
BYTE* m_pbDataCur;
|
|
ULONG m_ulDataSize;
|
|
|
|
protected:
|
|
HRESULT ReadMMIO();
|
|
HRESULT WriteMMIO( WAVEFORMATEX *pwfxDest );
|
|
|
|
public:
|
|
CWaveFile();
|
|
~CWaveFile();
|
|
|
|
HRESULT Open( LPTSTR strFileName, WAVEFORMATEX* pwfx, DWORD dwFlags );
|
|
HRESULT OpenFromMemory( BYTE* pbData, ULONG ulDataSize, WAVEFORMATEX* pwfx, DWORD dwFlags );
|
|
HRESULT Close();
|
|
|
|
HRESULT Read( BYTE* pBuffer, DWORD dwSizeToRead, DWORD* pdwSizeRead );
|
|
HRESULT Write( UINT nSizeToWrite, BYTE* pbData, UINT* pnSizeWrote );
|
|
LONG Seek( LONG offset, int Origin );
|
|
|
|
DWORD GetSize();
|
|
HRESULT ResetFile();
|
|
WAVEFORMATEX* GetFormat() { return m_pwfx; };
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif |