advpack: Add stubs for the remaining registry functions.
[wine] / dlls / ddraw / tests / d3d.c
1 /*
2  * Some unit tests for d3d functions
3  *
4  * Copyright (C) 2005 Antoine Chavasse
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <assert.h>
22 #include "wine/test.h"
23 #include "ddraw.h"
24 #include "d3d.h"
25
26 static LPDIRECTDRAW7        lpDD = NULL;
27 static LPDIRECT3D7          lpD3D = NULL;
28 static LPDIRECTDRAWSURFACE7 lpDDS = NULL;
29 static LPDIRECT3DDEVICE7    lpD3DDevice = NULL;
30
31 static HRESULT (WINAPI *pDirectDrawCreateEx)(LPGUID,LPVOID*,REFIID,LPUNKNOWN);
32
33 static void init_function_pointers(void)
34 {
35     HMODULE hmod = GetModuleHandleA("ddraw.dll");
36
37     if(hmod)
38     {
39         pDirectDrawCreateEx = (void*)GetProcAddress(hmod, "DirectDrawCreateEx");
40     }
41 }
42
43
44 static BOOL CreateDirect3D(void)
45 {
46     HRESULT rc;
47     DDSURFACEDESC2 ddsd;
48
49     rc = pDirectDrawCreateEx(NULL, (void**)&lpDD,
50         &IID_IDirectDraw7, NULL);
51     ok(rc==DD_OK || rc==DDERR_NODIRECTDRAWSUPPORT, "DirectDrawCreateEx returned: %lx\n", rc);
52     if (!lpDD) {
53         trace("DirectDrawCreateEx() failed with an error %lx\n", rc);
54         return FALSE;
55     }
56
57     rc = IDirectDraw_SetCooperativeLevel(lpDD, NULL, DDSCL_NORMAL);
58     ok(rc==DD_OK, "SetCooperativeLevel returned: %lx\n", rc);
59
60     rc = IDirectDraw7_QueryInterface(lpDD, &IID_IDirect3D7, (void**) &lpD3D);
61     ok(rc==DD_OK, "QueryInterface returned: %lx\n", rc);
62
63     memset(&ddsd, 0, sizeof(ddsd));
64     ddsd.dwSize = sizeof(ddsd);
65     ddsd.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT;
66     ddsd.ddsCaps.dwCaps = DDSCAPS_OFFSCREENPLAIN | DDSCAPS_3DDEVICE;
67     ddsd.dwWidth = 256;
68     ddsd.dwHeight = 256;
69     rc = IDirectDraw7_CreateSurface(lpDD, &ddsd, &lpDDS, NULL);
70     ok(rc==DD_OK, "CreateSurface returned: %lx\n", rc);
71
72     rc = IDirect3D7_CreateDevice(lpD3D, &IID_IDirect3DTnLHalDevice, lpDDS,
73         &lpD3DDevice);
74     ok(rc==D3D_OK || rc==DDERR_NOPALETTEATTACHED || rc==E_OUTOFMEMORY, "CreateDevice returned: %lx\n", rc);
75     if (!lpD3DDevice) {
76         trace("IDirect3D7::CreateDevice() failed with an error %lx\n", rc);
77         return FALSE;
78     }
79
80     return TRUE;
81 }
82
83 static void ReleaseDirect3D(void)
84 {
85     if (lpD3DDevice != NULL)
86     {
87         IDirect3DDevice7_Release(lpD3DDevice);
88         lpD3DDevice = NULL;
89     }
90
91     if (lpDDS != NULL)
92     {
93         IDirectDrawSurface_Release(lpDDS);
94         lpDDS = NULL;
95     }
96
97     if (lpD3D != NULL)
98     {
99         IDirect3D7_Release(lpD3D);
100         lpD3D = NULL;
101     }
102
103     if (lpDD != NULL)
104     {
105         IDirectDraw_Release(lpDD);
106         lpDD = NULL;
107     }
108 }
109
110 static void LightTest(void)
111 {
112     HRESULT rc;
113     D3DLIGHT7 light;
114     D3DLIGHT7 defaultlight;
115     BOOL bEnabled = FALSE;
116
117     /* Set a few lights with funky indices. */
118     memset(&light, 0, sizeof(light));
119     light.dltType = D3DLIGHT_DIRECTIONAL;
120     U1(light.dcvDiffuse).r = 0.5f;
121     U2(light.dcvDiffuse).g = 0.6f;
122     U3(light.dcvDiffuse).b = 0.7f;
123     U2(light.dvDirection).y = 1.f;
124
125     rc = IDirect3DDevice7_SetLight(lpD3DDevice, 5, &light);
126     ok(rc==D3D_OK, "SetLight returned: %lx\n", rc);
127     rc = IDirect3DDevice7_SetLight(lpD3DDevice, 10, &light);
128     ok(rc==D3D_OK, "SetLight returned: %lx\n", rc);
129     rc = IDirect3DDevice7_SetLight(lpD3DDevice, 45, &light);
130     ok(rc==D3D_OK, "SetLight returned: %lx\n", rc);
131
132
133     /* Try to retrieve a light beyond the indices of the lights that have
134        been set. */
135     rc = IDirect3DDevice7_GetLight(lpD3DDevice, 50, &light);
136     ok(rc==DDERR_INVALIDPARAMS, "GetLight returned: %lx\n", rc);
137     rc = IDirect3DDevice7_GetLight(lpD3DDevice, 2, &light);
138     ok(rc==DDERR_INVALIDPARAMS, "GetLight returned: %lx\n", rc);
139
140
141     /* Try to retrieve one of the lights that have been set */
142     rc = IDirect3DDevice7_GetLight(lpD3DDevice, 10, &light);
143     ok(rc==D3D_OK, "GetLight returned: %lx\n", rc);
144
145
146     /* Enable a light that have been previously set. */
147     rc = IDirect3DDevice7_LightEnable(lpD3DDevice, 10, TRUE);
148     ok(rc==D3D_OK, "LightEnable returned: %lx\n", rc);
149
150
151     /* Enable some lights that have not been previously set, and verify that
152        they have been initialized with proper default values. */
153     memset(&defaultlight, 0, sizeof(D3DLIGHT7));
154     defaultlight.dltType = D3DLIGHT_DIRECTIONAL;
155     U1(defaultlight.dcvDiffuse).r = 1.f;
156     U2(defaultlight.dcvDiffuse).g = 1.f;
157     U3(defaultlight.dcvDiffuse).b = 1.f;
158     U3(defaultlight.dvDirection).z = 1.f;
159
160     rc = IDirect3DDevice7_LightEnable(lpD3DDevice, 20, TRUE);
161     ok(rc==D3D_OK, "LightEnable returned: %lx\n", rc);
162     memset(&light, 0, sizeof(D3DLIGHT7));
163     rc = IDirect3DDevice7_GetLight(lpD3DDevice, 20, &light);
164     ok(rc==D3D_OK, "GetLight returned: %lx\n", rc);
165     ok(!memcmp(&light, &defaultlight, sizeof(D3DLIGHT7)),
166         "light data doesn't match expected default values\n" );
167
168     rc = IDirect3DDevice7_LightEnable(lpD3DDevice, 50, TRUE);
169     ok(rc==D3D_OK, "LightEnable returned: %lx\n", rc);
170     memset(&light, 0, sizeof(D3DLIGHT7));
171     rc = IDirect3DDevice7_GetLight(lpD3DDevice, 50, &light);
172     ok(rc==D3D_OK, "GetLight returned: %lx\n", rc);
173     ok(!memcmp(&light, &defaultlight, sizeof(D3DLIGHT7)),
174         "light data doesn't match expected default values\n" );
175
176
177     /* Disable one of the light that have been previously enabled. */
178     rc = IDirect3DDevice7_LightEnable(lpD3DDevice, 20, FALSE);
179     ok(rc==D3D_OK, "LightEnable returned: %lx\n", rc);
180
181     /* Try to retrieve the enable status of some lights */
182     /* Light 20 is supposed to be disabled */
183     rc = IDirect3DDevice7_GetLightEnable(lpD3DDevice, 20, &bEnabled );
184     ok(rc==D3D_OK, "GetLightEnable returned: %lx\n", rc);
185     ok(!bEnabled, "GetLightEnable says the light is enabled\n");
186
187     /* Light 10 is supposed to be enabled */
188     bEnabled = FALSE;
189     rc = IDirect3DDevice7_GetLightEnable(lpD3DDevice, 10, &bEnabled );
190     ok(rc==D3D_OK, "GetLightEnable returned: %lx\n", rc);
191     ok(bEnabled, "GetLightEnable says the light is disabled\n");
192
193     /* Light 80 has not been set */
194     rc = IDirect3DDevice7_GetLightEnable(lpD3DDevice, 80, &bEnabled );
195     ok(rc==DDERR_INVALIDPARAMS, "GetLightEnable returned: %lx\n", rc);
196
197     /* Light 23 has not been set */
198     rc = IDirect3DDevice7_GetLightEnable(lpD3DDevice, 23, &bEnabled );
199     ok(rc==DDERR_INVALIDPARAMS, "GetLightEnable returned: %lx\n", rc);
200 }
201
202 START_TEST(d3d)
203 {
204     init_function_pointers();
205     if(!pDirectDrawCreateEx) {
206         trace("function DirectDrawCreateEx not available, skipping tests\n");
207         return;
208     }
209
210     if(!CreateDirect3D()) {
211         trace("Skipping tests\n");
212         return;
213         }
214     LightTest();
215     ReleaseDirect3D();
216 }