2003-03-21 01:42:38 +01:00
|
|
|
/* IDirectMusicPort Implementation
|
|
|
|
*
|
2004-01-20 01:21:40 +01:00
|
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
2003-03-21 01:42:38 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dmusic_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicPortImpl IUnknown part: */
|
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_QueryInterface (LPDIRECTMUSICPORT iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2004-02-25 02:30:03 +01:00
|
|
|
TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ppobj);
|
2003-03-21 01:42:38 +01:00
|
|
|
|
2003-08-23 01:53:27 +02:00
|
|
|
if (IsEqualIID (riid, &IID_IUnknown) || IsEqualGUID(riid, &IID_IDirectMusicPort)) {
|
2003-03-21 01:42:38 +01:00
|
|
|
IDirectMusicPortImpl_AddRef(iface);
|
|
|
|
*ppobj = This;
|
2003-06-07 02:39:18 +02:00
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
2004-02-25 02:30:03 +01:00
|
|
|
WARN("(%p, %s, %p): not found\n", This, debugstr_dmguid(riid), ppobj);
|
2003-03-21 01:42:38 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
ULONG WINAPI IDirectMusicPortImpl_AddRef (LPDIRECTMUSICPORT iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2005-01-14 17:02:20 +01:00
|
|
|
ULONG refCount = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p)->(ref before=%lu)\n", This, refCount - 1);
|
|
|
|
|
2005-01-26 20:41:43 +01:00
|
|
|
DMUSIC_LockModule();
|
|
|
|
|
2005-01-14 17:02:20 +01:00
|
|
|
return refCount;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
ULONG WINAPI IDirectMusicPortImpl_Release (LPDIRECTMUSICPORT iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2005-01-14 17:02:20 +01:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p)->(ref before=%lu)\n", This, refCount + 1);
|
|
|
|
|
|
|
|
if (!refCount) {
|
2003-03-21 01:42:38 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
2005-01-26 20:41:43 +01:00
|
|
|
|
|
|
|
DMUSIC_UnlockModule();
|
|
|
|
|
2005-01-14 17:02:20 +01:00
|
|
|
return refCount;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
/* IDirectMusicPortImpl IDirectMusicPort part: */
|
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_PlayBuffer (LPDIRECTMUSICPORT iface, LPDIRECTMUSICBUFFER pBuffer) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pBuffer);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_SetReadNotificationHandle (LPDIRECTMUSICPORT iface, HANDLE hEvent) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, hEvent);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_Read (LPDIRECTMUSICPORT iface, LPDIRECTMUSICBUFFER pBuffer) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pBuffer);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_DownloadInstrument (LPDIRECTMUSICPORT iface, IDirectMusicInstrument* pInstrument, IDirectMusicDownloadedInstrument** ppDownloadedInstrument, DMUS_NOTERANGE* pNoteRanges, DWORD dwNumNoteRanges) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p, %p, %p, %ld): stub\n", This, pInstrument, ppDownloadedInstrument, pNoteRanges, dwNumNoteRanges);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_UnloadInstrument (LPDIRECTMUSICPORT iface, IDirectMusicDownloadedInstrument *pDownloadedInstrument) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pDownloadedInstrument);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_GetLatencyClock (LPDIRECTMUSICPORT iface, IReferenceClock** ppClock) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-07-22 00:10:14 +02:00
|
|
|
TRACE("(%p, %p)\n", This, ppClock);
|
|
|
|
*ppClock = This->pLatencyClock;
|
|
|
|
IReferenceClock_AddRef (*ppClock);
|
2003-06-07 02:39:18 +02:00
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_GetRunningStats (LPDIRECTMUSICPORT iface, LPDMUS_SYNTHSTATS pStats) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p): stub\n", This, pStats);
|
2004-01-20 01:21:40 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
2003-06-07 02:39:18 +02:00
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_Compact (LPDIRECTMUSICPORT iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2004-01-20 01:21:40 +01:00
|
|
|
FIXME("(%p): stub\n", This);
|
2003-06-07 02:39:18 +02:00
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_GetCaps (LPDIRECTMUSICPORT iface, LPDMUS_PORTCAPS pPortCaps) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-05-06 02:14:31 +02:00
|
|
|
TRACE("(%p, %p)\n", This, pPortCaps);
|
2004-01-20 01:21:40 +01:00
|
|
|
pPortCaps = This->pCaps;
|
2003-05-06 02:14:31 +02:00
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_DeviceIoControl (LPDIRECTMUSICPORT iface, DWORD dwIoControlCode, LPVOID lpInBuffer, DWORD nInBufferSize, LPVOID lpOutBuffer, DWORD nOutBufferSize, LPDWORD lpBytesReturned, LPOVERLAPPED lpOverlapped) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %ld, %p, %ld, %p, %ld, %p, %p): stub\n", This, dwIoControlCode, lpInBuffer, nInBufferSize, lpOutBuffer, nOutBufferSize, lpBytesReturned, lpOverlapped);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_SetNumChannelGroups (LPDIRECTMUSICPORT iface, DWORD dwChannelGroups) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %ld): semi-stub\n", This, dwChannelGroups);
|
|
|
|
This->nrofgroups = dwChannelGroups;
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_GetNumChannelGroups (LPDIRECTMUSICPORT iface, LPDWORD pdwChannelGroups) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
TRACE("(%p, %p)\n", This, pdwChannelGroups);
|
|
|
|
*pdwChannelGroups = This->nrofgroups;
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_Activate (LPDIRECTMUSICPORT iface, BOOL fActive) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
TRACE("(%p, %d)\n", This, fActive);
|
2003-07-22 00:10:14 +02:00
|
|
|
This->fActive = fActive;
|
2003-06-07 02:39:18 +02:00
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_SetChannelPriority (LPDIRECTMUSICPORT iface, DWORD dwChannelGroup, DWORD dwChannel, DWORD dwPriority) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %ld, %ld, %ld): semi-stub\n", This, dwChannelGroup, dwChannel, dwPriority);
|
2004-01-20 01:21:40 +01:00
|
|
|
if (dwChannel > 16) {
|
2003-06-07 02:39:18 +02:00
|
|
|
WARN("isn't there supposed to be 16 channels (no. %ld requested)?! (faking as it is ok)\n", dwChannel);
|
|
|
|
/*return E_INVALIDARG;*/
|
|
|
|
}
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_GetChannelPriority (LPDIRECTMUSICPORT iface, DWORD dwChannelGroup, DWORD dwChannel, LPDWORD pdwPriority) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
TRACE("(%p, %ld, %ld, %p)\n", This, dwChannelGroup, dwChannel, pdwPriority);
|
|
|
|
*pdwPriority = This->group[dwChannelGroup-1].channel[dwChannel].priority;
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_SetDirectSound (LPDIRECTMUSICPORT iface, LPDIRECTSOUND pDirectSound, LPDIRECTSOUNDBUFFER pDirectSoundBuffer) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p, %p): stub\n", This, pDirectSound, pDirectSoundBuffer);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2004-01-20 01:21:40 +01:00
|
|
|
HRESULT WINAPI IDirectMusicPortImpl_GetFormat (LPDIRECTMUSICPORT iface, LPWAVEFORMATEX pWaveFormatEx, LPDWORD pdwWaveFormatExSize, LPDWORD pdwBufferSize) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectMusicPortImpl *This = (IDirectMusicPortImpl *)iface;
|
2003-06-07 02:39:18 +02:00
|
|
|
FIXME("(%p, %p, %p, %p): stub\n", This, pWaveFormatEx, pdwWaveFormatExSize, pdwBufferSize);
|
|
|
|
return S_OK;
|
2003-03-21 01:42:38 +01:00
|
|
|
}
|
|
|
|
|
2005-06-01 21:57:42 +02:00
|
|
|
const IDirectMusicPortVtbl DirectMusicPort_Vtbl = {
|
2003-03-21 01:42:38 +01:00
|
|
|
IDirectMusicPortImpl_QueryInterface,
|
|
|
|
IDirectMusicPortImpl_AddRef,
|
|
|
|
IDirectMusicPortImpl_Release,
|
|
|
|
IDirectMusicPortImpl_PlayBuffer,
|
|
|
|
IDirectMusicPortImpl_SetReadNotificationHandle,
|
|
|
|
IDirectMusicPortImpl_Read,
|
|
|
|
IDirectMusicPortImpl_DownloadInstrument,
|
|
|
|
IDirectMusicPortImpl_UnloadInstrument,
|
|
|
|
IDirectMusicPortImpl_GetLatencyClock,
|
|
|
|
IDirectMusicPortImpl_GetRunningStats,
|
2004-01-20 01:21:40 +01:00
|
|
|
IDirectMusicPortImpl_Compact,
|
2003-03-21 01:42:38 +01:00
|
|
|
IDirectMusicPortImpl_GetCaps,
|
|
|
|
IDirectMusicPortImpl_DeviceIoControl,
|
|
|
|
IDirectMusicPortImpl_SetNumChannelGroups,
|
|
|
|
IDirectMusicPortImpl_GetNumChannelGroups,
|
|
|
|
IDirectMusicPortImpl_Activate,
|
|
|
|
IDirectMusicPortImpl_SetChannelPriority,
|
|
|
|
IDirectMusicPortImpl_GetChannelPriority,
|
|
|
|
IDirectMusicPortImpl_SetDirectSound,
|
|
|
|
IDirectMusicPortImpl_GetFormat
|
|
|
|
};
|