2003-08-22 23:53:27 +00:00
|
|
|
/* IDirectMusicSeqTrack Implementation
|
|
|
|
*
|
2004-01-20 00:21:40 +00:00
|
|
|
* Copyright (C) 2003-2004 Rok Mandeljc
|
2003-08-22 23:53:27 +00:00
|
|
|
*
|
2007-05-30 10:54:07 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-08-22 23:53:27 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-05-30 10:54:07 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2003-08-22 23:53:27 +00:00
|
|
|
*
|
2007-05-30 10:54:07 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-08-22 23:53:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dmime_private.h"
|
2015-07-03 07:37:49 +00:00
|
|
|
#include "dmobject.h"
|
2003-08-22 23:53:27 +00:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dmime);
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirectMusicSeqTrack implementation
|
|
|
|
*/
|
2015-06-25 22:12:30 +00:00
|
|
|
typedef struct IDirectMusicSeqTrack {
|
2015-07-03 07:36:16 +00:00
|
|
|
IDirectMusicTrack8 IDirectMusicTrack8_iface;
|
2015-07-03 07:37:49 +00:00
|
|
|
struct dmobject dmobj; /* IPersistStream only */
|
2015-06-25 22:12:30 +00:00
|
|
|
LONG ref;
|
|
|
|
} IDirectMusicSeqTrack;
|
|
|
|
|
2004-01-20 00:21:40 +00:00
|
|
|
/* IDirectMusicSeqTrack IDirectMusicTrack8 part: */
|
2015-07-03 07:25:21 +00:00
|
|
|
static inline IDirectMusicSeqTrack *impl_from_IDirectMusicTrack8(IDirectMusicTrack8 *iface)
|
|
|
|
{
|
2015-07-03 07:36:16 +00:00
|
|
|
return CONTAINING_RECORD(iface, IDirectMusicSeqTrack, IDirectMusicTrack8_iface);
|
2015-07-03 07:25:21 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_QueryInterface(IDirectMusicTrack8 *iface, REFIID riid,
|
2015-07-03 07:36:54 +00:00
|
|
|
void **ret_iface)
|
2015-07-03 07:36:16 +00:00
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2015-07-03 07:36:54 +00:00
|
|
|
|
|
|
|
TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ret_iface);
|
|
|
|
|
|
|
|
*ret_iface = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IDirectMusicTrack) ||
|
|
|
|
IsEqualIID(riid, &IID_IDirectMusicTrack8))
|
|
|
|
*ret_iface = iface;
|
|
|
|
else if (IsEqualIID(riid, &IID_IPersistStream))
|
2015-07-03 07:37:49 +00:00
|
|
|
*ret_iface = &This->dmobj.IPersistStream_iface;
|
2015-07-03 07:36:54 +00:00
|
|
|
else {
|
|
|
|
WARN("(%p, %s, %p): not found\n", This, debugstr_dmguid(riid), ret_iface);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IUnknown_AddRef((IUnknown*)*ret_iface);
|
|
|
|
return S_OK;
|
2004-01-20 00:21:40 +00:00
|
|
|
}
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static ULONG WINAPI IDirectMusicTrack8Impl_AddRef(IDirectMusicTrack8 *iface)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2015-07-03 07:36:54 +00:00
|
|
|
LONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
return ref;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static ULONG WINAPI IDirectMusicTrack8Impl_Release(IDirectMusicTrack8 *iface)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2015-07-03 07:36:54 +00:00
|
|
|
LONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) ref=%d\n", This, ref);
|
|
|
|
|
|
|
|
if (!ref) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
DMIME_UnlockModule();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ref;
|
2004-01-20 00:21:40 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Init(IDirectMusicTrack8 *iface,
|
|
|
|
IDirectMusicSegment *pSegment)
|
2003-08-22 23:53:27 +00:00
|
|
|
{
|
2015-07-03 07:36:16 +00:00
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2004-01-20 00:21:40 +00:00
|
|
|
FIXME("(%p, %p): stub\n", This, pSegment);
|
|
|
|
return S_OK;
|
|
|
|
}
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_InitPlay(IDirectMusicTrack8 *iface,
|
|
|
|
IDirectMusicSegmentState *pSegmentState, IDirectMusicPerformance *pPerformance,
|
|
|
|
void **ppStateData, DWORD dwVirtualTrack8ID, DWORD dwFlags)
|
2004-01-20 00:21:40 +00:00
|
|
|
{
|
2015-07-03 07:36:16 +00:00
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2006-10-09 23:07:26 +00:00
|
|
|
FIXME("(%p, %p, %p, %p, %d, %d): stub\n", This, pSegmentState, pPerformance, ppStateData, dwVirtualTrack8ID, dwFlags);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_EndPlay(IDirectMusicTrack8 *iface, void *pStateData)
|
2003-08-22 23:53:27 +00:00
|
|
|
{
|
2015-07-03 07:36:16 +00:00
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2003-08-22 23:53:27 +00:00
|
|
|
FIXME("(%p, %p): stub\n", This, pStateData);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Play(IDirectMusicTrack8 *iface, void *pStateData,
|
|
|
|
MUSIC_TIME mtStart, MUSIC_TIME mtEnd, MUSIC_TIME mtOffset, DWORD dwFlags,
|
|
|
|
IDirectMusicPerformance *pPerf, IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID)
|
2003-08-22 23:53:27 +00:00
|
|
|
{
|
2015-07-03 07:36:16 +00:00
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2009-01-10 01:44:41 +00:00
|
|
|
FIXME("(%p, %p, %d, %d, %d, %d, %p, %p, %d): stub\n", This, pStateData, mtStart, mtEnd, mtOffset, dwFlags, pPerf, pSegSt, dwVirtualID);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_GetParam(IDirectMusicTrack8 *iface, REFGUID type,
|
|
|
|
MUSIC_TIME time, MUSIC_TIME *next, void *param)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %s, %d, %p, %p): method not implemented\n", This, debugstr_dmguid(type), time,
|
|
|
|
next, param);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_SetParam(IDirectMusicTrack8 *iface, REFGUID type,
|
|
|
|
MUSIC_TIME time, void *param)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %s, %d, %p): method not implemented\n", This, debugstr_dmguid(type), time, param);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_IsParamSupported(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID type)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2003-08-22 23:53:27 +00:00
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
TRACE("(%p, %s): method not implemented\n", This, debugstr_dmguid(type));
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_AddNotificationType(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID notiftype)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %s): method not implemented\n", This, debugstr_dmguid(notiftype));
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_RemoveNotificationType(IDirectMusicTrack8 *iface,
|
|
|
|
REFGUID notiftype)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %s): method not implemented\n", This, debugstr_dmguid(notiftype));
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Clone(IDirectMusicTrack8 *iface, MUSIC_TIME mtStart,
|
|
|
|
MUSIC_TIME mtEnd, IDirectMusicTrack **ppTrack)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2009-01-10 01:44:41 +00:00
|
|
|
FIXME("(%p, %d, %d, %p): stub\n", This, mtStart, mtEnd, ppTrack);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_PlayEx(IDirectMusicTrack8 *iface, void *pStateData,
|
|
|
|
REFERENCE_TIME rtStart, REFERENCE_TIME rtEnd, REFERENCE_TIME rtOffset, DWORD dwFlags,
|
|
|
|
IDirectMusicPerformance *pPerf, IDirectMusicSegmentState *pSegSt, DWORD dwVirtualID)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
2006-10-09 23:07:26 +00:00
|
|
|
FIXME("(%p, %p, 0x%s, 0x%s, 0x%s, %d, %p, %p, %d): stub\n", This, pStateData, wine_dbgstr_longlong(rtStart),
|
2006-09-20 20:25:51 +00:00
|
|
|
wine_dbgstr_longlong(rtEnd), wine_dbgstr_longlong(rtOffset), dwFlags, pPerf, pSegSt, dwVirtualID);
|
2003-08-22 23:53:27 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_GetParamEx(IDirectMusicTrack8 *iface, REFGUID type,
|
|
|
|
REFERENCE_TIME time, REFERENCE_TIME *next, void *param, void *state, DWORD flags)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %s, %s, %p, %p, %p, %x): method not implemented\n", This, debugstr_dmguid(type),
|
|
|
|
wine_dbgstr_longlong(time), next, param, state, flags);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_SetParamEx(IDirectMusicTrack8 *iface, REFGUID type,
|
|
|
|
REFERENCE_TIME time, void *param, void *state, DWORD flags)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %s, %s, %p, %p, %x): method not implemented\n", This, debugstr_dmguid(type),
|
|
|
|
wine_dbgstr_longlong(time), param, state, flags);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Compose(IDirectMusicTrack8 *iface, IUnknown *context,
|
|
|
|
DWORD trackgroup, IDirectMusicTrack **track)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %d, %p): method not implemented\n", This, context, trackgroup, track);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:25:21 +00:00
|
|
|
static HRESULT WINAPI IDirectMusicTrack8Impl_Join(IDirectMusicTrack8 *iface,
|
|
|
|
IDirectMusicTrack *newtrack, MUSIC_TIME join, IUnknown *context, DWORD trackgroup,
|
|
|
|
IDirectMusicTrack **resulttrack)
|
|
|
|
{
|
|
|
|
IDirectMusicSeqTrack *This = impl_from_IDirectMusicTrack8(iface);
|
|
|
|
TRACE("(%p, %p, %d, %p, %d, %p): method not implemented\n", This, newtrack, join, context,
|
|
|
|
trackgroup, resulttrack);
|
|
|
|
return E_NOTIMPL;
|
2003-08-22 23:53:27 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 07:36:16 +00:00
|
|
|
static const IDirectMusicTrack8Vtbl dmtrack8_vtbl = {
|
|
|
|
IDirectMusicTrack8Impl_QueryInterface,
|
|
|
|
IDirectMusicTrack8Impl_AddRef,
|
|
|
|
IDirectMusicTrack8Impl_Release,
|
|
|
|
IDirectMusicTrack8Impl_Init,
|
|
|
|
IDirectMusicTrack8Impl_InitPlay,
|
|
|
|
IDirectMusicTrack8Impl_EndPlay,
|
|
|
|
IDirectMusicTrack8Impl_Play,
|
2015-07-03 07:25:21 +00:00
|
|
|
IDirectMusicTrack8Impl_GetParam,
|
|
|
|
IDirectMusicTrack8Impl_SetParam,
|
|
|
|
IDirectMusicTrack8Impl_IsParamSupported,
|
|
|
|
IDirectMusicTrack8Impl_AddNotificationType,
|
|
|
|
IDirectMusicTrack8Impl_RemoveNotificationType,
|
2015-07-03 07:36:16 +00:00
|
|
|
IDirectMusicTrack8Impl_Clone,
|
|
|
|
IDirectMusicTrack8Impl_PlayEx,
|
2015-07-03 07:25:21 +00:00
|
|
|
IDirectMusicTrack8Impl_GetParamEx,
|
|
|
|
IDirectMusicTrack8Impl_SetParamEx,
|
|
|
|
IDirectMusicTrack8Impl_Compose,
|
|
|
|
IDirectMusicTrack8Impl_Join
|
2003-08-22 23:53:27 +00:00
|
|
|
};
|
|
|
|
|
2017-07-05 09:26:38 +00:00
|
|
|
static HRESULT WINAPI track_IPersistStream_Load(IPersistStream *iface, IStream *stream)
|
2015-07-03 07:37:49 +00:00
|
|
|
{
|
2003-08-22 23:53:27 +00:00
|
|
|
FIXME(": Loading not implemented yet\n");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-03 07:37:49 +00:00
|
|
|
static const IPersistStreamVtbl persiststream_vtbl = {
|
|
|
|
dmobj_IPersistStream_QueryInterface,
|
|
|
|
dmobj_IPersistStream_AddRef,
|
|
|
|
dmobj_IPersistStream_Release,
|
|
|
|
dmobj_IPersistStream_GetClassID,
|
|
|
|
unimpl_IPersistStream_IsDirty,
|
2017-07-05 09:26:38 +00:00
|
|
|
track_IPersistStream_Load,
|
2015-07-03 07:37:49 +00:00
|
|
|
unimpl_IPersistStream_Save,
|
|
|
|
unimpl_IPersistStream_GetSizeMax
|
2003-08-22 23:53:27 +00:00
|
|
|
};
|
2004-01-20 00:21:40 +00:00
|
|
|
|
|
|
|
/* for ClassFactory */
|
2014-01-10 09:41:27 +00:00
|
|
|
HRESULT WINAPI create_dmseqtrack(REFIID lpcGUID, void **ppobj)
|
|
|
|
{
|
2015-07-03 07:36:54 +00:00
|
|
|
IDirectMusicSeqTrack *track;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
track = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*track));
|
|
|
|
if (!track) {
|
|
|
|
*ppobj = NULL;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
2015-07-03 07:36:16 +00:00
|
|
|
track->IDirectMusicTrack8_iface.lpVtbl = &dmtrack8_vtbl;
|
2015-07-03 07:36:54 +00:00
|
|
|
track->ref = 1;
|
2015-07-03 07:37:49 +00:00
|
|
|
dmobject_init(&track->dmobj, &CLSID_DirectMusicSeqTrack,
|
|
|
|
(IUnknown *)&track->IDirectMusicTrack8_iface);
|
|
|
|
track->dmobj.IPersistStream_iface.lpVtbl = &persiststream_vtbl;
|
2015-07-03 07:36:54 +00:00
|
|
|
|
|
|
|
DMIME_LockModule();
|
|
|
|
hr = IDirectMusicTrack8_QueryInterface(&track->IDirectMusicTrack8_iface, lpcGUID, ppobj);
|
|
|
|
IDirectMusicTrack8_Release(&track->IDirectMusicTrack8_iface);
|
2008-02-23 15:19:10 +00:00
|
|
|
|
2015-07-03 07:36:54 +00:00
|
|
|
return hr;
|
2004-01-20 00:21:40 +00:00
|
|
|
}
|