wined3d: Explicitly set surface alignment in the client libs.
[wine/testsucceed.git] / dlls / ddraw / ddraw.c
blob7014ee8dc43a8e5790d05ef575e991892294fec4
1 /*
2 * Copyright 1997-2000 Marcus Meissner
3 * Copyright 1998-2000 Lionel Ulmer
4 * Copyright 2000-2001 TransGaming Technologies Inc.
5 * Copyright 2006 Stefan Dösinger
6 * Copyright 2008 Denver Gingerich
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "config.h"
24 #include "wine/port.h"
26 #include "ddraw_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
30 /* Device identifier. Don't relay it to WineD3D */
31 static const DDDEVICEIDENTIFIER2 deviceidentifier =
33 "display",
34 "DirectDraw HAL",
35 { { 0x00010001, 0x00010001 } },
36 0, 0, 0, 0,
37 /* a8373c10-7ac4-4deb-849a-009844d08b2d */
38 {0xa8373c10,0x7ac4,0x4deb, {0x84,0x9a,0x00,0x98,0x44,0xd0,0x8b,0x2d}},
42 static struct enum_device_entry
44 char interface_name[100];
45 char device_name[100];
46 const GUID *device_guid;
47 } device_list7[] =
49 /* T&L HAL device */
51 "WINE Direct3D7 Hardware Transform and Lighting acceleration using WineD3D",
52 "Wine D3D7 T&L HAL",
53 &IID_IDirect3DTnLHalDevice,
56 /* HAL device */
58 "WINE Direct3D7 Hardware acceleration using WineD3D",
59 "Wine D3D7 HAL",
60 &IID_IDirect3DHALDevice,
63 /* RGB device */
65 "WINE Direct3D7 RGB Software Emulation using WineD3D",
66 "Wine D3D7 RGB",
67 &IID_IDirect3DRGBDevice,
71 static void STDMETHODCALLTYPE ddraw_null_wined3d_object_destroyed(void *parent) {}
73 const struct wined3d_parent_ops ddraw_null_wined3d_parent_ops =
75 ddraw_null_wined3d_object_destroyed,
78 static inline IDirectDrawImpl *impl_from_IDirectDraw(IDirectDraw *iface)
80 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirectDraw_iface);
83 static inline IDirectDrawImpl *impl_from_IDirectDraw2(IDirectDraw2 *iface)
85 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirectDraw2_iface);
88 static inline IDirectDrawImpl *impl_from_IDirectDraw3(IDirectDraw3 *iface)
90 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirectDraw3_iface);
93 static inline IDirectDrawImpl *impl_from_IDirectDraw4(IDirectDraw4 *iface)
95 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirectDraw4_iface);
98 static inline IDirectDrawImpl *impl_from_IDirectDraw7(IDirectDraw7 *iface)
100 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirectDraw7_iface);
103 static inline IDirectDrawImpl *impl_from_IDirect3D(IDirect3D *iface)
105 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirect3D_iface);
108 static inline IDirectDrawImpl *impl_from_IDirect3D2(IDirect3D2 *iface)
110 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirect3D2_iface);
113 static inline IDirectDrawImpl *impl_from_IDirect3D3(IDirect3D3 *iface)
115 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirect3D3_iface);
118 static inline IDirectDrawImpl *impl_from_IDirect3D7(IDirect3D7 *iface)
120 return CONTAINING_RECORD(iface, IDirectDrawImpl, IDirect3D7_iface);
123 /*****************************************************************************
124 * IUnknown Methods
125 *****************************************************************************/
127 /*****************************************************************************
128 * IDirectDraw7::QueryInterface
130 * Queries different interfaces of the DirectDraw object. It can return
131 * IDirectDraw interfaces in version 1, 2, 4 and 7, and IDirect3D interfaces
132 * in version 1, 2, 3 and 7. An IDirect3DDevice can be created with this
133 * method.
134 * The returned interface is AddRef()-ed before it's returned
136 * Used for version 1, 2, 4 and 7
138 * Params:
139 * refiid: Interface ID asked for
140 * obj: Used to return the interface pointer
142 * Returns:
143 * S_OK if an interface was found
144 * E_NOINTERFACE if the requested interface wasn't found
146 *****************************************************************************/
147 static HRESULT WINAPI ddraw7_QueryInterface(IDirectDraw7 *iface, REFIID refiid, void **obj)
149 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
151 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(refiid), obj);
153 /* Can change surface impl type */
154 EnterCriticalSection(&ddraw_cs);
156 /* According to COM docs, if the QueryInterface fails, obj should be set to NULL */
157 *obj = NULL;
159 if(!refiid)
161 LeaveCriticalSection(&ddraw_cs);
162 return DDERR_INVALIDPARAMS;
165 /* Check DirectDraw Interfaces */
166 if ( IsEqualGUID( &IID_IUnknown, refiid ) ||
167 IsEqualGUID( &IID_IDirectDraw7, refiid ) )
169 *obj = This;
170 TRACE("(%p) Returning IDirectDraw7 interface at %p\n", This, *obj);
172 else if ( IsEqualGUID( &IID_IDirectDraw4, refiid ) )
174 *obj = &This->IDirectDraw4_iface;
175 TRACE("(%p) Returning IDirectDraw4 interface at %p\n", This, *obj);
177 else if ( IsEqualGUID( &IID_IDirectDraw3, refiid ) )
179 /* This Interface exists in ddrawex.dll, it is implemented in a wrapper */
180 WARN("IDirectDraw3 is not valid in ddraw.dll\n");
181 *obj = NULL;
182 LeaveCriticalSection(&ddraw_cs);
183 return E_NOINTERFACE;
185 else if ( IsEqualGUID( &IID_IDirectDraw2, refiid ) )
187 *obj = &This->IDirectDraw2_iface;
188 TRACE("(%p) Returning IDirectDraw2 interface at %p\n", This, *obj);
190 else if ( IsEqualGUID( &IID_IDirectDraw, refiid ) )
192 *obj = &This->IDirectDraw_iface;
193 TRACE("(%p) Returning IDirectDraw interface at %p\n", This, *obj);
196 /* Direct3D
197 * The refcount unit test revealed that an IDirect3D7 interface can only be queried
198 * from a DirectDraw object that was created as an IDirectDraw7 interface. No idea
199 * who had this idea and why. The older interfaces can query and IDirect3D version
200 * because they are all created as IDirectDraw(1). This isn't really crucial behavior,
201 * and messy to implement with the common creation function, so it has been left out here.
203 else if ( IsEqualGUID( &IID_IDirect3D , refiid ) ||
204 IsEqualGUID( &IID_IDirect3D2 , refiid ) ||
205 IsEqualGUID( &IID_IDirect3D3 , refiid ) ||
206 IsEqualGUID( &IID_IDirect3D7 , refiid ) )
208 /* Check the surface implementation */
209 if(This->ImplType == SURFACE_UNKNOWN)
211 /* Apps may create the IDirect3D Interface before the primary surface.
212 * set the surface implementation */
213 This->ImplType = SURFACE_OPENGL;
214 TRACE("(%p) Choosing OpenGL surfaces because a Direct3D interface was requested\n", This);
216 else if(This->ImplType != SURFACE_OPENGL && DefaultSurfaceType == SURFACE_UNKNOWN)
218 ERR("(%p) The App is requesting a D3D device, but a non-OpenGL surface type was choosen. Prepare for trouble!\n", This);
219 ERR(" (%p) You may want to contact wine-devel for help\n", This);
220 /* Should I assert(0) here??? */
222 else if(This->ImplType != SURFACE_OPENGL)
224 WARN("The app requests a Direct3D interface, but non-opengl surfaces where set in winecfg\n");
225 /* Do not abort here, only reject 3D Device creation */
228 if ( IsEqualGUID( &IID_IDirect3D , refiid ) )
230 This->d3dversion = 1;
231 *obj = &This->IDirect3D_iface;
232 TRACE(" returning Direct3D interface at %p.\n", *obj);
234 else if ( IsEqualGUID( &IID_IDirect3D2 , refiid ) )
236 This->d3dversion = 2;
237 *obj = &This->IDirect3D2_iface;
238 TRACE(" returning Direct3D2 interface at %p.\n", *obj);
240 else if ( IsEqualGUID( &IID_IDirect3D3 , refiid ) )
242 This->d3dversion = 3;
243 *obj = &This->IDirect3D3_iface;
244 TRACE(" returning Direct3D3 interface at %p.\n", *obj);
246 else if(IsEqualGUID( &IID_IDirect3D7 , refiid ))
248 This->d3dversion = 7;
249 *obj = &This->IDirect3D7_iface;
250 TRACE(" returning Direct3D7 interface at %p.\n", *obj);
253 /* Unknown interface */
254 else
256 ERR("(%p)->(%s, %p): No interface found\n", This, debugstr_guid(refiid), obj);
257 LeaveCriticalSection(&ddraw_cs);
258 return E_NOINTERFACE;
261 IUnknown_AddRef( (IUnknown *) *obj );
262 LeaveCriticalSection(&ddraw_cs);
263 return S_OK;
266 static HRESULT WINAPI ddraw4_QueryInterface(IDirectDraw4 *iface, REFIID riid, void **object)
268 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
270 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
272 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
275 static HRESULT WINAPI ddraw3_QueryInterface(IDirectDraw3 *iface, REFIID riid, void **object)
277 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
279 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
281 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
284 static HRESULT WINAPI ddraw2_QueryInterface(IDirectDraw2 *iface, REFIID riid, void **object)
286 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
288 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
290 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
293 static HRESULT WINAPI ddraw1_QueryInterface(IDirectDraw *iface, REFIID riid, void **object)
295 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
297 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
299 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
302 static HRESULT WINAPI d3d7_QueryInterface(IDirect3D7 *iface, REFIID riid, void **object)
304 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
306 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
308 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
311 static HRESULT WINAPI d3d3_QueryInterface(IDirect3D3 *iface, REFIID riid, void **object)
313 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
315 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
317 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
320 static HRESULT WINAPI d3d2_QueryInterface(IDirect3D2 *iface, REFIID riid, void **object)
322 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
324 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
326 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
329 static HRESULT WINAPI d3d1_QueryInterface(IDirect3D *iface, REFIID riid, void **object)
331 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
333 TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
335 return ddraw7_QueryInterface(&This->IDirectDraw7_iface, riid, object);
338 /*****************************************************************************
339 * IDirectDraw7::AddRef
341 * Increases the interfaces refcount, basically
343 * DDraw refcounting is a bit tricky. The different DirectDraw interface
344 * versions have individual refcounts, but the IDirect3D interfaces do not.
345 * All interfaces are from one object, that means calling QueryInterface on an
346 * IDirectDraw7 interface for an IDirectDraw4 interface does not create a new
347 * IDirectDrawImpl object.
349 * That means all AddRef and Release implementations of IDirectDrawX work
350 * with their own counter, and IDirect3DX::AddRef thunk to IDirectDraw (1),
351 * except of IDirect3D7 which thunks to IDirectDraw7
353 * Returns: The new refcount
355 *****************************************************************************/
356 static ULONG WINAPI ddraw7_AddRef(IDirectDraw7 *iface)
358 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
359 ULONG ref = InterlockedIncrement(&This->ref7);
361 TRACE("%p increasing refcount to %u.\n", This, ref);
363 if(ref == 1) InterlockedIncrement(&This->numIfaces);
365 return ref;
368 static ULONG WINAPI ddraw4_AddRef(IDirectDraw4 *iface)
370 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
371 ULONG ref = InterlockedIncrement(&This->ref4);
373 TRACE("%p increasing refcount to %u.\n", This, ref);
375 if (ref == 1) InterlockedIncrement(&This->numIfaces);
377 return ref;
380 static ULONG WINAPI ddraw3_AddRef(IDirectDraw3 *iface)
382 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
383 ULONG ref = InterlockedIncrement(&This->ref3);
385 TRACE("%p increasing refcount to %u.\n", This, ref);
387 if (ref == 1) InterlockedIncrement(&This->numIfaces);
389 return ref;
392 static ULONG WINAPI ddraw2_AddRef(IDirectDraw2 *iface)
394 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
395 ULONG ref = InterlockedIncrement(&This->ref2);
397 TRACE("%p increasing refcount to %u.\n", This, ref);
399 if (ref == 1) InterlockedIncrement(&This->numIfaces);
401 return ref;
404 static ULONG WINAPI ddraw1_AddRef(IDirectDraw *iface)
406 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
407 ULONG ref = InterlockedIncrement(&This->ref1);
409 TRACE("%p increasing refcount to %u.\n", This, ref);
411 if (ref == 1) InterlockedIncrement(&This->numIfaces);
413 return ref;
416 static ULONG WINAPI d3d7_AddRef(IDirect3D7 *iface)
418 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
420 TRACE("iface %p.\n", iface);
422 return ddraw7_AddRef(&This->IDirectDraw7_iface);
425 static ULONG WINAPI d3d3_AddRef(IDirect3D3 *iface)
427 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
429 TRACE("iface %p.\n", iface);
431 return ddraw1_AddRef(&This->IDirectDraw_iface);
434 static ULONG WINAPI d3d2_AddRef(IDirect3D2 *iface)
436 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
438 TRACE("iface %p.\n", iface);
440 return ddraw1_AddRef(&This->IDirectDraw_iface);
443 static ULONG WINAPI d3d1_AddRef(IDirect3D *iface)
445 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
447 TRACE("iface %p.\n", iface);
449 return ddraw1_AddRef(&This->IDirectDraw_iface);
452 /*****************************************************************************
453 * ddraw_destroy
455 * Destroys a ddraw object if all refcounts are 0. This is to share code
456 * between the IDirectDrawX::Release functions
458 * Params:
459 * This: DirectDraw object to destroy
461 *****************************************************************************/
462 static void ddraw_destroy(IDirectDrawImpl *This)
464 IDirectDraw7_SetCooperativeLevel(&This->IDirectDraw7_iface, NULL, DDSCL_NORMAL);
465 IDirectDraw7_RestoreDisplayMode(&This->IDirectDraw7_iface);
467 /* Destroy the device window if we created one */
468 if(This->devicewindow != 0)
470 TRACE(" (%p) Destroying the device window %p\n", This, This->devicewindow);
471 DestroyWindow(This->devicewindow);
472 This->devicewindow = 0;
475 EnterCriticalSection(&ddraw_cs);
476 list_remove(&This->ddraw_list_entry);
477 LeaveCriticalSection(&ddraw_cs);
479 /* Release the attached WineD3D stuff */
480 wined3d_device_decref(This->wined3d_device);
481 wined3d_decref(This->wineD3D);
483 /* Now free the object */
484 HeapFree(GetProcessHeap(), 0, This);
487 /*****************************************************************************
488 * IDirectDraw7::Release
490 * Decreases the refcount. If the refcount falls to 0, the object is destroyed
492 * Returns: The new refcount
493 *****************************************************************************/
494 static ULONG WINAPI ddraw7_Release(IDirectDraw7 *iface)
496 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
497 ULONG ref = InterlockedDecrement(&This->ref7);
499 TRACE("%p decreasing refcount to %u.\n", This, ref);
501 if (!ref && !InterlockedDecrement(&This->numIfaces))
502 ddraw_destroy(This);
504 return ref;
507 static ULONG WINAPI ddraw4_Release(IDirectDraw4 *iface)
509 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
510 ULONG ref = InterlockedDecrement(&This->ref4);
512 TRACE("%p decreasing refcount to %u.\n", This, ref);
514 if (!ref && !InterlockedDecrement(&This->numIfaces))
515 ddraw_destroy(This);
517 return ref;
520 static ULONG WINAPI ddraw3_Release(IDirectDraw3 *iface)
522 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
523 ULONG ref = InterlockedDecrement(&This->ref3);
525 TRACE("%p decreasing refcount to %u.\n", This, ref);
527 if (!ref && !InterlockedDecrement(&This->numIfaces))
528 ddraw_destroy(This);
530 return ref;
533 static ULONG WINAPI ddraw2_Release(IDirectDraw2 *iface)
535 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
536 ULONG ref = InterlockedDecrement(&This->ref2);
538 TRACE("%p decreasing refcount to %u.\n", This, ref);
540 if (!ref && !InterlockedDecrement(&This->numIfaces))
541 ddraw_destroy(This);
543 return ref;
546 static ULONG WINAPI ddraw1_Release(IDirectDraw *iface)
548 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
549 ULONG ref = InterlockedDecrement(&This->ref1);
551 TRACE("%p decreasing refcount to %u.\n", This, ref);
553 if (!ref && !InterlockedDecrement(&This->numIfaces))
554 ddraw_destroy(This);
556 return ref;
559 static ULONG WINAPI d3d7_Release(IDirect3D7 *iface)
561 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
563 TRACE("iface %p.\n", iface);
565 return ddraw7_Release(&This->IDirectDraw7_iface);
568 static ULONG WINAPI d3d3_Release(IDirect3D3 *iface)
570 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
572 TRACE("iface %p.\n", iface);
574 return ddraw1_Release(&This->IDirectDraw_iface);
577 static ULONG WINAPI d3d2_Release(IDirect3D2 *iface)
579 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
581 TRACE("iface %p.\n", iface);
583 return ddraw1_Release(&This->IDirectDraw_iface);
586 static ULONG WINAPI d3d1_Release(IDirect3D *iface)
588 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
590 TRACE("iface %p.\n", iface);
592 return ddraw1_Release(&This->IDirectDraw_iface);
595 /*****************************************************************************
596 * IDirectDraw methods
597 *****************************************************************************/
599 /*****************************************************************************
600 * IDirectDraw7::SetCooperativeLevel
602 * Sets the cooperative level for the DirectDraw object, and the window
603 * assigned to it. The cooperative level determines the general behavior
604 * of the DirectDraw application
606 * Warning: This is quite tricky, as it's not really documented which
607 * cooperative levels can be combined with each other. If a game fails
608 * after this function, try to check the cooperative levels passed on
609 * Windows, and if it returns something different.
611 * If you think that this function caused the failure because it writes a
612 * fixme, be sure to run again with a +ddraw trace.
614 * What is known about cooperative levels (See the ddraw modes test):
615 * DDSCL_EXCLUSIVE and DDSCL_FULLSCREEN must be used with each other
616 * DDSCL_NORMAL is not compatible with DDSCL_EXCLUSIVE or DDSCL_FULLSCREEN
617 * DDSCL_SETFOCUSWINDOW can be passed only in DDSCL_NORMAL mode, but after that
618 * DDSCL_FULLSCREEN can be activated
619 * DDSCL_SETFOCUSWINDOW may only be used with DDSCL_NOWINDOWCHANGES
621 * Handled flags: DDSCL_NORMAL, DDSCL_FULLSCREEN, DDSCL_EXCLUSIVE,
622 * DDSCL_SETFOCUSWINDOW (partially),
623 * DDSCL_MULTITHREADED (work in progress)
625 * Unhandled flags, which should be implemented
626 * DDSCL_SETDEVICEWINDOW: Sets a window specially used for rendering (I don't
627 * expect any difference to a normal window for wine)
628 * DDSCL_CREATEDEVICEWINDOW: Tells ddraw to create its own window for
629 * rendering (Possible test case: Half-Life)
631 * Unsure about these: DDSCL_FPUSETUP DDSCL_FPURESERVE
633 * These don't seem very important for wine:
634 * DDSCL_ALLOWREBOOT, DDSCL_NOWINDOWCHANGES, DDSCL_ALLOWMODEX
636 * Returns:
637 * DD_OK if the cooperative level was set successfully
638 * DDERR_INVALIDPARAMS if the passed cooperative level combination is invalid
639 * DDERR_HWNDALREADYSET if DDSCL_SETFOCUSWINDOW is passed in exclusive mode
640 * (Probably others too, have to investigate)
642 *****************************************************************************/
643 static HRESULT WINAPI ddraw7_SetCooperativeLevel(IDirectDraw7 *iface, HWND hwnd, DWORD cooplevel)
645 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
646 HWND window;
648 TRACE("iface %p, window %p, flags %#x.\n", iface, hwnd, cooplevel);
649 DDRAW_dump_cooperativelevel(cooplevel);
651 EnterCriticalSection(&ddraw_cs);
653 /* Get the old window */
654 window = This->dest_window;
656 /* Tests suggest that we need one of them: */
657 if(!(cooplevel & (DDSCL_SETFOCUSWINDOW |
658 DDSCL_NORMAL |
659 DDSCL_EXCLUSIVE )))
661 TRACE("Incorrect cooplevel flags, returning DDERR_INVALIDPARAMS\n");
662 LeaveCriticalSection(&ddraw_cs);
663 return DDERR_INVALIDPARAMS;
666 /* Handle those levels first which set various hwnds */
667 if(cooplevel & DDSCL_SETFOCUSWINDOW)
669 /* This isn't compatible with a lot of flags */
670 if(cooplevel & ( DDSCL_MULTITHREADED |
671 DDSCL_CREATEDEVICEWINDOW |
672 DDSCL_FPUSETUP |
673 DDSCL_FPUPRESERVE |
674 DDSCL_ALLOWREBOOT |
675 DDSCL_ALLOWMODEX |
676 DDSCL_SETDEVICEWINDOW |
677 DDSCL_NORMAL |
678 DDSCL_EXCLUSIVE |
679 DDSCL_FULLSCREEN ) )
681 TRACE("Called with incompatible flags, returning DDERR_INVALIDPARAMS\n");
682 LeaveCriticalSection(&ddraw_cs);
683 return DDERR_INVALIDPARAMS;
686 if( (This->cooperative_level & DDSCL_EXCLUSIVE) && window )
688 TRACE("Setting DDSCL_SETFOCUSWINDOW with an already set window, returning DDERR_HWNDALREADYSET\n");
689 LeaveCriticalSection(&ddraw_cs);
690 return DDERR_HWNDALREADYSET;
693 This->focuswindow = hwnd;
694 /* Won't use the hwnd param for anything else */
695 hwnd = NULL;
697 /* Use the focus window for drawing too */
698 This->dest_window = This->focuswindow;
700 /* Destroy the device window, if we have one */
701 if(This->devicewindow)
703 DestroyWindow(This->devicewindow);
704 This->devicewindow = NULL;
707 LeaveCriticalSection(&ddraw_cs);
708 return DD_OK;
711 if(cooplevel & DDSCL_EXCLUSIVE)
713 if( !(cooplevel & DDSCL_FULLSCREEN) || !hwnd )
715 TRACE("(%p) DDSCL_EXCLUSIVE needs DDSCL_FULLSCREEN and a window\n", This);
716 LeaveCriticalSection(&ddraw_cs);
717 return DDERR_INVALIDPARAMS;
720 else if( !(cooplevel & DDSCL_NORMAL) )
722 TRACE("(%p) SetCooperativeLevel needs at least SetFocusWindow or Exclusive or Normal mode\n", This);
723 LeaveCriticalSection(&ddraw_cs);
724 return DDERR_INVALIDPARAMS;
727 if ((This->cooperative_level & DDSCL_EXCLUSIVE)
728 && (hwnd != window || !(cooplevel & DDSCL_EXCLUSIVE)))
729 wined3d_device_release_focus_window(This->wined3d_device);
731 if ((cooplevel & DDSCL_FULLSCREEN) != (This->cooperative_level & DDSCL_FULLSCREEN) || hwnd != window)
733 if (This->cooperative_level & DDSCL_FULLSCREEN)
734 wined3d_device_restore_fullscreen_window(This->wined3d_device, window);
736 if (cooplevel & DDSCL_FULLSCREEN)
738 WINED3DDISPLAYMODE display_mode;
740 wined3d_get_adapter_display_mode(This->wineD3D, WINED3DADAPTER_DEFAULT, &display_mode);
741 wined3d_device_setup_fullscreen_window(This->wined3d_device, hwnd,
742 display_mode.Width, display_mode.Height);
746 if ((cooplevel & DDSCL_EXCLUSIVE)
747 && (hwnd != window || !(This->cooperative_level & DDSCL_EXCLUSIVE)))
749 HRESULT hr = wined3d_device_acquire_focus_window(This->wined3d_device, hwnd);
750 if (FAILED(hr))
752 ERR("Failed to acquire focus window, hr %#x.\n", hr);
753 LeaveCriticalSection(&ddraw_cs);
754 return hr;
758 /* Don't override focus windows or private device windows */
759 if (hwnd && !This->focuswindow && !This->devicewindow && (hwnd != window))
760 This->dest_window = hwnd;
762 if(cooplevel & DDSCL_CREATEDEVICEWINDOW)
764 /* Don't create a device window if a focus window is set */
765 if( !(This->focuswindow) )
767 HWND devicewindow = CreateWindowExA(0, DDRAW_WINDOW_CLASS_NAME, "DDraw device window",
768 WS_POPUP, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
769 NULL, NULL, NULL, NULL);
770 if (!devicewindow)
772 ERR("Failed to create window, last error %#x.\n", GetLastError());
773 LeaveCriticalSection(&ddraw_cs);
774 return E_FAIL;
777 ShowWindow(devicewindow, SW_SHOW); /* Just to be sure */
778 TRACE("(%p) Created a DDraw device window. HWND=%p\n", This, devicewindow);
780 This->devicewindow = devicewindow;
781 This->dest_window = devicewindow;
785 if (cooplevel & DDSCL_MULTITHREADED && !(This->cooperative_level & DDSCL_MULTITHREADED))
786 wined3d_device_set_multithreaded(This->wined3d_device);
788 /* Unhandled flags */
789 if(cooplevel & DDSCL_ALLOWREBOOT)
790 WARN("(%p) Unhandled flag DDSCL_ALLOWREBOOT, harmless\n", This);
791 if(cooplevel & DDSCL_ALLOWMODEX)
792 WARN("(%p) Unhandled flag DDSCL_ALLOWMODEX, harmless\n", This);
793 if(cooplevel & DDSCL_FPUSETUP)
794 WARN("(%p) Unhandled flag DDSCL_FPUSETUP, harmless\n", This);
796 /* Store the cooperative_level */
797 This->cooperative_level = cooplevel;
798 TRACE("SetCooperativeLevel retuning DD_OK\n");
799 LeaveCriticalSection(&ddraw_cs);
800 return DD_OK;
803 static HRESULT WINAPI ddraw4_SetCooperativeLevel(IDirectDraw4 *iface, HWND window, DWORD flags)
805 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
807 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
809 return ddraw7_SetCooperativeLevel(&This->IDirectDraw7_iface, window, flags);
812 static HRESULT WINAPI ddraw3_SetCooperativeLevel(IDirectDraw3 *iface, HWND window, DWORD flags)
814 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
816 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
818 return ddraw7_SetCooperativeLevel(&This->IDirectDraw7_iface, window, flags);
821 static HRESULT WINAPI ddraw2_SetCooperativeLevel(IDirectDraw2 *iface, HWND window, DWORD flags)
823 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
825 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
827 return ddraw7_SetCooperativeLevel(&This->IDirectDraw7_iface, window, flags);
830 static HRESULT WINAPI ddraw1_SetCooperativeLevel(IDirectDraw *iface, HWND window, DWORD flags)
832 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
834 TRACE("iface %p, window %p, flags %#x.\n", iface, window, flags);
836 return ddraw7_SetCooperativeLevel(&This->IDirectDraw7_iface, window, flags);
839 /*****************************************************************************
841 * Helper function for SetDisplayMode and RestoreDisplayMode
843 * Implements DirectDraw's SetDisplayMode, but ignores the value of
844 * ForceRefreshRate, since it is already handled by
845 * ddraw7_SetDisplayMode. RestoreDisplayMode can use this function
846 * without worrying that ForceRefreshRate will override the refresh rate. For
847 * argument and return value documentation, see
848 * ddraw7_SetDisplayMode.
850 *****************************************************************************/
851 static HRESULT ddraw_set_display_mode(IDirectDrawImpl *ddraw, DWORD Width, DWORD Height,
852 DWORD BPP, DWORD RefreshRate, DWORD Flags)
854 enum wined3d_format_id format;
855 WINED3DDISPLAYMODE Mode;
856 HRESULT hr;
858 TRACE("ddraw %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n", ddraw, Width,
859 Height, BPP, RefreshRate, Flags);
861 EnterCriticalSection(&ddraw_cs);
862 if( !Width || !Height )
864 ERR("Width %u, Height %u, what to do?\n", Width, Height);
865 /* It looks like Need for Speed Porsche Unleashed expects DD_OK here */
866 LeaveCriticalSection(&ddraw_cs);
867 return DD_OK;
870 switch(BPP)
872 case 8: format = WINED3DFMT_P8_UINT; break;
873 case 15: format = WINED3DFMT_B5G5R5X1_UNORM; break;
874 case 16: format = WINED3DFMT_B5G6R5_UNORM; break;
875 case 24: format = WINED3DFMT_B8G8R8_UNORM; break;
876 case 32: format = WINED3DFMT_B8G8R8X8_UNORM; break;
877 default: format = WINED3DFMT_UNKNOWN; break;
880 if (FAILED(hr = wined3d_device_get_display_mode(ddraw->wined3d_device, 0, &Mode)))
882 ERR("Failed to get current display mode, hr %#x.\n", hr);
884 else if (Mode.Width == Width
885 && Mode.Height == Height
886 && Mode.Format == format
887 && Mode.RefreshRate == RefreshRate)
889 TRACE("Skipping redundant mode setting call.\n");
890 LeaveCriticalSection(&ddraw_cs);
891 return DD_OK;
894 /* Check the exclusive mode
895 if(!(ddraw->cooperative_level & DDSCL_EXCLUSIVE))
896 return DDERR_NOEXCLUSIVEMODE;
897 * This is WRONG. Don't know if the SDK is completely
898 * wrong and if there are any conditions when DDERR_NOEXCLUSIVE
899 * is returned, but Half-Life 1.1.1.1 (Steam version)
900 * depends on this
903 Mode.Width = Width;
904 Mode.Height = Height;
905 Mode.RefreshRate = RefreshRate;
906 Mode.Format = format;
908 /* TODO: The possible return values from msdn suggest that
909 * the screen mode can't be changed if a surface is locked
910 * or some drawing is in progress
913 /* TODO: Lose the primary surface */
914 hr = wined3d_device_set_display_mode(ddraw->wined3d_device, 0, &Mode);
916 if (ddraw->cooperative_level & DDSCL_EXCLUSIVE)
918 wined3d_device_restore_fullscreen_window(ddraw->wined3d_device, ddraw->dest_window);
919 wined3d_device_setup_fullscreen_window(ddraw->wined3d_device, ddraw->dest_window, Width, Height);
922 LeaveCriticalSection(&ddraw_cs);
923 switch(hr)
925 case WINED3DERR_NOTAVAILABLE: return DDERR_UNSUPPORTED;
926 default: return hr;
930 /*****************************************************************************
931 * IDirectDraw7::SetDisplayMode
933 * Sets the display screen resolution, color depth and refresh frequency
934 * when in fullscreen mode (in theory).
935 * Possible return values listed in the SDK suggest that this method fails
936 * when not in fullscreen mode, but this is wrong. Windows 2000 happily sets
937 * the display mode in DDSCL_NORMAL mode without an hwnd specified.
938 * It seems to be valid to pass 0 for With and Height, this has to be tested
939 * It could mean that the current video mode should be left as-is. (But why
940 * call it then?)
942 * Params:
943 * Height, Width: Screen dimension
944 * BPP: Color depth in Bits per pixel
945 * Refreshrate: Screen refresh rate
946 * Flags: Other stuff
948 * Returns
949 * DD_OK on success
951 *****************************************************************************/
952 static HRESULT WINAPI ddraw7_SetDisplayMode(IDirectDraw7 *iface, DWORD Width, DWORD Height,
953 DWORD BPP, DWORD RefreshRate, DWORD Flags)
955 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
957 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
958 iface, Width, Height, BPP, RefreshRate, Flags);
960 if (force_refresh_rate != 0)
962 TRACE("ForceRefreshRate overriding passed-in refresh rate (%u Hz) to %u Hz\n",
963 RefreshRate, force_refresh_rate);
964 RefreshRate = force_refresh_rate;
967 return ddraw_set_display_mode(This, Width, Height, BPP, RefreshRate, Flags);
970 static HRESULT WINAPI ddraw4_SetDisplayMode(IDirectDraw4 *iface, DWORD width, DWORD height,
971 DWORD bpp, DWORD refresh_rate, DWORD flags)
973 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
975 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
976 iface, width, height, bpp, refresh_rate, flags);
978 return ddraw7_SetDisplayMode(&This->IDirectDraw7_iface, width, height, bpp, refresh_rate, flags);
981 static HRESULT WINAPI ddraw3_SetDisplayMode(IDirectDraw3 *iface, DWORD width, DWORD height,
982 DWORD bpp, DWORD refresh_rate, DWORD flags)
984 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
986 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
987 iface, width, height, bpp, refresh_rate, flags);
989 return ddraw7_SetDisplayMode(&This->IDirectDraw7_iface, width, height, bpp, refresh_rate, flags);
992 static HRESULT WINAPI ddraw2_SetDisplayMode(IDirectDraw2 *iface,
993 DWORD width, DWORD height, DWORD bpp, DWORD refresh_rate, DWORD flags)
995 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
997 TRACE("iface %p, width %u, height %u, bpp %u, refresh_rate %u, flags %#x.\n",
998 iface, width, height, bpp, refresh_rate, flags);
1000 return ddraw7_SetDisplayMode(&This->IDirectDraw7_iface, width, height, bpp, refresh_rate, flags);
1003 static HRESULT WINAPI ddraw1_SetDisplayMode(IDirectDraw *iface, DWORD width, DWORD height, DWORD bpp)
1005 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1007 TRACE("iface %p, width %u, height %u, bpp %u.\n", iface, width, height, bpp);
1009 return ddraw7_SetDisplayMode(&This->IDirectDraw7_iface, width, height, bpp, 0, 0);
1012 /*****************************************************************************
1013 * IDirectDraw7::RestoreDisplayMode
1015 * Restores the display mode to what it was at creation time. Basically.
1017 * A problem arises when there are 2 DirectDraw objects using the same hwnd:
1018 * -> DD_1 finds the screen at 1400x1050x32 when created, sets it to 640x480x16
1019 * -> DD_2 is created, finds the screen at 640x480x16, sets it to 1024x768x32
1020 * -> DD_1 is released. The screen should be left at 1024x768x32.
1021 * -> DD_2 is released. The screen should be set to 1400x1050x32
1022 * This case is unhandled right now, but Empire Earth does it this way.
1023 * (But perhaps there is something in SetCooperativeLevel to prevent this)
1025 * The msdn says that this method resets the display mode to what it was before
1026 * SetDisplayMode was called. What if SetDisplayModes is called 2 times??
1028 * Returns
1029 * DD_OK on success
1030 * DDERR_NOEXCLUSIVE mode if the device isn't in fullscreen mode
1032 *****************************************************************************/
1033 static HRESULT WINAPI ddraw7_RestoreDisplayMode(IDirectDraw7 *iface)
1035 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1037 TRACE("iface %p.\n", iface);
1039 return ddraw_set_display_mode(This, This->orig_width, This->orig_height, This->orig_bpp, 0, 0);
1042 static HRESULT WINAPI ddraw4_RestoreDisplayMode(IDirectDraw4 *iface)
1044 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1046 TRACE("iface %p.\n", iface);
1048 return ddraw7_RestoreDisplayMode(&This->IDirectDraw7_iface);
1051 static HRESULT WINAPI ddraw3_RestoreDisplayMode(IDirectDraw3 *iface)
1053 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1055 TRACE("iface %p.\n", iface);
1057 return ddraw7_RestoreDisplayMode(&This->IDirectDraw7_iface);
1060 static HRESULT WINAPI ddraw2_RestoreDisplayMode(IDirectDraw2 *iface)
1062 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1064 TRACE("iface %p.\n", iface);
1066 return ddraw7_RestoreDisplayMode(&This->IDirectDraw7_iface);
1069 static HRESULT WINAPI ddraw1_RestoreDisplayMode(IDirectDraw *iface)
1071 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1073 TRACE("iface %p.\n", iface);
1075 return ddraw7_RestoreDisplayMode(&This->IDirectDraw7_iface);
1078 /*****************************************************************************
1079 * IDirectDraw7::GetCaps
1081 * Returns the drives capabilities
1083 * Used for version 1, 2, 4 and 7
1085 * Params:
1086 * DriverCaps: Structure to write the Hardware accelerated caps to
1087 * HelCaps: Structure to write the emulation caps to
1089 * Returns
1090 * This implementation returns DD_OK only
1092 *****************************************************************************/
1093 static HRESULT WINAPI ddraw7_GetCaps(IDirectDraw7 *iface, DDCAPS *DriverCaps, DDCAPS *HELCaps)
1095 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1096 DDCAPS caps;
1097 WINED3DCAPS winecaps;
1098 HRESULT hr;
1099 DDSCAPS2 ddscaps = {0, 0, 0, 0};
1101 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, DriverCaps, HELCaps);
1103 /* One structure must be != NULL */
1104 if( (!DriverCaps) && (!HELCaps) )
1106 ERR("(%p) Invalid params to ddraw7_GetCaps\n", This);
1107 return DDERR_INVALIDPARAMS;
1110 memset(&caps, 0, sizeof(caps));
1111 memset(&winecaps, 0, sizeof(winecaps));
1112 caps.dwSize = sizeof(caps);
1113 EnterCriticalSection(&ddraw_cs);
1114 hr = wined3d_device_get_device_caps(This->wined3d_device, &winecaps);
1115 if (FAILED(hr))
1117 WARN("IWineD3DDevice::GetDeviceCaps failed\n");
1118 LeaveCriticalSection(&ddraw_cs);
1119 return hr;
1122 hr = IDirectDraw7_GetAvailableVidMem(iface, &ddscaps, &caps.dwVidMemTotal, &caps.dwVidMemFree);
1123 LeaveCriticalSection(&ddraw_cs);
1124 if(FAILED(hr)) {
1125 WARN("IDirectDraw7::GetAvailableVidMem failed\n");
1126 return hr;
1129 caps.dwCaps = winecaps.DirectDrawCaps.Caps;
1130 caps.dwCaps2 = winecaps.DirectDrawCaps.Caps2;
1131 caps.dwCKeyCaps = winecaps.DirectDrawCaps.CKeyCaps;
1132 caps.dwFXCaps = winecaps.DirectDrawCaps.FXCaps;
1133 caps.dwPalCaps = winecaps.DirectDrawCaps.PalCaps;
1134 caps.ddsCaps.dwCaps = winecaps.DirectDrawCaps.ddsCaps;
1135 caps.dwSVBCaps = winecaps.DirectDrawCaps.SVBCaps;
1136 caps.dwSVBCKeyCaps = winecaps.DirectDrawCaps.SVBCKeyCaps;
1137 caps.dwSVBFXCaps = winecaps.DirectDrawCaps.SVBFXCaps;
1138 caps.dwVSBCaps = winecaps.DirectDrawCaps.VSBCaps;
1139 caps.dwVSBCKeyCaps = winecaps.DirectDrawCaps.VSBCKeyCaps;
1140 caps.dwVSBFXCaps = winecaps.DirectDrawCaps.VSBFXCaps;
1141 caps.dwSSBCaps = winecaps.DirectDrawCaps.SSBCaps;
1142 caps.dwSSBCKeyCaps = winecaps.DirectDrawCaps.SSBCKeyCaps;
1143 caps.dwSSBFXCaps = winecaps.DirectDrawCaps.SSBFXCaps;
1145 /* Even if WineD3D supports 3D rendering, remove the cap if ddraw is configured
1146 * not to use it
1148 if(DefaultSurfaceType == SURFACE_GDI) {
1149 caps.dwCaps &= ~DDCAPS_3D;
1150 caps.ddsCaps.dwCaps &= ~(DDSCAPS_3DDEVICE | DDSCAPS_MIPMAP | DDSCAPS_TEXTURE | DDSCAPS_ZBUFFER);
1152 if(winecaps.DirectDrawCaps.StrideAlign != 0) {
1153 caps.dwCaps |= DDCAPS_ALIGNSTRIDE;
1154 caps.dwAlignStrideAlign = winecaps.DirectDrawCaps.StrideAlign;
1157 if(DriverCaps)
1159 DD_STRUCT_COPY_BYSIZE(DriverCaps, &caps);
1160 if (TRACE_ON(ddraw))
1162 TRACE("Driver Caps :\n");
1163 DDRAW_dump_DDCAPS(DriverCaps);
1167 if(HELCaps)
1169 DD_STRUCT_COPY_BYSIZE(HELCaps, &caps);
1170 if (TRACE_ON(ddraw))
1172 TRACE("HEL Caps :\n");
1173 DDRAW_dump_DDCAPS(HELCaps);
1177 return DD_OK;
1180 static HRESULT WINAPI ddraw4_GetCaps(IDirectDraw4 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1182 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1184 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1186 return ddraw7_GetCaps(&This->IDirectDraw7_iface, driver_caps, hel_caps);
1189 static HRESULT WINAPI ddraw3_GetCaps(IDirectDraw3 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1191 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1193 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1195 return ddraw7_GetCaps(&This->IDirectDraw7_iface, driver_caps, hel_caps);
1198 static HRESULT WINAPI ddraw2_GetCaps(IDirectDraw2 *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1200 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1202 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1204 return ddraw7_GetCaps(&This->IDirectDraw7_iface, driver_caps, hel_caps);
1207 static HRESULT WINAPI ddraw1_GetCaps(IDirectDraw *iface, DDCAPS *driver_caps, DDCAPS *hel_caps)
1209 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1211 TRACE("iface %p, driver_caps %p, hel_caps %p.\n", iface, driver_caps, hel_caps);
1213 return ddraw7_GetCaps(&This->IDirectDraw7_iface, driver_caps, hel_caps);
1216 /*****************************************************************************
1217 * IDirectDraw7::Compact
1219 * No idea what it does, MSDN says it's not implemented.
1221 * Returns
1222 * DD_OK, but this is unchecked
1224 *****************************************************************************/
1225 static HRESULT WINAPI ddraw7_Compact(IDirectDraw7 *iface)
1227 TRACE("iface %p.\n", iface);
1229 return DD_OK;
1232 static HRESULT WINAPI ddraw4_Compact(IDirectDraw4 *iface)
1234 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1236 TRACE("iface %p.\n", iface);
1238 return ddraw7_Compact(&This->IDirectDraw7_iface);
1241 static HRESULT WINAPI ddraw3_Compact(IDirectDraw3 *iface)
1243 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1245 TRACE("iface %p.\n", iface);
1247 return ddraw7_Compact(&This->IDirectDraw7_iface);
1250 static HRESULT WINAPI ddraw2_Compact(IDirectDraw2 *iface)
1252 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1254 TRACE("iface %p.\n", iface);
1256 return ddraw7_Compact(&This->IDirectDraw7_iface);
1259 static HRESULT WINAPI ddraw1_Compact(IDirectDraw *iface)
1261 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1263 TRACE("iface %p.\n", iface);
1265 return ddraw7_Compact(&This->IDirectDraw7_iface);
1268 /*****************************************************************************
1269 * IDirectDraw7::GetDisplayMode
1271 * Returns information about the current display mode
1273 * Exists in Version 1, 2, 4 and 7
1275 * Params:
1276 * DDSD: Address of a surface description structure to write the info to
1278 * Returns
1279 * DD_OK
1281 *****************************************************************************/
1282 static HRESULT WINAPI ddraw7_GetDisplayMode(IDirectDraw7 *iface, DDSURFACEDESC2 *DDSD)
1284 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1285 HRESULT hr;
1286 WINED3DDISPLAYMODE Mode;
1287 DWORD Size;
1289 TRACE("iface %p, surface_desc %p.\n", iface, DDSD);
1291 EnterCriticalSection(&ddraw_cs);
1292 /* This seems sane */
1293 if (!DDSD)
1295 LeaveCriticalSection(&ddraw_cs);
1296 return DDERR_INVALIDPARAMS;
1299 /* The necessary members of LPDDSURFACEDESC and LPDDSURFACEDESC2 are equal,
1300 * so one method can be used for all versions (Hopefully) */
1301 hr = wined3d_device_get_display_mode(This->wined3d_device, 0, &Mode);
1302 if (FAILED(hr))
1304 ERR(" (%p) IWineD3DDevice::GetDisplayMode returned %08x\n", This, hr);
1305 LeaveCriticalSection(&ddraw_cs);
1306 return hr;
1309 Size = DDSD->dwSize;
1310 memset(DDSD, 0, Size);
1312 DDSD->dwSize = Size;
1313 DDSD->dwFlags |= DDSD_HEIGHT | DDSD_WIDTH | DDSD_PIXELFORMAT | DDSD_PITCH | DDSD_REFRESHRATE;
1314 DDSD->dwWidth = Mode.Width;
1315 DDSD->dwHeight = Mode.Height;
1316 DDSD->u2.dwRefreshRate = 60;
1317 DDSD->ddsCaps.dwCaps = 0;
1318 DDSD->u4.ddpfPixelFormat.dwSize = sizeof(DDSD->u4.ddpfPixelFormat);
1319 PixelFormat_WineD3DtoDD(&DDSD->u4.ddpfPixelFormat, Mode.Format);
1320 DDSD->u1.lPitch = Mode.Width * DDSD->u4.ddpfPixelFormat.u1.dwRGBBitCount / 8;
1322 if(TRACE_ON(ddraw))
1324 TRACE("Returning surface desc :\n");
1325 DDRAW_dump_surface_desc(DDSD);
1328 LeaveCriticalSection(&ddraw_cs);
1329 return DD_OK;
1332 static HRESULT WINAPI ddraw4_GetDisplayMode(IDirectDraw4 *iface, DDSURFACEDESC2 *surface_desc)
1334 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1336 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1338 return ddraw7_GetDisplayMode(&This->IDirectDraw7_iface, surface_desc);
1341 static HRESULT WINAPI ddraw3_GetDisplayMode(IDirectDraw3 *iface, DDSURFACEDESC *surface_desc)
1343 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1345 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1347 return ddraw7_GetDisplayMode(&This->IDirectDraw7_iface, (DDSURFACEDESC2 *)surface_desc);
1350 static HRESULT WINAPI ddraw2_GetDisplayMode(IDirectDraw2 *iface, DDSURFACEDESC *surface_desc)
1352 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1354 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1356 return ddraw7_GetDisplayMode(&This->IDirectDraw7_iface, (DDSURFACEDESC2 *)surface_desc);
1359 static HRESULT WINAPI ddraw1_GetDisplayMode(IDirectDraw *iface, DDSURFACEDESC *surface_desc)
1361 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1363 TRACE("iface %p, surface_desc %p.\n", iface, surface_desc);
1365 return ddraw7_GetDisplayMode(&This->IDirectDraw7_iface, (DDSURFACEDESC2 *)surface_desc);
1368 /*****************************************************************************
1369 * IDirectDraw7::GetFourCCCodes
1371 * Returns an array of supported FourCC codes.
1373 * Exists in Version 1, 2, 4 and 7
1375 * Params:
1376 * NumCodes: Contains the number of Codes that Codes can carry. Returns the number
1377 * of enumerated codes
1378 * Codes: Pointer to an array of DWORDs where the supported codes are written
1379 * to
1381 * Returns
1382 * Always returns DD_OK, as it's a stub for now
1384 *****************************************************************************/
1385 static HRESULT WINAPI ddraw7_GetFourCCCodes(IDirectDraw7 *iface, DWORD *NumCodes, DWORD *Codes)
1387 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1388 static const enum wined3d_format_id formats[] =
1390 WINED3DFMT_YUY2, WINED3DFMT_UYVY, WINED3DFMT_YV12,
1391 WINED3DFMT_DXT1, WINED3DFMT_DXT2, WINED3DFMT_DXT3, WINED3DFMT_DXT4, WINED3DFMT_DXT5,
1392 WINED3DFMT_ATI2N, WINED3DFMT_NVHU, WINED3DFMT_NVHS
1394 DWORD count = 0, i, outsize;
1395 HRESULT hr;
1396 WINED3DDISPLAYMODE d3ddm;
1397 WINED3DSURFTYPE type = This->ImplType;
1399 TRACE("iface %p, codes_count %p, codes %p.\n", iface, NumCodes, Codes);
1401 wined3d_device_get_display_mode(This->wined3d_device, 0, &d3ddm);
1403 outsize = NumCodes && Codes ? *NumCodes : 0;
1405 if(type == SURFACE_UNKNOWN) type = SURFACE_GDI;
1407 for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); ++i)
1409 hr = wined3d_check_device_format(This->wineD3D, WINED3DADAPTER_DEFAULT, WINED3DDEVTYPE_HAL,
1410 d3ddm.Format, 0, WINED3DRTYPE_SURFACE, formats[i], type);
1411 if (SUCCEEDED(hr))
1413 if (count < outsize)
1414 Codes[count] = formats[i];
1415 ++count;
1418 if(NumCodes) {
1419 TRACE("Returning %u FourCC codes\n", count);
1420 *NumCodes = count;
1423 return DD_OK;
1426 static HRESULT WINAPI ddraw4_GetFourCCCodes(IDirectDraw4 *iface, DWORD *codes_count, DWORD *codes)
1428 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1430 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1432 return ddraw7_GetFourCCCodes(&This->IDirectDraw7_iface, codes_count, codes);
1435 static HRESULT WINAPI ddraw3_GetFourCCCodes(IDirectDraw3 *iface, DWORD *codes_count, DWORD *codes)
1437 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1439 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1441 return ddraw7_GetFourCCCodes(&This->IDirectDraw7_iface, codes_count, codes);
1444 static HRESULT WINAPI ddraw2_GetFourCCCodes(IDirectDraw2 *iface, DWORD *codes_count, DWORD *codes)
1446 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1448 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1450 return ddraw7_GetFourCCCodes(&This->IDirectDraw7_iface, codes_count, codes);
1453 static HRESULT WINAPI ddraw1_GetFourCCCodes(IDirectDraw *iface, DWORD *codes_count, DWORD *codes)
1455 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1457 TRACE("iface %p, codes_count %p, codes %p.\n", iface, codes_count, codes);
1459 return ddraw7_GetFourCCCodes(&This->IDirectDraw7_iface, codes_count, codes);
1462 /*****************************************************************************
1463 * IDirectDraw7::GetMonitorFrequency
1465 * Returns the monitor's frequency
1467 * Exists in Version 1, 2, 4 and 7
1469 * Params:
1470 * Freq: Pointer to a DWORD to write the frequency to
1472 * Returns
1473 * Always returns DD_OK
1475 *****************************************************************************/
1476 static HRESULT WINAPI ddraw7_GetMonitorFrequency(IDirectDraw7 *iface, DWORD *Freq)
1478 FIXME("iface %p, frequency %p stub!\n", iface, Freq);
1480 /* Ideally this should be in WineD3D, as it concerns the screen setup,
1481 * but for now this should make the games happy
1483 *Freq = 60;
1484 return DD_OK;
1487 static HRESULT WINAPI ddraw4_GetMonitorFrequency(IDirectDraw4 *iface, DWORD *frequency)
1489 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1491 TRACE("iface %p, frequency %p.\n", iface, frequency);
1493 return ddraw7_GetMonitorFrequency(&This->IDirectDraw7_iface, frequency);
1496 static HRESULT WINAPI ddraw3_GetMonitorFrequency(IDirectDraw3 *iface, DWORD *frequency)
1498 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1500 TRACE("iface %p, frequency %p.\n", iface, frequency);
1502 return ddraw7_GetMonitorFrequency(&This->IDirectDraw7_iface, frequency);
1505 static HRESULT WINAPI ddraw2_GetMonitorFrequency(IDirectDraw2 *iface, DWORD *frequency)
1507 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1509 TRACE("iface %p, frequency %p.\n", iface, frequency);
1511 return ddraw7_GetMonitorFrequency(&This->IDirectDraw7_iface, frequency);
1514 static HRESULT WINAPI ddraw1_GetMonitorFrequency(IDirectDraw *iface, DWORD *frequency)
1516 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1518 TRACE("iface %p, frequency %p.\n", iface, frequency);
1520 return ddraw7_GetMonitorFrequency(&This->IDirectDraw7_iface, frequency);
1523 /*****************************************************************************
1524 * IDirectDraw7::GetVerticalBlankStatus
1526 * Returns the Vertical blank status of the monitor. This should be in WineD3D
1527 * too basically, but as it's a semi stub, I didn't create a function there
1529 * Params:
1530 * status: Pointer to a BOOL to be filled with the vertical blank status
1532 * Returns
1533 * DD_OK on success
1534 * DDERR_INVALIDPARAMS if status is NULL
1536 *****************************************************************************/
1537 static HRESULT WINAPI ddraw7_GetVerticalBlankStatus(IDirectDraw7 *iface, BOOL *status)
1539 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1541 TRACE("iface %p, status %p.\n", iface, status);
1543 /* This looks sane, the MSDN suggests it too */
1544 EnterCriticalSection(&ddraw_cs);
1545 if(!status)
1547 LeaveCriticalSection(&ddraw_cs);
1548 return DDERR_INVALIDPARAMS;
1551 *status = This->fake_vblank;
1552 This->fake_vblank = !This->fake_vblank;
1553 LeaveCriticalSection(&ddraw_cs);
1554 return DD_OK;
1557 static HRESULT WINAPI ddraw4_GetVerticalBlankStatus(IDirectDraw4 *iface, BOOL *status)
1559 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1561 TRACE("iface %p, status %p.\n", iface, status);
1563 return ddraw7_GetVerticalBlankStatus(&This->IDirectDraw7_iface, status);
1566 static HRESULT WINAPI ddraw3_GetVerticalBlankStatus(IDirectDraw3 *iface, BOOL *status)
1568 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1570 TRACE("iface %p, status %p.\n", iface, status);
1572 return ddraw7_GetVerticalBlankStatus(&This->IDirectDraw7_iface, status);
1575 static HRESULT WINAPI ddraw2_GetVerticalBlankStatus(IDirectDraw2 *iface, BOOL *status)
1577 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1579 TRACE("iface %p, status %p.\n", iface, status);
1581 return ddraw7_GetVerticalBlankStatus(&This->IDirectDraw7_iface, status);
1584 static HRESULT WINAPI ddraw1_GetVerticalBlankStatus(IDirectDraw *iface, BOOL *status)
1586 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1588 TRACE("iface %p, status %p.\n", iface, status);
1590 return ddraw7_GetVerticalBlankStatus(&This->IDirectDraw7_iface, status);
1593 /*****************************************************************************
1594 * IDirectDraw7::GetAvailableVidMem
1596 * Returns the total and free video memory
1598 * Params:
1599 * Caps: Specifies the memory type asked for
1600 * total: Pointer to a DWORD to be filled with the total memory
1601 * free: Pointer to a DWORD to be filled with the free memory
1603 * Returns
1604 * DD_OK on success
1605 * DDERR_INVALIDPARAMS of free and total are NULL
1607 *****************************************************************************/
1608 static HRESULT WINAPI ddraw7_GetAvailableVidMem(IDirectDraw7 *iface, DDSCAPS2 *Caps, DWORD *total,
1609 DWORD *free)
1611 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1613 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, Caps, total, free);
1615 if(TRACE_ON(ddraw))
1617 TRACE("(%p) Asked for memory with description: ", This);
1618 DDRAW_dump_DDSCAPS2(Caps);
1620 EnterCriticalSection(&ddraw_cs);
1622 /* Todo: System memory vs local video memory vs non-local video memory
1623 * The MSDN also mentions differences between texture memory and other
1624 * resources, but that's not important
1627 if( (!total) && (!free) )
1629 LeaveCriticalSection(&ddraw_cs);
1630 return DDERR_INVALIDPARAMS;
1633 if (total)
1634 *total = This->total_vidmem;
1635 if (free)
1636 *free = wined3d_device_get_available_texture_mem(This->wined3d_device);
1638 LeaveCriticalSection(&ddraw_cs);
1639 return DD_OK;
1642 static HRESULT WINAPI ddraw4_GetAvailableVidMem(IDirectDraw4 *iface,
1643 DDSCAPS2 *caps, DWORD *total, DWORD *free)
1645 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1647 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1649 return ddraw7_GetAvailableVidMem(&This->IDirectDraw7_iface, caps, total, free);
1652 static HRESULT WINAPI ddraw3_GetAvailableVidMem(IDirectDraw3 *iface, DDSCAPS *caps, DWORD *total,
1653 DWORD *free)
1655 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1656 DDSCAPS2 caps2;
1658 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1660 DDRAW_Convert_DDSCAPS_1_To_2(caps, &caps2);
1661 return ddraw7_GetAvailableVidMem(&This->IDirectDraw7_iface, &caps2, total, free);
1664 static HRESULT WINAPI ddraw2_GetAvailableVidMem(IDirectDraw2 *iface,
1665 DDSCAPS *caps, DWORD *total, DWORD *free)
1667 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1668 DDSCAPS2 caps2;
1670 TRACE("iface %p, caps %p, total %p, free %p.\n", iface, caps, total, free);
1672 DDRAW_Convert_DDSCAPS_1_To_2(caps, &caps2);
1673 return ddraw7_GetAvailableVidMem(&This->IDirectDraw7_iface, &caps2, total, free);
1676 /*****************************************************************************
1677 * IDirectDraw7::Initialize
1679 * Initializes a DirectDraw interface.
1681 * Params:
1682 * GUID: Interface identifier. Well, don't know what this is really good
1683 * for
1685 * Returns
1686 * Returns DD_OK on the first call,
1687 * DDERR_ALREADYINITIALIZED on repeated calls
1689 *****************************************************************************/
1690 static HRESULT WINAPI ddraw7_Initialize(IDirectDraw7 *iface, GUID *Guid)
1692 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1694 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(Guid));
1696 if(This->initialized)
1698 return DDERR_ALREADYINITIALIZED;
1700 else
1702 return DD_OK;
1706 static HRESULT WINAPI ddraw4_Initialize(IDirectDraw4 *iface, GUID *guid)
1708 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1710 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1712 return ddraw7_Initialize(&This->IDirectDraw7_iface, guid);
1715 static HRESULT WINAPI ddraw3_Initialize(IDirectDraw3 *iface, GUID *guid)
1717 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1719 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1721 return ddraw7_Initialize(&This->IDirectDraw7_iface, guid);
1724 static HRESULT WINAPI ddraw2_Initialize(IDirectDraw2 *iface, GUID *guid)
1726 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1728 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1730 return ddraw7_Initialize(&This->IDirectDraw7_iface, guid);
1733 static HRESULT WINAPI ddraw1_Initialize(IDirectDraw *iface, GUID *guid)
1735 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1737 TRACE("iface %p, guid %s.\n", iface, debugstr_guid(guid));
1739 return ddraw7_Initialize(&This->IDirectDraw7_iface, guid);
1742 static HRESULT WINAPI d3d1_Initialize(IDirect3D *iface, REFIID riid)
1744 TRACE("iface %p, riid %s.\n", iface, debugstr_guid(riid));
1746 return D3D_OK;
1749 /*****************************************************************************
1750 * IDirectDraw7::FlipToGDISurface
1752 * "Makes the surface that the GDI writes to the primary surface"
1753 * Looks like some windows specific thing we don't have to care about.
1754 * According to MSDN it permits GDI dialog boxes in FULLSCREEN mode. Good to
1755 * show error boxes ;)
1756 * Well, just return DD_OK.
1758 * Returns:
1759 * Always returns DD_OK
1761 *****************************************************************************/
1762 static HRESULT WINAPI ddraw7_FlipToGDISurface(IDirectDraw7 *iface)
1764 FIXME("iface %p stub!\n", iface);
1766 return DD_OK;
1769 static HRESULT WINAPI ddraw4_FlipToGDISurface(IDirectDraw4 *iface)
1771 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1773 TRACE("iface %p.\n", iface);
1775 return ddraw7_FlipToGDISurface(&This->IDirectDraw7_iface);
1778 static HRESULT WINAPI ddraw3_FlipToGDISurface(IDirectDraw3 *iface)
1780 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1782 TRACE("iface %p.\n", iface);
1784 return ddraw7_FlipToGDISurface(&This->IDirectDraw7_iface);
1787 static HRESULT WINAPI ddraw2_FlipToGDISurface(IDirectDraw2 *iface)
1789 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1791 TRACE("iface %p.\n", iface);
1793 return ddraw7_FlipToGDISurface(&This->IDirectDraw7_iface);
1796 static HRESULT WINAPI ddraw1_FlipToGDISurface(IDirectDraw *iface)
1798 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1800 TRACE("iface %p.\n", iface);
1802 return ddraw7_FlipToGDISurface(&This->IDirectDraw7_iface);
1805 /*****************************************************************************
1806 * IDirectDraw7::WaitForVerticalBlank
1808 * This method allows applications to get in sync with the vertical blank
1809 * interval.
1810 * The wormhole demo in the DirectX 7 sdk uses this call, and it doesn't
1811 * redraw the screen, most likely because of this stub
1813 * Parameters:
1814 * Flags: one of DDWAITVB_BLOCKBEGIN, DDWAITVB_BLOCKBEGINEVENT
1815 * or DDWAITVB_BLOCKEND
1816 * h: Not used, according to MSDN
1818 * Returns:
1819 * Always returns DD_OK
1821 *****************************************************************************/
1822 static HRESULT WINAPI ddraw7_WaitForVerticalBlank(IDirectDraw7 *iface, DWORD Flags, HANDLE event)
1824 static BOOL hide;
1826 TRACE("iface %p, flags %#x, event %p.\n", iface, Flags, event);
1828 /* This function is called often, so print the fixme only once */
1829 if(!hide)
1831 FIXME("iface %p, flags %#x, event %p stub!\n", iface, Flags, event);
1832 hide = TRUE;
1835 /* MSDN says DDWAITVB_BLOCKBEGINEVENT is not supported */
1836 if(Flags & DDWAITVB_BLOCKBEGINEVENT)
1837 return DDERR_UNSUPPORTED; /* unchecked */
1839 return DD_OK;
1842 static HRESULT WINAPI ddraw4_WaitForVerticalBlank(IDirectDraw4 *iface, DWORD flags, HANDLE event)
1844 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1846 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1848 return ddraw7_WaitForVerticalBlank(&This->IDirectDraw7_iface, flags, event);
1851 static HRESULT WINAPI ddraw3_WaitForVerticalBlank(IDirectDraw3 *iface, DWORD flags, HANDLE event)
1853 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1855 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1857 return ddraw7_WaitForVerticalBlank(&This->IDirectDraw7_iface, flags, event);
1860 static HRESULT WINAPI ddraw2_WaitForVerticalBlank(IDirectDraw2 *iface, DWORD flags, HANDLE event)
1862 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1864 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1866 return ddraw7_WaitForVerticalBlank(&This->IDirectDraw7_iface, flags, event);
1869 static HRESULT WINAPI ddraw1_WaitForVerticalBlank(IDirectDraw *iface, DWORD flags, HANDLE event)
1871 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1873 TRACE("iface %p, flags %#x, event %p.\n", iface, flags, event);
1875 return ddraw7_WaitForVerticalBlank(&This->IDirectDraw7_iface, flags, event);
1878 /*****************************************************************************
1879 * IDirectDraw7::GetScanLine
1881 * Returns the scan line that is being drawn on the monitor
1883 * Parameters:
1884 * Scanline: Address to write the scan line value to
1886 * Returns:
1887 * Always returns DD_OK
1889 *****************************************************************************/
1890 static HRESULT WINAPI ddraw7_GetScanLine(IDirectDraw7 *iface, DWORD *Scanline)
1892 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
1893 static BOOL hide = FALSE;
1894 WINED3DDISPLAYMODE Mode;
1896 TRACE("iface %p, line %p.\n", iface, Scanline);
1898 /* This function is called often, so print the fixme only once */
1899 EnterCriticalSection(&ddraw_cs);
1900 if(!hide)
1902 FIXME("iface %p, line %p partial stub!\n", iface, Scanline);
1903 hide = TRUE;
1906 wined3d_device_get_display_mode(This->wined3d_device, 0, &Mode);
1908 /* Fake the line sweeping of the monitor */
1909 /* FIXME: We should synchronize with a source to keep the refresh rate */
1910 *Scanline = This->cur_scanline++;
1911 /* Assume 20 scan lines in the vertical blank */
1912 if (This->cur_scanline >= Mode.Height + 20)
1913 This->cur_scanline = 0;
1915 LeaveCriticalSection(&ddraw_cs);
1916 return DD_OK;
1919 static HRESULT WINAPI ddraw4_GetScanLine(IDirectDraw4 *iface, DWORD *line)
1921 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1923 TRACE("iface %p, line %p.\n", iface, line);
1925 return ddraw7_GetScanLine(&This->IDirectDraw7_iface, line);
1928 static HRESULT WINAPI ddraw3_GetScanLine(IDirectDraw3 *iface, DWORD *line)
1930 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
1932 TRACE("iface %p, line %p.\n", iface, line);
1934 return ddraw7_GetScanLine(&This->IDirectDraw7_iface, line);
1937 static HRESULT WINAPI ddraw2_GetScanLine(IDirectDraw2 *iface, DWORD *line)
1939 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
1941 TRACE("iface %p, line %p.\n", iface, line);
1943 return ddraw7_GetScanLine(&This->IDirectDraw7_iface, line);
1946 static HRESULT WINAPI ddraw1_GetScanLine(IDirectDraw *iface, DWORD *line)
1948 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
1950 TRACE("iface %p, line %p.\n", iface, line);
1952 return ddraw7_GetScanLine(&This->IDirectDraw7_iface, line);
1955 /*****************************************************************************
1956 * IDirectDraw7::TestCooperativeLevel
1958 * Informs the application about the state of the video adapter, depending
1959 * on the cooperative level
1961 * Returns:
1962 * DD_OK if the device is in a sane state
1963 * DDERR_NOEXCLUSIVEMODE or DDERR_EXCLUSIVEMODEALREADYSET
1964 * if the state is not correct(See below)
1966 *****************************************************************************/
1967 static HRESULT WINAPI ddraw7_TestCooperativeLevel(IDirectDraw7 *iface)
1969 TRACE("iface %p.\n", iface);
1971 return DD_OK;
1974 static HRESULT WINAPI ddraw4_TestCooperativeLevel(IDirectDraw4 *iface)
1976 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
1978 TRACE("iface %p.\n", iface);
1980 return ddraw7_TestCooperativeLevel(&This->IDirectDraw7_iface);
1983 /*****************************************************************************
1984 * IDirectDraw7::GetGDISurface
1986 * Returns the surface that GDI is treating as the primary surface.
1987 * For Wine this is the front buffer
1989 * Params:
1990 * GDISurface: Address to write the surface pointer to
1992 * Returns:
1993 * DD_OK if the surface was found
1994 * DDERR_NOTFOUND if the GDI surface wasn't found
1996 *****************************************************************************/
1997 static HRESULT WINAPI ddraw7_GetGDISurface(IDirectDraw7 *iface, IDirectDrawSurface7 **GDISurface)
1999 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
2000 struct wined3d_surface *wined3d_surface;
2001 IDirectDrawSurface7 *ddsurf;
2002 HRESULT hr;
2003 DDSCAPS2 ddsCaps;
2005 TRACE("iface %p, surface %p.\n", iface, GDISurface);
2007 /* Get the back buffer from the wineD3DDevice and search its
2008 * attached surfaces for the front buffer. */
2009 EnterCriticalSection(&ddraw_cs);
2010 hr = wined3d_device_get_back_buffer(This->wined3d_device,
2011 0, 0, WINED3DBACKBUFFER_TYPE_MONO, &wined3d_surface);
2012 if (FAILED(hr) || !wined3d_surface)
2014 ERR("IWineD3DDevice::GetBackBuffer failed\n");
2015 LeaveCriticalSection(&ddraw_cs);
2016 return DDERR_NOTFOUND;
2019 ddsurf = wined3d_surface_get_parent(wined3d_surface);
2020 wined3d_surface_decref(wined3d_surface);
2022 /* Find the front buffer */
2023 ddsCaps.dwCaps = DDSCAPS_FRONTBUFFER;
2024 hr = IDirectDrawSurface7_GetAttachedSurface(ddsurf,
2025 &ddsCaps,
2026 GDISurface);
2027 if(hr != DD_OK)
2029 ERR("IDirectDrawSurface7::GetAttachedSurface failed, hr = %x\n", hr);
2032 /* The AddRef is OK this time */
2033 LeaveCriticalSection(&ddraw_cs);
2034 return hr;
2037 static HRESULT WINAPI ddraw4_GetGDISurface(IDirectDraw4 *iface, IDirectDrawSurface4 **surface)
2039 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
2040 IDirectDrawSurface7 *surface7;
2041 IDirectDrawSurfaceImpl *surface_impl;
2042 HRESULT hr;
2044 TRACE("iface %p, surface %p.\n", iface, surface);
2046 hr = ddraw7_GetGDISurface(&This->IDirectDraw7_iface, &surface7);
2047 if (FAILED(hr))
2049 *surface = NULL;
2050 return hr;
2052 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2053 *surface = &surface_impl->IDirectDrawSurface4_iface;
2055 return hr;
2058 static HRESULT WINAPI ddraw3_GetGDISurface(IDirectDraw3 *iface, IDirectDrawSurface **surface)
2060 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
2061 IDirectDrawSurface7 *surface7;
2062 IDirectDrawSurfaceImpl *surface_impl;
2063 HRESULT hr;
2065 TRACE("iface %p, surface %p.\n", iface, surface);
2067 hr = ddraw7_GetGDISurface(&This->IDirectDraw7_iface, &surface7);
2068 if (FAILED(hr))
2070 *surface = NULL;
2071 return hr;
2073 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2074 *surface = &surface_impl->IDirectDrawSurface_iface;
2076 return hr;
2079 static HRESULT WINAPI ddraw2_GetGDISurface(IDirectDraw2 *iface, IDirectDrawSurface **surface)
2081 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
2082 IDirectDrawSurface7 *surface7;
2083 IDirectDrawSurfaceImpl *surface_impl;
2084 HRESULT hr;
2086 TRACE("iface %p, surface %p.\n", iface, surface);
2088 hr = ddraw7_GetGDISurface(&This->IDirectDraw7_iface, &surface7);
2089 if (FAILED(hr))
2091 *surface = NULL;
2092 return hr;
2094 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2095 *surface = &surface_impl->IDirectDrawSurface_iface;
2097 return hr;
2100 static HRESULT WINAPI ddraw1_GetGDISurface(IDirectDraw *iface, IDirectDrawSurface **surface)
2102 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
2103 IDirectDrawSurface7 *surface7;
2104 IDirectDrawSurfaceImpl *surface_impl;
2105 HRESULT hr;
2107 TRACE("iface %p, surface %p.\n", iface, surface);
2109 hr = ddraw7_GetGDISurface(&This->IDirectDraw7_iface, &surface7);
2110 if (FAILED(hr))
2112 *surface = NULL;
2113 return hr;
2115 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2116 *surface = &surface_impl->IDirectDrawSurface_iface;
2118 return hr;
2121 struct displaymodescallback_context
2123 LPDDENUMMODESCALLBACK func;
2124 void *context;
2127 static HRESULT CALLBACK EnumDisplayModesCallbackThunk(DDSURFACEDESC2 *surface_desc, void *context)
2129 struct displaymodescallback_context *cbcontext = context;
2130 DDSURFACEDESC desc;
2132 memcpy(&desc, surface_desc, sizeof(desc));
2133 desc.dwSize = sizeof(desc);
2135 return cbcontext->func(&desc, cbcontext->context);
2138 /*****************************************************************************
2139 * IDirectDraw7::EnumDisplayModes
2141 * Enumerates the supported Display modes. The modes can be filtered with
2142 * the DDSD parameter.
2144 * Params:
2145 * Flags: can be DDEDM_REFRESHRATES and DDEDM_STANDARDVGAMODES. For old ddraw
2146 * versions (3 and older?) this is reserved and must be 0.
2147 * DDSD: Surface description to filter the modes
2148 * Context: Pointer passed back to the callback function
2149 * cb: Application-provided callback function
2151 * Returns:
2152 * DD_OK on success
2153 * DDERR_INVALIDPARAMS if the callback wasn't set
2155 *****************************************************************************/
2156 static HRESULT WINAPI ddraw7_EnumDisplayModes(IDirectDraw7 *iface, DWORD Flags,
2157 DDSURFACEDESC2 *DDSD, void *Context, LPDDENUMMODESCALLBACK2 cb)
2159 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
2160 unsigned int modenum, fmt;
2161 WINED3DDISPLAYMODE mode;
2162 DDSURFACEDESC2 callback_sd;
2163 WINED3DDISPLAYMODE *enum_modes = NULL;
2164 unsigned enum_mode_count = 0, enum_mode_array_size = 0;
2165 DDPIXELFORMAT pixelformat;
2167 static const enum wined3d_format_id checkFormatList[] =
2169 WINED3DFMT_B8G8R8X8_UNORM,
2170 WINED3DFMT_B5G6R5_UNORM,
2171 WINED3DFMT_P8_UINT,
2174 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2175 iface, Flags, DDSD, Context, cb);
2177 EnterCriticalSection(&ddraw_cs);
2178 /* This looks sane */
2179 if(!cb)
2181 LeaveCriticalSection(&ddraw_cs);
2182 return DDERR_INVALIDPARAMS;
2185 if(!(Flags & DDEDM_REFRESHRATES))
2187 enum_mode_array_size = 16;
2188 enum_modes = HeapAlloc(GetProcessHeap(), 0, sizeof(WINED3DDISPLAYMODE) * enum_mode_array_size);
2189 if (!enum_modes)
2191 ERR("Out of memory\n");
2192 LeaveCriticalSection(&ddraw_cs);
2193 return DDERR_OUTOFMEMORY;
2197 pixelformat.dwSize = sizeof(pixelformat);
2198 for(fmt = 0; fmt < (sizeof(checkFormatList) / sizeof(checkFormatList[0])); fmt++)
2200 modenum = 0;
2201 while (wined3d_enum_adapter_modes(This->wineD3D, WINED3DADAPTER_DEFAULT,
2202 checkFormatList[fmt], modenum++, &mode) == WINED3D_OK)
2204 PixelFormat_WineD3DtoDD(&pixelformat, mode.Format);
2205 if(DDSD)
2207 if(DDSD->dwFlags & DDSD_WIDTH && mode.Width != DDSD->dwWidth) continue;
2208 if(DDSD->dwFlags & DDSD_HEIGHT && mode.Height != DDSD->dwHeight) continue;
2209 if(DDSD->dwFlags & DDSD_REFRESHRATE && mode.RefreshRate != DDSD->u2.dwRefreshRate) continue;
2210 if (DDSD->dwFlags & DDSD_PIXELFORMAT &&
2211 pixelformat.u1.dwRGBBitCount != DDSD->u4.ddpfPixelFormat.u1.dwRGBBitCount) continue;
2214 if(!(Flags & DDEDM_REFRESHRATES))
2216 /* DX docs state EnumDisplayMode should return only unique modes. If DDEDM_REFRESHRATES is not set, refresh
2217 * rate doesn't matter when determining if the mode is unique. So modes only differing in refresh rate have
2218 * to be reduced to a single unique result in such case.
2220 BOOL found = FALSE;
2221 unsigned i;
2223 for (i = 0; i < enum_mode_count; i++)
2225 if(enum_modes[i].Width == mode.Width && enum_modes[i].Height == mode.Height &&
2226 enum_modes[i].Format == mode.Format)
2228 found = TRUE;
2229 break;
2233 if(found) continue;
2236 memset(&callback_sd, 0, sizeof(callback_sd));
2237 callback_sd.dwSize = sizeof(callback_sd);
2238 callback_sd.u4.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
2240 callback_sd.dwFlags = DDSD_HEIGHT|DDSD_WIDTH|DDSD_PIXELFORMAT|DDSD_PITCH|DDSD_REFRESHRATE;
2241 if(Flags & DDEDM_REFRESHRATES)
2243 callback_sd.u2.dwRefreshRate = mode.RefreshRate;
2246 callback_sd.dwWidth = mode.Width;
2247 callback_sd.dwHeight = mode.Height;
2249 callback_sd.u4.ddpfPixelFormat=pixelformat;
2251 /* Calc pitch and DWORD align like MSDN says */
2252 callback_sd.u1.lPitch = (callback_sd.u4.ddpfPixelFormat.u1.dwRGBBitCount / 8) * mode.Width;
2253 callback_sd.u1.lPitch = (callback_sd.u1.lPitch + 3) & ~3;
2255 TRACE("Enumerating %dx%dx%d @%d\n", callback_sd.dwWidth, callback_sd.dwHeight, callback_sd.u4.ddpfPixelFormat.u1.dwRGBBitCount,
2256 callback_sd.u2.dwRefreshRate);
2258 if(cb(&callback_sd, Context) == DDENUMRET_CANCEL)
2260 TRACE("Application asked to terminate the enumeration\n");
2261 HeapFree(GetProcessHeap(), 0, enum_modes);
2262 LeaveCriticalSection(&ddraw_cs);
2263 return DD_OK;
2266 if(!(Flags & DDEDM_REFRESHRATES))
2268 if (enum_mode_count == enum_mode_array_size)
2270 WINED3DDISPLAYMODE *new_enum_modes;
2272 enum_mode_array_size *= 2;
2273 new_enum_modes = HeapReAlloc(GetProcessHeap(), 0, enum_modes, sizeof(WINED3DDISPLAYMODE) * enum_mode_array_size);
2275 if (!new_enum_modes)
2277 ERR("Out of memory\n");
2278 HeapFree(GetProcessHeap(), 0, enum_modes);
2279 LeaveCriticalSection(&ddraw_cs);
2280 return DDERR_OUTOFMEMORY;
2283 enum_modes = new_enum_modes;
2286 enum_modes[enum_mode_count++] = mode;
2291 TRACE("End of enumeration\n");
2292 HeapFree(GetProcessHeap(), 0, enum_modes);
2293 LeaveCriticalSection(&ddraw_cs);
2294 return DD_OK;
2297 static HRESULT WINAPI ddraw4_EnumDisplayModes(IDirectDraw4 *iface, DWORD flags,
2298 DDSURFACEDESC2 *surface_desc, void *context, LPDDENUMMODESCALLBACK2 callback)
2300 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
2302 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2303 iface, flags, surface_desc, context, callback);
2305 return ddraw7_EnumDisplayModes(&This->IDirectDraw7_iface, flags, surface_desc, context, callback);
2308 static HRESULT WINAPI ddraw3_EnumDisplayModes(IDirectDraw3 *iface, DWORD flags,
2309 DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2311 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
2312 struct displaymodescallback_context cbcontext;
2314 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2315 iface, flags, surface_desc, context, callback);
2317 cbcontext.func = callback;
2318 cbcontext.context = context;
2320 return ddraw7_EnumDisplayModes(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
2321 &cbcontext, EnumDisplayModesCallbackThunk);
2324 static HRESULT WINAPI ddraw2_EnumDisplayModes(IDirectDraw2 *iface, DWORD flags,
2325 DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2327 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
2328 struct displaymodescallback_context cbcontext;
2330 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2331 iface, flags, surface_desc, context, callback);
2333 cbcontext.func = callback;
2334 cbcontext.context = context;
2336 return ddraw7_EnumDisplayModes(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
2337 &cbcontext, EnumDisplayModesCallbackThunk);
2340 static HRESULT WINAPI ddraw1_EnumDisplayModes(IDirectDraw *iface, DWORD flags,
2341 DDSURFACEDESC *surface_desc, void *context, LPDDENUMMODESCALLBACK callback)
2343 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
2344 struct displaymodescallback_context cbcontext;
2346 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
2347 iface, flags, surface_desc, context, callback);
2349 cbcontext.func = callback;
2350 cbcontext.context = context;
2352 return ddraw7_EnumDisplayModes(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
2353 &cbcontext, EnumDisplayModesCallbackThunk);
2356 /*****************************************************************************
2357 * IDirectDraw7::EvaluateMode
2359 * Used with IDirectDraw7::StartModeTest to test video modes.
2360 * EvaluateMode is used to pass or fail a mode, and continue with the next
2361 * mode
2363 * Params:
2364 * Flags: DDEM_MODEPASSED or DDEM_MODEFAILED
2365 * Timeout: Returns the amount of seconds left before the mode would have
2366 * been failed automatically
2368 * Returns:
2369 * This implementation always DD_OK, because it's a stub
2371 *****************************************************************************/
2372 static HRESULT WINAPI ddraw7_EvaluateMode(IDirectDraw7 *iface, DWORD Flags, DWORD *Timeout)
2374 FIXME("iface %p, flags %#x, timeout %p stub!\n", iface, Flags, Timeout);
2376 /* When implementing this, implement it in WineD3D */
2378 return DD_OK;
2381 /*****************************************************************************
2382 * IDirectDraw7::GetDeviceIdentifier
2384 * Returns the device identifier, which gives information about the driver
2385 * Our device identifier is defined at the beginning of this file.
2387 * Params:
2388 * DDDI: Address for the returned structure
2389 * Flags: Can be DDGDI_GETHOSTIDENTIFIER
2391 * Returns:
2392 * On success it returns DD_OK
2393 * DDERR_INVALIDPARAMS if DDDI is NULL
2395 *****************************************************************************/
2396 static HRESULT WINAPI ddraw7_GetDeviceIdentifier(IDirectDraw7 *iface,
2397 DDDEVICEIDENTIFIER2 *DDDI, DWORD Flags)
2399 TRACE("iface %p, device_identifier %p, flags %#x.\n", iface, DDDI, Flags);
2401 if(!DDDI)
2402 return DDERR_INVALIDPARAMS;
2404 /* The DDGDI_GETHOSTIDENTIFIER returns the information about the 2D
2405 * host adapter, if there's a secondary 3D adapter. This doesn't apply
2406 * to any modern hardware, nor is it interesting for Wine, so ignore it.
2407 * Size of DDDEVICEIDENTIFIER2 may be aligned to 8 bytes and thus 4
2408 * bytes too long. So only copy the relevant part of the structure
2411 memcpy(DDDI, &deviceidentifier, FIELD_OFFSET(DDDEVICEIDENTIFIER2, dwWHQLLevel) + sizeof(DWORD));
2412 return DD_OK;
2415 static HRESULT WINAPI ddraw4_GetDeviceIdentifier(IDirectDraw4 *iface,
2416 DDDEVICEIDENTIFIER *identifier, DWORD flags)
2418 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
2419 DDDEVICEIDENTIFIER2 identifier2;
2420 HRESULT hr;
2422 TRACE("iface %p, identifier %p, flags %#x.\n", iface, identifier, flags);
2424 hr = ddraw7_GetDeviceIdentifier(&This->IDirectDraw7_iface, &identifier2, flags);
2425 DDRAW_Convert_DDDEVICEIDENTIFIER_2_To_1(&identifier2, identifier);
2427 return hr;
2430 /*****************************************************************************
2431 * IDirectDraw7::GetSurfaceFromDC
2433 * Returns the Surface for a GDI device context handle.
2434 * Is this related to IDirectDrawSurface::GetDC ???
2436 * Params:
2437 * hdc: hdc to return the surface for
2438 * Surface: Address to write the surface pointer to
2440 * Returns:
2441 * Always returns DD_OK because it's a stub
2443 *****************************************************************************/
2444 static HRESULT WINAPI ddraw7_GetSurfaceFromDC(IDirectDraw7 *iface, HDC hdc,
2445 IDirectDrawSurface7 **Surface)
2447 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
2448 struct wined3d_surface *wined3d_surface;
2449 HRESULT hr;
2451 TRACE("iface %p, dc %p, surface %p.\n", iface, hdc, Surface);
2453 if (!Surface) return E_INVALIDARG;
2455 hr = wined3d_device_get_surface_from_dc(This->wined3d_device, hdc, &wined3d_surface);
2456 if (FAILED(hr))
2458 TRACE("No surface found for dc %p.\n", hdc);
2459 *Surface = NULL;
2460 return DDERR_NOTFOUND;
2463 *Surface = wined3d_surface_get_parent(wined3d_surface);
2464 IDirectDrawSurface7_AddRef(*Surface);
2465 TRACE("Returning surface %p.\n", Surface);
2466 return DD_OK;
2469 static HRESULT WINAPI ddraw4_GetSurfaceFromDC(IDirectDraw4 *iface, HDC dc,
2470 IDirectDrawSurface4 **surface)
2472 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
2473 IDirectDrawSurface7 *surface7;
2474 IDirectDrawSurfaceImpl *surface_impl;
2475 HRESULT hr;
2477 TRACE("iface %p, dc %p, surface %p.\n", iface, dc, surface);
2479 if (!surface) return E_INVALIDARG;
2481 hr = ddraw7_GetSurfaceFromDC(&This->IDirectDraw7_iface, dc, &surface7);
2482 if (FAILED(hr))
2484 *surface = NULL;
2485 return hr;
2487 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2488 /* Tests say this is true */
2489 *surface = (IDirectDrawSurface4 *)&surface_impl->IDirectDrawSurface_iface;
2491 return hr;
2494 static HRESULT WINAPI ddraw3_GetSurfaceFromDC(IDirectDraw3 *iface, HDC dc,
2495 IDirectDrawSurface **surface)
2497 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
2498 IDirectDrawSurface7 *surface7;
2499 IDirectDrawSurfaceImpl *surface_impl;
2500 HRESULT hr;
2502 TRACE("iface %p, dc %p, surface %p.\n", iface, dc, surface);
2504 if (!surface) return E_INVALIDARG;
2506 hr = ddraw7_GetSurfaceFromDC(&This->IDirectDraw7_iface, dc, &surface7);
2507 if (FAILED(hr))
2509 *surface = NULL;
2510 return hr;
2513 surface_impl = impl_from_IDirectDrawSurface7(surface7);
2514 *surface = &surface_impl->IDirectDrawSurface_iface;
2516 return hr;
2519 /*****************************************************************************
2520 * IDirectDraw7::RestoreAllSurfaces
2522 * Calls the restore method of all surfaces
2524 * Params:
2526 * Returns:
2527 * Always returns DD_OK because it's a stub
2529 *****************************************************************************/
2530 static HRESULT WINAPI ddraw7_RestoreAllSurfaces(IDirectDraw7 *iface)
2532 FIXME("iface %p stub!\n", iface);
2534 /* This isn't hard to implement: Enumerate all WineD3D surfaces,
2535 * get their parent and call their restore method. Do not implement
2536 * it in WineD3D, as restoring a surface means re-creating the
2537 * WineD3DDSurface
2539 return DD_OK;
2542 static HRESULT WINAPI ddraw4_RestoreAllSurfaces(IDirectDraw4 *iface)
2544 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
2546 TRACE("iface %p.\n", iface);
2548 return ddraw7_RestoreAllSurfaces(&This->IDirectDraw7_iface);
2551 /*****************************************************************************
2552 * IDirectDraw7::StartModeTest
2554 * Tests the specified video modes to update the system registry with
2555 * refresh rate information. StartModeTest starts the mode test,
2556 * EvaluateMode is used to fail or pass a mode. If EvaluateMode
2557 * isn't called within 15 seconds, the mode is failed automatically
2559 * As refresh rates are handled by the X server, I don't think this
2560 * Method is important
2562 * Params:
2563 * Modes: An array of mode specifications
2564 * NumModes: The number of modes in Modes
2565 * Flags: Some flags...
2567 * Returns:
2568 * Returns DDERR_TESTFINISHED if flags contains DDSMT_ISTESTREQUIRED,
2569 * if no modes are passed, DDERR_INVALIDPARAMS is returned,
2570 * otherwise DD_OK
2572 *****************************************************************************/
2573 static HRESULT WINAPI ddraw7_StartModeTest(IDirectDraw7 *iface, SIZE *Modes, DWORD NumModes, DWORD Flags)
2575 FIXME("iface %p, modes %p, mode_count %u, flags %#x partial stub!\n",
2576 iface, Modes, NumModes, Flags);
2578 /* This looks sane */
2579 if( (!Modes) || (NumModes == 0) ) return DDERR_INVALIDPARAMS;
2581 /* DDSMT_ISTESTREQUIRED asks if a mode test is necessary.
2582 * As it is not, DDERR_TESTFINISHED is returned
2583 * (hopefully that's correct
2585 if(Flags & DDSMT_ISTESTREQUIRED) return DDERR_TESTFINISHED;
2586 * well, that value doesn't (yet) exist in the wine headers, so ignore it
2589 return DD_OK;
2592 /*****************************************************************************
2593 * ddraw_recreate_surfaces_cb
2595 * Enumeration callback for ddraw_recreate_surface.
2596 * It re-recreates the WineD3DSurface. It's pretty straightforward
2598 *****************************************************************************/
2599 HRESULT WINAPI ddraw_recreate_surfaces_cb(IDirectDrawSurface7 *surf, DDSURFACEDESC2 *desc, void *Context)
2601 IDirectDrawSurfaceImpl *surfImpl = impl_from_IDirectDrawSurface7(surf);
2602 struct wined3d_resource_desc wined3d_desc;
2603 struct wined3d_resource *wined3d_resource;
2604 IDirectDrawImpl *This = surfImpl->ddraw;
2605 struct wined3d_surface *wined3d_surface;
2606 struct wined3d_swapchain *swapchain;
2607 struct wined3d_clipper *clipper;
2608 void *parent;
2609 HRESULT hr;
2611 TRACE("surface %p, surface_desc %p, context %p.\n",
2612 surf, desc, Context);
2614 /* For the enumeration */
2615 IDirectDrawSurface7_Release(surf);
2617 if(surfImpl->ImplType == This->ImplType) return DDENUMRET_OK; /* Continue */
2619 /* Get the objects */
2620 swapchain = surfImpl->wined3d_swapchain;
2621 surfImpl->wined3d_swapchain = NULL;
2622 wined3d_surface = surfImpl->wined3d_surface;
2624 /* get the clipper */
2625 clipper = wined3d_surface_get_clipper(wined3d_surface);
2627 /* Get the surface properties */
2628 wined3d_resource = wined3d_surface_get_resource(wined3d_surface);
2629 wined3d_resource_get_desc(wined3d_resource, &wined3d_desc);
2631 parent = wined3d_surface_get_parent(wined3d_surface);
2632 hr = wined3d_surface_create(This->wined3d_device, wined3d_desc.width, wined3d_desc.height,
2633 wined3d_desc.format, TRUE, FALSE, surfImpl->mipmap_level, wined3d_desc.usage, wined3d_desc.pool,
2634 wined3d_desc.multisample_type, wined3d_desc.multisample_quality, This->ImplType,
2635 parent, &ddraw_surface_wined3d_parent_ops, &surfImpl->wined3d_surface);
2636 if (FAILED(hr))
2638 surfImpl->wined3d_surface = wined3d_surface;
2639 return hr;
2642 wined3d_surface_set_clipper(surfImpl->wined3d_surface, clipper);
2644 /* TODO: Copy the surface content, except for render targets */
2646 /* If there's a swapchain, it owns the wined3d surfaces. So Destroy
2647 * the swapchain
2649 if (swapchain)
2651 /* The backbuffers have the swapchain set as well, but the primary
2652 * owns it and destroys it. */
2653 if (surfImpl->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
2654 wined3d_device_uninit_gdi(This->wined3d_device);
2655 surfImpl->isRenderTarget = FALSE;
2657 else
2659 if (!wined3d_surface_decref(wined3d_surface))
2660 TRACE("Surface released successful, next surface\n");
2661 else
2662 ERR("Something's still holding the old WineD3DSurface\n");
2665 surfImpl->ImplType = This->ImplType;
2667 return DDENUMRET_OK;
2670 /*****************************************************************************
2671 * ddraw_recreate_surfaces
2673 * A function, that converts all wineD3DSurfaces to the new implementation type
2674 * It enumerates all surfaces with IWineD3DDevice::EnumSurfaces, creates a
2675 * new WineD3DSurface, copies the content and releases the old surface
2677 *****************************************************************************/
2678 static HRESULT ddraw_recreate_surfaces(IDirectDrawImpl *This)
2680 DDSURFACEDESC2 desc;
2681 TRACE("(%p): Switch to implementation %d\n", This, This->ImplType);
2683 if(This->ImplType != SURFACE_OPENGL && This->d3d_initialized)
2685 /* Should happen almost never */
2686 FIXME("(%p) Switching to non-opengl surfaces with d3d started. Is this a bug?\n", This);
2687 /* Shutdown d3d */
2688 wined3d_device_uninit_3d(This->wined3d_device);
2690 /* Contrary: D3D starting is handled by the caller, because it knows the render target */
2692 memset(&desc, 0, sizeof(desc));
2693 desc.dwSize = sizeof(desc);
2695 return IDirectDraw7_EnumSurfaces(&This->IDirectDraw7_iface, 0, &desc, This,
2696 ddraw_recreate_surfaces_cb);
2699 /*****************************************************************************
2700 * ddraw_create_surface
2702 * A helper function for IDirectDraw7::CreateSurface. It creates a new surface
2703 * with the passed parameters.
2705 * Params:
2706 * DDSD: Description of the surface to create
2707 * Surf: Address to store the interface pointer at
2709 * Returns:
2710 * DD_OK on success
2712 *****************************************************************************/
2713 static HRESULT ddraw_create_surface(IDirectDrawImpl *This, DDSURFACEDESC2 *pDDSD,
2714 IDirectDrawSurfaceImpl **ppSurf, UINT level, UINT version)
2716 WINED3DSURFTYPE ImplType = This->ImplType;
2717 HRESULT hr;
2719 TRACE("ddraw %p, surface_desc %p, surface %p, level %u.\n",
2720 This, pDDSD, ppSurf, level);
2722 if (TRACE_ON(ddraw))
2724 TRACE(" (%p) Requesting surface desc :\n", This);
2725 DDRAW_dump_surface_desc(pDDSD);
2728 /* Select the surface type, if it wasn't choosen yet */
2729 if(ImplType == SURFACE_UNKNOWN)
2731 /* Use GL Surfaces if a D3DDEVICE Surface is requested */
2732 if(pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE)
2734 TRACE("(%p) Choosing GL surfaces because a 3DDEVICE Surface was requested\n", This);
2735 ImplType = SURFACE_OPENGL;
2738 /* Otherwise use GDI surfaces for now */
2739 else
2741 TRACE("(%p) Choosing GDI surfaces for 2D rendering\n", This);
2742 ImplType = SURFACE_GDI;
2745 /* Policy if all surface implementations are available:
2746 * First, check if a default type was set with winecfg. If not,
2747 * try Xrender surfaces, and use them if they work. Next, check if
2748 * accelerated OpenGL is available, and use GL surfaces in this
2749 * case. If all else fails, use GDI surfaces. If a 3DDEVICE surface
2750 * was created, always use OpenGL surfaces.
2752 * (Note: Xrender surfaces are not implemented for now, the
2753 * unaccelerated implementation uses GDI to render in Software)
2756 /* Store the type. If it needs to be changed, all WineD3DSurfaces have to
2757 * be re-created. This could be done with IDirectDrawSurface7::Restore
2759 This->ImplType = ImplType;
2761 else
2763 if ((pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE)
2764 && (This->ImplType != SURFACE_OPENGL)
2765 && DefaultSurfaceType == SURFACE_UNKNOWN)
2767 /* We have to change to OpenGL,
2768 * and re-create all WineD3DSurfaces
2770 ImplType = SURFACE_OPENGL;
2771 This->ImplType = ImplType;
2772 TRACE("(%p) Re-creating all surfaces\n", This);
2773 ddraw_recreate_surfaces(This);
2774 TRACE("(%p) Done recreating all surfaces\n", This);
2776 else if(This->ImplType != SURFACE_OPENGL && pDDSD->ddsCaps.dwCaps & DDSCAPS_3DDEVICE)
2778 WARN("The application requests a 3D capable surface, but a non-opengl surface was set in the registry\n");
2779 /* Do not fail surface creation, only fail 3D device creation */
2783 /* Create the Surface object */
2784 *ppSurf = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectDrawSurfaceImpl));
2785 if(!*ppSurf)
2787 ERR("(%p) Error allocating memory for a surface\n", This);
2788 return DDERR_OUTOFVIDEOMEMORY;
2791 hr = ddraw_surface_init(*ppSurf, This, pDDSD, level, ImplType, version);
2792 if (FAILED(hr))
2794 WARN("Failed to initialize surface, hr %#x.\n", hr);
2795 HeapFree(GetProcessHeap(), 0, *ppSurf);
2796 return hr;
2799 /* Increase the surface counter, and attach the surface */
2800 InterlockedIncrement(&This->surfaces);
2801 list_add_head(&This->surface_list, &(*ppSurf)->surface_list_entry);
2803 TRACE("Created surface %p.\n", *ppSurf);
2805 return DD_OK;
2807 /*****************************************************************************
2808 * CreateAdditionalSurfaces
2810 * Creates a new mipmap chain.
2812 * Params:
2813 * root: Root surface to attach the newly created chain to
2814 * count: number of surfaces to create
2815 * DDSD: Description of the surface. Intentionally not a pointer to avoid side
2816 * effects on the caller
2817 * CubeFaceRoot: Whether the new surface is a root of a cube map face. This
2818 * creates an additional surface without the mipmapping flags
2820 *****************************************************************************/
2821 static HRESULT
2822 CreateAdditionalSurfaces(IDirectDrawImpl *This,
2823 IDirectDrawSurfaceImpl *root,
2824 UINT count,
2825 DDSURFACEDESC2 DDSD,
2826 BOOL CubeFaceRoot, UINT version)
2828 UINT i, j, level = 0;
2829 HRESULT hr;
2830 IDirectDrawSurfaceImpl *last = root;
2832 for(i = 0; i < count; i++)
2834 IDirectDrawSurfaceImpl *object2 = NULL;
2836 /* increase the mipmap level, but only if a mipmap is created
2837 * In this case, also halve the size
2839 if(DDSD.ddsCaps.dwCaps & DDSCAPS_MIPMAP && !CubeFaceRoot)
2841 level++;
2842 if(DDSD.dwWidth > 1) DDSD.dwWidth /= 2;
2843 if(DDSD.dwHeight > 1) DDSD.dwHeight /= 2;
2844 /* Set the mipmap sublevel flag according to msdn */
2845 DDSD.ddsCaps.dwCaps2 |= DDSCAPS2_MIPMAPSUBLEVEL;
2847 else
2849 DDSD.ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
2851 CubeFaceRoot = FALSE;
2853 hr = ddraw_create_surface(This, &DDSD, &object2, level, version);
2854 if(hr != DD_OK)
2856 return hr;
2859 /* Add the new surface to the complex attachment array */
2860 for(j = 0; j < MAX_COMPLEX_ATTACHED; j++)
2862 if(last->complex_array[j]) continue;
2863 last->complex_array[j] = object2;
2864 break;
2866 last = object2;
2868 /* Remove the (possible) back buffer cap from the new surface description,
2869 * because only one surface in the flipping chain is a back buffer, one
2870 * is a front buffer, the others are just primary surfaces.
2872 DDSD.ddsCaps.dwCaps &= ~DDSCAPS_BACKBUFFER;
2874 return DD_OK;
2877 /*****************************************************************************
2878 * ddraw_attach_d3d_device
2880 * Initializes the D3D capabilities of WineD3D
2882 * Params:
2883 * primary: The primary surface for D3D
2885 * Returns
2886 * DD_OK on success,
2887 * DDERR_* otherwise
2889 *****************************************************************************/
2890 static HRESULT ddraw_attach_d3d_device(IDirectDrawImpl *ddraw, IDirectDrawSurfaceImpl *primary)
2892 WINED3DPRESENT_PARAMETERS localParameters;
2893 HWND window = ddraw->dest_window;
2894 HRESULT hr;
2896 TRACE("ddraw %p, primary %p.\n", ddraw, primary);
2898 if (!window || window == GetDesktopWindow())
2900 window = CreateWindowExA(0, DDRAW_WINDOW_CLASS_NAME, "Hidden D3D Window",
2901 WS_DISABLED, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
2902 NULL, NULL, NULL, NULL);
2903 if (!window)
2905 ERR("Failed to create window, last error %#x.\n", GetLastError());
2906 return E_FAIL;
2909 ShowWindow(window, SW_HIDE); /* Just to be sure */
2910 WARN("No window for the Direct3DDevice, created hidden window %p.\n", window);
2912 else
2914 TRACE("Using existing window %p for Direct3D rendering.\n", window);
2916 ddraw->d3d_window = window;
2918 /* Store the future Render Target surface */
2919 ddraw->d3d_target = primary;
2921 /* Use the surface description for the device parameters, not the device
2922 * settings. The application might render to an offscreen surface. */
2923 localParameters.BackBufferWidth = primary->surface_desc.dwWidth;
2924 localParameters.BackBufferHeight = primary->surface_desc.dwHeight;
2925 localParameters.BackBufferFormat = PixelFormat_DD2WineD3D(&primary->surface_desc.u4.ddpfPixelFormat);
2926 localParameters.BackBufferCount = (primary->surface_desc.dwFlags & DDSD_BACKBUFFERCOUNT)
2927 ? primary->surface_desc.dwBackBufferCount : 0;
2928 localParameters.MultiSampleType = WINED3DMULTISAMPLE_NONE;
2929 localParameters.MultiSampleQuality = 0;
2930 localParameters.SwapEffect = WINED3DSWAPEFFECT_COPY;
2931 localParameters.hDeviceWindow = window;
2932 localParameters.Windowed = !(ddraw->cooperative_level & DDSCL_FULLSCREEN);
2933 localParameters.EnableAutoDepthStencil = TRUE;
2934 localParameters.AutoDepthStencilFormat = WINED3DFMT_D16_UNORM;
2935 localParameters.Flags = 0;
2936 localParameters.FullScreen_RefreshRateInHz = WINED3DPRESENT_RATE_DEFAULT;
2937 localParameters.PresentationInterval = WINED3DPRESENT_INTERVAL_DEFAULT;
2938 localParameters.AutoRestoreDisplayMode = FALSE;
2940 /* Set this NOW, otherwise creating the depth stencil surface will cause a
2941 * recursive loop until ram or emulated video memory is full. */
2942 ddraw->d3d_initialized = TRUE;
2943 hr = wined3d_device_init_3d(ddraw->wined3d_device, &localParameters);
2944 if (FAILED(hr))
2946 ddraw->d3d_target = NULL;
2947 ddraw->d3d_initialized = FALSE;
2948 return hr;
2951 ddraw->declArraySize = 2;
2952 ddraw->decls = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ddraw->decls) * ddraw->declArraySize);
2953 if (!ddraw->decls)
2955 ERR("Error allocating an array for the converted vertex decls.\n");
2956 ddraw->declArraySize = 0;
2957 hr = wined3d_device_uninit_3d(ddraw->wined3d_device);
2958 return E_OUTOFMEMORY;
2961 TRACE("Successfully initialized 3D.\n");
2963 return DD_OK;
2966 static HRESULT ddraw_create_gdi_swapchain(IDirectDrawImpl *ddraw, IDirectDrawSurfaceImpl *primary)
2968 WINED3DPRESENT_PARAMETERS presentation_parameters;
2969 HWND window;
2970 HRESULT hr;
2972 window = ddraw->dest_window;
2974 memset(&presentation_parameters, 0, sizeof(presentation_parameters));
2976 /* Use the surface description for the device parameters, not the device
2977 * settings. The application might render to an offscreen surface. */
2978 presentation_parameters.BackBufferWidth = primary->surface_desc.dwWidth;
2979 presentation_parameters.BackBufferHeight = primary->surface_desc.dwHeight;
2980 presentation_parameters.BackBufferFormat = PixelFormat_DD2WineD3D(&primary->surface_desc.u4.ddpfPixelFormat);
2981 presentation_parameters.BackBufferCount = (primary->surface_desc.dwFlags & DDSD_BACKBUFFERCOUNT)
2982 ? primary->surface_desc.dwBackBufferCount : 0;
2983 presentation_parameters.MultiSampleType = WINED3DMULTISAMPLE_NONE;
2984 presentation_parameters.MultiSampleQuality = 0;
2985 presentation_parameters.SwapEffect = WINED3DSWAPEFFECT_FLIP;
2986 presentation_parameters.hDeviceWindow = window;
2987 presentation_parameters.Windowed = !(ddraw->cooperative_level & DDSCL_FULLSCREEN);
2988 presentation_parameters.EnableAutoDepthStencil = FALSE; /* Not on GDI swapchains */
2989 presentation_parameters.AutoDepthStencilFormat = 0;
2990 presentation_parameters.Flags = 0;
2991 presentation_parameters.FullScreen_RefreshRateInHz = WINED3DPRESENT_RATE_DEFAULT;
2992 presentation_parameters.PresentationInterval = WINED3DPRESENT_INTERVAL_DEFAULT;
2993 presentation_parameters.AutoRestoreDisplayMode = FALSE;
2995 ddraw->d3d_target = primary;
2996 hr = wined3d_device_init_gdi(ddraw->wined3d_device, &presentation_parameters);
2997 ddraw->d3d_target = NULL;
2998 if (FAILED(hr))
3000 WARN("Failed to initialize GDI ddraw implementation, hr %#x.\n", hr);
3001 primary->wined3d_swapchain = NULL;
3004 return hr;
3007 /*****************************************************************************
3008 * IDirectDraw7::CreateSurface
3010 * Creates a new IDirectDrawSurface object and returns its interface.
3012 * The surface connections with wined3d are a bit tricky. Basically it works
3013 * like this:
3015 * |------------------------| |-----------------|
3016 * | DDraw surface | | WineD3DSurface |
3017 * | | | |
3018 * | WineD3DSurface |-------------->| |
3019 * | Child |<------------->| Parent |
3020 * |------------------------| |-----------------|
3022 * The DDraw surface is the parent of the wined3d surface, and it releases
3023 * the WineD3DSurface when the ddraw surface is destroyed.
3025 * However, for all surfaces which can be in a container in WineD3D,
3026 * we have to do this. These surfaces are usually complex surfaces,
3027 * so this concerns primary surfaces with a front and a back buffer,
3028 * and textures.
3030 * |------------------------| |-----------------|
3031 * | DDraw surface | | Container |
3032 * | | | |
3033 * | Child |<------------->| Parent |
3034 * | Texture |<------------->| |
3035 * | WineD3DSurface |<----| | Levels |<--|
3036 * | Complex connection | | | | |
3037 * |------------------------| | |-----------------| |
3038 * ^ | |
3039 * | | |
3040 * | | |
3041 * | |------------------| | |-----------------| |
3042 * | | IParent | |-------->| WineD3DSurface | |
3043 * | | | | | |
3044 * | | Child |<------------->| Parent | |
3045 * | | | | Container |<--|
3046 * | |------------------| |-----------------| |
3047 * | |
3048 * | |----------------------| |
3049 * | | DDraw surface 2 | |
3050 * | | | |
3051 * |<->| Complex root Child | |
3052 * | | Texture | |
3053 * | | WineD3DSurface |<----| |
3054 * | |----------------------| | |
3055 * | | |
3056 * | |---------------------| | |-----------------| |
3057 * | | IParent | |----->| WineD3DSurface | |
3058 * | | | | | |
3059 * | | Child |<---------->| Parent | |
3060 * | |---------------------| | Container |<--|
3061 * | |-----------------| |
3062 * | |
3063 * | ---More surfaces can follow--- |
3065 * The reason is that the IWineD3DSwapchain(render target container)
3066 * and the IWineD3DTexure(Texture container) release the parents
3067 * of their surface's children, but by releasing the complex root
3068 * the surfaces which are complexly attached to it are destroyed
3069 * too. See IDirectDrawSurface::Release for a more detailed
3070 * explanation.
3072 * Params:
3073 * DDSD: Description of the surface to create
3074 * Surf: Address to store the interface pointer at
3075 * UnkOuter: Basically for aggregation support, but ddraw doesn't support
3076 * aggregation, so it has to be NULL
3078 * Returns:
3079 * DD_OK on success
3080 * CLASS_E_NOAGGREGATION if UnkOuter != NULL
3081 * DDERR_* if an error occurs
3083 *****************************************************************************/
3084 static HRESULT CreateSurface(IDirectDrawImpl *ddraw, DDSURFACEDESC2 *DDSD,
3085 IDirectDrawSurfaceImpl **Surf, IUnknown *UnkOuter, UINT version)
3087 IDirectDrawSurfaceImpl *object = NULL;
3088 HRESULT hr;
3089 LONG extra_surfaces = 0;
3090 DDSURFACEDESC2 desc2;
3091 WINED3DDISPLAYMODE Mode;
3092 const DWORD sysvidmem = DDSCAPS_VIDEOMEMORY | DDSCAPS_SYSTEMMEMORY;
3094 TRACE("ddraw %p, surface_desc %p, surface %p, outer_unknown %p.\n", ddraw, DDSD, Surf, UnkOuter);
3096 /* Some checks before we start */
3097 if (TRACE_ON(ddraw))
3099 TRACE(" (%p) Requesting surface desc :\n", ddraw);
3100 DDRAW_dump_surface_desc(DDSD);
3102 EnterCriticalSection(&ddraw_cs);
3104 if (UnkOuter != NULL)
3106 FIXME("(%p) : outer != NULL?\n", ddraw);
3107 LeaveCriticalSection(&ddraw_cs);
3108 return CLASS_E_NOAGGREGATION; /* unchecked */
3111 if (Surf == NULL)
3113 FIXME("(%p) You want to get back a surface? Don't give NULL ptrs!\n", ddraw);
3114 LeaveCriticalSection(&ddraw_cs);
3115 return E_POINTER; /* unchecked */
3118 if (!(DDSD->dwFlags & DDSD_CAPS))
3120 /* DVIDEO.DLL does forget the DDSD_CAPS flag ... *sigh* */
3121 DDSD->dwFlags |= DDSD_CAPS;
3124 if (DDSD->ddsCaps.dwCaps & DDSCAPS_ALLOCONLOAD)
3126 /* If the surface is of the 'alloconload' type, ignore the LPSURFACE field */
3127 DDSD->dwFlags &= ~DDSD_LPSURFACE;
3130 if ((DDSD->dwFlags & DDSD_LPSURFACE) && (DDSD->lpSurface == NULL))
3132 /* Frank Herbert's Dune specifies a null pointer for the surface, ignore the LPSURFACE field */
3133 WARN("(%p) Null surface pointer specified, ignore it!\n", ddraw);
3134 DDSD->dwFlags &= ~DDSD_LPSURFACE;
3137 if((DDSD->ddsCaps.dwCaps & (DDSCAPS_FLIP | DDSCAPS_PRIMARYSURFACE)) == (DDSCAPS_FLIP | DDSCAPS_PRIMARYSURFACE) &&
3138 !(ddraw->cooperative_level & DDSCL_EXCLUSIVE))
3140 TRACE("(%p): Attempt to create a flipable primary surface without DDSCL_EXCLUSIVE set\n",
3141 ddraw);
3142 *Surf = NULL;
3143 LeaveCriticalSection(&ddraw_cs);
3144 return DDERR_NOEXCLUSIVEMODE;
3147 if((DDSD->ddsCaps.dwCaps & (DDSCAPS_BACKBUFFER | DDSCAPS_PRIMARYSURFACE)) == (DDSCAPS_BACKBUFFER | DDSCAPS_PRIMARYSURFACE))
3149 WARN("Application wanted to create back buffer primary surface\n");
3150 LeaveCriticalSection(&ddraw_cs);
3151 return DDERR_INVALIDCAPS;
3154 if((DDSD->ddsCaps.dwCaps & sysvidmem) == sysvidmem)
3156 /* This is a special switch in ddrawex.dll, but not allowed in ddraw.dll */
3157 WARN("Application tries to put the surface in both system and video memory\n");
3158 LeaveCriticalSection(&ddraw_cs);
3159 *Surf = NULL;
3160 return DDERR_INVALIDCAPS;
3163 /* Check cube maps but only if the size includes them */
3164 if (DDSD->dwSize >= sizeof(DDSURFACEDESC2))
3166 if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES &&
3167 !(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP))
3169 WARN("Cube map faces requested without cube map flag\n");
3170 LeaveCriticalSection(&ddraw_cs);
3171 return DDERR_INVALIDCAPS;
3173 if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP &&
3174 (DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES) == 0)
3176 WARN("Cube map without faces requested\n");
3177 LeaveCriticalSection(&ddraw_cs);
3178 return DDERR_INVALIDPARAMS;
3181 /* Quick tests confirm those can be created, but we don't do that yet */
3182 if(DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP &&
3183 (DDSD->ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP_ALLFACES) != DDSCAPS2_CUBEMAP_ALLFACES)
3185 FIXME("Partial cube maps not supported yet\n");
3189 /* According to the msdn this flag is ignored by CreateSurface */
3190 if (DDSD->dwSize >= sizeof(DDSURFACEDESC2))
3191 DDSD->ddsCaps.dwCaps2 &= ~DDSCAPS2_MIPMAPSUBLEVEL;
3193 /* Modify some flags */
3194 copy_to_surfacedesc2(&desc2, DDSD);
3195 desc2.u4.ddpfPixelFormat.dwSize=sizeof(DDPIXELFORMAT); /* Just to be sure */
3197 /* Get the video mode from WineD3D - we will need it */
3198 hr = wined3d_device_get_display_mode(ddraw->wined3d_device, 0, &Mode);
3199 if (FAILED(hr))
3201 ERR("Failed to read display mode from wined3d\n");
3202 switch(ddraw->orig_bpp)
3204 case 8:
3205 Mode.Format = WINED3DFMT_P8_UINT;
3206 break;
3208 case 15:
3209 Mode.Format = WINED3DFMT_B5G5R5X1_UNORM;
3210 break;
3212 case 16:
3213 Mode.Format = WINED3DFMT_B5G6R5_UNORM;
3214 break;
3216 case 24:
3217 Mode.Format = WINED3DFMT_B8G8R8_UNORM;
3218 break;
3220 case 32:
3221 Mode.Format = WINED3DFMT_B8G8R8X8_UNORM;
3222 break;
3224 Mode.Width = ddraw->orig_width;
3225 Mode.Height = ddraw->orig_height;
3228 /* No pixelformat given? Use the current screen format */
3229 if(!(desc2.dwFlags & DDSD_PIXELFORMAT))
3231 desc2.dwFlags |= DDSD_PIXELFORMAT;
3232 desc2.u4.ddpfPixelFormat.dwSize=sizeof(DDPIXELFORMAT);
3234 /* Wait: It could be a Z buffer */
3235 if(desc2.ddsCaps.dwCaps & DDSCAPS_ZBUFFER)
3237 switch(desc2.u2.dwMipMapCount) /* Who had this glorious idea? */
3239 case 15:
3240 PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_S1_UINT_D15_UNORM);
3241 break;
3242 case 16:
3243 PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_D16_UNORM);
3244 break;
3245 case 24:
3246 PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_X8D24_UNORM);
3247 break;
3248 case 32:
3249 PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, WINED3DFMT_D32_UNORM);
3250 break;
3251 default:
3252 ERR("Unknown Z buffer bit depth\n");
3255 else
3257 PixelFormat_WineD3DtoDD(&desc2.u4.ddpfPixelFormat, Mode.Format);
3261 /* No Width or no Height? Use the original screen size
3263 if(!(desc2.dwFlags & DDSD_WIDTH) ||
3264 !(desc2.dwFlags & DDSD_HEIGHT) )
3266 /* Invalid for non-render targets */
3267 if(!(desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE))
3269 WARN("Creating a non-Primary surface without Width or Height info, returning DDERR_INVALIDPARAMS\n");
3270 *Surf = NULL;
3271 LeaveCriticalSection(&ddraw_cs);
3272 return DDERR_INVALIDPARAMS;
3275 desc2.dwFlags |= DDSD_WIDTH | DDSD_HEIGHT;
3276 desc2.dwWidth = Mode.Width;
3277 desc2.dwHeight = Mode.Height;
3280 if (!desc2.dwWidth || !desc2.dwHeight)
3282 LeaveCriticalSection(&ddraw_cs);
3283 return DDERR_INVALIDPARAMS;
3286 /* Mipmap count fixes */
3287 if(desc2.ddsCaps.dwCaps & DDSCAPS_MIPMAP)
3289 if(desc2.ddsCaps.dwCaps & DDSCAPS_COMPLEX)
3291 if(desc2.dwFlags & DDSD_MIPMAPCOUNT)
3293 /* Mipmap count is given, should not be 0 */
3294 if( desc2.u2.dwMipMapCount == 0 )
3296 LeaveCriticalSection(&ddraw_cs);
3297 return DDERR_INVALIDPARAMS;
3300 else
3302 /* Undocumented feature: Create sublevels until
3303 * either the width or the height is 1
3305 DWORD min = desc2.dwWidth < desc2.dwHeight ?
3306 desc2.dwWidth : desc2.dwHeight;
3307 desc2.u2.dwMipMapCount = 0;
3308 while( min )
3310 desc2.u2.dwMipMapCount += 1;
3311 min >>= 1;
3315 else
3317 /* Not-complex mipmap -> Mipmapcount = 1 */
3318 desc2.u2.dwMipMapCount = 1;
3320 extra_surfaces = desc2.u2.dwMipMapCount - 1;
3322 /* There's a mipmap count in the created surface in any case */
3323 desc2.dwFlags |= DDSD_MIPMAPCOUNT;
3325 /* If no mipmap is given, the texture has only one level */
3327 /* The first surface is a front buffer, the back buffer is created afterwards */
3328 if( (desc2.dwFlags & DDSD_CAPS) && (desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE) )
3330 desc2.ddsCaps.dwCaps |= DDSCAPS_FRONTBUFFER;
3333 /* The root surface in a cube map is positive x */
3334 if(desc2.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
3336 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
3337 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEX;
3340 /* Create the first surface */
3341 hr = ddraw_create_surface(ddraw, &desc2, &object, 0, version);
3342 if (FAILED(hr))
3344 WARN("ddraw_create_surface failed, hr %#x.\n", hr);
3345 LeaveCriticalSection(&ddraw_cs);
3346 return hr;
3348 object->is_complex_root = TRUE;
3350 *Surf = object;
3352 /* Create Additional surfaces if necessary
3353 * This applies to Primary surfaces which have a back buffer count
3354 * set, but not to mipmap textures. In case of Mipmap textures,
3355 * wineD3D takes care of the creation of additional surfaces
3357 if(DDSD->dwFlags & DDSD_BACKBUFFERCOUNT)
3359 extra_surfaces = DDSD->dwBackBufferCount;
3360 desc2.ddsCaps.dwCaps &= ~DDSCAPS_FRONTBUFFER; /* It's not a front buffer */
3361 desc2.ddsCaps.dwCaps |= DDSCAPS_BACKBUFFER;
3362 desc2.dwBackBufferCount = 0;
3365 hr = DD_OK;
3366 if(desc2.ddsCaps.dwCaps2 & DDSCAPS2_CUBEMAP)
3368 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
3369 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEZ;
3370 hr |= CreateAdditionalSurfaces(ddraw, object, extra_surfaces + 1, desc2, TRUE, version);
3371 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_NEGATIVEZ;
3372 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEZ;
3373 hr |= CreateAdditionalSurfaces(ddraw, object, extra_surfaces + 1, desc2, TRUE, version);
3374 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_POSITIVEZ;
3375 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEY;
3376 hr |= CreateAdditionalSurfaces(ddraw, object, extra_surfaces + 1, desc2, TRUE, version);
3377 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_NEGATIVEY;
3378 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEY;
3379 hr |= CreateAdditionalSurfaces(ddraw, object, extra_surfaces + 1, desc2, TRUE, version);
3380 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_POSITIVEY;
3381 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEX;
3382 hr |= CreateAdditionalSurfaces(ddraw, object, extra_surfaces + 1, desc2, TRUE, version);
3383 desc2.ddsCaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_NEGATIVEX;
3384 desc2.ddsCaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEX;
3387 hr |= CreateAdditionalSurfaces(ddraw, object, extra_surfaces, desc2, FALSE, version);
3388 if(hr != DD_OK)
3390 /* This destroys and possibly created surfaces too */
3391 if (version == 7)
3393 IDirectDrawSurface7_Release(&object->IDirectDrawSurface7_iface);
3395 else if (version == 4)
3397 IDirectDrawSurface4_Release(&object->IDirectDrawSurface4_iface);
3399 else
3401 IDirectDrawSurface_Release(&object->IDirectDrawSurface_iface);
3403 LeaveCriticalSection(&ddraw_cs);
3404 return hr;
3407 /* If the implementation is OpenGL and there's no d3ddevice, attach a d3ddevice
3408 * But attach the d3ddevice only if the currently created surface was
3409 * a primary surface (2D app in 3D mode) or a 3DDEVICE surface (3D app)
3410 * The only case I can think of where this doesn't apply is when a
3411 * 2D app was configured by the user to run with OpenGL and it didn't create
3412 * the render target as first surface. In this case the render target creation
3413 * will cause the 3D init.
3415 if( (ddraw->ImplType == SURFACE_OPENGL) && !(ddraw->d3d_initialized) &&
3416 desc2.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_3DDEVICE) )
3418 IDirectDrawSurfaceImpl *target = object, *surface;
3419 struct list *entry;
3421 /* Search for the primary to use as render target */
3422 LIST_FOR_EACH(entry, &ddraw->surface_list)
3424 surface = LIST_ENTRY(entry, IDirectDrawSurfaceImpl, surface_list_entry);
3425 if((surface->surface_desc.ddsCaps.dwCaps & (DDSCAPS_PRIMARYSURFACE | DDSCAPS_FRONTBUFFER)) ==
3426 (DDSCAPS_PRIMARYSURFACE | DDSCAPS_FRONTBUFFER))
3428 /* found */
3429 target = surface;
3430 TRACE("Using primary %p as render target\n", target);
3431 break;
3435 TRACE("(%p) Attaching a D3DDevice, rendertarget = %p\n", ddraw, target);
3436 hr = ddraw_attach_d3d_device(ddraw, target);
3437 if (hr != D3D_OK)
3439 IDirectDrawSurfaceImpl *release_surf;
3440 ERR("ddraw_attach_d3d_device failed, hr %#x\n", hr);
3441 *Surf = NULL;
3443 /* The before created surface structures are in an incomplete state here.
3444 * WineD3D holds the reference on the IParents, and it released them on the failure
3445 * already. So the regular release method implementation would fail on the attempt
3446 * to destroy either the IParents or the swapchain. So free the surface here.
3447 * The surface structure here is a list, not a tree, because onscreen targets
3448 * cannot be cube textures
3450 while(object)
3452 release_surf = object;
3453 object = object->complex_array[0];
3454 ddraw_surface_destroy(release_surf);
3456 LeaveCriticalSection(&ddraw_cs);
3457 return hr;
3460 else if(!(ddraw->d3d_initialized) && desc2.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
3462 ddraw_create_gdi_swapchain(ddraw, object);
3465 /* Addref the ddraw interface to keep an reference for each surface */
3466 IDirectDraw7_AddRef(&ddraw->IDirectDraw7_iface);
3467 object->ifaceToRelease = (IUnknown *)&ddraw->IDirectDraw7_iface;
3469 /* Create a WineD3DTexture if a texture was requested */
3470 if (desc2.ddsCaps.dwCaps & DDSCAPS_TEXTURE)
3472 ddraw->tex_root = object;
3473 ddraw_surface_create_texture(object);
3474 ddraw->tex_root = NULL;
3477 LeaveCriticalSection(&ddraw_cs);
3478 return hr;
3481 static HRESULT WINAPI ddraw7_CreateSurface(IDirectDraw7 *iface, DDSURFACEDESC2 *surface_desc,
3482 IDirectDrawSurface7 **surface, IUnknown *outer_unknown)
3484 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
3485 IDirectDrawSurfaceImpl *impl;
3486 HRESULT hr;
3488 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3489 iface, surface_desc, surface, outer_unknown);
3491 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC2))
3493 WARN("Application supplied invalid surface descriptor\n");
3494 return DDERR_INVALIDPARAMS;
3497 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3499 if (TRACE_ON(ddraw))
3501 TRACE(" (%p) Requesting surface desc :\n", iface);
3502 DDRAW_dump_surface_desc(surface_desc);
3505 WARN("Application tried to create an explicit front or back buffer\n");
3506 return DDERR_INVALIDCAPS;
3509 hr = CreateSurface(This, surface_desc, &impl, outer_unknown, 7);
3510 if (FAILED(hr))
3512 *surface = NULL;
3513 return hr;
3516 *surface = &impl->IDirectDrawSurface7_iface;
3518 return hr;
3521 static HRESULT WINAPI ddraw4_CreateSurface(IDirectDraw4 *iface,
3522 DDSURFACEDESC2 *surface_desc, IDirectDrawSurface4 **surface, IUnknown *outer_unknown)
3524 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
3525 IDirectDrawSurfaceImpl *impl;
3526 HRESULT hr;
3528 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3529 iface, surface_desc, surface, outer_unknown);
3531 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC2))
3533 WARN("Application supplied invalid surface descriptor\n");
3534 return DDERR_INVALIDPARAMS;
3537 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3539 if (TRACE_ON(ddraw))
3541 TRACE(" (%p) Requesting surface desc :\n", iface);
3542 DDRAW_dump_surface_desc(surface_desc);
3545 WARN("Application tried to create an explicit front or back buffer\n");
3546 return DDERR_INVALIDCAPS;
3549 hr = CreateSurface(This, surface_desc, &impl, outer_unknown, 4);
3550 if (FAILED(hr))
3552 *surface = NULL;
3553 return hr;
3556 *surface = &impl->IDirectDrawSurface4_iface;
3557 IDirectDraw7_Release(&This->IDirectDraw7_iface);
3558 IDirectDraw4_AddRef(iface);
3559 impl->ifaceToRelease = (IUnknown *)iface;
3561 return hr;
3564 static HRESULT WINAPI ddraw3_CreateSurface(IDirectDraw3 *iface, DDSURFACEDESC *surface_desc,
3565 IDirectDrawSurface **surface, IUnknown *outer_unknown)
3567 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
3568 IDirectDrawSurfaceImpl *impl;
3569 HRESULT hr;
3571 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3572 iface, surface_desc, surface, outer_unknown);
3574 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC))
3576 WARN("Application supplied invalid surface descriptor\n");
3577 return DDERR_INVALIDPARAMS;
3580 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3582 if (TRACE_ON(ddraw))
3584 TRACE(" (%p) Requesting surface desc :\n", iface);
3585 DDRAW_dump_surface_desc((LPDDSURFACEDESC2)surface_desc);
3588 WARN("Application tried to create an explicit front or back buffer\n");
3589 return DDERR_INVALIDCAPS;
3592 hr = CreateSurface(This, (DDSURFACEDESC2 *)surface_desc, &impl, outer_unknown, 3);
3593 if (FAILED(hr))
3595 *surface = NULL;
3596 return hr;
3599 *surface = &impl->IDirectDrawSurface_iface;
3600 IDirectDraw7_Release(&This->IDirectDraw7_iface);
3601 IDirectDraw3_AddRef(iface);
3602 impl->ifaceToRelease = (IUnknown *)iface;
3604 return hr;
3607 static HRESULT WINAPI ddraw2_CreateSurface(IDirectDraw2 *iface,
3608 DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3610 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
3611 IDirectDrawSurfaceImpl *impl;
3612 HRESULT hr;
3614 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3615 iface, surface_desc, surface, outer_unknown);
3617 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC))
3619 WARN("Application supplied invalid surface descriptor\n");
3620 return DDERR_INVALIDPARAMS;
3623 if(surface_desc->ddsCaps.dwCaps & (DDSCAPS_FRONTBUFFER | DDSCAPS_BACKBUFFER))
3625 if (TRACE_ON(ddraw))
3627 TRACE(" (%p) Requesting surface desc :\n", iface);
3628 DDRAW_dump_surface_desc((LPDDSURFACEDESC2)surface_desc);
3631 WARN("Application tried to create an explicit front or back buffer\n");
3632 return DDERR_INVALIDCAPS;
3635 hr = CreateSurface(This, (DDSURFACEDESC2 *)surface_desc, &impl, outer_unknown, 2);
3636 if (FAILED(hr))
3638 *surface = NULL;
3639 return hr;
3642 *surface = &impl->IDirectDrawSurface_iface;
3643 IDirectDraw7_Release(&This->IDirectDraw7_iface);
3644 impl->ifaceToRelease = NULL;
3646 return hr;
3649 static HRESULT WINAPI ddraw1_CreateSurface(IDirectDraw *iface,
3650 DDSURFACEDESC *surface_desc, IDirectDrawSurface **surface, IUnknown *outer_unknown)
3652 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
3653 IDirectDrawSurfaceImpl *impl;
3654 HRESULT hr;
3656 TRACE("iface %p, surface_desc %p, surface %p, outer_unknown %p.\n",
3657 iface, surface_desc, surface, outer_unknown);
3659 if(surface_desc == NULL || surface_desc->dwSize != sizeof(DDSURFACEDESC))
3661 WARN("Application supplied invalid surface descriptor\n");
3662 return DDERR_INVALIDPARAMS;
3665 /* Remove front buffer flag, this causes failure in v7, and its added to normal
3666 * primaries anyway. */
3667 surface_desc->ddsCaps.dwCaps &= ~DDSCAPS_FRONTBUFFER;
3668 hr = CreateSurface(This, (DDSURFACEDESC2 *)surface_desc, &impl, outer_unknown, 1);
3669 if (FAILED(hr))
3671 *surface = NULL;
3672 return hr;
3675 *surface = &impl->IDirectDrawSurface_iface;
3676 IDirectDraw7_Release(&This->IDirectDraw7_iface);
3677 impl->ifaceToRelease = NULL;
3679 return hr;
3682 #define DDENUMSURFACES_SEARCHTYPE (DDENUMSURFACES_CANBECREATED|DDENUMSURFACES_DOESEXIST)
3683 #define DDENUMSURFACES_MATCHTYPE (DDENUMSURFACES_ALL|DDENUMSURFACES_MATCH|DDENUMSURFACES_NOMATCH)
3685 static BOOL
3686 Main_DirectDraw_DDPIXELFORMAT_Match(const DDPIXELFORMAT *requested,
3687 const DDPIXELFORMAT *provided)
3689 /* Some flags must be present in both or neither for a match. */
3690 static const DWORD must_match = DDPF_PALETTEINDEXED1 | DDPF_PALETTEINDEXED2
3691 | DDPF_PALETTEINDEXED4 | DDPF_PALETTEINDEXED8 | DDPF_FOURCC
3692 | DDPF_ZBUFFER | DDPF_STENCILBUFFER;
3694 if ((requested->dwFlags & provided->dwFlags) != requested->dwFlags)
3695 return FALSE;
3697 if ((requested->dwFlags & must_match) != (provided->dwFlags & must_match))
3698 return FALSE;
3700 if (requested->dwFlags & DDPF_FOURCC)
3701 if (requested->dwFourCC != provided->dwFourCC)
3702 return FALSE;
3704 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_ZBUFFER|DDPF_ALPHA
3705 |DDPF_LUMINANCE|DDPF_BUMPDUDV))
3706 if (requested->u1.dwRGBBitCount != provided->u1.dwRGBBitCount)
3707 return FALSE;
3709 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_STENCILBUFFER
3710 |DDPF_LUMINANCE|DDPF_BUMPDUDV))
3711 if (requested->u2.dwRBitMask != provided->u2.dwRBitMask)
3712 return FALSE;
3714 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_ZBUFFER|DDPF_BUMPDUDV))
3715 if (requested->u3.dwGBitMask != provided->u3.dwGBitMask)
3716 return FALSE;
3718 /* I could be wrong about the bumpmapping. MSDN docs are vague. */
3719 if (requested->dwFlags & (DDPF_RGB|DDPF_YUV|DDPF_STENCILBUFFER
3720 |DDPF_BUMPDUDV))
3721 if (requested->u4.dwBBitMask != provided->u4.dwBBitMask)
3722 return FALSE;
3724 if (requested->dwFlags & (DDPF_ALPHAPIXELS|DDPF_ZPIXELS))
3725 if (requested->u5.dwRGBAlphaBitMask != provided->u5.dwRGBAlphaBitMask)
3726 return FALSE;
3728 return TRUE;
3731 static BOOL ddraw_match_surface_desc(const DDSURFACEDESC2 *requested, const DDSURFACEDESC2 *provided)
3733 struct compare_info
3735 DWORD flag;
3736 ptrdiff_t offset;
3737 size_t size;
3740 #define CMP(FLAG, FIELD) \
3741 { DDSD_##FLAG, offsetof(DDSURFACEDESC2, FIELD), \
3742 sizeof(((DDSURFACEDESC2 *)(NULL))->FIELD) }
3744 static const struct compare_info compare[] =
3746 CMP(ALPHABITDEPTH, dwAlphaBitDepth),
3747 CMP(BACKBUFFERCOUNT, dwBackBufferCount),
3748 CMP(CAPS, ddsCaps),
3749 CMP(CKDESTBLT, ddckCKDestBlt),
3750 CMP(CKDESTOVERLAY, u3 /* ddckCKDestOverlay */),
3751 CMP(CKSRCBLT, ddckCKSrcBlt),
3752 CMP(CKSRCOVERLAY, ddckCKSrcOverlay),
3753 CMP(HEIGHT, dwHeight),
3754 CMP(LINEARSIZE, u1 /* dwLinearSize */),
3755 CMP(LPSURFACE, lpSurface),
3756 CMP(MIPMAPCOUNT, u2 /* dwMipMapCount */),
3757 CMP(PITCH, u1 /* lPitch */),
3758 /* PIXELFORMAT: manual */
3759 CMP(REFRESHRATE, u2 /* dwRefreshRate */),
3760 CMP(TEXTURESTAGE, dwTextureStage),
3761 CMP(WIDTH, dwWidth),
3762 /* ZBUFFERBITDEPTH: "obsolete" */
3765 #undef CMP
3767 unsigned int i;
3769 if ((requested->dwFlags & provided->dwFlags) != requested->dwFlags)
3770 return FALSE;
3772 for (i=0; i < sizeof(compare)/sizeof(compare[0]); i++)
3774 if (requested->dwFlags & compare[i].flag
3775 && memcmp((const char *)provided + compare[i].offset,
3776 (const char *)requested + compare[i].offset,
3777 compare[i].size) != 0)
3778 return FALSE;
3781 if (requested->dwFlags & DDSD_PIXELFORMAT)
3783 if (!Main_DirectDraw_DDPIXELFORMAT_Match(&requested->u4.ddpfPixelFormat,
3784 &provided->u4.ddpfPixelFormat))
3785 return FALSE;
3788 return TRUE;
3791 #undef DDENUMSURFACES_SEARCHTYPE
3792 #undef DDENUMSURFACES_MATCHTYPE
3794 struct surfacescallback2_context
3796 LPDDENUMSURFACESCALLBACK2 func;
3797 void *context;
3800 struct surfacescallback_context
3802 LPDDENUMSURFACESCALLBACK func;
3803 void *context;
3806 static HRESULT CALLBACK EnumSurfacesCallback2Thunk(IDirectDrawSurface7 *surface,
3807 DDSURFACEDESC2 *surface_desc, void *context)
3809 IDirectDrawSurfaceImpl *surface_impl = impl_from_IDirectDrawSurface7(surface);
3810 struct surfacescallback2_context *cbcontext = context;
3812 return cbcontext->func(&surface_impl->IDirectDrawSurface4_iface,
3813 surface_desc, cbcontext->context);
3816 static HRESULT CALLBACK EnumSurfacesCallbackThunk(IDirectDrawSurface7 *surface,
3817 DDSURFACEDESC2 *surface_desc, void *context)
3819 IDirectDrawSurfaceImpl *surface_impl = impl_from_IDirectDrawSurface7(surface);
3820 struct surfacescallback_context *cbcontext = context;
3822 return cbcontext->func(&surface_impl->IDirectDrawSurface_iface,
3823 (DDSURFACEDESC *)surface_desc, cbcontext->context);
3826 /*****************************************************************************
3827 * IDirectDraw7::EnumSurfaces
3829 * Loops through all surfaces attached to this device and calls the
3830 * application callback. This can't be relayed to WineD3DDevice,
3831 * because some WineD3DSurfaces' parents are IParent objects
3833 * Params:
3834 * Flags: Some filtering flags. See IDirectDrawImpl_EnumSurfacesCallback
3835 * DDSD: Description to filter for
3836 * Context: Application-provided pointer, it's passed unmodified to the
3837 * Callback function
3838 * Callback: Address to call for each surface
3840 * Returns:
3841 * DDERR_INVALIDPARAMS if the callback is NULL
3842 * DD_OK on success
3844 *****************************************************************************/
3845 static HRESULT WINAPI ddraw7_EnumSurfaces(IDirectDraw7 *iface, DWORD Flags,
3846 DDSURFACEDESC2 *DDSD, void *Context, LPDDENUMSURFACESCALLBACK7 Callback)
3848 /* The surface enumeration is handled by WineDDraw,
3849 * because it keeps track of all surfaces attached to
3850 * it. The filtering is done by our callback function,
3851 * because WineDDraw doesn't handle ddraw-like surface
3852 * caps structures
3854 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
3855 IDirectDrawSurfaceImpl *surf;
3856 BOOL all, nomatch;
3857 DDSURFACEDESC2 desc;
3858 struct list *entry, *entry2;
3860 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3861 iface, Flags, DDSD, Context, Callback);
3863 all = Flags & DDENUMSURFACES_ALL;
3864 nomatch = Flags & DDENUMSURFACES_NOMATCH;
3866 EnterCriticalSection(&ddraw_cs);
3868 if(!Callback)
3870 LeaveCriticalSection(&ddraw_cs);
3871 return DDERR_INVALIDPARAMS;
3874 /* Use the _SAFE enumeration, the app may destroy enumerated surfaces */
3875 LIST_FOR_EACH_SAFE(entry, entry2, &This->surface_list)
3877 surf = LIST_ENTRY(entry, IDirectDrawSurfaceImpl, surface_list_entry);
3878 if (all || (nomatch != ddraw_match_surface_desc(DDSD, &surf->surface_desc)))
3880 desc = surf->surface_desc;
3881 IDirectDrawSurface7_AddRef(&surf->IDirectDrawSurface7_iface);
3882 if (Callback(&surf->IDirectDrawSurface7_iface, &desc, Context) != DDENUMRET_OK)
3884 LeaveCriticalSection(&ddraw_cs);
3885 return DD_OK;
3889 LeaveCriticalSection(&ddraw_cs);
3890 return DD_OK;
3893 static HRESULT WINAPI ddraw4_EnumSurfaces(IDirectDraw4 *iface, DWORD flags,
3894 DDSURFACEDESC2 *surface_desc, void *context, LPDDENUMSURFACESCALLBACK2 callback)
3896 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
3897 struct surfacescallback2_context cbcontext;
3899 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3900 iface, flags, surface_desc, context, callback);
3902 cbcontext.func = callback;
3903 cbcontext.context = context;
3905 return ddraw7_EnumSurfaces(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
3906 &cbcontext, EnumSurfacesCallback2Thunk);
3909 static HRESULT WINAPI ddraw3_EnumSurfaces(IDirectDraw3 *iface, DWORD flags,
3910 DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3912 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
3913 struct surfacescallback_context cbcontext;
3915 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3916 iface, flags, surface_desc, context, callback);
3918 cbcontext.func = callback;
3919 cbcontext.context = context;
3921 return ddraw7_EnumSurfaces(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
3922 &cbcontext, EnumSurfacesCallbackThunk);
3925 static HRESULT WINAPI ddraw2_EnumSurfaces(IDirectDraw2 *iface, DWORD flags,
3926 DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3928 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
3929 struct surfacescallback_context cbcontext;
3931 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3932 iface, flags, surface_desc, context, callback);
3934 cbcontext.func = callback;
3935 cbcontext.context = context;
3937 return ddraw7_EnumSurfaces(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
3938 &cbcontext, EnumSurfacesCallbackThunk);
3941 static HRESULT WINAPI ddraw1_EnumSurfaces(IDirectDraw *iface, DWORD flags,
3942 DDSURFACEDESC *surface_desc, void *context, LPDDENUMSURFACESCALLBACK callback)
3944 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
3945 struct surfacescallback_context cbcontext;
3947 TRACE("iface %p, flags %#x, surface_desc %p, context %p, callback %p.\n",
3948 iface, flags, surface_desc, context, callback);
3950 cbcontext.func = callback;
3951 cbcontext.context = context;
3953 return ddraw7_EnumSurfaces(&This->IDirectDraw7_iface, flags, (DDSURFACEDESC2 *)surface_desc,
3954 &cbcontext, EnumSurfacesCallbackThunk);
3957 /*****************************************************************************
3958 * DirectDrawCreateClipper (DDRAW.@)
3960 * Creates a new IDirectDrawClipper object.
3962 * Params:
3963 * Clipper: Address to write the interface pointer to
3964 * UnkOuter: For aggregation support, which ddraw doesn't have. Has to be
3965 * NULL
3967 * Returns:
3968 * CLASS_E_NOAGGREGATION if UnkOuter != NULL
3969 * E_OUTOFMEMORY if allocating the object failed
3971 *****************************************************************************/
3972 HRESULT WINAPI
3973 DirectDrawCreateClipper(DWORD Flags,
3974 LPDIRECTDRAWCLIPPER *Clipper,
3975 IUnknown *UnkOuter)
3977 IDirectDrawClipperImpl* object;
3978 HRESULT hr;
3980 TRACE("flags %#x, clipper %p, outer_unknown %p.\n",
3981 Flags, Clipper, UnkOuter);
3983 EnterCriticalSection(&ddraw_cs);
3984 if (UnkOuter != NULL)
3986 LeaveCriticalSection(&ddraw_cs);
3987 return CLASS_E_NOAGGREGATION;
3990 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
3991 sizeof(IDirectDrawClipperImpl));
3992 if (object == NULL)
3994 LeaveCriticalSection(&ddraw_cs);
3995 return E_OUTOFMEMORY;
3998 hr = ddraw_clipper_init(object);
3999 if (FAILED(hr))
4001 WARN("Failed to initialize clipper, hr %#x.\n", hr);
4002 HeapFree(GetProcessHeap(), 0, object);
4003 LeaveCriticalSection(&ddraw_cs);
4004 return hr;
4007 TRACE("Created clipper %p.\n", object);
4008 *Clipper = &object->IDirectDrawClipper_iface;
4009 LeaveCriticalSection(&ddraw_cs);
4010 return DD_OK;
4013 /*****************************************************************************
4014 * IDirectDraw7::CreateClipper
4016 * Creates a DDraw clipper. See DirectDrawCreateClipper for details
4018 *****************************************************************************/
4019 static HRESULT WINAPI ddraw7_CreateClipper(IDirectDraw7 *iface, DWORD Flags,
4020 IDirectDrawClipper **Clipper, IUnknown *UnkOuter)
4022 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
4023 iface, Flags, Clipper, UnkOuter);
4025 return DirectDrawCreateClipper(Flags, Clipper, UnkOuter);
4028 static HRESULT WINAPI ddraw4_CreateClipper(IDirectDraw4 *iface, DWORD flags,
4029 IDirectDrawClipper **clipper, IUnknown *outer_unknown)
4031 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
4033 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
4034 iface, flags, clipper, outer_unknown);
4036 return ddraw7_CreateClipper(&This->IDirectDraw7_iface, flags, clipper, outer_unknown);
4039 static HRESULT WINAPI ddraw3_CreateClipper(IDirectDraw3 *iface, DWORD flags,
4040 IDirectDrawClipper **clipper, IUnknown *outer_unknown)
4042 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
4044 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
4045 iface, flags, clipper, outer_unknown);
4047 return ddraw7_CreateClipper(&This->IDirectDraw7_iface, flags, clipper, outer_unknown);
4050 static HRESULT WINAPI ddraw2_CreateClipper(IDirectDraw2 *iface,
4051 DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
4053 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
4055 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
4056 iface, flags, clipper, outer_unknown);
4058 return ddraw7_CreateClipper(&This->IDirectDraw7_iface, flags, clipper, outer_unknown);
4061 static HRESULT WINAPI ddraw1_CreateClipper(IDirectDraw *iface,
4062 DWORD flags, IDirectDrawClipper **clipper, IUnknown *outer_unknown)
4064 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
4066 TRACE("iface %p, flags %#x, clipper %p, outer_unknown %p.\n",
4067 iface, flags, clipper, outer_unknown);
4069 return ddraw7_CreateClipper(&This->IDirectDraw7_iface, flags, clipper, outer_unknown);
4072 /*****************************************************************************
4073 * IDirectDraw7::CreatePalette
4075 * Creates a new IDirectDrawPalette object
4077 * Params:
4078 * Flags: The flags for the new clipper
4079 * ColorTable: Color table to assign to the new clipper
4080 * Palette: Address to write the interface pointer to
4081 * UnkOuter: For aggregation support, which ddraw doesn't have. Has to be
4082 * NULL
4084 * Returns:
4085 * CLASS_E_NOAGGREGATION if UnkOuter != NULL
4086 * E_OUTOFMEMORY if allocating the object failed
4088 *****************************************************************************/
4089 static HRESULT WINAPI ddraw7_CreatePalette(IDirectDraw7 *iface, DWORD Flags,
4090 PALETTEENTRY *ColorTable, IDirectDrawPalette **Palette, IUnknown *pUnkOuter)
4092 IDirectDrawImpl *This = impl_from_IDirectDraw7(iface);
4093 IDirectDrawPaletteImpl *object;
4094 HRESULT hr;
4096 TRACE("iface %p, flags %#x, color_table %p, palette %p, outer_unknown %p.\n",
4097 iface, Flags, ColorTable, Palette, pUnkOuter);
4099 EnterCriticalSection(&ddraw_cs);
4100 if(pUnkOuter != NULL)
4102 WARN("pUnkOuter is %p, returning CLASS_E_NOAGGREGATION\n", pUnkOuter);
4103 LeaveCriticalSection(&ddraw_cs);
4104 return CLASS_E_NOAGGREGATION;
4107 /* The refcount test shows that a cooplevel is required for this */
4108 if(!This->cooperative_level)
4110 WARN("No cooperative level set, returning DDERR_NOCOOPERATIVELEVELSET\n");
4111 LeaveCriticalSection(&ddraw_cs);
4112 return DDERR_NOCOOPERATIVELEVELSET;
4115 object = HeapAlloc(GetProcessHeap(), 0, sizeof(IDirectDrawPaletteImpl));
4116 if(!object)
4118 ERR("Out of memory when allocating memory for a palette implementation\n");
4119 LeaveCriticalSection(&ddraw_cs);
4120 return E_OUTOFMEMORY;
4123 hr = ddraw_palette_init(object, This, Flags, ColorTable);
4124 if (FAILED(hr))
4126 WARN("Failed to initialize palette, hr %#x.\n", hr);
4127 HeapFree(GetProcessHeap(), 0, object);
4128 LeaveCriticalSection(&ddraw_cs);
4129 return hr;
4132 TRACE("Created palette %p.\n", object);
4133 *Palette = (IDirectDrawPalette *)object;
4134 LeaveCriticalSection(&ddraw_cs);
4135 return DD_OK;
4138 static HRESULT WINAPI ddraw4_CreatePalette(IDirectDraw4 *iface, DWORD flags, PALETTEENTRY *entries,
4139 IDirectDrawPalette **palette, IUnknown *outer_unknown)
4141 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
4142 HRESULT hr;
4144 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
4145 iface, flags, entries, palette, outer_unknown);
4147 hr = ddraw7_CreatePalette(&This->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
4148 if (SUCCEEDED(hr) && *palette)
4150 IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
4151 IDirectDraw7_Release(&This->IDirectDraw7_iface);
4152 IDirectDraw4_AddRef(iface);
4153 impl->ifaceToRelease = (IUnknown *)iface;
4155 return hr;
4158 static HRESULT WINAPI ddraw3_CreatePalette(IDirectDraw3 *iface, DWORD flags,
4159 PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
4161 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
4162 HRESULT hr;
4164 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
4165 iface, flags, entries, palette, outer_unknown);
4167 hr = ddraw7_CreatePalette(&This->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
4168 if (SUCCEEDED(hr) && *palette)
4170 IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
4171 IDirectDraw7_Release(&This->IDirectDraw7_iface);
4172 IDirectDraw4_AddRef(iface);
4173 impl->ifaceToRelease = (IUnknown *)iface;
4176 return hr;
4179 static HRESULT WINAPI ddraw2_CreatePalette(IDirectDraw2 *iface, DWORD flags,
4180 PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
4182 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
4183 HRESULT hr;
4185 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
4186 iface, flags, entries, palette, outer_unknown);
4188 hr = ddraw7_CreatePalette(&This->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
4189 if (SUCCEEDED(hr) && *palette)
4191 IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
4192 IDirectDraw7_Release(&This->IDirectDraw7_iface);
4193 impl->ifaceToRelease = NULL;
4196 return hr;
4199 static HRESULT WINAPI ddraw1_CreatePalette(IDirectDraw *iface, DWORD flags,
4200 PALETTEENTRY *entries, IDirectDrawPalette **palette, IUnknown *outer_unknown)
4202 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
4203 HRESULT hr;
4205 TRACE("iface %p, flags %#x, entries %p, palette %p, outer_unknown %p.\n",
4206 iface, flags, entries, palette, outer_unknown);
4208 hr = ddraw7_CreatePalette(&This->IDirectDraw7_iface, flags, entries, palette, outer_unknown);
4209 if (SUCCEEDED(hr) && *palette)
4211 IDirectDrawPaletteImpl *impl = (IDirectDrawPaletteImpl *)*palette;
4212 IDirectDraw7_Release(&This->IDirectDraw7_iface);
4213 impl->ifaceToRelease = NULL;
4216 return hr;
4219 /*****************************************************************************
4220 * IDirectDraw7::DuplicateSurface
4222 * Duplicates a surface. The surface memory points to the same memory as
4223 * the original surface, and it's released when the last surface referencing
4224 * it is released. I guess that's beyond Wine's surface management right now
4225 * (Idea: create a new DDraw surface with the same WineD3DSurface. I need a
4226 * test application to implement this)
4228 * Params:
4229 * Src: Address of the source surface
4230 * Dest: Address to write the new surface pointer to
4232 * Returns:
4233 * See IDirectDraw7::CreateSurface
4235 *****************************************************************************/
4236 static HRESULT WINAPI ddraw7_DuplicateSurface(IDirectDraw7 *iface,
4237 IDirectDrawSurface7 *Src, IDirectDrawSurface7 **Dest)
4239 IDirectDrawSurfaceImpl *Surf = unsafe_impl_from_IDirectDrawSurface7(Src);
4241 FIXME("iface %p, src %p, dst %p partial stub!\n", iface, Src, Dest);
4243 /* For now, simply create a new, independent surface */
4244 return IDirectDraw7_CreateSurface(iface,
4245 &Surf->surface_desc,
4246 Dest,
4247 NULL);
4250 static HRESULT WINAPI ddraw4_DuplicateSurface(IDirectDraw4 *iface, IDirectDrawSurface4 *src,
4251 IDirectDrawSurface4 **dst)
4253 IDirectDrawImpl *This = impl_from_IDirectDraw4(iface);
4254 IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface4(src);
4255 IDirectDrawSurface7 *dst7;
4256 IDirectDrawSurfaceImpl *dst_impl;
4257 HRESULT hr;
4259 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
4260 hr = ddraw7_DuplicateSurface(&This->IDirectDraw7_iface,
4261 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
4262 if (FAILED(hr))
4264 *dst = NULL;
4265 return hr;
4267 dst_impl = impl_from_IDirectDrawSurface7(dst7);
4268 *dst = &dst_impl->IDirectDrawSurface4_iface;
4270 return hr;
4273 static HRESULT WINAPI ddraw3_DuplicateSurface(IDirectDraw3 *iface, IDirectDrawSurface *src,
4274 IDirectDrawSurface **dst)
4276 IDirectDrawImpl *This = impl_from_IDirectDraw3(iface);
4277 IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface(src);
4278 IDirectDrawSurface7 *dst7;
4279 IDirectDrawSurfaceImpl *dst_impl;
4280 HRESULT hr;
4282 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
4283 hr = ddraw7_DuplicateSurface(&This->IDirectDraw7_iface,
4284 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
4285 if (FAILED(hr))
4286 return hr;
4287 dst_impl = impl_from_IDirectDrawSurface7(dst7);
4288 *dst = &dst_impl->IDirectDrawSurface_iface;
4290 return hr;
4293 static HRESULT WINAPI ddraw2_DuplicateSurface(IDirectDraw2 *iface,
4294 IDirectDrawSurface *src, IDirectDrawSurface **dst)
4296 IDirectDrawImpl *This = impl_from_IDirectDraw2(iface);
4297 IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface(src);
4298 IDirectDrawSurface7 *dst7;
4299 IDirectDrawSurfaceImpl *dst_impl;
4300 HRESULT hr;
4302 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
4303 hr = ddraw7_DuplicateSurface(&This->IDirectDraw7_iface,
4304 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
4305 if (FAILED(hr))
4306 return hr;
4307 dst_impl = impl_from_IDirectDrawSurface7(dst7);
4308 *dst = &dst_impl->IDirectDrawSurface_iface;
4310 return hr;
4313 static HRESULT WINAPI ddraw1_DuplicateSurface(IDirectDraw *iface, IDirectDrawSurface *src,
4314 IDirectDrawSurface **dst)
4316 IDirectDrawImpl *This = impl_from_IDirectDraw(iface);
4317 IDirectDrawSurfaceImpl *src_impl = unsafe_impl_from_IDirectDrawSurface(src);
4318 IDirectDrawSurface7 *dst7;
4319 IDirectDrawSurfaceImpl *dst_impl;
4320 HRESULT hr;
4322 TRACE("iface %p, src %p, dst %p.\n", iface, src, dst);
4323 hr = ddraw7_DuplicateSurface(&This->IDirectDraw7_iface,
4324 src_impl ? &src_impl->IDirectDrawSurface7_iface : NULL, &dst7);
4325 if (FAILED(hr))
4326 return hr;
4327 dst_impl = impl_from_IDirectDrawSurface7(dst7);
4328 *dst = &dst_impl->IDirectDrawSurface_iface;
4330 return hr;
4333 /*****************************************************************************
4334 * IDirect3D7::EnumDevices
4336 * The EnumDevices method for IDirect3D7. It enumerates all supported
4337 * D3D7 devices. Currently the T&L, HAL and RGB devices are enumerated.
4339 * Params:
4340 * callback: Function to call for each enumerated device
4341 * context: Pointer to pass back to the app
4343 * Returns:
4344 * D3D_OK, or the return value of the GetCaps call
4346 *****************************************************************************/
4347 static HRESULT WINAPI d3d7_EnumDevices(IDirect3D7 *iface, LPD3DENUMDEVICESCALLBACK7 callback, void *context)
4349 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
4350 D3DDEVICEDESC7 device_desc7;
4351 D3DDEVICEDESC device_desc1;
4352 HRESULT hr;
4353 size_t i;
4355 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4357 if (!callback)
4358 return DDERR_INVALIDPARAMS;
4360 EnterCriticalSection(&ddraw_cs);
4362 hr = IDirect3DImpl_GetCaps(This->wineD3D, &device_desc1, &device_desc7);
4363 if (hr != D3D_OK)
4365 LeaveCriticalSection(&ddraw_cs);
4366 return hr;
4369 for (i = 0; i < sizeof(device_list7)/sizeof(device_list7[0]); i++)
4371 HRESULT ret;
4373 device_desc7.deviceGUID = *device_list7[i].device_guid;
4374 ret = callback(device_list7[i].interface_name, device_list7[i].device_name, &device_desc7, context);
4375 if (ret != DDENUMRET_OK)
4377 TRACE("Application cancelled the enumeration.\n");
4378 LeaveCriticalSection(&ddraw_cs);
4379 return D3D_OK;
4383 TRACE("End of enumeration.\n");
4385 LeaveCriticalSection(&ddraw_cs);
4387 return D3D_OK;
4390 /*****************************************************************************
4391 * IDirect3D3::EnumDevices
4393 * Enumerates all supported Direct3DDevice interfaces. This is the
4394 * implementation for Direct3D 1 to Direc3D 3, Version 7 has its own.
4396 * Version 1, 2 and 3
4398 * Params:
4399 * callback: Application-provided routine to call for each enumerated device
4400 * Context: Pointer to pass to the callback
4402 * Returns:
4403 * D3D_OK on success,
4404 * The result of IDirect3DImpl_GetCaps if it failed
4406 *****************************************************************************/
4407 static HRESULT WINAPI d3d3_EnumDevices(IDirect3D3 *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4409 static CHAR wined3d_description[] = "Wine D3DDevice using WineD3D and OpenGL";
4411 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4412 D3DDEVICEDESC device_desc1, hal_desc, hel_desc;
4413 D3DDEVICEDESC7 device_desc7;
4414 HRESULT hr;
4416 /* Some games (Motoracer 2 demo) have the bad idea to modify the device
4417 * name string. Let's put the string in a sufficiently sized array in
4418 * writable memory. */
4419 char device_name[50];
4420 strcpy(device_name,"Direct3D HEL");
4422 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4424 if (!callback)
4425 return DDERR_INVALIDPARAMS;
4427 EnterCriticalSection(&ddraw_cs);
4429 hr = IDirect3DImpl_GetCaps(This->wineD3D, &device_desc1, &device_desc7);
4430 if (hr != D3D_OK)
4432 LeaveCriticalSection(&ddraw_cs);
4433 return hr;
4436 /* Do I have to enumerate the reference id? Note from old d3d7:
4437 * "It seems that enumerating the reference IID on Direct3D 1 games
4438 * (AvP / Motoracer2) breaks them". So do not enumerate this iid in V1
4440 * There's a registry key HKLM\Software\Microsoft\Direct3D\Drivers,
4441 * EnumReference which enables / disables enumerating the reference
4442 * rasterizer. It's a DWORD, 0 means disabled, 2 means enabled. The
4443 * enablerefrast.reg and disablerefrast.reg files in the DirectX 7.0 sdk
4444 * demo directory suggest this.
4446 * Some games(GTA 2) seem to use the second enumerated device, so I have
4447 * to enumerate at least 2 devices. So enumerate the reference device to
4448 * have 2 devices.
4450 * Other games (Rollcage) tell emulation and hal device apart by certain
4451 * flags. Rollcage expects D3DPTEXTURECAPS_POW2 to be set (yeah, it is a
4452 * limitation flag), and it refuses all devices that have the perspective
4453 * flag set. This way it refuses the emulation device, and HAL devices
4454 * never have POW2 unset in d3d7 on windows. */
4455 if (This->d3dversion != 1)
4457 static CHAR reference_description[] = "RGB Direct3D emulation";
4459 TRACE("Enumerating WineD3D D3DDevice interface.\n");
4460 hal_desc = device_desc1;
4461 hel_desc = device_desc1;
4462 /* The rgb device has the pow2 flag set in the hel caps, but not in the hal caps. */
4463 hal_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4464 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4465 hal_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4466 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4467 hr = callback((GUID *)&IID_IDirect3DRGBDevice, reference_description,
4468 device_name, &hal_desc, &hel_desc, context);
4469 if (hr != D3DENUMRET_OK)
4471 TRACE("Application cancelled the enumeration.\n");
4472 LeaveCriticalSection(&ddraw_cs);
4473 return D3D_OK;
4477 strcpy(device_name,"Direct3D HAL");
4479 TRACE("Enumerating HAL Direct3D device.\n");
4480 hal_desc = device_desc1;
4481 hel_desc = device_desc1;
4482 /* The hal device does not have the pow2 flag set in hel, but in hal. */
4483 hel_desc.dpcLineCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4484 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4485 hel_desc.dpcTriCaps.dwTextureCaps &= ~(D3DPTEXTURECAPS_POW2
4486 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL | D3DPTEXTURECAPS_PERSPECTIVE);
4487 hr = callback((GUID *)&IID_IDirect3DHALDevice, wined3d_description,
4488 device_name, &hal_desc, &hel_desc, context);
4489 if (hr != D3DENUMRET_OK)
4491 TRACE("Application cancelled the enumeration.\n");
4492 LeaveCriticalSection(&ddraw_cs);
4493 return D3D_OK;
4496 TRACE("End of enumeration.\n");
4498 LeaveCriticalSection(&ddraw_cs);
4499 return D3D_OK;
4502 static HRESULT WINAPI d3d2_EnumDevices(IDirect3D2 *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4504 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
4506 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4508 return d3d3_EnumDevices(&This->IDirect3D3_iface, callback, context);
4511 static HRESULT WINAPI d3d1_EnumDevices(IDirect3D *iface, LPD3DENUMDEVICESCALLBACK callback, void *context)
4513 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
4515 TRACE("iface %p, callback %p, context %p.\n", iface, callback, context);
4517 return d3d3_EnumDevices(&This->IDirect3D3_iface, callback, context);
4520 /*****************************************************************************
4521 * IDirect3D3::CreateLight
4523 * Creates an IDirect3DLight interface. This interface is used in
4524 * Direct3D3 or earlier for lighting. In Direct3D7 it has been replaced
4525 * by the DIRECT3DLIGHT7 structure. Wine's Direct3DLight implementation
4526 * uses the IDirect3DDevice7 interface with D3D7 lights.
4528 * Version 1, 2 and 3
4530 * Params:
4531 * light: Address to store the new interface pointer
4532 * outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4533 * Must be NULL
4535 * Returns:
4536 * D3D_OK on success
4537 * DDERR_OUTOFMEMORY if memory allocation failed
4538 * CLASS_E_NOAGGREGATION if outer_unknown != NULL
4540 *****************************************************************************/
4541 static HRESULT WINAPI d3d3_CreateLight(IDirect3D3 *iface, IDirect3DLight **light,
4542 IUnknown *outer_unknown)
4544 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4545 IDirect3DLightImpl *object;
4547 TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4549 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4551 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4552 if (!object)
4554 ERR("Failed to allocate light memory.\n");
4555 return DDERR_OUTOFMEMORY;
4558 d3d_light_init(object, This);
4560 TRACE("Created light %p.\n", object);
4561 *light = &object->IDirect3DLight_iface;
4563 return D3D_OK;
4566 static HRESULT WINAPI d3d2_CreateLight(IDirect3D2 *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4568 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
4570 TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4572 return d3d3_CreateLight(&This->IDirect3D3_iface, light, outer_unknown);
4575 static HRESULT WINAPI d3d1_CreateLight(IDirect3D *iface, IDirect3DLight **light, IUnknown *outer_unknown)
4577 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
4579 TRACE("iface %p, light %p, outer_unknown %p.\n", iface, light, outer_unknown);
4581 return d3d3_CreateLight(&This->IDirect3D3_iface, light, outer_unknown);
4584 /*****************************************************************************
4585 * IDirect3D3::CreateMaterial
4587 * Creates an IDirect3DMaterial interface. This interface is used by Direct3D3
4588 * and older versions. The IDirect3DMaterial implementation wraps its
4589 * functionality to IDirect3DDevice7::SetMaterial and friends.
4591 * Version 1, 2 and 3
4593 * Params:
4594 * material: Address to store the new interface's pointer to
4595 * outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4596 * Must be NULL
4598 * Returns:
4599 * D3D_OK on success
4600 * DDERR_OUTOFMEMORY if memory allocation failed
4601 * CLASS_E_NOAGGREGATION if outer_unknown != NULL
4603 *****************************************************************************/
4604 static HRESULT WINAPI d3d3_CreateMaterial(IDirect3D3 *iface, IDirect3DMaterial3 **material,
4605 IUnknown *outer_unknown)
4607 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4608 IDirect3DMaterialImpl *object;
4610 TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4612 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4614 object = d3d_material_create(This);
4615 if (!object)
4617 ERR("Failed to allocate material memory.\n");
4618 return DDERR_OUTOFMEMORY;
4621 TRACE("Created material %p.\n", object);
4622 *material = &object->IDirect3DMaterial3_iface;
4624 return D3D_OK;
4627 static HRESULT WINAPI d3d2_CreateMaterial(IDirect3D2 *iface, IDirect3DMaterial2 **material,
4628 IUnknown *outer_unknown)
4630 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
4631 IDirect3DMaterialImpl *object;
4633 TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4635 object = d3d_material_create(This);
4636 if (!object)
4638 ERR("Failed to allocate material memory.\n");
4639 return DDERR_OUTOFMEMORY;
4642 TRACE("Created material %p.\n", object);
4643 *material = &object->IDirect3DMaterial2_iface;
4645 return D3D_OK;
4648 static HRESULT WINAPI d3d1_CreateMaterial(IDirect3D *iface, IDirect3DMaterial **material,
4649 IUnknown *outer_unknown)
4651 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
4652 IDirect3DMaterialImpl *object;
4654 TRACE("iface %p, material %p, outer_unknown %p.\n", iface, material, outer_unknown);
4656 object = d3d_material_create(This);
4657 if (!object)
4659 ERR("Failed to allocate material memory.\n");
4660 return DDERR_OUTOFMEMORY;
4663 TRACE("Created material %p.\n", object);
4664 *material = &object->IDirect3DMaterial_iface;
4666 return D3D_OK;
4669 /*****************************************************************************
4670 * IDirect3D3::CreateViewport
4672 * Creates an IDirect3DViewport interface. This interface is used
4673 * by Direct3D and earlier versions for Viewport management. In Direct3D7
4674 * it has been replaced by a viewport structure and
4675 * IDirect3DDevice7::*Viewport. Wine's IDirect3DViewport implementation
4676 * uses the IDirect3DDevice7 methods for its functionality
4678 * Params:
4679 * Viewport: Address to store the new interface pointer
4680 * outer_unknown: Basically for aggregation, but ddraw doesn't support it.
4681 * Must be NULL
4683 * Returns:
4684 * D3D_OK on success
4685 * DDERR_OUTOFMEMORY if memory allocation failed
4686 * CLASS_E_NOAGGREGATION if outer_unknown != NULL
4688 *****************************************************************************/
4689 static HRESULT WINAPI d3d3_CreateViewport(IDirect3D3 *iface, IDirect3DViewport3 **viewport,
4690 IUnknown *outer_unknown)
4692 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4693 IDirect3DViewportImpl *object;
4695 TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4697 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4699 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4700 if (!object)
4702 ERR("Failed to allocate viewport memory.\n");
4703 return DDERR_OUTOFMEMORY;
4706 d3d_viewport_init(object, This);
4708 TRACE("Created viewport %p.\n", object);
4709 *viewport = (IDirect3DViewport3 *)object;
4711 return D3D_OK;
4714 static HRESULT WINAPI d3d2_CreateViewport(IDirect3D2 *iface, IDirect3DViewport2 **viewport, IUnknown *outer_unknown)
4716 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
4718 TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4720 return d3d3_CreateViewport(&This->IDirect3D3_iface, (IDirect3DViewport3 **)viewport,
4721 outer_unknown);
4724 static HRESULT WINAPI d3d1_CreateViewport(IDirect3D *iface, IDirect3DViewport **viewport, IUnknown *outer_unknown)
4726 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
4728 TRACE("iface %p, viewport %p, outer_unknown %p.\n", iface, viewport, outer_unknown);
4730 return d3d3_CreateViewport(&This->IDirect3D3_iface, (IDirect3DViewport3 **)viewport,
4731 outer_unknown);
4734 /*****************************************************************************
4735 * IDirect3D3::FindDevice
4737 * This method finds a device with the requested properties and returns a
4738 * device description
4740 * Verion 1, 2 and 3
4741 * Params:
4742 * fds: Describes the requested device characteristics
4743 * fdr: Returns the device description
4745 * Returns:
4746 * D3D_OK on success
4747 * DDERR_INVALIDPARAMS if no device was found
4749 *****************************************************************************/
4750 static HRESULT WINAPI d3d3_FindDevice(IDirect3D3 *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4752 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4753 D3DDEVICEDESC7 desc7;
4754 D3DDEVICEDESC desc1;
4755 HRESULT hr;
4757 TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4759 if (!fds || !fdr) return DDERR_INVALIDPARAMS;
4761 if (fds->dwSize != sizeof(D3DFINDDEVICESEARCH)
4762 || fdr->dwSize != sizeof(D3DFINDDEVICERESULT))
4763 return DDERR_INVALIDPARAMS;
4765 if ((fds->dwFlags & D3DFDS_COLORMODEL)
4766 && fds->dcmColorModel != D3DCOLOR_RGB)
4768 WARN("Trying to request a non-RGB D3D color model. Not supported.\n");
4769 return DDERR_INVALIDPARAMS; /* No real idea what to return here :-) */
4772 if (fds->dwFlags & D3DFDS_GUID)
4774 TRACE("Trying to match guid %s.\n", debugstr_guid(&(fds->guid)));
4775 if (!IsEqualGUID(&IID_D3DDEVICE_WineD3D, &fds->guid)
4776 && !IsEqualGUID(&IID_IDirect3DHALDevice, &fds->guid)
4777 && !IsEqualGUID(&IID_IDirect3DRGBDevice, &fds->guid))
4779 WARN("No match for this GUID.\n");
4780 return DDERR_NOTFOUND;
4784 /* Get the caps */
4785 hr = IDirect3DImpl_GetCaps(This->wineD3D, &desc1, &desc7);
4786 if (hr != D3D_OK) return hr;
4788 /* Now return our own GUID */
4789 fdr->guid = IID_D3DDEVICE_WineD3D;
4790 fdr->ddHwDesc = desc1;
4791 fdr->ddSwDesc = desc1;
4793 TRACE("Returning Wine's wined3d device with (undumped) capabilities.\n");
4795 return D3D_OK;
4798 static HRESULT WINAPI d3d2_FindDevice(IDirect3D2 *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4800 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
4802 TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4804 return d3d3_FindDevice(&This->IDirect3D3_iface, fds, fdr);
4807 static HRESULT WINAPI d3d1_FindDevice(IDirect3D *iface, D3DFINDDEVICESEARCH *fds, D3DFINDDEVICERESULT *fdr)
4809 IDirectDrawImpl *This = impl_from_IDirect3D(iface);
4811 TRACE("iface %p, fds %p, fdr %p.\n", iface, fds, fdr);
4813 return d3d3_FindDevice(&This->IDirect3D3_iface, fds, fdr);
4816 /*****************************************************************************
4817 * IDirect3D7::CreateDevice
4819 * Creates an IDirect3DDevice7 interface.
4821 * Version 2, 3 and 7. IDirect3DDevice 1 interfaces are interfaces to
4822 * DirectDraw surfaces and are created with
4823 * IDirectDrawSurface::QueryInterface. This method uses CreateDevice to
4824 * create the device object and QueryInterfaces for IDirect3DDevice
4826 * Params:
4827 * refiid: IID of the device to create
4828 * Surface: Initial rendertarget
4829 * Device: Address to return the interface pointer
4831 * Returns:
4832 * D3D_OK on success
4833 * DDERR_OUTOFMEMORY if memory allocation failed
4834 * DDERR_INVALIDPARAMS if a device exists already
4836 *****************************************************************************/
4837 static HRESULT WINAPI d3d7_CreateDevice(IDirect3D7 *iface, REFCLSID riid,
4838 IDirectDrawSurface7 *surface, IDirect3DDevice7 **device)
4840 IDirectDrawSurfaceImpl *target = unsafe_impl_from_IDirectDrawSurface7(surface);
4841 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
4842 IDirect3DDeviceImpl *object;
4843 HRESULT hr;
4845 TRACE("iface %p, riid %s, surface %p, device %p.\n", iface, debugstr_guid(riid), surface, device);
4847 EnterCriticalSection(&ddraw_cs);
4848 *device = NULL;
4850 /* Fail device creation if non-opengl surfaces are used. */
4851 if (This->ImplType != SURFACE_OPENGL)
4853 ERR("The application wants to create a Direct3D device, but non-opengl surfaces are set in the registry.\n");
4854 ERR("Please set the surface implementation to opengl or autodetection to allow 3D rendering.\n");
4856 /* We only hit this path if a default surface is set in the registry. Incorrect autodetection
4857 * is caught in CreateSurface or QueryInterface. */
4858 LeaveCriticalSection(&ddraw_cs);
4859 return DDERR_NO3D;
4862 if (This->d3ddevice)
4864 FIXME("Only one Direct3D device per DirectDraw object supported.\n");
4865 LeaveCriticalSection(&ddraw_cs);
4866 return DDERR_INVALIDPARAMS;
4869 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
4870 if (!object)
4872 ERR("Failed to allocate device memory.\n");
4873 LeaveCriticalSection(&ddraw_cs);
4874 return DDERR_OUTOFMEMORY;
4877 hr = d3d_device_init(object, This, target);
4878 if (FAILED(hr))
4880 WARN("Failed to initialize device, hr %#x.\n", hr);
4881 HeapFree(GetProcessHeap(), 0, object);
4882 LeaveCriticalSection(&ddraw_cs);
4883 return hr;
4886 TRACE("Created device %p.\n", object);
4887 *device = (IDirect3DDevice7 *)object;
4889 LeaveCriticalSection(&ddraw_cs);
4890 return D3D_OK;
4893 static HRESULT WINAPI d3d3_CreateDevice(IDirect3D3 *iface, REFCLSID riid,
4894 IDirectDrawSurface4 *surface, IDirect3DDevice3 **device, IUnknown *outer_unknown)
4896 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4897 IDirectDrawSurfaceImpl *surface_impl = unsafe_impl_from_IDirectDrawSurface4(surface);
4898 HRESULT hr;
4900 TRACE("iface %p, riid %s, surface %p, device %p, outer_unknown %p.\n",
4901 iface, debugstr_guid(riid), surface, device, outer_unknown);
4903 if (outer_unknown) return CLASS_E_NOAGGREGATION;
4905 hr = d3d7_CreateDevice(&This->IDirect3D7_iface, riid,
4906 surface_impl ? &surface_impl->IDirectDrawSurface7_iface : NULL,
4907 (IDirect3DDevice7 **)device);
4908 if (*device) *device = (IDirect3DDevice3 *)&((IDirect3DDeviceImpl *)*device)->IDirect3DDevice3_vtbl;
4910 return hr;
4913 static HRESULT WINAPI d3d2_CreateDevice(IDirect3D2 *iface, REFCLSID riid,
4914 IDirectDrawSurface *surface, IDirect3DDevice2 **device)
4916 IDirectDrawImpl *This = impl_from_IDirect3D2(iface);
4917 IDirectDrawSurfaceImpl *surface_impl = unsafe_impl_from_IDirectDrawSurface(surface);
4918 HRESULT hr;
4920 TRACE("iface %p, riid %s, surface %p, device %p.\n",
4921 iface, debugstr_guid(riid), surface, device);
4923 hr = d3d7_CreateDevice(&This->IDirect3D7_iface, riid,
4924 surface_impl ? &surface_impl->IDirectDrawSurface7_iface : NULL,
4925 (IDirect3DDevice7 **)device);
4926 if (*device) *device = (IDirect3DDevice2 *)&((IDirect3DDeviceImpl *)*device)->IDirect3DDevice2_vtbl;
4928 return hr;
4931 /*****************************************************************************
4932 * IDirect3D7::CreateVertexBuffer
4934 * Creates a new vertex buffer object and returns a IDirect3DVertexBuffer7
4935 * interface.
4937 * Version 3 and 7
4939 * Params:
4940 * desc: Requested Vertex buffer properties
4941 * vertex_buffer: Address to return the interface pointer at
4942 * flags: Some flags, should be 0
4944 * Returns
4945 * D3D_OK on success
4946 * DDERR_OUTOFMEMORY if memory allocation failed
4947 * The return value of IWineD3DDevice::CreateVertexBuffer if this call fails
4948 * DDERR_INVALIDPARAMS if desc or vertex_buffer are NULL
4950 *****************************************************************************/
4951 static HRESULT WINAPI d3d7_CreateVertexBuffer(IDirect3D7 *iface, D3DVERTEXBUFFERDESC *desc,
4952 IDirect3DVertexBuffer7 **vertex_buffer, DWORD flags)
4954 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
4955 IDirect3DVertexBufferImpl *object;
4956 HRESULT hr;
4958 TRACE("iface %p, desc %p, vertex_buffer %p, flags %#x.\n",
4959 iface, desc, vertex_buffer, flags);
4961 if (!vertex_buffer || !desc) return DDERR_INVALIDPARAMS;
4963 hr = d3d_vertex_buffer_create(&object, This, desc);
4964 if (hr == D3D_OK)
4966 TRACE("Created vertex buffer %p.\n", object);
4967 *vertex_buffer = &object->IDirect3DVertexBuffer7_iface;
4969 else
4970 WARN("Failed to create vertex buffer, hr %#x.\n", hr);
4972 return hr;
4975 static HRESULT WINAPI d3d3_CreateVertexBuffer(IDirect3D3 *iface, D3DVERTEXBUFFERDESC *desc,
4976 IDirect3DVertexBuffer **vertex_buffer, DWORD flags, IUnknown *outer_unknown)
4978 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
4979 IDirect3DVertexBufferImpl *object;
4980 HRESULT hr;
4982 TRACE("iface %p, desc %p, vertex_buffer %p, flags %#x, outer_unknown %p.\n",
4983 iface, desc, vertex_buffer, flags, outer_unknown);
4985 if (outer_unknown)
4986 return CLASS_E_NOAGGREGATION;
4987 if (!vertex_buffer || !desc)
4988 return DDERR_INVALIDPARAMS;
4990 hr = d3d_vertex_buffer_create(&object, This, desc);
4991 if (hr == D3D_OK)
4993 TRACE("Created vertex buffer %p.\n", object);
4994 *vertex_buffer = &object->IDirect3DVertexBuffer_iface;
4996 else
4997 WARN("Failed to create vertex buffer, hr %#x.\n", hr);
4999 return hr;
5002 /*****************************************************************************
5003 * IDirect3D7::EnumZBufferFormats
5005 * Enumerates all supported Z buffer pixel formats
5007 * Version 3 and 7
5009 * Params:
5010 * device_iid:
5011 * callback: callback to call for each pixel format
5012 * context: Pointer to pass back to the callback
5014 * Returns:
5015 * D3D_OK on success
5016 * DDERR_INVALIDPARAMS if callback is NULL
5017 * For details, see IWineD3DDevice::EnumZBufferFormats
5019 *****************************************************************************/
5020 static HRESULT WINAPI d3d7_EnumZBufferFormats(IDirect3D7 *iface, REFCLSID device_iid,
5021 LPD3DENUMPIXELFORMATSCALLBACK callback, void *context)
5023 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
5024 WINED3DDISPLAYMODE d3ddm;
5025 WINED3DDEVTYPE type;
5026 unsigned int i;
5027 HRESULT hr;
5029 /* Order matters. Specifically, BattleZone II (full version) expects the
5030 * 16-bit depth formats to be listed before the 24 and 32 ones. */
5031 static const enum wined3d_format_id formats[] =
5033 WINED3DFMT_S1_UINT_D15_UNORM,
5034 WINED3DFMT_D16_UNORM,
5035 WINED3DFMT_X8D24_UNORM,
5036 WINED3DFMT_S4X4_UINT_D24_UNORM,
5037 WINED3DFMT_D24_UNORM_S8_UINT,
5038 WINED3DFMT_D32_UNORM,
5041 TRACE("iface %p, device_iid %s, callback %p, context %p.\n",
5042 iface, debugstr_guid(device_iid), callback, context);
5044 if (!callback) return DDERR_INVALIDPARAMS;
5046 if (IsEqualGUID(device_iid, &IID_IDirect3DHALDevice)
5047 || IsEqualGUID(device_iid, &IID_IDirect3DTnLHalDevice)
5048 || IsEqualGUID(device_iid, &IID_D3DDEVICE_WineD3D))
5050 TRACE("Asked for HAL device.\n");
5051 type = WINED3DDEVTYPE_HAL;
5053 else if (IsEqualGUID(device_iid, &IID_IDirect3DRGBDevice)
5054 || IsEqualGUID(device_iid, &IID_IDirect3DMMXDevice))
5056 TRACE("Asked for SW device.\n");
5057 type = WINED3DDEVTYPE_SW;
5059 else if (IsEqualGUID(device_iid, &IID_IDirect3DRefDevice))
5061 TRACE("Asked for REF device.\n");
5062 type = WINED3DDEVTYPE_REF;
5064 else if (IsEqualGUID(device_iid, &IID_IDirect3DNullDevice))
5066 TRACE("Asked for NULLREF device.\n");
5067 type = WINED3DDEVTYPE_NULLREF;
5069 else
5071 FIXME("Unexpected device GUID %s.\n", debugstr_guid(device_iid));
5072 type = WINED3DDEVTYPE_HAL;
5075 EnterCriticalSection(&ddraw_cs);
5076 /* We need an adapter format from somewhere to please wined3d and WGL.
5077 * Use the current display mode. So far all cards offer the same depth
5078 * stencil format for all modes, but if some do not and applications do
5079 * not like that we'll have to find some workaround, like iterating over
5080 * all imaginable formats and collecting all the depth stencil formats we
5081 * can get. */
5082 hr = wined3d_device_get_display_mode(This->wined3d_device, 0, &d3ddm);
5084 for (i = 0; i < (sizeof(formats) / sizeof(*formats)); ++i)
5086 hr = wined3d_check_device_format(This->wineD3D, WINED3DADAPTER_DEFAULT, type, d3ddm.Format,
5087 WINED3DUSAGE_DEPTHSTENCIL, WINED3DRTYPE_SURFACE, formats[i], SURFACE_OPENGL);
5088 if (SUCCEEDED(hr))
5090 DDPIXELFORMAT pformat;
5092 memset(&pformat, 0, sizeof(pformat));
5093 pformat.dwSize = sizeof(pformat);
5094 PixelFormat_WineD3DtoDD(&pformat, formats[i]);
5096 TRACE("Enumerating wined3d format %#x.\n", formats[i]);
5097 hr = callback(&pformat, context);
5098 if (hr != DDENUMRET_OK)
5100 TRACE("Format enumeration cancelled by application.\n");
5101 LeaveCriticalSection(&ddraw_cs);
5102 return D3D_OK;
5106 TRACE("End of enumeration.\n");
5108 LeaveCriticalSection(&ddraw_cs);
5109 return D3D_OK;
5112 static HRESULT WINAPI d3d3_EnumZBufferFormats(IDirect3D3 *iface, REFCLSID device_iid,
5113 LPD3DENUMPIXELFORMATSCALLBACK callback, void *context)
5115 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
5117 TRACE("iface %p, device_iid %s, callback %p, context %p.\n",
5118 iface, debugstr_guid(device_iid), callback, context);
5120 return d3d7_EnumZBufferFormats(&This->IDirect3D7_iface, device_iid, callback, context);
5123 /*****************************************************************************
5124 * IDirect3D7::EvictManagedTextures
5126 * Removes all managed textures (=surfaces with DDSCAPS2_TEXTUREMANAGE or
5127 * DDSCAPS2_D3DTEXTUREMANAGE caps) to be removed from video memory.
5129 * Version 3 and 7
5131 * Returns:
5132 * D3D_OK, because it's a stub
5134 *****************************************************************************/
5135 static HRESULT WINAPI d3d7_EvictManagedTextures(IDirect3D7 *iface)
5137 IDirectDrawImpl *This = impl_from_IDirect3D7(iface);
5138 HRESULT hr;
5139 TRACE("iface %p!\n", iface);
5141 EnterCriticalSection(&ddraw_cs);
5142 if (!This->d3d_initialized) hr = D3D_OK;
5143 else hr = wined3d_device_evict_managed_resources(This->wined3d_device);
5144 LeaveCriticalSection(&ddraw_cs);
5146 return hr;
5149 static HRESULT WINAPI d3d3_EvictManagedTextures(IDirect3D3 *iface)
5151 IDirectDrawImpl *This = impl_from_IDirect3D3(iface);
5153 TRACE("iface %p.\n", iface);
5155 return d3d7_EvictManagedTextures(&This->IDirect3D7_iface);
5158 /*****************************************************************************
5159 * IDirect3DImpl_GetCaps
5161 * This function retrieves the device caps from wined3d
5162 * and converts it into a D3D7 and D3D - D3D3 structure
5163 * This is a helper function called from various places in ddraw
5165 * Params:
5166 * wined3d: The interface to get the caps from
5167 * desc1: Old D3D <3 structure to fill (needed)
5168 * desc7: D3D7 device desc structure to fill (needed)
5170 * Returns
5171 * D3D_OK on success, or the return value of IWineD3D::GetCaps
5173 *****************************************************************************/
5174 HRESULT IDirect3DImpl_GetCaps(const struct wined3d *wined3d, D3DDEVICEDESC *desc1, D3DDEVICEDESC7 *desc7)
5176 WINED3DCAPS wined3d_caps;
5177 HRESULT hr;
5179 TRACE("wined3d %p, desc1 %p, desc7 %p.\n", wined3d, desc1, desc7);
5181 memset(&wined3d_caps, 0, sizeof(wined3d_caps));
5183 EnterCriticalSection(&ddraw_cs);
5184 hr = wined3d_get_device_caps(wined3d, 0, WINED3DDEVTYPE_HAL, &wined3d_caps);
5185 LeaveCriticalSection(&ddraw_cs);
5186 if (FAILED(hr))
5188 WARN("Failed to get device caps, hr %#x.\n", hr);
5189 return hr;
5192 /* Copy the results into the d3d7 and d3d3 structures */
5193 desc7->dwDevCaps = wined3d_caps.DevCaps;
5194 desc7->dpcLineCaps.dwMiscCaps = wined3d_caps.PrimitiveMiscCaps;
5195 desc7->dpcLineCaps.dwRasterCaps = wined3d_caps.RasterCaps;
5196 desc7->dpcLineCaps.dwZCmpCaps = wined3d_caps.ZCmpCaps;
5197 desc7->dpcLineCaps.dwSrcBlendCaps = wined3d_caps.SrcBlendCaps;
5198 desc7->dpcLineCaps.dwDestBlendCaps = wined3d_caps.DestBlendCaps;
5199 desc7->dpcLineCaps.dwAlphaCmpCaps = wined3d_caps.AlphaCmpCaps;
5200 desc7->dpcLineCaps.dwShadeCaps = wined3d_caps.ShadeCaps;
5201 desc7->dpcLineCaps.dwTextureCaps = wined3d_caps.TextureCaps;
5202 desc7->dpcLineCaps.dwTextureFilterCaps = wined3d_caps.TextureFilterCaps;
5203 desc7->dpcLineCaps.dwTextureAddressCaps = wined3d_caps.TextureAddressCaps;
5205 desc7->dwMaxTextureWidth = wined3d_caps.MaxTextureWidth;
5206 desc7->dwMaxTextureHeight = wined3d_caps.MaxTextureHeight;
5208 desc7->dwMaxTextureRepeat = wined3d_caps.MaxTextureRepeat;
5209 desc7->dwMaxTextureAspectRatio = wined3d_caps.MaxTextureAspectRatio;
5210 desc7->dwMaxAnisotropy = wined3d_caps.MaxAnisotropy;
5211 desc7->dvMaxVertexW = wined3d_caps.MaxVertexW;
5213 desc7->dvGuardBandLeft = wined3d_caps.GuardBandLeft;
5214 desc7->dvGuardBandTop = wined3d_caps.GuardBandTop;
5215 desc7->dvGuardBandRight = wined3d_caps.GuardBandRight;
5216 desc7->dvGuardBandBottom = wined3d_caps.GuardBandBottom;
5218 desc7->dvExtentsAdjust = wined3d_caps.ExtentsAdjust;
5219 desc7->dwStencilCaps = wined3d_caps.StencilCaps;
5221 desc7->dwFVFCaps = wined3d_caps.FVFCaps;
5222 desc7->dwTextureOpCaps = wined3d_caps.TextureOpCaps;
5224 desc7->dwVertexProcessingCaps = wined3d_caps.VertexProcessingCaps;
5225 desc7->dwMaxActiveLights = wined3d_caps.MaxActiveLights;
5227 /* Remove all non-d3d7 caps */
5228 desc7->dwDevCaps &= (
5229 D3DDEVCAPS_FLOATTLVERTEX | D3DDEVCAPS_SORTINCREASINGZ | D3DDEVCAPS_SORTDECREASINGZ |
5230 D3DDEVCAPS_SORTEXACT | D3DDEVCAPS_EXECUTESYSTEMMEMORY | D3DDEVCAPS_EXECUTEVIDEOMEMORY |
5231 D3DDEVCAPS_TLVERTEXSYSTEMMEMORY | D3DDEVCAPS_TLVERTEXVIDEOMEMORY | D3DDEVCAPS_TEXTURESYSTEMMEMORY |
5232 D3DDEVCAPS_TEXTUREVIDEOMEMORY | D3DDEVCAPS_DRAWPRIMTLVERTEX | D3DDEVCAPS_CANRENDERAFTERFLIP |
5233 D3DDEVCAPS_TEXTURENONLOCALVIDMEM | D3DDEVCAPS_DRAWPRIMITIVES2 | D3DDEVCAPS_SEPARATETEXTUREMEMORIES |
5234 D3DDEVCAPS_DRAWPRIMITIVES2EX | D3DDEVCAPS_HWTRANSFORMANDLIGHT | D3DDEVCAPS_CANBLTSYSTONONLOCAL |
5235 D3DDEVCAPS_HWRASTERIZATION);
5237 desc7->dwStencilCaps &= (
5238 D3DSTENCILCAPS_KEEP | D3DSTENCILCAPS_ZERO | D3DSTENCILCAPS_REPLACE |
5239 D3DSTENCILCAPS_INCRSAT | D3DSTENCILCAPS_DECRSAT | D3DSTENCILCAPS_INVERT |
5240 D3DSTENCILCAPS_INCR | D3DSTENCILCAPS_DECR);
5242 /* FVF caps ?*/
5244 desc7->dwTextureOpCaps &= (
5245 D3DTEXOPCAPS_DISABLE | D3DTEXOPCAPS_SELECTARG1 | D3DTEXOPCAPS_SELECTARG2 |
5246 D3DTEXOPCAPS_MODULATE | D3DTEXOPCAPS_MODULATE2X | D3DTEXOPCAPS_MODULATE4X |
5247 D3DTEXOPCAPS_ADD | D3DTEXOPCAPS_ADDSIGNED | D3DTEXOPCAPS_ADDSIGNED2X |
5248 D3DTEXOPCAPS_SUBTRACT | D3DTEXOPCAPS_ADDSMOOTH | D3DTEXOPCAPS_BLENDTEXTUREALPHA |
5249 D3DTEXOPCAPS_BLENDFACTORALPHA | D3DTEXOPCAPS_BLENDTEXTUREALPHAPM | D3DTEXOPCAPS_BLENDCURRENTALPHA |
5250 D3DTEXOPCAPS_PREMODULATE | D3DTEXOPCAPS_MODULATEALPHA_ADDCOLOR | D3DTEXOPCAPS_MODULATECOLOR_ADDALPHA |
5251 D3DTEXOPCAPS_MODULATEINVALPHA_ADDCOLOR | D3DTEXOPCAPS_MODULATEINVCOLOR_ADDALPHA | D3DTEXOPCAPS_BUMPENVMAP |
5252 D3DTEXOPCAPS_BUMPENVMAPLUMINANCE | D3DTEXOPCAPS_DOTPRODUCT3);
5254 desc7->dwVertexProcessingCaps &= (
5255 D3DVTXPCAPS_TEXGEN | D3DVTXPCAPS_MATERIALSOURCE7 | D3DVTXPCAPS_VERTEXFOG |
5256 D3DVTXPCAPS_DIRECTIONALLIGHTS | D3DVTXPCAPS_POSITIONALLIGHTS | D3DVTXPCAPS_LOCALVIEWER);
5258 desc7->dpcLineCaps.dwMiscCaps &= (
5259 D3DPMISCCAPS_MASKPLANES | D3DPMISCCAPS_MASKZ | D3DPMISCCAPS_LINEPATTERNREP |
5260 D3DPMISCCAPS_CONFORMANT | D3DPMISCCAPS_CULLNONE | D3DPMISCCAPS_CULLCW |
5261 D3DPMISCCAPS_CULLCCW);
5263 desc7->dpcLineCaps.dwRasterCaps &= (
5264 D3DPRASTERCAPS_DITHER | D3DPRASTERCAPS_ROP2 | D3DPRASTERCAPS_XOR |
5265 D3DPRASTERCAPS_PAT | D3DPRASTERCAPS_ZTEST | D3DPRASTERCAPS_SUBPIXEL |
5266 D3DPRASTERCAPS_SUBPIXELX | D3DPRASTERCAPS_FOGVERTEX | D3DPRASTERCAPS_FOGTABLE |
5267 D3DPRASTERCAPS_STIPPLE | D3DPRASTERCAPS_ANTIALIASSORTDEPENDENT | D3DPRASTERCAPS_ANTIALIASSORTINDEPENDENT |
5268 D3DPRASTERCAPS_ANTIALIASEDGES | D3DPRASTERCAPS_MIPMAPLODBIAS | D3DPRASTERCAPS_ZBIAS |
5269 D3DPRASTERCAPS_ZBUFFERLESSHSR | D3DPRASTERCAPS_FOGRANGE | D3DPRASTERCAPS_ANISOTROPY |
5270 D3DPRASTERCAPS_WBUFFER | D3DPRASTERCAPS_TRANSLUCENTSORTINDEPENDENT | D3DPRASTERCAPS_WFOG |
5271 D3DPRASTERCAPS_ZFOG);
5273 desc7->dpcLineCaps.dwZCmpCaps &= (
5274 D3DPCMPCAPS_NEVER | D3DPCMPCAPS_LESS | D3DPCMPCAPS_EQUAL |
5275 D3DPCMPCAPS_LESSEQUAL | D3DPCMPCAPS_GREATER | D3DPCMPCAPS_NOTEQUAL |
5276 D3DPCMPCAPS_GREATEREQUAL | D3DPCMPCAPS_ALWAYS);
5278 desc7->dpcLineCaps.dwSrcBlendCaps &= (
5279 D3DPBLENDCAPS_ZERO | D3DPBLENDCAPS_ONE | D3DPBLENDCAPS_SRCCOLOR |
5280 D3DPBLENDCAPS_INVSRCCOLOR | D3DPBLENDCAPS_SRCALPHA | D3DPBLENDCAPS_INVSRCALPHA |
5281 D3DPBLENDCAPS_DESTALPHA | D3DPBLENDCAPS_INVDESTALPHA | D3DPBLENDCAPS_DESTCOLOR |
5282 D3DPBLENDCAPS_INVDESTCOLOR | D3DPBLENDCAPS_SRCALPHASAT | D3DPBLENDCAPS_BOTHSRCALPHA |
5283 D3DPBLENDCAPS_BOTHINVSRCALPHA);
5285 desc7->dpcLineCaps.dwDestBlendCaps &= (
5286 D3DPBLENDCAPS_ZERO | D3DPBLENDCAPS_ONE | D3DPBLENDCAPS_SRCCOLOR |
5287 D3DPBLENDCAPS_INVSRCCOLOR | D3DPBLENDCAPS_SRCALPHA | D3DPBLENDCAPS_INVSRCALPHA |
5288 D3DPBLENDCAPS_DESTALPHA | D3DPBLENDCAPS_INVDESTALPHA | D3DPBLENDCAPS_DESTCOLOR |
5289 D3DPBLENDCAPS_INVDESTCOLOR | D3DPBLENDCAPS_SRCALPHASAT | D3DPBLENDCAPS_BOTHSRCALPHA |
5290 D3DPBLENDCAPS_BOTHINVSRCALPHA);
5292 desc7->dpcLineCaps.dwAlphaCmpCaps &= (
5293 D3DPCMPCAPS_NEVER | D3DPCMPCAPS_LESS | D3DPCMPCAPS_EQUAL |
5294 D3DPCMPCAPS_LESSEQUAL | D3DPCMPCAPS_GREATER | D3DPCMPCAPS_NOTEQUAL |
5295 D3DPCMPCAPS_GREATEREQUAL | D3DPCMPCAPS_ALWAYS);
5297 desc7->dpcLineCaps.dwShadeCaps &= (
5298 D3DPSHADECAPS_COLORFLATMONO | D3DPSHADECAPS_COLORFLATRGB | D3DPSHADECAPS_COLORGOURAUDMONO |
5299 D3DPSHADECAPS_COLORGOURAUDRGB | D3DPSHADECAPS_COLORPHONGMONO | D3DPSHADECAPS_COLORPHONGRGB |
5300 D3DPSHADECAPS_SPECULARFLATMONO | D3DPSHADECAPS_SPECULARFLATRGB | D3DPSHADECAPS_SPECULARGOURAUDMONO |
5301 D3DPSHADECAPS_SPECULARGOURAUDRGB | D3DPSHADECAPS_SPECULARPHONGMONO | D3DPSHADECAPS_SPECULARPHONGRGB |
5302 D3DPSHADECAPS_ALPHAFLATBLEND | D3DPSHADECAPS_ALPHAFLATSTIPPLED | D3DPSHADECAPS_ALPHAGOURAUDBLEND |
5303 D3DPSHADECAPS_ALPHAGOURAUDSTIPPLED | D3DPSHADECAPS_ALPHAPHONGBLEND | D3DPSHADECAPS_ALPHAPHONGSTIPPLED |
5304 D3DPSHADECAPS_FOGFLAT | D3DPSHADECAPS_FOGGOURAUD | D3DPSHADECAPS_FOGPHONG);
5306 desc7->dpcLineCaps.dwTextureCaps &= (
5307 D3DPTEXTURECAPS_PERSPECTIVE | D3DPTEXTURECAPS_POW2 | D3DPTEXTURECAPS_ALPHA |
5308 D3DPTEXTURECAPS_TRANSPARENCY | D3DPTEXTURECAPS_BORDER | D3DPTEXTURECAPS_SQUAREONLY |
5309 D3DPTEXTURECAPS_TEXREPEATNOTSCALEDBYSIZE | D3DPTEXTURECAPS_ALPHAPALETTE| D3DPTEXTURECAPS_NONPOW2CONDITIONAL |
5310 D3DPTEXTURECAPS_PROJECTED | D3DPTEXTURECAPS_CUBEMAP | D3DPTEXTURECAPS_COLORKEYBLEND);
5312 desc7->dpcLineCaps.dwTextureFilterCaps &= (
5313 D3DPTFILTERCAPS_NEAREST | D3DPTFILTERCAPS_LINEAR | D3DPTFILTERCAPS_MIPNEAREST |
5314 D3DPTFILTERCAPS_MIPLINEAR | D3DPTFILTERCAPS_LINEARMIPNEAREST | D3DPTFILTERCAPS_LINEARMIPLINEAR |
5315 D3DPTFILTERCAPS_MINFPOINT | D3DPTFILTERCAPS_MINFLINEAR | D3DPTFILTERCAPS_MINFANISOTROPIC |
5316 D3DPTFILTERCAPS_MIPFPOINT | D3DPTFILTERCAPS_MIPFLINEAR | D3DPTFILTERCAPS_MAGFPOINT |
5317 D3DPTFILTERCAPS_MAGFLINEAR | D3DPTFILTERCAPS_MAGFANISOTROPIC | D3DPTFILTERCAPS_MAGFAFLATCUBIC |
5318 D3DPTFILTERCAPS_MAGFGAUSSIANCUBIC);
5320 desc7->dpcLineCaps.dwTextureBlendCaps &= (
5321 D3DPTBLENDCAPS_DECAL | D3DPTBLENDCAPS_MODULATE | D3DPTBLENDCAPS_DECALALPHA |
5322 D3DPTBLENDCAPS_MODULATEALPHA | D3DPTBLENDCAPS_DECALMASK | D3DPTBLENDCAPS_MODULATEMASK |
5323 D3DPTBLENDCAPS_COPY | D3DPTBLENDCAPS_ADD);
5325 desc7->dpcLineCaps.dwTextureAddressCaps &= (
5326 D3DPTADDRESSCAPS_WRAP | D3DPTADDRESSCAPS_MIRROR | D3DPTADDRESSCAPS_CLAMP |
5327 D3DPTADDRESSCAPS_BORDER | D3DPTADDRESSCAPS_INDEPENDENTUV);
5329 if (!(desc7->dpcLineCaps.dwTextureCaps & D3DPTEXTURECAPS_POW2))
5331 /* DirectX7 always has the np2 flag set, no matter what the card
5332 * supports. Some old games (Rollcage) check the caps incorrectly.
5333 * If wined3d supports nonpow2 textures it also has np2 conditional
5334 * support. */
5335 desc7->dpcLineCaps.dwTextureCaps |= D3DPTEXTURECAPS_POW2 | D3DPTEXTURECAPS_NONPOW2CONDITIONAL;
5338 /* Fill the missing members, and do some fixup */
5339 desc7->dpcLineCaps.dwSize = sizeof(desc7->dpcLineCaps);
5340 desc7->dpcLineCaps.dwTextureBlendCaps = D3DPTBLENDCAPS_ADD | D3DPTBLENDCAPS_MODULATEMASK |
5341 D3DPTBLENDCAPS_COPY | D3DPTBLENDCAPS_DECAL |
5342 D3DPTBLENDCAPS_DECALALPHA | D3DPTBLENDCAPS_DECALMASK |
5343 D3DPTBLENDCAPS_MODULATE | D3DPTBLENDCAPS_MODULATEALPHA;
5344 desc7->dpcLineCaps.dwStippleWidth = 32;
5345 desc7->dpcLineCaps.dwStippleHeight = 32;
5346 /* Use the same for the TriCaps */
5347 desc7->dpcTriCaps = desc7->dpcLineCaps;
5349 desc7->dwDeviceRenderBitDepth = DDBD_16 | DDBD_24 | DDBD_32;
5350 desc7->dwDeviceZBufferBitDepth = DDBD_16 | DDBD_24;
5351 desc7->dwMinTextureWidth = 1;
5352 desc7->dwMinTextureHeight = 1;
5354 /* Convert DWORDs safely to WORDs */
5355 if (wined3d_caps.MaxTextureBlendStages > 0xffff) desc7->wMaxTextureBlendStages = 0xffff;
5356 else desc7->wMaxTextureBlendStages = (WORD)wined3d_caps.MaxTextureBlendStages;
5357 if (wined3d_caps.MaxSimultaneousTextures > 0xffff) desc7->wMaxSimultaneousTextures = 0xffff;
5358 else desc7->wMaxSimultaneousTextures = (WORD)wined3d_caps.MaxSimultaneousTextures;
5360 if (wined3d_caps.MaxUserClipPlanes > 0xffff) desc7->wMaxUserClipPlanes = 0xffff;
5361 else desc7->wMaxUserClipPlanes = (WORD)wined3d_caps.MaxUserClipPlanes;
5362 if (wined3d_caps.MaxVertexBlendMatrices > 0xffff) desc7->wMaxVertexBlendMatrices = 0xffff;
5363 else desc7->wMaxVertexBlendMatrices = (WORD)wined3d_caps.MaxVertexBlendMatrices;
5365 desc7->deviceGUID = IID_IDirect3DTnLHalDevice;
5367 desc7->dwReserved1 = 0;
5368 desc7->dwReserved2 = 0;
5369 desc7->dwReserved3 = 0;
5370 desc7->dwReserved4 = 0;
5372 /* Fill the old structure */
5373 memset(desc1, 0, sizeof(*desc1));
5374 desc1->dwSize = sizeof(D3DDEVICEDESC);
5375 desc1->dwFlags = D3DDD_COLORMODEL
5376 | D3DDD_DEVCAPS
5377 | D3DDD_TRANSFORMCAPS
5378 | D3DDD_BCLIPPING
5379 | D3DDD_LIGHTINGCAPS
5380 | D3DDD_LINECAPS
5381 | D3DDD_TRICAPS
5382 | D3DDD_DEVICERENDERBITDEPTH
5383 | D3DDD_DEVICEZBUFFERBITDEPTH
5384 | D3DDD_MAXBUFFERSIZE
5385 | D3DDD_MAXVERTEXCOUNT;
5387 desc1->dcmColorModel = D3DCOLOR_RGB;
5388 desc1->dwDevCaps = desc7->dwDevCaps;
5389 desc1->dtcTransformCaps.dwSize = sizeof(D3DTRANSFORMCAPS);
5390 desc1->dtcTransformCaps.dwCaps = D3DTRANSFORMCAPS_CLIP;
5391 desc1->bClipping = TRUE;
5392 desc1->dlcLightingCaps.dwSize = sizeof(D3DLIGHTINGCAPS);
5393 desc1->dlcLightingCaps.dwCaps = D3DLIGHTCAPS_DIRECTIONAL
5394 | D3DLIGHTCAPS_PARALLELPOINT
5395 | D3DLIGHTCAPS_POINT
5396 | D3DLIGHTCAPS_SPOT;
5398 desc1->dlcLightingCaps.dwLightingModel = D3DLIGHTINGMODEL_RGB;
5399 desc1->dlcLightingCaps.dwNumLights = desc7->dwMaxActiveLights;
5401 desc1->dpcLineCaps.dwSize = sizeof(D3DPRIMCAPS);
5402 desc1->dpcLineCaps.dwMiscCaps = desc7->dpcLineCaps.dwMiscCaps;
5403 desc1->dpcLineCaps.dwRasterCaps = desc7->dpcLineCaps.dwRasterCaps;
5404 desc1->dpcLineCaps.dwZCmpCaps = desc7->dpcLineCaps.dwZCmpCaps;
5405 desc1->dpcLineCaps.dwSrcBlendCaps = desc7->dpcLineCaps.dwSrcBlendCaps;
5406 desc1->dpcLineCaps.dwDestBlendCaps = desc7->dpcLineCaps.dwDestBlendCaps;
5407 desc1->dpcLineCaps.dwShadeCaps = desc7->dpcLineCaps.dwShadeCaps;
5408 desc1->dpcLineCaps.dwTextureCaps = desc7->dpcLineCaps.dwTextureCaps;
5409 desc1->dpcLineCaps.dwTextureFilterCaps = desc7->dpcLineCaps.dwTextureFilterCaps;
5410 desc1->dpcLineCaps.dwTextureBlendCaps = desc7->dpcLineCaps.dwTextureBlendCaps;
5411 desc1->dpcLineCaps.dwTextureAddressCaps = desc7->dpcLineCaps.dwTextureAddressCaps;
5412 desc1->dpcLineCaps.dwStippleWidth = desc7->dpcLineCaps.dwStippleWidth;
5413 desc1->dpcLineCaps.dwAlphaCmpCaps = desc7->dpcLineCaps.dwAlphaCmpCaps;
5415 desc1->dpcTriCaps.dwSize = sizeof(D3DPRIMCAPS);
5416 desc1->dpcTriCaps.dwMiscCaps = desc7->dpcTriCaps.dwMiscCaps;
5417 desc1->dpcTriCaps.dwRasterCaps = desc7->dpcTriCaps.dwRasterCaps;
5418 desc1->dpcTriCaps.dwZCmpCaps = desc7->dpcTriCaps.dwZCmpCaps;
5419 desc1->dpcTriCaps.dwSrcBlendCaps = desc7->dpcTriCaps.dwSrcBlendCaps;
5420 desc1->dpcTriCaps.dwDestBlendCaps = desc7->dpcTriCaps.dwDestBlendCaps;
5421 desc1->dpcTriCaps.dwShadeCaps = desc7->dpcTriCaps.dwShadeCaps;
5422 desc1->dpcTriCaps.dwTextureCaps = desc7->dpcTriCaps.dwTextureCaps;
5423 desc1->dpcTriCaps.dwTextureFilterCaps = desc7->dpcTriCaps.dwTextureFilterCaps;
5424 desc1->dpcTriCaps.dwTextureBlendCaps = desc7->dpcTriCaps.dwTextureBlendCaps;
5425 desc1->dpcTriCaps.dwTextureAddressCaps = desc7->dpcTriCaps.dwTextureAddressCaps;
5426 desc1->dpcTriCaps.dwStippleWidth = desc7->dpcTriCaps.dwStippleWidth;
5427 desc1->dpcTriCaps.dwAlphaCmpCaps = desc7->dpcTriCaps.dwAlphaCmpCaps;
5429 desc1->dwDeviceRenderBitDepth = desc7->dwDeviceRenderBitDepth;
5430 desc1->dwDeviceZBufferBitDepth = desc7->dwDeviceZBufferBitDepth;
5431 desc1->dwMaxBufferSize = 0;
5432 desc1->dwMaxVertexCount = 65536;
5433 desc1->dwMinTextureWidth = desc7->dwMinTextureWidth;
5434 desc1->dwMinTextureHeight = desc7->dwMinTextureHeight;
5435 desc1->dwMaxTextureWidth = desc7->dwMaxTextureWidth;
5436 desc1->dwMaxTextureHeight = desc7->dwMaxTextureHeight;
5437 desc1->dwMinStippleWidth = 1;
5438 desc1->dwMinStippleHeight = 1;
5439 desc1->dwMaxStippleWidth = 32;
5440 desc1->dwMaxStippleHeight = 32;
5441 desc1->dwMaxTextureRepeat = desc7->dwMaxTextureRepeat;
5442 desc1->dwMaxTextureAspectRatio = desc7->dwMaxTextureAspectRatio;
5443 desc1->dwMaxAnisotropy = desc7->dwMaxAnisotropy;
5444 desc1->dvGuardBandLeft = desc7->dvGuardBandLeft;
5445 desc1->dvGuardBandRight = desc7->dvGuardBandRight;
5446 desc1->dvGuardBandTop = desc7->dvGuardBandTop;
5447 desc1->dvGuardBandBottom = desc7->dvGuardBandBottom;
5448 desc1->dvExtentsAdjust = desc7->dvExtentsAdjust;
5449 desc1->dwStencilCaps = desc7->dwStencilCaps;
5450 desc1->dwFVFCaps = desc7->dwFVFCaps;
5451 desc1->dwTextureOpCaps = desc7->dwTextureOpCaps;
5452 desc1->wMaxTextureBlendStages = desc7->wMaxTextureBlendStages;
5453 desc1->wMaxSimultaneousTextures = desc7->wMaxSimultaneousTextures;
5455 return DD_OK;
5458 /*****************************************************************************
5459 * IDirectDraw7 VTable
5460 *****************************************************************************/
5461 static const struct IDirectDraw7Vtbl ddraw7_vtbl =
5463 /* IUnknown */
5464 ddraw7_QueryInterface,
5465 ddraw7_AddRef,
5466 ddraw7_Release,
5467 /* IDirectDraw */
5468 ddraw7_Compact,
5469 ddraw7_CreateClipper,
5470 ddraw7_CreatePalette,
5471 ddraw7_CreateSurface,
5472 ddraw7_DuplicateSurface,
5473 ddraw7_EnumDisplayModes,
5474 ddraw7_EnumSurfaces,
5475 ddraw7_FlipToGDISurface,
5476 ddraw7_GetCaps,
5477 ddraw7_GetDisplayMode,
5478 ddraw7_GetFourCCCodes,
5479 ddraw7_GetGDISurface,
5480 ddraw7_GetMonitorFrequency,
5481 ddraw7_GetScanLine,
5482 ddraw7_GetVerticalBlankStatus,
5483 ddraw7_Initialize,
5484 ddraw7_RestoreDisplayMode,
5485 ddraw7_SetCooperativeLevel,
5486 ddraw7_SetDisplayMode,
5487 ddraw7_WaitForVerticalBlank,
5488 /* IDirectDraw2 */
5489 ddraw7_GetAvailableVidMem,
5490 /* IDirectDraw3 */
5491 ddraw7_GetSurfaceFromDC,
5492 /* IDirectDraw4 */
5493 ddraw7_RestoreAllSurfaces,
5494 ddraw7_TestCooperativeLevel,
5495 ddraw7_GetDeviceIdentifier,
5496 /* IDirectDraw7 */
5497 ddraw7_StartModeTest,
5498 ddraw7_EvaluateMode
5501 static const struct IDirectDraw4Vtbl ddraw4_vtbl =
5503 /* IUnknown */
5504 ddraw4_QueryInterface,
5505 ddraw4_AddRef,
5506 ddraw4_Release,
5507 /* IDirectDraw */
5508 ddraw4_Compact,
5509 ddraw4_CreateClipper,
5510 ddraw4_CreatePalette,
5511 ddraw4_CreateSurface,
5512 ddraw4_DuplicateSurface,
5513 ddraw4_EnumDisplayModes,
5514 ddraw4_EnumSurfaces,
5515 ddraw4_FlipToGDISurface,
5516 ddraw4_GetCaps,
5517 ddraw4_GetDisplayMode,
5518 ddraw4_GetFourCCCodes,
5519 ddraw4_GetGDISurface,
5520 ddraw4_GetMonitorFrequency,
5521 ddraw4_GetScanLine,
5522 ddraw4_GetVerticalBlankStatus,
5523 ddraw4_Initialize,
5524 ddraw4_RestoreDisplayMode,
5525 ddraw4_SetCooperativeLevel,
5526 ddraw4_SetDisplayMode,
5527 ddraw4_WaitForVerticalBlank,
5528 /* IDirectDraw2 */
5529 ddraw4_GetAvailableVidMem,
5530 /* IDirectDraw3 */
5531 ddraw4_GetSurfaceFromDC,
5532 /* IDirectDraw4 */
5533 ddraw4_RestoreAllSurfaces,
5534 ddraw4_TestCooperativeLevel,
5535 ddraw4_GetDeviceIdentifier,
5538 static const struct IDirectDraw3Vtbl ddraw3_vtbl =
5540 /* IUnknown */
5541 ddraw3_QueryInterface,
5542 ddraw3_AddRef,
5543 ddraw3_Release,
5544 /* IDirectDraw */
5545 ddraw3_Compact,
5546 ddraw3_CreateClipper,
5547 ddraw3_CreatePalette,
5548 ddraw3_CreateSurface,
5549 ddraw3_DuplicateSurface,
5550 ddraw3_EnumDisplayModes,
5551 ddraw3_EnumSurfaces,
5552 ddraw3_FlipToGDISurface,
5553 ddraw3_GetCaps,
5554 ddraw3_GetDisplayMode,
5555 ddraw3_GetFourCCCodes,
5556 ddraw3_GetGDISurface,
5557 ddraw3_GetMonitorFrequency,
5558 ddraw3_GetScanLine,
5559 ddraw3_GetVerticalBlankStatus,
5560 ddraw3_Initialize,
5561 ddraw3_RestoreDisplayMode,
5562 ddraw3_SetCooperativeLevel,
5563 ddraw3_SetDisplayMode,
5564 ddraw3_WaitForVerticalBlank,
5565 /* IDirectDraw2 */
5566 ddraw3_GetAvailableVidMem,
5567 /* IDirectDraw3 */
5568 ddraw3_GetSurfaceFromDC,
5571 static const struct IDirectDraw2Vtbl ddraw2_vtbl =
5573 /* IUnknown */
5574 ddraw2_QueryInterface,
5575 ddraw2_AddRef,
5576 ddraw2_Release,
5577 /* IDirectDraw */
5578 ddraw2_Compact,
5579 ddraw2_CreateClipper,
5580 ddraw2_CreatePalette,
5581 ddraw2_CreateSurface,
5582 ddraw2_DuplicateSurface,
5583 ddraw2_EnumDisplayModes,
5584 ddraw2_EnumSurfaces,
5585 ddraw2_FlipToGDISurface,
5586 ddraw2_GetCaps,
5587 ddraw2_GetDisplayMode,
5588 ddraw2_GetFourCCCodes,
5589 ddraw2_GetGDISurface,
5590 ddraw2_GetMonitorFrequency,
5591 ddraw2_GetScanLine,
5592 ddraw2_GetVerticalBlankStatus,
5593 ddraw2_Initialize,
5594 ddraw2_RestoreDisplayMode,
5595 ddraw2_SetCooperativeLevel,
5596 ddraw2_SetDisplayMode,
5597 ddraw2_WaitForVerticalBlank,
5598 /* IDirectDraw2 */
5599 ddraw2_GetAvailableVidMem,
5602 static const struct IDirectDrawVtbl ddraw1_vtbl =
5604 /* IUnknown */
5605 ddraw1_QueryInterface,
5606 ddraw1_AddRef,
5607 ddraw1_Release,
5608 /* IDirectDraw */
5609 ddraw1_Compact,
5610 ddraw1_CreateClipper,
5611 ddraw1_CreatePalette,
5612 ddraw1_CreateSurface,
5613 ddraw1_DuplicateSurface,
5614 ddraw1_EnumDisplayModes,
5615 ddraw1_EnumSurfaces,
5616 ddraw1_FlipToGDISurface,
5617 ddraw1_GetCaps,
5618 ddraw1_GetDisplayMode,
5619 ddraw1_GetFourCCCodes,
5620 ddraw1_GetGDISurface,
5621 ddraw1_GetMonitorFrequency,
5622 ddraw1_GetScanLine,
5623 ddraw1_GetVerticalBlankStatus,
5624 ddraw1_Initialize,
5625 ddraw1_RestoreDisplayMode,
5626 ddraw1_SetCooperativeLevel,
5627 ddraw1_SetDisplayMode,
5628 ddraw1_WaitForVerticalBlank,
5631 static const struct IDirect3D7Vtbl d3d7_vtbl =
5633 /* IUnknown methods */
5634 d3d7_QueryInterface,
5635 d3d7_AddRef,
5636 d3d7_Release,
5637 /* IDirect3D7 methods */
5638 d3d7_EnumDevices,
5639 d3d7_CreateDevice,
5640 d3d7_CreateVertexBuffer,
5641 d3d7_EnumZBufferFormats,
5642 d3d7_EvictManagedTextures
5645 static const struct IDirect3D3Vtbl d3d3_vtbl =
5647 /* IUnknown methods */
5648 d3d3_QueryInterface,
5649 d3d3_AddRef,
5650 d3d3_Release,
5651 /* IDirect3D3 methods */
5652 d3d3_EnumDevices,
5653 d3d3_CreateLight,
5654 d3d3_CreateMaterial,
5655 d3d3_CreateViewport,
5656 d3d3_FindDevice,
5657 d3d3_CreateDevice,
5658 d3d3_CreateVertexBuffer,
5659 d3d3_EnumZBufferFormats,
5660 d3d3_EvictManagedTextures
5663 static const struct IDirect3D2Vtbl d3d2_vtbl =
5665 /* IUnknown methods */
5666 d3d2_QueryInterface,
5667 d3d2_AddRef,
5668 d3d2_Release,
5669 /* IDirect3D2 methods */
5670 d3d2_EnumDevices,
5671 d3d2_CreateLight,
5672 d3d2_CreateMaterial,
5673 d3d2_CreateViewport,
5674 d3d2_FindDevice,
5675 d3d2_CreateDevice
5678 static const struct IDirect3DVtbl d3d1_vtbl =
5680 /* IUnknown methods */
5681 d3d1_QueryInterface,
5682 d3d1_AddRef,
5683 d3d1_Release,
5684 /* IDirect3D methods */
5685 d3d1_Initialize,
5686 d3d1_EnumDevices,
5687 d3d1_CreateLight,
5688 d3d1_CreateMaterial,
5689 d3d1_CreateViewport,
5690 d3d1_FindDevice
5693 /*****************************************************************************
5694 * ddraw_find_decl
5696 * Finds the WineD3D vertex declaration for a specific fvf, and creates one
5697 * if none was found.
5699 * This function is in ddraw.c and the DDraw object space because D3D7
5700 * vertex buffers are created using the IDirect3D interface to the ddraw
5701 * object, so they can be valid across D3D devices(theoretically. The ddraw
5702 * object also owns the wined3d device
5704 * Parameters:
5705 * This: Device
5706 * fvf: Fvf to find the decl for
5708 * Returns:
5709 * NULL in case of an error, the vertex declaration for the FVF otherwise.
5711 *****************************************************************************/
5712 struct wined3d_vertex_declaration *ddraw_find_decl(IDirectDrawImpl *This, DWORD fvf)
5714 struct wined3d_vertex_declaration *pDecl = NULL;
5715 HRESULT hr;
5716 int p, low, high; /* deliberately signed */
5717 struct FvfToDecl *convertedDecls = This->decls;
5719 TRACE("Searching for declaration for fvf %08x... ", fvf);
5721 low = 0;
5722 high = This->numConvertedDecls - 1;
5723 while(low <= high) {
5724 p = (low + high) >> 1;
5725 TRACE("%d ", p);
5726 if(convertedDecls[p].fvf == fvf) {
5727 TRACE("found %p\n", convertedDecls[p].decl);
5728 return convertedDecls[p].decl;
5729 } else if(convertedDecls[p].fvf < fvf) {
5730 low = p + 1;
5731 } else {
5732 high = p - 1;
5735 TRACE("not found. Creating and inserting at position %d.\n", low);
5737 hr = wined3d_vertex_declaration_create_from_fvf(This->wined3d_device,
5738 fvf, This, &ddraw_null_wined3d_parent_ops, &pDecl);
5739 if (hr != S_OK) return NULL;
5741 if(This->declArraySize == This->numConvertedDecls) {
5742 int grow = max(This->declArraySize / 2, 8);
5743 convertedDecls = HeapReAlloc(GetProcessHeap(), 0, convertedDecls,
5744 sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
5745 if (!convertedDecls)
5747 wined3d_vertex_declaration_decref(pDecl);
5748 return NULL;
5750 This->decls = convertedDecls;
5751 This->declArraySize += grow;
5754 memmove(convertedDecls + low + 1, convertedDecls + low, sizeof(convertedDecls[0]) * (This->numConvertedDecls - low));
5755 convertedDecls[low].decl = pDecl;
5756 convertedDecls[low].fvf = fvf;
5757 This->numConvertedDecls++;
5759 TRACE("Returning %p. %d decls in array\n", pDecl, This->numConvertedDecls);
5760 return pDecl;
5763 static inline struct IDirectDrawImpl *ddraw_from_device_parent(struct wined3d_device_parent *device_parent)
5765 return CONTAINING_RECORD(device_parent, struct IDirectDrawImpl, device_parent);
5768 static void CDECL device_parent_wined3d_device_created(struct wined3d_device_parent *device_parent,
5769 struct wined3d_device *device)
5771 TRACE("device_parent %p, device %p.\n", device_parent, device);
5774 static HRESULT CDECL device_parent_create_surface(struct wined3d_device_parent *device_parent,
5775 void *container_parent, UINT width, UINT height, enum wined3d_format_id format, DWORD usage,
5776 WINED3DPOOL pool, UINT level, WINED3DCUBEMAP_FACES face, struct wined3d_surface **surface)
5778 struct IDirectDrawImpl *ddraw = ddraw_from_device_parent(device_parent);
5779 IDirectDrawSurfaceImpl *surf = NULL;
5780 UINT i = 0;
5781 DDSCAPS2 searchcaps = ddraw->tex_root->surface_desc.ddsCaps;
5783 TRACE("device_parent %p, container_parent %p, width %u, height %u, format %#x, usage %#x,\n"
5784 "\tpool %#x, level %u, face %u, surface %p.\n",
5785 device_parent, container_parent, width, height, format, usage, pool, level, face, surface);
5787 searchcaps.dwCaps2 &= ~DDSCAPS2_CUBEMAP_ALLFACES;
5788 switch(face)
5790 case WINED3DCUBEMAP_FACE_POSITIVE_X:
5791 TRACE("Asked for positive x\n");
5792 if (searchcaps.dwCaps2 & DDSCAPS2_CUBEMAP)
5794 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEX;
5796 surf = ddraw->tex_root; break;
5797 case WINED3DCUBEMAP_FACE_NEGATIVE_X:
5798 TRACE("Asked for negative x\n");
5799 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEX; break;
5800 case WINED3DCUBEMAP_FACE_POSITIVE_Y:
5801 TRACE("Asked for positive y\n");
5802 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEY; break;
5803 case WINED3DCUBEMAP_FACE_NEGATIVE_Y:
5804 TRACE("Asked for negative y\n");
5805 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEY; break;
5806 case WINED3DCUBEMAP_FACE_POSITIVE_Z:
5807 TRACE("Asked for positive z\n");
5808 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_POSITIVEZ; break;
5809 case WINED3DCUBEMAP_FACE_NEGATIVE_Z:
5810 TRACE("Asked for negative z\n");
5811 searchcaps.dwCaps2 |= DDSCAPS2_CUBEMAP_NEGATIVEZ; break;
5812 default: {ERR("Unexpected cube face\n");} /* Stupid compiler */
5815 if (!surf)
5817 IDirectDrawSurface7 *attached;
5818 IDirectDrawSurface7_GetAttachedSurface(&ddraw->tex_root->IDirectDrawSurface7_iface, &searchcaps, &attached);
5819 surf = unsafe_impl_from_IDirectDrawSurface7(attached);
5820 IDirectDrawSurface7_Release(attached);
5822 if (!surf) ERR("root search surface not found\n");
5824 /* Find the wanted mipmap. There are enough mipmaps in the chain */
5825 while (i < level)
5827 IDirectDrawSurface7 *attached;
5828 IDirectDrawSurface7_GetAttachedSurface(&surf->IDirectDrawSurface7_iface, &searchcaps, &attached);
5829 if(!attached) ERR("Surface not found\n");
5830 surf = impl_from_IDirectDrawSurface7(attached);
5831 IDirectDrawSurface7_Release(attached);
5832 ++i;
5835 /* Return the surface */
5836 *surface = surf->wined3d_surface;
5837 wined3d_surface_incref(*surface);
5839 TRACE("Returning wineD3DSurface %p, it belongs to surface %p\n", *surface, surf);
5841 return D3D_OK;
5844 static HRESULT WINAPI findRenderTarget(IDirectDrawSurface7 *surface, DDSURFACEDESC2 *surface_desc, void *ctx)
5846 IDirectDrawSurfaceImpl *s = impl_from_IDirectDrawSurface7(surface);
5847 IDirectDrawSurfaceImpl **target = ctx;
5849 if (!s->isRenderTarget)
5851 *target = s;
5852 IDirectDrawSurface7_Release(surface);
5853 return DDENUMRET_CANCEL;
5856 /* Recurse into the surface tree */
5857 IDirectDrawSurface7_EnumAttachedSurfaces(surface, ctx, findRenderTarget);
5859 IDirectDrawSurface7_Release(surface);
5860 if (*target) return DDENUMRET_CANCEL;
5862 return DDENUMRET_OK;
5865 static HRESULT CDECL device_parent_create_rendertarget(struct wined3d_device_parent *device_parent,
5866 void *container_parent, UINT width, UINT height, enum wined3d_format_id format,
5867 WINED3DMULTISAMPLE_TYPE multisample_type, DWORD multisample_quality, BOOL lockable,
5868 struct wined3d_surface **surface)
5870 struct IDirectDrawImpl *ddraw = ddraw_from_device_parent(device_parent);
5871 IDirectDrawSurfaceImpl *d3d_surface = ddraw->d3d_target;
5872 IDirectDrawSurfaceImpl *target = NULL;
5874 TRACE("device_parent %p, container_parent %p, width %u, height %u, format %#x, multisample_type %#x,\n"
5875 "\tmultisample_quality %u, lockable %u, surface %p.\n",
5876 device_parent, container_parent, width, height, format, multisample_type,
5877 multisample_quality, lockable, surface);
5879 if (d3d_surface->isRenderTarget)
5881 IDirectDrawSurface7_EnumAttachedSurfaces(&d3d_surface->IDirectDrawSurface7_iface, &target, findRenderTarget);
5883 else
5885 target = d3d_surface;
5888 if (!target)
5890 target = ddraw->d3d_target;
5891 ERR(" (%p) : No DirectDrawSurface found to create the back buffer. Using the front buffer as back buffer. Uncertain consequences\n", ddraw);
5894 /* TODO: Return failure if the dimensions do not match, but this shouldn't happen */
5896 *surface = target->wined3d_surface;
5897 wined3d_surface_incref(*surface);
5898 target->isRenderTarget = TRUE;
5900 TRACE("Returning wineD3DSurface %p, it belongs to surface %p\n", *surface, d3d_surface);
5902 return D3D_OK;
5905 static HRESULT CDECL device_parent_create_depth_stencil(struct wined3d_device_parent *device_parent,
5906 UINT width, UINT height, enum wined3d_format_id format, WINED3DMULTISAMPLE_TYPE multisample_type,
5907 DWORD multisample_quality, BOOL discard, struct wined3d_surface **surface)
5909 struct IDirectDrawImpl *ddraw = ddraw_from_device_parent(device_parent);
5910 IDirectDrawSurface7 *ddraw7;
5911 IDirectDrawSurfaceImpl *ddraw_surface;
5912 DDSURFACEDESC2 ddsd;
5913 HRESULT hr;
5915 TRACE("device_parent %p, width %u, height %u, format %#x, multisample_type %#x,\n"
5916 "\tmultisample_quality %u, discard %u, surface %p.\n",
5917 device_parent, width, height, format, multisample_type, multisample_quality, discard, surface);
5919 *surface = NULL;
5921 /* Create a DirectDraw surface */
5922 memset(&ddsd, 0, sizeof(ddsd));
5923 ddsd.dwSize = sizeof(ddsd);
5924 ddsd.u4.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT);
5925 ddsd.dwFlags = DDSD_PIXELFORMAT | DDSD_WIDTH | DDSD_HEIGHT | DDSD_CAPS;
5926 ddsd.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN;
5927 ddsd.dwHeight = height;
5928 ddsd.dwWidth = width;
5929 if (format)
5931 PixelFormat_WineD3DtoDD(&ddsd.u4.ddpfPixelFormat, format);
5933 else
5935 ddsd.dwFlags ^= DDSD_PIXELFORMAT;
5938 ddraw->depthstencil = TRUE;
5939 hr = IDirectDraw7_CreateSurface(&ddraw->IDirectDraw7_iface, &ddsd, &ddraw7, NULL);
5940 ddraw->depthstencil = FALSE;
5941 if (FAILED(hr))
5943 WARN("Failed to create depth/stencil surface, hr %#x.\n", hr);
5944 return hr;
5947 ddraw_surface = impl_from_IDirectDrawSurface7(ddraw7);
5948 *surface = ddraw_surface->wined3d_surface;
5949 wined3d_surface_incref(*surface);
5950 IDirectDrawSurface7_Release(&ddraw_surface->IDirectDrawSurface7_iface);
5952 return D3D_OK;
5955 static HRESULT CDECL device_parent_create_volume(struct wined3d_device_parent *device_parent,
5956 void *container_parent, UINT width, UINT height, UINT depth, enum wined3d_format_id format,
5957 WINED3DPOOL pool, DWORD usage, struct wined3d_volume **volume)
5959 TRACE("device_parent %p, container_parent %p, width %u, height %u, depth %u, "
5960 "format %#x, pool %#x, usage %#x, volume %p.\n",
5961 device_parent, container_parent, width, height, depth,
5962 format, pool, usage, volume);
5964 ERR("Not implemented!\n");
5966 return E_NOTIMPL;
5969 static HRESULT CDECL device_parent_create_swapchain(struct wined3d_device_parent *device_parent,
5970 WINED3DPRESENT_PARAMETERS *present_parameters, struct wined3d_swapchain **swapchain)
5972 struct IDirectDrawImpl *ddraw = ddraw_from_device_parent(device_parent);
5973 IDirectDrawSurfaceImpl *iterator;
5974 HRESULT hr;
5976 TRACE("device_parent %p, present_parameters %p, swapchain %p.\n", device_parent, present_parameters, swapchain);
5978 hr = wined3d_swapchain_create(ddraw->wined3d_device, present_parameters,
5979 ddraw->ImplType, NULL, &ddraw_null_wined3d_parent_ops, swapchain);
5980 if (FAILED(hr))
5982 WARN("Failed to create swapchain, hr %#x.\n", hr);
5983 *swapchain = NULL;
5984 return hr;
5987 ddraw->d3d_target->wined3d_swapchain = *swapchain;
5988 iterator = ddraw->d3d_target->complex_array[0];
5989 while (iterator)
5991 iterator->wined3d_swapchain = *swapchain;
5992 iterator = iterator->complex_array[0];
5995 return hr;
5998 static const struct wined3d_device_parent_ops ddraw_wined3d_device_parent_ops =
6000 device_parent_wined3d_device_created,
6001 device_parent_create_surface,
6002 device_parent_create_rendertarget,
6003 device_parent_create_depth_stencil,
6004 device_parent_create_volume,
6005 device_parent_create_swapchain,
6008 HRESULT ddraw_init(IDirectDrawImpl *ddraw, WINED3DDEVTYPE device_type)
6010 HRESULT hr;
6011 HDC hDC;
6013 ddraw->IDirectDraw7_iface.lpVtbl = &ddraw7_vtbl;
6014 ddraw->IDirectDraw_iface.lpVtbl = &ddraw1_vtbl;
6015 ddraw->IDirectDraw2_iface.lpVtbl = &ddraw2_vtbl;
6016 ddraw->IDirectDraw3_iface.lpVtbl = &ddraw3_vtbl;
6017 ddraw->IDirectDraw4_iface.lpVtbl = &ddraw4_vtbl;
6018 ddraw->IDirect3D_iface.lpVtbl = &d3d1_vtbl;
6019 ddraw->IDirect3D2_iface.lpVtbl = &d3d2_vtbl;
6020 ddraw->IDirect3D3_iface.lpVtbl = &d3d3_vtbl;
6021 ddraw->IDirect3D7_iface.lpVtbl = &d3d7_vtbl;
6022 ddraw->device_parent.ops = &ddraw_wined3d_device_parent_ops;
6023 ddraw->numIfaces = 1;
6024 ddraw->ref7 = 1;
6026 /* See comments in IDirectDrawImpl_CreateNewSurface for a description of
6027 * this field. */
6028 ddraw->ImplType = DefaultSurfaceType;
6030 /* Get the current screen settings. */
6031 hDC = GetDC(0);
6032 ddraw->orig_bpp = GetDeviceCaps(hDC, BITSPIXEL) * GetDeviceCaps(hDC, PLANES);
6033 ReleaseDC(0, hDC);
6034 ddraw->orig_width = GetSystemMetrics(SM_CXSCREEN);
6035 ddraw->orig_height = GetSystemMetrics(SM_CYSCREEN);
6037 ddraw->wineD3D = wined3d_create(7, &ddraw->IDirectDraw7_iface);
6038 if (!ddraw->wineD3D)
6040 WARN("Failed to create a wined3d object.\n");
6041 return E_OUTOFMEMORY;
6044 hr = wined3d_device_create(ddraw->wineD3D, WINED3DADAPTER_DEFAULT, device_type,
6045 NULL, 0, 8, &ddraw->device_parent, &ddraw->wined3d_device);
6046 if (FAILED(hr))
6048 WARN("Failed to create a wined3d device, hr %#x.\n", hr);
6049 wined3d_decref(ddraw->wineD3D);
6050 return hr;
6053 /* Get the amount of video memory */
6054 ddraw->total_vidmem = wined3d_device_get_available_texture_mem(ddraw->wined3d_device);
6056 list_init(&ddraw->surface_list);
6058 return DD_OK;