ddraw: Convert source files to utf-8.
[wine/multimedia.git] / dlls / ddraw / palette.c
blob7e9776e4fc6807978c95c6bf3a65fa319cb54645
1 /* DirectDraw - IDirectPalette base interface
3 * Copyright 2006 Stefan Dösinger
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "config.h"
21 #include "winerror.h"
22 #include "wine/debug.h"
24 #define COBJMACROS
26 #include <assert.h>
27 #include <string.h>
29 #include "ddraw_private.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
33 /*****************************************************************************
34 * IDirectDrawPalette::QueryInterface
36 * A usual QueryInterface implementation. Can only Query IUnknown and
37 * IDirectDrawPalette
39 * Params:
40 * refiid: The interface id queried for
41 * obj: Address to return the interface pointer at
43 * Returns:
44 * S_OK on success
45 * E_NOINTERFACE if the requested interface wasn't found
46 *****************************************************************************/
47 static HRESULT WINAPI
48 IDirectDrawPaletteImpl_QueryInterface(IDirectDrawPalette *iface,
49 REFIID refiid,
50 void **obj)
52 ICOM_THIS_FROM(IDirectDrawPaletteImpl, IDirectDrawPalette, iface);
53 TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(refiid),obj);
55 if (IsEqualGUID(refiid, &IID_IUnknown)
56 || IsEqualGUID(refiid, &IID_IDirectDrawPalette))
58 *obj = iface;
59 IDirectDrawPalette_AddRef(iface);
60 return S_OK;
62 else
64 *obj = NULL;
65 return E_NOINTERFACE;
69 /*****************************************************************************
70 * IDirectDrawPaletteImpl::AddRef
72 * Increases the refcount.
74 * Returns:
75 * The new refcount
77 *****************************************************************************/
78 static ULONG WINAPI
79 IDirectDrawPaletteImpl_AddRef(IDirectDrawPalette *iface)
81 ICOM_THIS_FROM(IDirectDrawPaletteImpl, IDirectDrawPalette, iface);
82 ULONG ref = InterlockedIncrement(&This->ref);
84 TRACE("(%p)->() incrementing from %u.\n", This, ref - 1);
86 return ref;
89 /*****************************************************************************
90 * IDirectDrawPaletteImpl::Release
92 * Reduces the refcount. If the refcount falls to 0, the object is destroyed
94 * Returns:
95 * The new refcount
97 *****************************************************************************/
98 static ULONG WINAPI
99 IDirectDrawPaletteImpl_Release(IDirectDrawPalette *iface)
101 ICOM_THIS_FROM(IDirectDrawPaletteImpl, IDirectDrawPalette, iface);
102 ULONG ref = InterlockedDecrement(&This->ref);
104 TRACE("(%p)->() decrementing from %u.\n", This, ref + 1);
106 if (ref == 0)
108 EnterCriticalSection(&ddraw_cs);
109 IWineD3DPalette_Release(This->wineD3DPalette);
110 if(This->ifaceToRelease)
112 IUnknown_Release(This->ifaceToRelease);
114 LeaveCriticalSection(&ddraw_cs);
115 HeapFree(GetProcessHeap(), 0, This);
118 return ref;
121 /*****************************************************************************
122 * IDirectDrawPalette::Initialize
124 * Initializes the palette. As we start initialized, return
125 * DDERR_ALREADYINITIALIZED
127 * Params:
128 * DD: DirectDraw interface this palette is assigned to
129 * Flags: Some flags, as usual
130 * ColorTable: The startup color table
132 * Returns:
133 * DDERR_ALREADYINITIALIZED
135 *****************************************************************************/
136 static HRESULT WINAPI
137 IDirectDrawPaletteImpl_Initialize(IDirectDrawPalette *iface,
138 IDirectDraw *DD,
139 DWORD Flags,
140 PALETTEENTRY *ColorTable)
142 TRACE("(%p)->(%p,%x,%p)\n", iface, DD, Flags, ColorTable);
143 return DDERR_ALREADYINITIALIZED;
146 /*****************************************************************************
147 * IDirectDrawPalette::GetCaps
149 * Returns the palette description
151 * Params:
152 * Caps: Address to store the caps at
154 * Returns:
155 * D3D_OK on success
156 * DDERR_INVALIDPARAMS if Caps is NULL
157 * For more details, see IWineD3DPalette::GetCaps
159 *****************************************************************************/
160 static HRESULT WINAPI
161 IDirectDrawPaletteImpl_GetCaps(IDirectDrawPalette *iface,
162 DWORD *Caps)
164 ICOM_THIS_FROM(IDirectDrawPaletteImpl, IDirectDrawPalette, iface);
165 HRESULT hr;
166 TRACE("(%p)->(%p): Relay\n", This, Caps);
168 EnterCriticalSection(&ddraw_cs);
169 hr = IWineD3DPalette_GetCaps(This->wineD3DPalette, Caps);
170 LeaveCriticalSection(&ddraw_cs);
171 return hr;
174 /*****************************************************************************
175 * IDirectDrawPalette::SetEntries
177 * Sets the palette entries from a PALETTEENTRY structure. WineD3D takes
178 * care for updating the surface.
180 * Params:
181 * Flags: Flags, as usual
182 * Start: First palette entry to set
183 * Count: Number of entries to set
184 * PalEnt: Source entries
186 * Returns:
187 * D3D_OK on success
188 * DDERR_INVALIDPARAMS if PalEnt is NULL
189 * For details, see IWineD3DDevice::SetEntries
191 *****************************************************************************/
192 static HRESULT WINAPI
193 IDirectDrawPaletteImpl_SetEntries(IDirectDrawPalette *iface,
194 DWORD Flags,
195 DWORD Start,
196 DWORD Count,
197 PALETTEENTRY *PalEnt)
199 ICOM_THIS_FROM(IDirectDrawPaletteImpl, IDirectDrawPalette, iface);
200 HRESULT hr;
201 TRACE("(%p)->(%x,%d,%d,%p): Relay\n", This, Flags, Start, Count, PalEnt);
203 if(!PalEnt)
204 return DDERR_INVALIDPARAMS;
206 EnterCriticalSection(&ddraw_cs);
207 hr = IWineD3DPalette_SetEntries(This->wineD3DPalette, Flags, Start, Count, PalEnt);
208 LeaveCriticalSection(&ddraw_cs);
209 return hr;
212 /*****************************************************************************
213 * IDirectDrawPalette::GetEntries
215 * Returns the entries stored in this interface.
217 * Params:
218 * Flags: Flags :)
219 * Start: First entry to return
220 * Count: The number of entries to return
221 * PalEnt: PALETTEENTRY structure to write the entries to
223 * Returns:
224 * D3D_OK on success
225 * DDERR_INVALIDPARAMS if PalEnt is NULL
226 * For details, see IWineD3DDevice::SetEntries
228 *****************************************************************************/
229 static HRESULT WINAPI
230 IDirectDrawPaletteImpl_GetEntries(IDirectDrawPalette *iface,
231 DWORD Flags,
232 DWORD Start,
233 DWORD Count,
234 PALETTEENTRY *PalEnt)
236 ICOM_THIS_FROM(IDirectDrawPaletteImpl, IDirectDrawPalette, iface);
237 HRESULT hr;
238 TRACE("(%p)->(%x,%d,%d,%p): Relay\n", This, Flags, Start, Count, PalEnt);
240 if(!PalEnt)
241 return DDERR_INVALIDPARAMS;
243 EnterCriticalSection(&ddraw_cs);
244 hr = IWineD3DPalette_GetEntries(This->wineD3DPalette, Flags, Start, Count, PalEnt);
245 LeaveCriticalSection(&ddraw_cs);
246 return hr;
249 const IDirectDrawPaletteVtbl IDirectDrawPalette_Vtbl =
251 /*** IUnknown ***/
252 IDirectDrawPaletteImpl_QueryInterface,
253 IDirectDrawPaletteImpl_AddRef,
254 IDirectDrawPaletteImpl_Release,
255 /*** IDirectDrawPalette ***/
256 IDirectDrawPaletteImpl_GetCaps,
257 IDirectDrawPaletteImpl_GetEntries,
258 IDirectDrawPaletteImpl_Initialize,
259 IDirectDrawPaletteImpl_SetEntries