Assorted spelling, case and grammar fixes.
[wine/multimedia.git] / dlls / ddraw / main.c
blobca1ff82ac35bf808dfe7f08ece6467fa146d4660
1 /* DirectDraw Base Functions
3 * Copyright 1997-1999 Marcus Meissner
4 * Copyright 1998 Lionel Ulmer
5 * Copyright 2000-2001 TransGaming Technologies Inc.
6 * Copyright 2006 Stefan Dösinger
8 * This file contains the (internal) driver registration functions,
9 * driver enumeration APIs and DirectDraw creation functions.
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "config.h"
27 #include "wine/port.h"
28 #include "wine/debug.h"
30 #include <assert.h>
31 #include <stdarg.h>
32 #include <string.h>
33 #include <stdlib.h>
35 #define COBJMACROS
37 #include "windef.h"
38 #include "winbase.h"
39 #include "winnls.h"
40 #include "winerror.h"
41 #include "wingdi.h"
42 #include "wine/exception.h"
43 #include "excpt.h"
44 #include "winreg.h"
46 #include "ddraw.h"
47 #include "d3d.h"
49 #include "ddraw_private.h"
51 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
53 /* The configured default surface */
54 WINED3DSURFTYPE DefaultSurfaceType = SURFACE_UNKNOWN;
56 /***********************************************************************
58 * Helper function for DirectDrawCreate and friends
59 * Creates a new DDraw interface with the given REFIID
61 * Interfaces that can be created:
62 * IDirectDraw, IDirectDraw2, IDirectDraw4, IDirectDraw7
63 * IDirect3D, IDirect3D2, IDirect3D3, IDirect3D7. (Does Windows return
64 * IDirect3D interfaces?)
66 * Arguments:
67 * guid: ID of the requested driver, NULL for the default driver.
68 * The GUID can be queried with DirectDrawEnumerate(Ex)A/W
69 * DD: Used to return the pointer to the created object
70 * UnkOuter: For aggregation, which is unsupported. Must be NULL
71 * iid: requested version ID.
73 * Returns:
74 * DD_OK if the Interface was created successfully
75 * CLASS_E_NOAGGREGATION if UnkOuter is not NULL
76 * E_OUTOFMEMORY if some allocation failed
78 ***********************************************************************/
79 static HRESULT
80 DDRAW_Create(GUID *guid,
81 void **DD,
82 IUnknown *UnkOuter,
83 REFIID iid)
85 IDirectDrawImpl *This = NULL;
86 HRESULT hr;
87 IWineD3D *wineD3D = NULL;
88 IWineD3DDevice *wineD3DDevice = NULL;
89 HDC hDC;
90 WINED3DDEVTYPE devicetype;
92 TRACE("(%s,%p,%p)\n", debugstr_guid(guid), DD, UnkOuter);
94 /* We don't care about this guids. Well, there's no special guid anyway
95 * OK, we could
97 if (guid == (GUID *) DDCREATE_EMULATIONONLY)
99 /* Use the reference device id. This doesn't actually change anything,
100 * WineD3D always uses OpenGL for D3D rendering. One could make it request
101 * indirect rendering
103 devicetype = WINED3DDEVTYPE_REF;
105 else if(guid == (GUID *) DDCREATE_HARDWAREONLY)
107 devicetype = WINED3DDEVTYPE_HAL;
109 else
111 devicetype = 0;
114 /* DDraw doesn't support aggregation, according to msdn */
115 if (UnkOuter != NULL)
116 return CLASS_E_NOAGGREGATION;
118 /* DirectDraw creation comes here */
119 This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectDrawImpl));
120 if(!This)
122 ERR("Out of memory when creating DirectDraw\n");
123 return E_OUTOFMEMORY;
126 /* The interfaces:
127 * IDirectDraw and IDirect3D are the same object,
128 * QueryInterface is used to get other interfaces.
130 ICOM_INIT_INTERFACE(This, IDirectDraw, IDirectDraw1_Vtbl);
131 ICOM_INIT_INTERFACE(This, IDirectDraw2, IDirectDraw2_Vtbl);
132 ICOM_INIT_INTERFACE(This, IDirectDraw4, IDirectDraw4_Vtbl);
133 ICOM_INIT_INTERFACE(This, IDirectDraw7, IDirectDraw7_Vtbl);
134 ICOM_INIT_INTERFACE(This, IDirect3D, IDirect3D1_Vtbl);
135 ICOM_INIT_INTERFACE(This, IDirect3D2, IDirect3D2_Vtbl);
136 ICOM_INIT_INTERFACE(This, IDirect3D3, IDirect3D3_Vtbl);
137 ICOM_INIT_INTERFACE(This, IDirect3D7, IDirect3D7_Vtbl);
138 This->ref = 1;
140 /* See comments in IDirectDrawImpl_CreateNewSurface for a description
141 * of this member.
142 * Read from a registry key, should add a winecfg option later
144 This->ImplType = DefaultSurfaceType;
146 /* Get the current screen settings */
147 hDC = CreateDCA("DISPLAY", NULL, NULL, NULL);
148 This->orig_bpp = GetDeviceCaps(hDC, BITSPIXEL) * GetDeviceCaps(hDC, PLANES);
149 DeleteDC(hDC);
150 This->orig_width = GetSystemMetrics(SM_CXSCREEN);
151 This->orig_height = GetSystemMetrics(SM_CYSCREEN);
153 /* Initialize WineD3D
155 * All Rendering (2D and 3D) is relayed to WineD3D,
156 * but DirectDraw specific management, like DDSURFACEDESC and DDPIXELFORMAT
157 * structure handling is handled in this lib.
159 wineD3D = WineDirect3DCreate(0 /* SDKVersion */, 7 /* DXVersion */, (IUnknown *) This /* Parent */);
160 if(!wineD3D)
162 ERR("Failed to initialise WineD3D\n");
163 hr = E_OUTOFMEMORY;
164 goto err_out;
166 This->wineD3D = wineD3D;
167 TRACE("WineD3D created at %p\n", wineD3D);
169 /* Initialized member...
171 * It is set to false at creation time, and set to true in
172 * IDirectDraw7::Initialize. Its sole purpose is to return DD_OK on
173 * initialize only once
175 This->initialized = FALSE;
177 /* Initialize WineD3DDevice
179 * It is used for screen setup, surface and palette creation
180 * When a Direct3DDevice7 is created, the D3D capabilities of WineD3D are
181 * initialized
183 hr = IWineD3D_CreateDevice(wineD3D,
184 0 /*D3D_ADAPTER_DEFAULT*/,
185 devicetype,
186 NULL, /* FocusWindow, don't know yet */
187 0, /* BehaviorFlags */
188 &wineD3DDevice,
189 (IUnknown *) ICOM_INTERFACE(This, IDirectDraw7));
190 if(FAILED(hr))
192 ERR("Failed to create a wineD3DDevice, result = %lx\n", hr);
193 goto err_out;
195 This->wineD3DDevice = wineD3DDevice;
196 TRACE("wineD3DDevice created at %p\n", This->wineD3DDevice);
198 /* Register the window class
200 * It is used to create a hidden window for D3D
201 * rendering, if the application didn't pass one.
202 * It can also be used for Creating a device window
203 * from SetCooperativeLevel
205 * The name: DDRAW_<address>. The classname is
206 * 32 bit long, so a 64 bit address will fit nicely
207 * (Will this be compiled for 64 bit anyway?)
210 sprintf(This->classname, "DDRAW_%p", This);
212 memset(&This->wnd_class, 0, sizeof(This->wnd_class));
213 This->wnd_class.style = CS_HREDRAW | CS_VREDRAW;
214 This->wnd_class.lpfnWndProc = DefWindowProcA;
215 This->wnd_class.cbClsExtra = 0;
216 This->wnd_class.cbWndExtra = 0;
217 This->wnd_class.hInstance = GetModuleHandleA(0);
218 This->wnd_class.hIcon = 0;
219 This->wnd_class.hCursor = 0;
220 This->wnd_class.hbrBackground = (HBRUSH) GetStockObject(BLACK_BRUSH);
221 This->wnd_class.lpszMenuName = NULL;
222 This->wnd_class.lpszClassName = This->classname;
223 if(!RegisterClassA(&This->wnd_class))
225 ERR("RegisterClassA failed!\n");
226 goto err_out;
229 /* Get the amount of video memory */
230 This->total_vidmem = IWineD3DDevice_GetAvailableTextureMem(This->wineD3DDevice);
232 /* Initialize the caps */
233 This->caps.dwSize = sizeof(This->caps);
234 #define BLIT_CAPS (DDCAPS_BLT | DDCAPS_BLTCOLORFILL | DDCAPS_BLTDEPTHFILL \
235 | DDCAPS_BLTSTRETCH | DDCAPS_CANBLTSYSMEM | DDCAPS_CANCLIP \
236 | DDCAPS_CANCLIPSTRETCHED | DDCAPS_COLORKEY \
237 | DDCAPS_COLORKEYHWASSIST | DDCAPS_OVERLAY | DDCAPS_OVERLAYSTRETCH |DDCAPS_ALIGNBOUNDARYSRC )
238 #define CKEY_CAPS (DDCKEYCAPS_DESTBLT | DDCKEYCAPS_SRCBLT)
239 #define FX_CAPS (DDFXCAPS_BLTALPHA | DDFXCAPS_BLTMIRRORLEFTRIGHT \
240 | DDFXCAPS_BLTMIRRORUPDOWN | DDFXCAPS_BLTROTATION90 \
241 | DDFXCAPS_BLTSHRINKX | DDFXCAPS_BLTSHRINKXN \
242 | DDFXCAPS_BLTSHRINKY | DDFXCAPS_BLTSHRINKXN \
243 | DDFXCAPS_BLTSTRETCHX | DDFXCAPS_BLTSTRETCHXN \
244 | DDFXCAPS_BLTSTRETCHY | DDFXCAPS_BLTSTRETCHYN)
245 This->caps.dwCaps |= DDCAPS_GDI | DDCAPS_PALETTE | BLIT_CAPS;
247 This->caps.dwCaps2 |= DDCAPS2_CERTIFIED | DDCAPS2_NOPAGELOCKREQUIRED |
248 DDCAPS2_PRIMARYGAMMA | DDCAPS2_WIDESURFACES |
249 DDCAPS2_CANRENDERWINDOWED;
250 This->caps.dwCKeyCaps |= CKEY_CAPS;
251 This->caps.dwFXCaps |= FX_CAPS;
252 This->caps.dwPalCaps |= DDPCAPS_8BIT | DDPCAPS_PRIMARYSURFACE;
253 This->caps.dwVidMemTotal = This->total_vidmem;
254 This->caps.dwVidMemFree = This->total_vidmem;
255 This->caps.dwSVBCaps |= BLIT_CAPS;
256 This->caps.dwSVBCKeyCaps |= CKEY_CAPS;
257 This->caps.dwSVBFXCaps |= FX_CAPS;
258 This->caps.dwVSBCaps |= BLIT_CAPS;
259 This->caps.dwVSBCKeyCaps |= CKEY_CAPS;
260 This->caps.dwVSBFXCaps |= FX_CAPS;
261 This->caps.dwSSBCaps |= BLIT_CAPS;
262 This->caps.dwSSBCKeyCaps |= CKEY_CAPS;
263 This->caps.dwSSBFXCaps |= FX_CAPS;
264 This->caps.ddsCaps.dwCaps |= DDSCAPS_ALPHA | DDSCAPS_BACKBUFFER |
265 DDSCAPS_FLIP | DDSCAPS_FRONTBUFFER |
266 DDSCAPS_OFFSCREENPLAIN | DDSCAPS_PALETTE |
267 DDSCAPS_PRIMARYSURFACE | DDSCAPS_SYSTEMMEMORY |
268 DDSCAPS_VIDEOMEMORY | DDSCAPS_VISIBLE;
269 /* Hacks for D3D code */
270 /* TODO: Check if WineD3D has 3D enabled
271 Need opengl surfaces or auto for 3D
273 if(This->ImplType == 0 || This->ImplType == SURFACE_OPENGL)
275 This->caps.dwCaps |= DDCAPS_3D;
276 This->caps.ddsCaps.dwCaps |= DDSCAPS_3DDEVICE | DDSCAPS_MIPMAP | DDSCAPS_TEXTURE | DDSCAPS_ZBUFFER;
278 This->caps.ddsOldCaps.dwCaps = This->caps.ddsCaps.dwCaps;
280 #undef BLIT_CAPS
281 #undef CKEY_CAPS
282 #undef FX_CAPS
284 /* Add the object to the ddraw cleanup list */
285 This->next = ddraw_list;
286 ddraw_list = This;
288 /* Call QueryInterface to get the pointer to the requested interface */
289 hr = IDirectDraw7_QueryInterface( ICOM_INTERFACE(This, IDirectDraw7), iid, DD);
290 IDirectDraw7_Release( ICOM_INTERFACE(This, IDirectDraw7) );
291 if(SUCCEEDED(hr)) return DD_OK;
293 err_out:
294 /* Let's hope we never need this ;) */
295 if(wineD3DDevice) IWineD3DDevice_Release(wineD3DDevice);
296 if(wineD3D) IWineD3D_Release(wineD3D);
297 if(This) HeapFree(GetProcessHeap(), 0, This);
298 return hr;
301 /***********************************************************************
302 * DirectDrawCreate (DDRAW.@)
304 * Creates legacy DirectDraw Interfaces. Can't create IDirectDraw7
305 * interfaces in theory
307 * Arguments, return values: See DDRAW_Create
309 ***********************************************************************/
310 HRESULT WINAPI
311 DirectDrawCreate(GUID *GUID,
312 IDirectDraw **DD,
313 IUnknown *UnkOuter)
315 TRACE("(%s,%p,%p)\n", debugstr_guid(GUID), DD, UnkOuter);
317 return DDRAW_Create(GUID, (void **) DD, UnkOuter, &IID_IDirectDraw);
320 /***********************************************************************
321 * DirectDrawCreateEx (DDRAW.@)
323 * Only creates new IDirectDraw7 interfaces, supposed to fail if legacy
324 * interfaces are requested.
326 * Arguments, return values: See DDRAW_Create
328 ***********************************************************************/
329 HRESULT WINAPI
330 DirectDrawCreateEx(GUID *GUID,
331 void **DD,
332 REFIID iid,
333 IUnknown *UnkOuter)
335 TRACE("(%s,%p,%s,%p)\n", debugstr_guid(GUID), DD, debugstr_guid(iid), UnkOuter);
337 if (!IsEqualGUID(iid, &IID_IDirectDraw7))
338 return DDERR_INVALIDPARAMS;
340 return DDRAW_Create(GUID, DD, UnkOuter, iid);
343 /***********************************************************************
344 * DirectDrawEnumerateA (DDRAW.@)
346 * Enumerates legacy ddraw drivers, ascii version. We only have one
347 * driver, which relays to WineD3D. If we were sufficiently cool,
348 * we could offer various interfaces, which use a different default surface
349 * implementation, but I think it's better to offer this choice in
350 * winecfg, because some apps use the default driver, so we would need
351 * a winecfg option anyway, and there shouldn't be 2 ways to set one setting
353 * Arguments:
354 * Callback: Callback function from the app
355 * Context: Argument to the call back.
357 * Returns:
358 * DD_OK on success
359 * E_INVALIDARG if the Callback caused a page fault
362 ***********************************************************************/
363 HRESULT WINAPI
364 DirectDrawEnumerateA(LPDDENUMCALLBACKA Callback,
365 void *Context)
367 BOOL stop = FALSE;
369 TRACE(" Enumerating default DirectDraw HAL interface\n");
370 /* We only have one driver */
371 __TRY
373 stop = !Callback(NULL, "DirectDraw HAL", "display", Context);
375 __EXCEPT_PAGE_FAULT
377 return E_INVALIDARG;
379 __ENDTRY
381 TRACE(" End of enumeration\n");
382 return DD_OK;
385 /***********************************************************************
386 * DirectDrawEnumerateExA (DDRAW.@)
388 * Enumerates DirectDraw7 drivers, ascii version. See
389 * the comments above DirectDrawEnumerateA for more details.
391 * The Flag member is not supported right now.
393 ***********************************************************************/
394 HRESULT WINAPI
395 DirectDrawEnumerateExA(LPDDENUMCALLBACKEXA Callback,
396 void *Context,
397 DWORD Flags)
399 BOOL stop = FALSE;
400 TRACE("Enumerating default DirectDraw HAL interface\n");
402 /* We only have one driver by now */
403 __TRY
405 /* QuickTime expects the description "DirectDraw HAL" */
406 stop = !Callback(NULL, "DirectDraw HAL", "display", Context, 0);
408 __EXCEPT_PAGE_FAULT
410 return E_INVALIDARG;
412 __ENDTRY;
414 TRACE("End of enumeration\n");
415 return DD_OK;
418 /***********************************************************************
419 * DirectDrawEnumerateW (DDRAW.@)
421 * Enumerates legacy drivers, unicode version. See
422 * the comments above DirectDrawEnumerateA for more details.
424 * The Flag member is not supported right now.
426 ***********************************************************************/
428 /***********************************************************************
429 * DirectDrawEnumerateExW (DDRAW.@)
431 * Enumerates DirectDraw7 drivers, unicode version. See
432 * the comments above DirectDrawEnumerateA for more details.
434 * The Flag member is not supported right now.
436 ***********************************************************************/
438 /***********************************************************************
439 * Classfactory implementation.
440 ***********************************************************************/
442 /***********************************************************************
443 * CF_CreateDirectDraw
445 * DDraw creation function for the class factory
447 * Params:
448 * UnkOuter: Set to NULL
449 * iid: ID of the wanted interface
450 * obj: Address to pass the interface pointer back
452 * Returns
453 * DD_OK / DDERR*, see DDRAW_Create
455 ***********************************************************************/
456 static HRESULT
457 CF_CreateDirectDraw(IUnknown* UnkOuter, REFIID iid,
458 void **obj)
460 HRESULT hr;
462 TRACE("(%p,%s,%p)\n", UnkOuter, debugstr_guid(iid), obj);
464 hr = DDRAW_Create(NULL, obj, UnkOuter, iid);
465 return hr;
468 /***********************************************************************
469 * CF_CreateDirectDraw
471 * Clipper creation function for the class factory
473 * Params:
474 * UnkOuter: Set to NULL
475 * iid: ID of the wanted interface
476 * obj: Address to pass the interface pointer back
478 * Returns
479 * DD_OK / DDERR*, see DDRAW_Create
481 ***********************************************************************/
482 static HRESULT
483 CF_CreateDirectDrawClipper(IUnknown* UnkOuter, REFIID riid,
484 void **obj)
486 HRESULT hr;
487 IDirectDrawClipper *Clip;
489 hr = DirectDrawCreateClipper(0, &Clip, UnkOuter);
490 if (hr != DD_OK) return hr;
492 hr = IDirectDrawClipper_QueryInterface(Clip, riid, obj);
493 IDirectDrawClipper_Release(Clip);
494 return hr;
497 static const struct object_creation_info object_creation[] =
499 { &CLSID_DirectDraw, CF_CreateDirectDraw },
500 { &CLSID_DirectDraw7, CF_CreateDirectDraw },
501 { &CLSID_DirectDrawClipper, CF_CreateDirectDrawClipper }
504 /*******************************************************************************
505 * IDirectDrawClassFactory::QueryInterface
507 * QueryInterface for the class factory
509 * PARAMS
510 * riid Reference to identifier of queried interface
511 * ppv Address to return the interface pointer at
513 * RETURNS
514 * Success: S_OK
515 * Failure: E_NOINTERFACE
517 *******************************************************************************/
518 static HRESULT WINAPI
519 IDirectDrawClassFactoryImpl_QueryInterface(IClassFactory *iface,
520 REFIID riid,
521 void **obj)
523 ICOM_THIS_FROM(IClassFactoryImpl, IClassFactory, iface);
525 TRACE("(%p)->(%s,%p)\n", This, debugstr_guid(riid), obj);
527 if (IsEqualGUID(riid, &IID_IUnknown)
528 || IsEqualGUID(riid, &IID_IClassFactory))
530 IClassFactory_AddRef(iface);
531 *obj = This;
532 return S_OK;
535 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),obj);
536 return E_NOINTERFACE;
539 /*******************************************************************************
540 * IDirectDrawClassFactory::AddRef
542 * AddRef for the class factory
544 * RETURNS
545 * The new refcount
547 *******************************************************************************/
548 static ULONG WINAPI
549 IDirectDrawClassFactoryImpl_AddRef(IClassFactory *iface)
551 ICOM_THIS_FROM(IClassFactoryImpl, IClassFactory, iface);
552 ULONG ref = InterlockedIncrement(&This->ref);
554 TRACE("(%p)->() incrementing from %ld.\n", This, ref - 1);
556 return ref;
559 /*******************************************************************************
560 * IDirectDrawClassFactory::Release
562 * Release for the class factory. If the refcount falls to 0, the object
563 * is destroyed
565 * RETURNS
566 * The new refcount
568 *******************************************************************************/
569 static ULONG WINAPI
570 IDirectDrawClassFactoryImpl_Release(IClassFactory *iface)
572 ICOM_THIS_FROM(IClassFactoryImpl, IClassFactory, iface);
573 ULONG ref = InterlockedDecrement(&This->ref);
574 TRACE("(%p)->() decrementing from %ld.\n", This, ref+1);
576 if (ref == 0)
577 HeapFree(GetProcessHeap(), 0, This);
579 return ref;
583 /*******************************************************************************
584 * IDirectDrawClassFactory::CreateInstance
586 * What is this? Seems to create DirectDraw objects...
588 * Params
589 * The ususal things???
591 * RETURNS
592 * ???
594 *******************************************************************************/
595 static HRESULT WINAPI
596 IDirectDrawClassFactoryImpl_CreateInstance(IClassFactory *iface,
597 IUnknown *UnkOuter,
598 REFIID riid,
599 void **obj)
601 ICOM_THIS_FROM(IClassFactoryImpl, IClassFactory, iface);
603 TRACE("(%p)->(%p,%s,%p)\n",This,UnkOuter,debugstr_guid(riid),obj);
605 return This->pfnCreateInstance(UnkOuter, riid, obj);
608 /*******************************************************************************
609 * IDirectDrawClassFactory::LockServer
611 * What is this?
613 * Params
614 * ???
616 * RETURNS
617 * S_OK, because it's a stub
619 *******************************************************************************/
620 static HRESULT WINAPI
621 IDirectDrawClassFactoryImpl_LockServer(IClassFactory *iface,BOOL dolock)
623 ICOM_THIS_FROM(IClassFactoryImpl, IClassFactory, iface);
624 FIXME("(%p)->(%d),stub!\n",This,dolock);
625 return S_OK;
628 /*******************************************************************************
629 * The class factory VTable
630 *******************************************************************************/
631 static const IClassFactoryVtbl IClassFactory_Vtbl =
633 IDirectDrawClassFactoryImpl_QueryInterface,
634 IDirectDrawClassFactoryImpl_AddRef,
635 IDirectDrawClassFactoryImpl_Release,
636 IDirectDrawClassFactoryImpl_CreateInstance,
637 IDirectDrawClassFactoryImpl_LockServer
640 /*******************************************************************************
641 * DllGetClassObject [DDRAW.@]
642 * Retrieves class object from a DLL object
644 * NOTES
645 * Docs say returns STDAPI
647 * PARAMS
648 * rclsid [I] CLSID for the class object
649 * riid [I] Reference to identifier of interface for class object
650 * ppv [O] Address of variable to receive interface pointer for riid
652 * RETURNS
653 * Success: S_OK
654 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
655 * E_UNEXPECTED
657 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
659 unsigned int i;
660 IClassFactoryImpl *factory;
662 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
664 if ( !IsEqualGUID( &IID_IClassFactory, riid )
665 && ! IsEqualGUID( &IID_IUnknown, riid) )
666 return E_NOINTERFACE;
668 for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
670 if (IsEqualGUID(object_creation[i].clsid, rclsid))
671 break;
674 if (i == sizeof(object_creation)/sizeof(object_creation[0]))
676 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
677 return CLASS_E_CLASSNOTAVAILABLE;
680 factory = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*factory));
681 if (factory == NULL) return E_OUTOFMEMORY;
683 ICOM_INIT_INTERFACE(factory, IClassFactory, IClassFactory_Vtbl);
684 factory->ref = 1;
686 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
688 *ppv = ICOM_INTERFACE(factory, IClassFactory);
689 return S_OK;
693 /*******************************************************************************
694 * DllCanUnloadNow [DDRAW.@] Determines whether the DLL is in use.
696 * RETURNS
697 * Success: S_OK
698 * Failure: S_FALSE
700 HRESULT WINAPI DllCanUnloadNow(void)
702 FIXME("(void): stub\n");
703 return S_FALSE;
706 /*******************************************************************************
707 * DestroyCallback
709 * Callback function for the EnumSurfaces call in DllMain.
710 * Dumps some surface info and releases the surface
712 * Params:
713 * surf: The enumerated surface
714 * desc: it's description
715 * context: Pointer to the ddraw impl
717 * Returns:
718 * DDENUMRET_OK;
719 *******************************************************************************/
720 static HRESULT WINAPI
721 DestroyCallback(IDirectDrawSurface7 *surf,
722 DDSURFACEDESC2 *desc,
723 void *context)
725 IDirectDrawSurfaceImpl *Impl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface7, surf);
726 IDirectDrawImpl *ddraw = (IDirectDrawImpl *) context;
727 ULONG ref;
729 ref = IDirectDrawSurface7_Release(surf); /* For the EnumSurfaces */
730 WARN("Surface %p has an reference count of %ld\n", Impl, ref);
732 /* Skip surfaces which are attached somewhere or which are
733 * part of a complex compound. They will get released when destroying
734 * the root
736 if( (Impl->first_complex != Impl) || (Impl->first_attached != Impl) )
737 return DDENUMRET_OK;
738 /* Skip our depth stencil surface, it will be released with the render target */
739 if( Impl == ddraw->DepthStencilBuffer)
740 return DDENUMRET_OK;
742 /* Destroy the surface */
743 while(ref) ref = IDirectDrawSurface7_Release(surf);
745 return DDENUMRET_OK;
748 /***********************************************************************
749 * get_config_key
751 * Reads a config key from the registry. Taken from WineD3D
753 ***********************************************************************/
754 inline static DWORD get_config_key(HKEY defkey, HKEY appkey, const char* name, char* buffer, DWORD size)
756 if (0 != appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE) buffer, &size )) return 0;
757 if (0 != defkey && !RegQueryValueExA( defkey, name, 0, NULL, (LPBYTE) buffer, &size )) return 0;
758 return ERROR_FILE_NOT_FOUND;
761 /***********************************************************************
762 * DllMain (DDRAW.0)
764 * Could be used to register DirectDraw drivers, if we have more than
765 * one. Also used to destroy any objects left at unload if the
766 * app didn't release them properly(Gothic 2, Diablo 2, Moto racer, ...)
768 ***********************************************************************/
769 BOOL WINAPI
770 DllMain(HINSTANCE hInstDLL,
771 DWORD Reason,
772 void *lpv)
774 static LONG counter = 0;
776 TRACE("(%p,%lx,%p)\n", hInstDLL, Reason, lpv);
777 if (Reason == DLL_PROCESS_ATTACH)
779 char buffer[MAX_PATH+10];
780 DWORD size = sizeof(buffer);
781 HKEY hkey = 0;
782 HKEY appkey = 0;
783 DWORD len;
785 /* @@ Wine registry key: HKCU\Software\Wine\Direct3D */
786 if ( RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Direct3D", &hkey ) ) hkey = 0;
788 len = GetModuleFileNameA( 0, buffer, MAX_PATH );
789 if (len && len < MAX_PATH)
791 HKEY tmpkey;
792 /* @@ Wine registry key: HKCU\Software\Wine\AppDefaults\app.exe\Direct3D */
793 if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\AppDefaults", &tmpkey ))
795 char *p, *appname = buffer;
796 if ((p = strrchr( appname, '/' ))) appname = p + 1;
797 if ((p = strrchr( appname, '\\' ))) appname = p + 1;
798 strcat( appname, "\\Direct3D" );
799 TRACE("appname = [%s]\n", appname);
800 if (RegOpenKeyA( tmpkey, appname, &appkey )) appkey = 0;
801 RegCloseKey( tmpkey );
805 if ( 0 != hkey || 0 != appkey )
807 if ( !get_config_key( hkey, appkey, "DirectDrawRenderer", buffer, size) )
809 if (!strcmp(buffer,"gdi"))
811 TRACE("Defaulting to GDI surfaces\n");
812 DefaultSurfaceType = SURFACE_GDI;
814 else if (!strcmp(buffer,"opengl"))
816 TRACE("Defaulting to opengl surfaces\n");
817 DefaultSurfaceType = SURFACE_OPENGL;
819 else
821 ERR("Unknown default surface type. Supported are:\n gdi, opengl");
826 DisableThreadLibraryCalls(hInstDLL);
827 TRACE("Attach counter: %ld\n", InterlockedIncrement(&counter));
829 else if (Reason == DLL_PROCESS_DETACH)
831 TRACE("Attach counter: %ld\n", InterlockedDecrement(&counter));
833 if(counter == 0)
835 if(ddraw_list)
837 IDirectDrawImpl *ddraw;
838 WARN("There are still existing DirectDraw interfaces. Wine bug or buggy application?\n");
840 for(ddraw = ddraw_list; ddraw; ddraw = ddraw->next)
842 HRESULT hr;
843 DDSURFACEDESC2 desc;
844 int i;
846 WARN("DDraw %p has a refcount of %ld\n", ddraw, ddraw->ref);
848 ddraw->DoNotDestroy = TRUE; /* Avoid to destroy the object too early */
850 /* Does a D3D device exist? Destroy it
851 * TODO: Destroy all Vertex buffers, Lights, Materials
852 * and execture buffers too
854 if(ddraw->d3ddevice)
856 WARN("DDraw %p has d3ddevice %p attached\n", ddraw, ddraw->d3ddevice);
857 while(IDirect3DDevice7_Release(ICOM_INTERFACE(ddraw->d3ddevice, IDirect3DDevice7)));
860 /* Try to release the objects
861 * Do an EnumSurfaces to find any hanging surfaces
863 memset(&desc, 0, sizeof(desc));
864 desc.dwSize = sizeof(desc);
865 for(i = 0; i <= 1; i++)
867 hr = IDirectDraw7_EnumSurfaces(ICOM_INTERFACE(ddraw, IDirectDraw7),
868 DDENUMSURFACES_ALL,
869 &desc,
870 (void *) ddraw,
871 DestroyCallback);
872 if(hr != D3D_OK)
873 ERR("(%p) EnumSurfaces failed, prepare for trouble\n", ddraw);
876 /* Check the surface count */
877 if(ddraw->surfaces > 0)
878 ERR("DDraw %p still has %ld surfaces attached\n", ddraw, ddraw->surfaces);
880 /* Restore the cooperative level */
881 IDirectDraw7_SetCooperativeLevel(ICOM_INTERFACE(ddraw, IDirectDraw7),
882 NULL,
883 DDSCL_NORMAL);
884 ddraw->DoNotDestroy = FALSE;
885 IDirectDrawImpl_Destroy(ddraw);
891 return TRUE;