git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18305
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#pragma interface "wave.h"
#endif
#pragma interface "wave.h"
#endif
#include "wx/object.h"
class WXDLLEXPORT wxWave : public wxObject
#include "wx/object.h"
class WXDLLEXPORT wxWave : public wxObject
private:
void* m_sndChan;
private:
void* m_sndChan;
wxString m_sndname;
void* m_hSnd;
int m_waveLength;
bool m_isResource;
};
wxString m_sndname;
void* m_hSnd;
int m_waveLength;
bool m_isResource;
};
#include "wx/string.h"
#include "wx/wave.h"
#include "wx/string.h"
#include "wx/wave.h"
#ifdef __WXMAC__
#include "wx/mac/private.h"
#ifndef __DARWIN__
#ifdef __WXMAC__
#include "wx/mac/private.h"
#ifndef __DARWIN__
{ // we're playing
FSClose(SndRefNum);
SndRefNum = 0;
{ // we're playing
FSClose(SndRefNum);
SndRefNum = 0;
sndChan = 0;
KillTimer(0,timerID);
}
sndChan = 0;
KillTimer(0,timerID);
}
- if (noErr != SndNewChannel (&sndChan, sampledSynth, initMono | initNoInterp, 0))
+ if (noErr != SndNewChannel (&sndChan, sampledSynth, initMono | initNoInterp, 0))
{
free(sndChan);
sndChan = 0;
return false;
}
{
free(sndChan);
sndChan = 0;
return false;
}
- if (!(SndRefNum = MacOpenSndFile ((char *)lpSnd)))
+ if (!(SndRefNum = MacOpenSndFile ((char *)lpSnd)))
{
SndDisposeChannel(sndChan, TRUE);
free(sndChan);
{
SndDisposeChannel(sndChan, TRUE);
free(sndChan);
if (fdwSound & SND_ASYNC)
async = true;
if (fdwSound & SND_ASYNC)
async = true;
- if (SndStartFilePlay(sndChan, SndRefNum, 0, 81920, 0, 0, 0, async) != noErr)
+ if (SndStartFilePlay(sndChan, SndRefNum, 0, 81920, 0, 0, 0, async) != noErr)
{
FSClose (SndRefNum);
SndRefNum = 0;
{
FSClose (SndRefNum);
SndRefNum = 0;
{ // haven't finish yet
timerID = SetTimer(0, 0, 250, TimerCallBack);
{ // haven't finish yet
timerID = SetTimer(0, 0, 250, TimerCallBack);
{
FSClose (SndRefNum);
SndRefNum = 0;
{
FSClose (SndRefNum);
SndRefNum = 0;
{
char lpSnd[32];
bool ret = false;
{
char lpSnd[32];
bool ret = false;
{
#if TARGET_CARBON
c2pstrcpy((unsigned char *)lpSnd, m_sndname);
{
#if TARGET_CARBON
c2pstrcpy((unsigned char *)lpSnd, m_sndname);
c2pstr((char *) lpSnd);
#endif
SndListHandle hSnd;
c2pstr((char *) lpSnd);
#endif
SndListHandle hSnd;
hSnd = (SndListHandle) GetNamedResource('snd ',(const unsigned char *) lpSnd);
if ((hSnd != NULL) && (SndPlay((SndChannelPtr)m_sndChan, (SndListHandle) hSnd, async) == noErr))
ret = true;
hSnd = (SndListHandle) GetNamedResource('snd ',(const unsigned char *) lpSnd);
if ((hSnd != NULL) && (SndPlay((SndChannelPtr)m_sndChan, (SndListHandle) hSnd, async) == noErr))
ret = true;
bool wxWave::FreeData()
{
bool ret = false;
bool wxWave::FreeData()
{
bool ret = false;
if (m_isResource)
{
m_sndname.Empty();
if (m_isResource)
{
m_sndname.Empty();
// first, get the volume reference number for the file. Start by
// making a Pstring with just the volume name
strcpy ((char *) name, path);
// first, get the volume reference number for the file. Start by
// making a Pstring with just the volume name
strcpy ((char *) name, path);
- if (c = strchr ((char *) name, ':'))
+ if (c = strchr ((char *) name, ':'))
void TimerCallBack(HWND hwnd,UINT uMsg,UINT idEvent,DWORD dwTime)
{
void TimerCallBack(HWND hwnd,UINT uMsg,UINT idEvent,DWORD dwTime)
{
{
KillTimer(0,timerID);
return;
{
KillTimer(0,timerID);
return;
#include "wx/string.h"
#include "wx/wave.h"
#include "wx/string.h"
#include "wx/wave.h"
#ifdef __WXMAC__
#include "wx/mac/private.h"
#ifndef __DARWIN__
#ifdef __WXMAC__
#include "wx/mac/private.h"
#ifndef __DARWIN__
{ // we're playing
FSClose(SndRefNum);
SndRefNum = 0;
{ // we're playing
FSClose(SndRefNum);
SndRefNum = 0;
sndChan = 0;
KillTimer(0,timerID);
}
sndChan = 0;
KillTimer(0,timerID);
}
- if (noErr != SndNewChannel (&sndChan, sampledSynth, initMono | initNoInterp, 0))
+ if (noErr != SndNewChannel (&sndChan, sampledSynth, initMono | initNoInterp, 0))
{
free(sndChan);
sndChan = 0;
return false;
}
{
free(sndChan);
sndChan = 0;
return false;
}
- if (!(SndRefNum = MacOpenSndFile ((char *)lpSnd)))
+ if (!(SndRefNum = MacOpenSndFile ((char *)lpSnd)))
{
SndDisposeChannel(sndChan, TRUE);
free(sndChan);
{
SndDisposeChannel(sndChan, TRUE);
free(sndChan);
if (fdwSound & SND_ASYNC)
async = true;
if (fdwSound & SND_ASYNC)
async = true;
- if (SndStartFilePlay(sndChan, SndRefNum, 0, 81920, 0, 0, 0, async) != noErr)
+ if (SndStartFilePlay(sndChan, SndRefNum, 0, 81920, 0, 0, 0, async) != noErr)
{
FSClose (SndRefNum);
SndRefNum = 0;
{
FSClose (SndRefNum);
SndRefNum = 0;
{ // haven't finish yet
timerID = SetTimer(0, 0, 250, TimerCallBack);
{ // haven't finish yet
timerID = SetTimer(0, 0, 250, TimerCallBack);
{
FSClose (SndRefNum);
SndRefNum = 0;
{
FSClose (SndRefNum);
SndRefNum = 0;
{
char lpSnd[32];
bool ret = false;
{
char lpSnd[32];
bool ret = false;
{
#if TARGET_CARBON
c2pstrcpy((unsigned char *)lpSnd, m_sndname);
{
#if TARGET_CARBON
c2pstrcpy((unsigned char *)lpSnd, m_sndname);
c2pstr((char *) lpSnd);
#endif
SndListHandle hSnd;
c2pstr((char *) lpSnd);
#endif
SndListHandle hSnd;
hSnd = (SndListHandle) GetNamedResource('snd ',(const unsigned char *) lpSnd);
if ((hSnd != NULL) && (SndPlay((SndChannelPtr)m_sndChan, (SndListHandle) hSnd, async) == noErr))
ret = true;
hSnd = (SndListHandle) GetNamedResource('snd ',(const unsigned char *) lpSnd);
if ((hSnd != NULL) && (SndPlay((SndChannelPtr)m_sndChan, (SndListHandle) hSnd, async) == noErr))
ret = true;
bool wxWave::FreeData()
{
bool ret = false;
bool wxWave::FreeData()
{
bool ret = false;
if (m_isResource)
{
m_sndname.Empty();
if (m_isResource)
{
m_sndname.Empty();
// first, get the volume reference number for the file. Start by
// making a Pstring with just the volume name
strcpy ((char *) name, path);
// first, get the volume reference number for the file. Start by
// making a Pstring with just the volume name
strcpy ((char *) name, path);
- if (c = strchr ((char *) name, ':'))
+ if (c = strchr ((char *) name, ':'))
void TimerCallBack(HWND hwnd,UINT uMsg,UINT idEvent,DWORD dwTime)
{
void TimerCallBack(HWND hwnd,UINT uMsg,UINT idEvent,DWORD dwTime)
{
{
KillTimer(0,timerID);
return;
{
KillTimer(0,timerID);
return;