2 * Copyright 2006 Stefan Dösinger
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef __WINE_DLLS_DDRAW_DDRAW_PRIVATE_H
20 #define __WINE_DLLS_DDRAW_DDRAW_PRIVATE_H
22 /* MAY NOT CONTAIN X11 or DGA specific includes/defines/structs! */
36 #include "ddcomimpl.h"
38 #include "wine/wined3d_interface.h"
39 #include "wine/list.h"
41 /*****************************************************************************
42 * IParent - a helper interface
43 *****************************************************************************/
44 DEFINE_GUID(IID_IParent
, 0xc20e4c88, 0x74e7, 0x4940, 0xba, 0x9f, 0x2e, 0x32, 0x3f, 0x9d, 0xc9, 0x81);
45 typedef struct IParent
*LPPARENT
, *PPARENT
;
47 #define INTERFACE IParent
48 DECLARE_INTERFACE_(IParent
,IUnknown
)
50 /*** IUnknown methods ***/
51 STDMETHOD_(HRESULT
,QueryInterface
)(THIS_ REFIID riid
, void** ppvObject
) PURE
;
52 STDMETHOD_(ULONG
,AddRef
)(THIS
) PURE
;
53 STDMETHOD_(ULONG
,Release
)(THIS
) PURE
;
57 #if !defined(__cplusplus) || defined(CINTERFACE)
58 /*** IUnknown methods ***/
59 #define IParent_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
60 #define IParent_AddRef(p) (p)->lpVtbl->AddRef(p)
61 #define IParent_Release(p) (p)->lpVtbl->Release(p)
65 /* Typdef the interfaces */
66 typedef struct IDirectDrawImpl IDirectDrawImpl
;
67 typedef struct IDirectDrawSurfaceImpl IDirectDrawSurfaceImpl
;
68 typedef struct IDirectDrawClipperImpl IDirectDrawClipperImpl
;
69 typedef struct IDirectDrawPaletteImpl IDirectDrawPaletteImpl
;
70 typedef struct IDirect3DDeviceImpl IDirect3DDeviceImpl
;
71 typedef struct IDirect3DLightImpl IDirect3DLightImpl
;
72 typedef struct IDirect3DViewportImpl IDirect3DViewportImpl
;
73 typedef struct IDirect3DMaterialImpl IDirect3DMaterialImpl
;
74 typedef struct IDirect3DExecuteBufferImpl IDirect3DExecuteBufferImpl
;
75 typedef struct IDirect3DVertexBufferImpl IDirect3DVertexBufferImpl
;
76 typedef struct IParentImpl IParentImpl
;
78 /*****************************************************************************
79 * IDirectDraw implementation structure
80 *****************************************************************************/
82 struct IDirectDrawImpl
85 ICOM_VFIELD_MULTI(IDirectDraw7
);
86 ICOM_VFIELD_MULTI(IDirectDraw4
);
87 ICOM_VFIELD_MULTI(IDirectDraw2
);
88 ICOM_VFIELD_MULTI(IDirectDraw
);
89 ICOM_VFIELD_MULTI(IDirect3D7
);
90 ICOM_VFIELD_MULTI(IDirect3D3
);
91 ICOM_VFIELD_MULTI(IDirect3D2
);
92 ICOM_VFIELD_MULTI(IDirect3D
);
94 /* See comment in IDirectDraw::AddRef */
95 LONG ref7
, ref4
, ref2
, ref1
, numIfaces
;
99 IWineD3DDevice
*wineD3DDevice
;
100 IDirectDrawSurfaceImpl
*DepthStencilBuffer
;
101 BOOL d3d_initialized
;
103 /* Misc ddraw fields */
109 /* DirectDraw things, which are not handled by WineD3D */
110 DWORD cooperative_level
;
112 DWORD orig_width
, orig_height
;
121 IDirectDrawSurfaceImpl
*d3d_target
;
123 IDirect3DDeviceImpl
*d3ddevice
;
130 /* The surface type to request */
131 WINED3DSURFTYPE ImplType
;
134 /* Our private window class */
138 /* Helpers for surface creation */
139 IDirectDrawSurfaceImpl
*tex_root
;
142 /* For the dll unload cleanup code */
143 struct list ddraw_list_entry
;
144 /* The surface list - can't relay this to WineD3D
147 struct list surface_list
;
151 /* Declare the VTables. They can be found ddraw.c */
152 const IDirectDraw7Vtbl IDirectDraw7_Vtbl
;
153 const IDirectDraw4Vtbl IDirectDraw4_Vtbl
;
154 const IDirectDraw2Vtbl IDirectDraw2_Vtbl
;
155 const IDirectDrawVtbl IDirectDraw1_Vtbl
;
157 /* Helper structures */
158 typedef struct EnumDisplayModesCBS
161 LPDDENUMMODESCALLBACK2 callback
;
162 } EnumDisplayModesCBS
;
164 typedef struct EnumSurfacesCBS
167 LPDDENUMSURFACESCALLBACK7 callback
;
168 LPDDSURFACEDESC2 pDDSD
;
172 /* Utility functions */
174 DDRAW_Convert_DDSCAPS_1_To_2(const DDSCAPS
* pIn
,
177 DDRAW_Convert_DDDEVICEIDENTIFIER_2_To_1(const DDDEVICEIDENTIFIER2
* pIn
,
178 DDDEVICEIDENTIFIER
* pOut
);
180 IDirectDrawImpl_Destroy(IDirectDrawImpl
*This
);
183 IDirectDrawImpl_RecreateSurfacesCallback(IDirectDrawSurface7
*surf
,
184 DDSURFACEDESC2
*desc
,
187 remove_ddraw_object(IDirectDrawImpl
*ddraw
);
189 /* The default surface type */
190 extern WINED3DSURFTYPE DefaultSurfaceType
;
192 /*****************************************************************************
193 * IDirectDrawSurface implementation structure
194 *****************************************************************************/
196 struct IDirectDrawSurfaceImpl
198 /* IUnknown fields */
199 ICOM_VFIELD_MULTI(IDirectDrawSurface7
);
200 ICOM_VFIELD_MULTI(IDirectDrawSurface3
);
201 ICOM_VFIELD_MULTI(IDirectDrawGammaControl
);
202 ICOM_VFIELD_MULTI(IDirect3DTexture2
);
203 ICOM_VFIELD_MULTI(IDirect3DTexture
);
206 IUnknown
*ifaceToRelease
;
210 /* Connections to other Objects */
211 IDirectDrawImpl
*ddraw
;
212 IWineD3DSurface
*WineD3DSurface
;
213 IWineD3DTexture
*wineD3DTexture
;
215 /* This implementation handles attaching surfaces to other surfaces */
216 IDirectDrawSurfaceImpl
*next_attached
;
217 IDirectDrawSurfaceImpl
*first_attached
;
218 IDirectDrawSurfaceImpl
*next_complex
;
219 IDirectDrawSurfaceImpl
*first_complex
;
221 /* Surface description, for GetAttachedSurface */
222 DDSURFACEDESC2 surface_desc
;
225 DWORD uniqueness_value
;
227 WINED3DSURFTYPE ImplType
;
229 /* For D3DDevice creation */
232 /* Clipper objects */
233 IDirectDrawClipperImpl
*clipper
;
235 /* For the ddraw surface list */
236 struct list surface_list_entry
;
241 /* VTable declaration. It's located in surface.c / surface_thunks.c */
242 const IDirectDrawSurface7Vtbl IDirectDrawSurface7_Vtbl
;
243 const IDirectDrawSurface3Vtbl IDirectDrawSurface3_Vtbl
;
244 const IDirectDrawGammaControlVtbl IDirectDrawGammaControl_Vtbl
;
245 const IDirect3DTexture2Vtbl IDirect3DTexture2_Vtbl
;
246 const IDirect3DTextureVtbl IDirect3DTexture1_Vtbl
;
248 /* Get the number of bytes per pixel for a given surface */
249 #define PFGET_BPP(pf) (pf.dwFlags&DDPF_PALETTEINDEXED8?1:((pf.dwRGBBitCount+7)/8))
250 #define GET_BPP(desc) PFGET_BPP(desc.ddpfPixelFormat)
252 /*****************************************************************************
253 * IParent Implementation
254 *****************************************************************************/
257 /* IUnknown fields */
258 ICOM_VFIELD_MULTI(IParent
);
261 /* IParentImpl fields */
266 const IParentVtbl IParent_Vtbl
;
268 /*****************************************************************************
269 * IDirect3DDevice implementation
270 *****************************************************************************/
273 DDrawHandle_Unknown
= 0,
274 DDrawHandle_Texture
= 1,
275 DDrawHandle_Material
= 2,
276 DDrawHandle_Matrix
= 3,
277 DDrawHandle_StateBlock
= 4
283 DDrawHandleTypes type
;
286 struct IDirect3DDeviceImpl
289 ICOM_VFIELD_MULTI(IDirect3DDevice7
);
290 ICOM_VFIELD_MULTI(IDirect3DDevice3
);
291 ICOM_VFIELD_MULTI(IDirect3DDevice2
);
292 ICOM_VFIELD_MULTI(IDirect3DDevice
);
295 /* Other object connections */
296 IWineD3DDevice
*wineD3DDevice
;
297 IDirectDrawImpl
*ddraw
;
298 IWineD3DIndexBuffer
*indexbuffer
;
299 IDirectDrawSurfaceImpl
*target
;
300 BOOL OffScreenTarget
;
302 /* Viewport management */
303 IDirect3DViewportImpl
*viewport_list
;
304 IDirect3DViewportImpl
*current_viewport
;
305 D3DVIEWPORT7 active_viewport
;
310 /* Rendering functions to wrap D3D(1-3) to D3D7 */
311 D3DPRIMITIVETYPE primitive_type
;
315 LPBYTE vertex_buffer
;
319 /* Handle management */
320 struct HandleEntry
*Handles
;
324 /* Vtables in various versions */
325 const IDirect3DDevice7Vtbl IDirect3DDevice7_Vtbl
;
326 const IDirect3DDevice3Vtbl IDirect3DDevice3_Vtbl
;
327 const IDirect3DDevice2Vtbl IDirect3DDevice2_Vtbl
;
328 const IDirect3DDeviceVtbl IDirect3DDevice1_Vtbl
;
331 const GUID IID_D3DDEVICE_WineD3D
;
333 /* Helper functions */
334 HRESULT
IDirect3DImpl_GetCaps(IWineD3D
*WineD3D
, D3DDEVICEDESC
*Desc123
, D3DDEVICEDESC7
*Desc7
);
335 DWORD
IDirect3DDeviceImpl_CreateHandle(IDirect3DDeviceImpl
*This
);
338 struct EnumTextureFormatsCBS
340 LPD3DENUMTEXTUREFORMATSCALLBACK cbv2
;
341 LPD3DENUMPIXELFORMATSCALLBACK cbv7
;
345 /*****************************************************************************
346 * IDirect3D implementation
347 *****************************************************************************/
349 /* No implementation structure as this is only another interface to DirectDraw */
352 const IDirect3DVtbl IDirect3D1_Vtbl
;
353 const IDirect3D2Vtbl IDirect3D2_Vtbl
;
354 const IDirect3D3Vtbl IDirect3D3_Vtbl
;
355 const IDirect3D7Vtbl IDirect3D7_Vtbl
;
357 /* Structure for EnumZBufferFormats */
358 struct EnumZBufferFormatsData
360 LPD3DENUMPIXELFORMATSCALLBACK Callback
;
364 /*****************************************************************************
365 * IDirectDrawClipper implementation structure
366 *****************************************************************************/
367 struct IDirectDrawClipperImpl
369 /* IUnknown fields */
370 ICOM_VFIELD_MULTI(IDirectDrawClipper
);
373 /* IDirectDrawClipper fields */
376 IDirectDrawImpl
* ddraw_owner
;
377 struct IDirectDrawClipperImpl
* prev_ddraw
;
378 struct IDirectDrawClipperImpl
* next_ddraw
;
381 const IDirectDrawClipperVtbl IDirectDrawClipper_Vtbl
;
383 /*****************************************************************************
384 * IDirectDrawPalette implementation structure
385 *****************************************************************************/
386 struct IDirectDrawPaletteImpl
388 /* IUnknown fields */
389 ICOM_VFIELD_MULTI(IDirectDrawPalette
);
393 IWineD3DPalette
*wineD3DPalette
;
395 /* IDirectDrawPalette fields */
396 IDirectDrawImpl
*ddraw_owner
;
397 IUnknown
*ifaceToRelease
;
399 const IDirectDrawPaletteVtbl IDirectDrawPalette_Vtbl
;
401 /******************************************************************************
402 * DirectDraw ClassFactory implementation - incomplete
403 ******************************************************************************/
406 ICOM_VFIELD_MULTI(IClassFactory
);
409 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, REFIID iid
, LPVOID
*ppObj
);
412 /* Helper structures */
413 struct object_creation_info
416 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, REFIID riid
,
420 /******************************************************************************
421 * IDirect3DLight implementation structure - Wraps to D3D7
422 ******************************************************************************/
423 struct IDirect3DLightImpl
425 ICOM_VFIELD_MULTI(IDirect3DLight
);
428 /* IDirect3DLight fields */
429 IDirectDrawImpl
*ddraw
;
431 /* If this light is active for one viewport, put the viewport here */
432 IDirect3DViewportImpl
*active_viewport
;
439 /* Chained list used for adding / removing from viewports */
440 IDirect3DLightImpl
*next
;
442 /* Activation function */
443 void (*activate
)(IDirect3DLightImpl
*);
444 void (*desactivate
)(IDirect3DLightImpl
*);
445 void (*update
)(IDirect3DLightImpl
*);
449 const IDirect3DLightVtbl IDirect3DLight_Vtbl
;
451 /* Helper functions */
452 void light_update(IDirect3DLightImpl
* This
);
453 void light_activate(IDirect3DLightImpl
* This
);
454 void light_desactivate(IDirect3DLightImpl
* This
);
456 /******************************************************************************
457 * IDirect3DMaterial implementation structure - Wraps to D3D7
458 ******************************************************************************/
459 struct IDirect3DMaterialImpl
461 ICOM_VFIELD_MULTI(IDirect3DMaterial3
);
462 ICOM_VFIELD_MULTI(IDirect3DMaterial2
);
463 ICOM_VFIELD_MULTI(IDirect3DMaterial
);
466 /* IDirect3DMaterial2 fields */
467 IDirectDrawImpl
*ddraw
;
468 IDirect3DDeviceImpl
*active_device
;
473 void (*activate
)(IDirect3DMaterialImpl
* this);
476 /* VTables in various versions */
477 const IDirect3DMaterialVtbl IDirect3DMaterial_Vtbl
;
478 const IDirect3DMaterial2Vtbl IDirect3DMaterial2_Vtbl
;
479 const IDirect3DMaterial3Vtbl IDirect3DMaterial3_Vtbl
;
481 /* Helper functions */
482 void material_activate(IDirect3DMaterialImpl
* This
);
484 /*****************************************************************************
485 * IDirect3DViewport - Wraps to D3D7
486 *****************************************************************************/
487 struct IDirect3DViewportImpl
489 ICOM_VFIELD_MULTI(IDirect3DViewport3
);
492 /* IDirect3DViewport fields */
493 IDirectDrawImpl
*ddraw
;
495 /* If this viewport is active for one device, put the device here */
496 IDirect3DDeviceImpl
*active_device
;
509 /* Activation function */
510 void (*activate
)(IDirect3DViewportImpl
*);
512 /* Field used to chain viewports together */
513 IDirect3DViewportImpl
*next
;
516 IDirect3DLightImpl
*lights
;
518 /* Background material */
519 IDirect3DMaterialImpl
*background
;
523 const IDirect3DViewport3Vtbl IDirect3DViewport3_Vtbl
;
525 /* Helper functions */
526 void viewport_activate(IDirect3DViewportImpl
* This
);
528 /*****************************************************************************
529 * IDirect3DExecuteBuffer - Wraps to D3D7
530 *****************************************************************************/
531 struct IDirect3DExecuteBufferImpl
534 ICOM_VFIELD_MULTI(IDirect3DExecuteBuffer
);
537 /* IDirect3DExecuteBuffer fields */
538 IDirectDrawImpl
*ddraw
;
539 IDirect3DDeviceImpl
*d3ddev
;
541 D3DEXECUTEBUFFERDESC desc
;
544 /* This buffer will store the transformed vertices */
549 /* This flags is set to TRUE if we allocated ourselves the
556 const IDirect3DExecuteBufferVtbl IDirect3DExecuteBuffer_Vtbl
;
558 /* The execute function */
560 IDirect3DExecuteBufferImpl_Execute(IDirect3DExecuteBufferImpl
*This
,
561 IDirect3DDeviceImpl
*Device
,
562 IDirect3DViewportImpl
*ViewportImpl
);
564 /*****************************************************************************
565 * IDirect3DVertexBuffer
566 *****************************************************************************/
567 struct IDirect3DVertexBufferImpl
569 /*** IUnknown Methods ***/
570 ICOM_VFIELD_MULTI(IDirect3DVertexBuffer7
);
571 ICOM_VFIELD_MULTI(IDirect3DVertexBuffer
);
574 /*** WineD3D link ***/
575 IWineD3DVertexBuffer
*wineD3DVertexBuffer
;
577 /*** Storage for D3D7 specific things ***/
582 const IDirect3DVertexBuffer7Vtbl IDirect3DVertexBuffer7_Vtbl
;
583 const IDirect3DVertexBufferVtbl IDirect3DVertexBuffer1_Vtbl
;
585 /*****************************************************************************
586 * Helper functions from utils.c
587 *****************************************************************************/
589 #define GET_TEXCOUNT_FROM_FVF(d3dvtVertexType) \
590 (((d3dvtVertexType) & D3DFVF_TEXCOUNT_MASK) >> D3DFVF_TEXCOUNT_SHIFT)
592 #define GET_TEXCOORD_SIZE_FROM_FVF(d3dvtVertexType, tex_num) \
593 (((((d3dvtVertexType) >> (16 + (2 * (tex_num)))) + 1) & 0x03) + 1)
595 void PixelFormat_WineD3DtoDD(DDPIXELFORMAT
*DDPixelFormat
, WINED3DFORMAT WineD3DFormat
);
596 WINED3DFORMAT
PixelFormat_DD2WineD3D(DDPIXELFORMAT
*DDPixelFormat
);
597 void DDRAW_dump_surface_desc(const DDSURFACEDESC2
*lpddsd
);
598 void DDRAW_dump_pixelformat(const DDPIXELFORMAT
*PixelFormat
);
599 void dump_D3DMATRIX(D3DMATRIX
*mat
);
600 void DDRAW_dump_DDCAPS(const DDCAPS
*lpcaps
);
601 DWORD
get_flexible_vertex_size(DWORD d3dvtVertexType
);
602 void DDRAW_dump_DDSCAPS2(const DDSCAPS2
*in
);
603 void DDRAW_dump_cooperativelevel(DWORD cooplevel
);
605 /* This only needs to be here as long the processvertices functionality of
606 * IDirect3DExecuteBuffer isn't in WineD3D */
607 void multiply_matrix(LPD3DMATRIX dest
, LPD3DMATRIX src1
, LPD3DMATRIX src2
);
609 /* Used for generic dumping */
616 #define FE(x) { x, #x }
622 void (*func
)(const void *);
627 #define DDRAW_dump_flags(flags,names,num_names) DDRAW_dump_flags_(flags, names, num_names, 1)
628 #define ME(x,f,e) { x, #x, (void (*)(const void *))(f), offsetof(STRUCT, e) }
630 #define DD_STRUCT_COPY_BYSIZE(to,from) \
632 DWORD __size = (to)->dwSize; \
633 DWORD __copysize = __size; \
634 DWORD __resetsize = __size; \
635 assert(to != from); \
636 if (__resetsize > sizeof(*to)) \
637 __resetsize = sizeof(*to); \
638 memset(to,0,__resetsize); \
639 if ((from)->dwSize < __size) \
640 __copysize = (from)->dwSize; \
641 memcpy(to,from,__copysize); \
642 (to)->dwSize = __size;/*restore size*/ \
648 HRESULT
hr_ddraw_from_wined3d(HRESULT hr
);