Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 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 |