dmusic: Add dump function for DMUS_PORTPARAMS struct.
[wine/multimedia.git] / dlls / dmusic / dmusic.c
blobeab377009344d7c0bf3ae82da8610f1d7caae338
1 /* IDirectMusic8 Implementation
3 * Copyright (C) 2003-2004 Rok Mandeljc
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include <stdio.h>
22 #include "dmusic_private.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(dmusic);
26 /* IDirectMusic8Impl IUnknown part: */
27 static HRESULT WINAPI IDirectMusic8Impl_QueryInterface (LPDIRECTMUSIC8 iface, REFIID riid, LPVOID *ppobj) {
28 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
29 TRACE("(%p, %s, %p)\n", This, debugstr_dmguid(riid), ppobj);
31 if (IsEqualIID (riid, &IID_IUnknown) ||
32 IsEqualIID (riid, &IID_IDirectMusic) ||
33 IsEqualIID (riid, &IID_IDirectMusic2) ||
34 IsEqualIID (riid, &IID_IDirectMusic8)) {
35 IUnknown_AddRef(iface);
36 *ppobj = This;
37 return S_OK;
40 WARN("(%p, %s, %p): not found\n", This, debugstr_dmguid(riid), ppobj);
41 return E_NOINTERFACE;
44 static ULONG WINAPI IDirectMusic8Impl_AddRef (LPDIRECTMUSIC8 iface) {
45 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
46 ULONG refCount = InterlockedIncrement(&This->ref);
48 TRACE("(%p)->(ref before=%u)\n", This, refCount - 1);
50 DMUSIC_LockModule();
52 return refCount;
55 static ULONG WINAPI IDirectMusic8Impl_Release (LPDIRECTMUSIC8 iface) {
56 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
57 ULONG refCount = InterlockedDecrement(&This->ref);
59 TRACE("(%p)->(ref before=%u)\n", This, refCount + 1);
61 if (!refCount) {
62 HeapFree(GetProcessHeap(), 0, This->ppPorts);
63 HeapFree(GetProcessHeap(), 0, This);
66 DMUSIC_UnlockModule();
68 return refCount;
71 /* IDirectMusic8Impl IDirectMusic part: */
72 static HRESULT WINAPI IDirectMusic8Impl_EnumPort(LPDIRECTMUSIC8 iface, DWORD index, LPDMUS_PORTCAPS port_caps)
74 IDirectMusic8Impl *This = (IDirectMusic8Impl*)iface;
75 ULONG nb_midi_out;
76 ULONG nb_midi_in;
77 const WCHAR emulated[] = {' ','[','E','m','u','l','a','t','e','d',']',0};
79 TRACE("(%p, %d, %p)\n", This, index, port_caps);
81 if (!port_caps)
82 return E_POINTER;
84 /* NOTE: It seems some native versions get the rest of devices through dmusic32.EnumLegacyDevices...*sigh*...which is undocumented */
86 /* NOTE: Should we enum wave devices ? Native does not seem to */
88 /* Fill common port caps for winmm ports */
89 port_caps->dwType = DMUS_PORT_WINMM_DRIVER;
90 port_caps->dwMemorySize = 0;
91 port_caps->dwMaxChannelGroups = 1;
92 port_caps->dwMaxVoices = 0;
93 port_caps->dwMaxAudioChannels = 0;
94 port_caps->dwEffectFlags = DMUS_EFFECT_NONE;
95 /* Fake port GUID */
96 port_caps->guidPort = IID_IUnknown;
97 port_caps->guidPort.Data1 = index + 1;
99 nb_midi_out = midiOutGetNumDevs();
101 if (index == 0)
103 MIDIOUTCAPSW caps;
104 midiOutGetDevCapsW(MIDI_MAPPER, &caps, sizeof(caps));
105 strcpyW(port_caps->wszDescription, caps.szPname);
106 strcatW(port_caps->wszDescription, emulated);
107 port_caps->dwFlags = DMUS_PC_SHAREABLE;
108 port_caps->dwClass = DMUS_PC_OUTPUTCLASS;
109 TRACE("Enumerating port: %s\n", debugstr_w(port_caps->wszDescription));
110 return S_OK;
113 if (index < (nb_midi_out + 1))
115 MIDIOUTCAPSW caps;
116 midiOutGetDevCapsW(index - 1, &caps, sizeof(caps));
117 strcpyW(port_caps->wszDescription, caps.szPname);
118 strcatW(port_caps->wszDescription, emulated);
119 port_caps->dwFlags = DMUS_PC_SHAREABLE | DMUS_PC_EXTERNAL;
120 port_caps->dwClass = DMUS_PC_OUTPUTCLASS;
121 TRACE("Enumerating port: %s\n", debugstr_w(port_caps->wszDescription));
122 return S_OK;
125 nb_midi_in = midiInGetNumDevs();
127 if (index < (nb_midi_in + nb_midi_out + 1))
129 MIDIINCAPSW caps;
130 midiInGetDevCapsW(index - nb_midi_out - 1, &caps, sizeof(caps));
131 strcpyW(port_caps->wszDescription, caps.szPname);
132 strcatW(port_caps->wszDescription, emulated);
133 port_caps->dwFlags = DMUS_PC_EXTERNAL;
134 port_caps->dwClass = DMUS_PC_INPUTCLASS;
135 TRACE("Enumerating port: %s\n", debugstr_w(port_caps->wszDescription));
136 return S_OK;
139 if (index == (nb_midi_in + nb_midi_out + 1))
141 IDirectMusicSynth8* synth = NULL;
142 HRESULT hr;
143 hr = CoCreateInstance(&CLSID_DirectMusicSynth, NULL, CLSCTX_INPROC_SERVER, &IID_IDirectMusicSynth8, (void**)&synth);
144 if (SUCCEEDED(hr))
145 hr = IDirectMusicSynth8_GetPortCaps(synth, port_caps);
146 if (SUCCEEDED(hr))
147 TRACE("Enumerating port: %s\n", debugstr_w(port_caps->wszDescription));
148 if (synth)
149 IDirectMusicSynth8_Release(synth);
150 return hr;
153 return S_FALSE;
156 static HRESULT WINAPI IDirectMusic8Impl_CreateMusicBuffer (LPDIRECTMUSIC8 iface, LPDMUS_BUFFERDESC pBufferDesc, LPDIRECTMUSICBUFFER** ppBuffer, LPUNKNOWN pUnkOuter) {
157 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
159 TRACE("(%p, %p, %p, %p)\n", This, pBufferDesc, ppBuffer, pUnkOuter);
161 if (pUnkOuter)
162 return CLASS_E_NOAGGREGATION;
164 if (!pBufferDesc || !ppBuffer)
165 return E_POINTER;
167 return DMUSIC_CreateDirectMusicBufferImpl(&IID_IDirectMusicBuffer, (LPVOID)ppBuffer, NULL);
170 static HRESULT WINAPI IDirectMusic8Impl_CreatePort (LPDIRECTMUSIC8 iface, REFCLSID rclsidPort, LPDMUS_PORTPARAMS pPortParams, LPDIRECTMUSICPORT* ppPort, LPUNKNOWN pUnkOuter) {
171 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
172 int i;
173 DMUS_PORTCAPS PortCaps;
174 IDirectMusicPort* pNewPort = NULL;
175 HRESULT hr;
176 GUID default_port;
177 const GUID *request_port = rclsidPort;
179 TRACE("(%p, %s, %p, %p, %p)\n", This, debugstr_dmguid(rclsidPort), pPortParams, ppPort, pUnkOuter);
181 if (TRACE_ON(dmusic))
182 dump_DMUS_PORTPARAMS(pPortParams);
184 if(!rclsidPort)
185 return E_POINTER;
187 ZeroMemory(&PortCaps, sizeof(DMUS_PORTCAPS));
188 PortCaps.dwSize = sizeof(DMUS_PORTCAPS);
190 if(IsEqualGUID(request_port, &GUID_NULL)){
191 hr = IDirectMusic8_GetDefaultPort(iface, &default_port);
192 if(FAILED(hr))
193 return hr;
194 request_port = &default_port;
197 for (i = 0; S_FALSE != IDirectMusic8Impl_EnumPort(iface, i, &PortCaps); i++) {
198 if (IsEqualCLSID (request_port, &PortCaps.guidPort)) {
199 hr = DMUSIC_CreateDirectMusicPortImpl(&IID_IDirectMusicPort, (LPVOID*) &pNewPort, (LPUNKNOWN) This, pPortParams, &PortCaps);
200 if (FAILED(hr)) {
201 *ppPort = NULL;
202 return hr;
204 This->nrofports++;
205 if (!This->ppPorts) This->ppPorts = HeapAlloc(GetProcessHeap(), 0, sizeof(LPDIRECTMUSICPORT) * This->nrofports);
206 else This->ppPorts = HeapReAlloc(GetProcessHeap(), 0, This->ppPorts, sizeof(LPDIRECTMUSICPORT) * This->nrofports);
207 This->ppPorts[This->nrofports - 1] = pNewPort;
208 *ppPort = pNewPort;
209 return S_OK;
212 return E_NOINTERFACE;
215 static HRESULT WINAPI IDirectMusic8Impl_EnumMasterClock (LPDIRECTMUSIC8 iface, DWORD dwIndex, LPDMUS_CLOCKINFO lpClockInfo) {
216 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
217 FIXME("(%p, %d, %p): stub\n", This, dwIndex, lpClockInfo);
218 return S_FALSE;
221 static HRESULT WINAPI IDirectMusic8Impl_GetMasterClock (LPDIRECTMUSIC8 iface, LPGUID pguidClock, IReferenceClock** ppReferenceClock) {
222 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
224 TRACE("(%p, %p, %p)\n", This, pguidClock, ppReferenceClock);
225 if (pguidClock)
226 *pguidClock = This->pMasterClock->pClockInfo.guidClock;
227 if(ppReferenceClock)
228 *ppReferenceClock = (IReferenceClock *)This->pMasterClock;
230 return S_OK;
233 static HRESULT WINAPI IDirectMusic8Impl_SetMasterClock (LPDIRECTMUSIC8 iface, REFGUID rguidClock) {
234 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
235 FIXME("(%p, %s): stub\n", This, debugstr_dmguid(rguidClock));
236 return S_OK;
239 static HRESULT WINAPI IDirectMusic8Impl_Activate (LPDIRECTMUSIC8 iface, BOOL fEnable) {
240 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
241 int i;
243 FIXME("(%p, %d): stub\n", This, fEnable);
244 for (i = 0; i < This->nrofports; i++) {
245 IDirectMusicPort_Activate(This->ppPorts[i], fEnable);
248 return S_OK;
251 static HRESULT WINAPI IDirectMusic8Impl_GetDefaultPort (LPDIRECTMUSIC8 iface, LPGUID pguidPort) {
252 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
253 HKEY hkGUID;
254 DWORD returnTypeGUID, sizeOfReturnBuffer = 50;
255 char returnBuffer[51];
256 GUID defaultPortGUID;
257 WCHAR buff[51];
259 TRACE("(%p, %p)\n", This, pguidPort);
260 if ((RegOpenKeyExA(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\DirectMusic\\Defaults" , 0, KEY_READ, &hkGUID) != ERROR_SUCCESS) ||
261 (RegQueryValueExA(hkGUID, "DefaultOutputPort", NULL, &returnTypeGUID, (LPBYTE)returnBuffer, &sizeOfReturnBuffer) != ERROR_SUCCESS))
263 WARN(": registry entry missing\n" );
264 *pguidPort = CLSID_DirectMusicSynth;
265 return S_OK;
267 /* FIXME: Check return types to ensure we're interpreting data right */
268 MultiByteToWideChar(CP_ACP, 0, returnBuffer, -1, buff, sizeof(buff) / sizeof(WCHAR));
269 CLSIDFromString(buff, &defaultPortGUID);
270 *pguidPort = defaultPortGUID;
272 return S_OK;
275 static HRESULT WINAPI IDirectMusic8Impl_SetDirectSound (LPDIRECTMUSIC8 iface, LPDIRECTSOUND pDirectSound, HWND hWnd) {
276 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
277 FIXME("(%p, %p, %p): stub\n", This, pDirectSound, hWnd);
278 return S_OK;
281 static HRESULT WINAPI IDirectMusic8Impl_SetExternalMasterClock (LPDIRECTMUSIC8 iface, IReferenceClock* pClock) {
282 IDirectMusic8Impl *This = (IDirectMusic8Impl *)iface;
283 FIXME("(%p, %p): stub\n", This, pClock);
284 return S_OK;
287 static const IDirectMusic8Vtbl DirectMusic8_Vtbl = {
288 IDirectMusic8Impl_QueryInterface,
289 IDirectMusic8Impl_AddRef,
290 IDirectMusic8Impl_Release,
291 IDirectMusic8Impl_EnumPort,
292 IDirectMusic8Impl_CreateMusicBuffer,
293 IDirectMusic8Impl_CreatePort,
294 IDirectMusic8Impl_EnumMasterClock,
295 IDirectMusic8Impl_GetMasterClock,
296 IDirectMusic8Impl_SetMasterClock,
297 IDirectMusic8Impl_Activate,
298 IDirectMusic8Impl_GetDefaultPort,
299 IDirectMusic8Impl_SetDirectSound,
300 IDirectMusic8Impl_SetExternalMasterClock
303 /* for ClassFactory */
304 HRESULT WINAPI DMUSIC_CreateDirectMusicImpl (LPCGUID lpcGUID, LPVOID* ppobj, LPUNKNOWN pUnkOuter) {
305 IDirectMusic8Impl *dmusic;
307 TRACE("(%p,%p,%p)\n",lpcGUID, ppobj, pUnkOuter);
309 dmusic = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectMusic8Impl));
310 if (NULL == dmusic) {
311 *ppobj = NULL;
312 return E_OUTOFMEMORY;
314 dmusic->lpVtbl = &DirectMusic8_Vtbl;
315 dmusic->ref = 0; /* will be inited with QueryInterface */
316 dmusic->pMasterClock = NULL;
317 dmusic->ppPorts = NULL;
318 dmusic->nrofports = 0;
319 DMUSIC_CreateReferenceClockImpl (&IID_IReferenceClock, (LPVOID*)&dmusic->pMasterClock, NULL);
321 return IDirectMusic8Impl_QueryInterface ((LPDIRECTMUSIC8)dmusic, lpcGUID, ppobj);