wined3d: Replace wined3d_surface_update_desc() with wined3d_texture_update_desc().
[wine.git] / dlls / dmsynth / dmsynth_main.c
bloba95a6136b43fe434825872f23b61127d039c3e61
1 /* DirectMusicSynthesizer Main
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 "config.h"
21 #include "wine/port.h"
23 #include <stdio.h>
25 #include "dmsynth_private.h"
26 #include "rpcproxy.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(dmsynth);
30 static HINSTANCE instance;
31 LONG DMSYNTH_refCount = 0;
33 typedef struct {
34 IClassFactory IClassFactory_iface;
35 HRESULT WINAPI (*fnCreateInstance)(REFIID riid, void **ppv, IUnknown *pUnkOuter);
36 } IClassFactoryImpl;
38 /******************************************************************
39 * IClassFactory implementation
41 static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
43 return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
46 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
48 if (ppv == NULL)
49 return E_POINTER;
51 if (IsEqualGUID(&IID_IUnknown, riid))
52 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
53 else if (IsEqualGUID(&IID_IClassFactory, riid))
54 TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
55 else {
56 FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
57 *ppv = NULL;
58 return E_NOINTERFACE;
61 *ppv = iface;
62 IUnknown_AddRef((IUnknown*)*ppv);
63 return S_OK;
66 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
68 DMSYNTH_LockModule();
70 return 2; /* non-heap based object */
73 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
75 DMSYNTH_UnlockModule();
77 return 1; /* non-heap based object */
80 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface, IUnknown *pUnkOuter,
81 REFIID riid, void **ppv)
83 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
85 TRACE ("(%p, %s, %p)\n", pUnkOuter, debugstr_dmguid(riid), ppv);
87 return This->fnCreateInstance(riid, ppv, pUnkOuter);
90 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
92 TRACE("(%d)\n", dolock);
94 if (dolock)
95 DMSYNTH_LockModule();
96 else
97 DMSYNTH_UnlockModule();
99 return S_OK;
102 static const IClassFactoryVtbl classfactory_vtbl = {
103 ClassFactory_QueryInterface,
104 ClassFactory_AddRef,
105 ClassFactory_Release,
106 ClassFactory_CreateInstance,
107 ClassFactory_LockServer
110 static IClassFactoryImpl Synth_CF = {{&classfactory_vtbl}, DMUSIC_CreateDirectMusicSynthImpl};
111 static IClassFactoryImpl SynthSink_CF = {{&classfactory_vtbl},
112 DMUSIC_CreateDirectMusicSynthSinkImpl};
114 /******************************************************************
115 * DllMain
119 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
120 if (fdwReason == DLL_PROCESS_ATTACH) {
121 instance = hinstDLL;
122 DisableThreadLibraryCalls(hinstDLL);
125 return TRUE;
129 /******************************************************************
130 * DllCanUnloadNow (DMSYNTH.@)
134 HRESULT WINAPI DllCanUnloadNow(void)
136 return DMSYNTH_refCount != 0 ? S_FALSE : S_OK;
140 /******************************************************************
141 * DllGetClassObject (DMSYNTH.@)
145 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
147 TRACE("(%s, %s, %p)\n", debugstr_dmguid(rclsid), debugstr_dmguid(riid), ppv);
149 if (IsEqualCLSID(rclsid, &CLSID_DirectMusicSynth) && IsEqualIID(riid, &IID_IClassFactory)) {
150 *ppv = &Synth_CF;
151 IClassFactory_AddRef((IClassFactory*)*ppv);
152 return S_OK;
153 } else if (IsEqualCLSID(rclsid, &CLSID_DirectMusicSynthSink) && IsEqualIID(riid, &IID_IClassFactory)) {
154 *ppv = &SynthSink_CF;
155 IClassFactory_AddRef((IClassFactory*)*ppv);
156 return S_OK;
159 WARN("(%s,%s,%p): no interface found.\n", debugstr_dmguid(rclsid), debugstr_dmguid(riid), ppv);
160 return CLASS_E_CLASSNOTAVAILABLE;
163 /***********************************************************************
164 * DllRegisterServer (DMSYNTH.@)
166 HRESULT WINAPI DllRegisterServer(void)
168 return __wine_register_resources( instance );
171 /***********************************************************************
172 * DllUnregisterServer (DMSYNTH.@)
174 HRESULT WINAPI DllUnregisterServer(void)
176 return __wine_unregister_resources( instance );
179 /******************************************************************
180 * Helper functions
185 /* returns name of given GUID */
186 const char *debugstr_dmguid (const GUID *id) {
187 static const guid_info guids[] = {
188 /* CLSIDs */
189 GE(CLSID_AudioVBScript),
190 GE(CLSID_DirectMusic),
191 GE(CLSID_DirectMusicAudioPathConfig),
192 GE(CLSID_DirectMusicAuditionTrack),
193 GE(CLSID_DirectMusicBand),
194 GE(CLSID_DirectMusicBandTrack),
195 GE(CLSID_DirectMusicChordMapTrack),
196 GE(CLSID_DirectMusicChordMap),
197 GE(CLSID_DirectMusicChordTrack),
198 GE(CLSID_DirectMusicCollection),
199 GE(CLSID_DirectMusicCommandTrack),
200 GE(CLSID_DirectMusicComposer),
201 GE(CLSID_DirectMusicContainer),
202 GE(CLSID_DirectMusicGraph),
203 GE(CLSID_DirectMusicLoader),
204 GE(CLSID_DirectMusicLyricsTrack),
205 GE(CLSID_DirectMusicMarkerTrack),
206 GE(CLSID_DirectMusicMelodyFormulationTrack),
207 GE(CLSID_DirectMusicMotifTrack),
208 GE(CLSID_DirectMusicMuteTrack),
209 GE(CLSID_DirectMusicParamControlTrack),
210 GE(CLSID_DirectMusicPatternTrack),
211 GE(CLSID_DirectMusicPerformance),
212 GE(CLSID_DirectMusicScript),
213 GE(CLSID_DirectMusicScriptAutoImpSegment),
214 GE(CLSID_DirectMusicScriptAutoImpPerformance),
215 GE(CLSID_DirectMusicScriptAutoImpSegmentState),
216 GE(CLSID_DirectMusicScriptAutoImpAudioPathConfig),
217 GE(CLSID_DirectMusicScriptAutoImpAudioPath),
218 GE(CLSID_DirectMusicScriptAutoImpSong),
219 GE(CLSID_DirectMusicScriptSourceCodeLoader),
220 GE(CLSID_DirectMusicScriptTrack),
221 GE(CLSID_DirectMusicSection),
222 GE(CLSID_DirectMusicSegment),
223 GE(CLSID_DirectMusicSegmentState),
224 GE(CLSID_DirectMusicSegmentTriggerTrack),
225 GE(CLSID_DirectMusicSegTriggerTrack),
226 GE(CLSID_DirectMusicSeqTrack),
227 GE(CLSID_DirectMusicSignPostTrack),
228 GE(CLSID_DirectMusicSong),
229 GE(CLSID_DirectMusicStyle),
230 GE(CLSID_DirectMusicStyleTrack),
231 GE(CLSID_DirectMusicSynth),
232 GE(CLSID_DirectMusicSynthSink),
233 GE(CLSID_DirectMusicSysExTrack),
234 GE(CLSID_DirectMusicTemplate),
235 GE(CLSID_DirectMusicTempoTrack),
236 GE(CLSID_DirectMusicTimeSigTrack),
237 GE(CLSID_DirectMusicWaveTrack),
238 GE(CLSID_DirectSoundWave),
239 /* IIDs */
240 GE(IID_IDirectMusic),
241 GE(IID_IDirectMusic2),
242 GE(IID_IDirectMusic8),
243 GE(IID_IDirectMusicAudioPath),
244 GE(IID_IDirectMusicBand),
245 GE(IID_IDirectMusicBuffer),
246 GE(IID_IDirectMusicChordMap),
247 GE(IID_IDirectMusicCollection),
248 GE(IID_IDirectMusicComposer),
249 GE(IID_IDirectMusicContainer),
250 GE(IID_IDirectMusicDownload),
251 GE(IID_IDirectMusicDownloadedInstrument),
252 GE(IID_IDirectMusicGetLoader),
253 GE(IID_IDirectMusicGraph),
254 GE(IID_IDirectMusicInstrument),
255 GE(IID_IDirectMusicLoader),
256 GE(IID_IDirectMusicLoader8),
257 GE(IID_IDirectMusicObject),
258 GE(IID_IDirectMusicPatternTrack),
259 GE(IID_IDirectMusicPerformance),
260 GE(IID_IDirectMusicPerformance2),
261 GE(IID_IDirectMusicPerformance8),
262 GE(IID_IDirectMusicPort),
263 GE(IID_IDirectMusicPortDownload),
264 GE(IID_IDirectMusicScript),
265 GE(IID_IDirectMusicSegment),
266 GE(IID_IDirectMusicSegment2),
267 GE(IID_IDirectMusicSegment8),
268 GE(IID_IDirectMusicSegmentState),
269 GE(IID_IDirectMusicSegmentState8),
270 GE(IID_IDirectMusicStyle),
271 GE(IID_IDirectMusicStyle8),
272 GE(IID_IDirectMusicSynth),
273 GE(IID_IDirectMusicSynth8),
274 GE(IID_IDirectMusicSynthSink),
275 GE(IID_IDirectMusicThru),
276 GE(IID_IDirectMusicTool),
277 GE(IID_IDirectMusicTool8),
278 GE(IID_IDirectMusicTrack),
279 GE(IID_IDirectMusicTrack8),
280 GE(IID_IUnknown),
281 GE(IID_IPersistStream),
282 GE(IID_IStream),
283 GE(IID_IClassFactory),
284 /* GUIDs */
285 GE(GUID_DirectMusicAllTypes),
286 GE(GUID_NOTIFICATION_CHORD),
287 GE(GUID_NOTIFICATION_COMMAND),
288 GE(GUID_NOTIFICATION_MEASUREANDBEAT),
289 GE(GUID_NOTIFICATION_PERFORMANCE),
290 GE(GUID_NOTIFICATION_RECOMPOSE),
291 GE(GUID_NOTIFICATION_SEGMENT),
292 GE(GUID_BandParam),
293 GE(GUID_ChordParam),
294 GE(GUID_CommandParam),
295 GE(GUID_CommandParam2),
296 GE(GUID_CommandParamNext),
297 GE(GUID_IDirectMusicBand),
298 GE(GUID_IDirectMusicChordMap),
299 GE(GUID_IDirectMusicStyle),
300 GE(GUID_MuteParam),
301 GE(GUID_Play_Marker),
302 GE(GUID_RhythmParam),
303 GE(GUID_TempoParam),
304 GE(GUID_TimeSignature),
305 GE(GUID_Valid_Start_Time),
306 GE(GUID_Clear_All_Bands),
307 GE(GUID_ConnectToDLSCollection),
308 GE(GUID_Disable_Auto_Download),
309 GE(GUID_DisableTempo),
310 GE(GUID_DisableTimeSig),
311 GE(GUID_Download),
312 GE(GUID_DownloadToAudioPath),
313 GE(GUID_Enable_Auto_Download),
314 GE(GUID_EnableTempo),
315 GE(GUID_EnableTimeSig),
316 GE(GUID_IgnoreBankSelectForGM),
317 GE(GUID_SeedVariations),
318 GE(GUID_StandardMIDIFile),
319 GE(GUID_Unload),
320 GE(GUID_UnloadFromAudioPath),
321 GE(GUID_Variations),
322 GE(GUID_PerfMasterTempo),
323 GE(GUID_PerfMasterVolume),
324 GE(GUID_PerfMasterGrooveLevel),
325 GE(GUID_PerfAutoDownload),
326 GE(GUID_DefaultGMCollection),
327 GE(GUID_Synth_Default),
328 GE(GUID_Buffer_Reverb),
329 GE(GUID_Buffer_EnvReverb),
330 GE(GUID_Buffer_Stereo),
331 GE(GUID_Buffer_3D_Dry),
332 GE(GUID_Buffer_Mono),
333 GE(GUID_DMUS_PROP_GM_Hardware),
334 GE(GUID_DMUS_PROP_GS_Capable),
335 GE(GUID_DMUS_PROP_GS_Hardware),
336 GE(GUID_DMUS_PROP_DLS1),
337 GE(GUID_DMUS_PROP_DLS2),
338 GE(GUID_DMUS_PROP_Effects),
339 GE(GUID_DMUS_PROP_INSTRUMENT2),
340 GE(GUID_DMUS_PROP_LegacyCaps),
341 GE(GUID_DMUS_PROP_MemorySize),
342 GE(GUID_DMUS_PROP_SampleMemorySize),
343 GE(GUID_DMUS_PROP_SamplePlaybackRate),
344 GE(GUID_DMUS_PROP_SetSynthSink),
345 GE(GUID_DMUS_PROP_SinkUsesDSound),
346 GE(GUID_DMUS_PROP_SynthSink_DSOUND),
347 GE(GUID_DMUS_PROP_SynthSink_WAVE),
348 GE(GUID_DMUS_PROP_Volume),
349 GE(GUID_DMUS_PROP_WavesReverb),
350 GE(GUID_DMUS_PROP_WriteLatency),
351 GE(GUID_DMUS_PROP_WritePeriod),
352 GE(GUID_DMUS_PROP_XG_Capable),
353 GE(GUID_DMUS_PROP_XG_Hardware)
356 unsigned int i;
358 if (!id) return "(null)";
360 for (i = 0; i < sizeof(guids)/sizeof(guids[0]); i++) {
361 if (IsEqualGUID(id, guids[i].guid))
362 return guids[i].name;
364 /* if we didn't find it, act like standard debugstr_guid */
365 return debugstr_guid(id);