Add support for more than 2 audio channels.
[wine] / dlls / ddraw / dpalette / hal.c
1 /*      DirectDrawPalette HAL driver
2  *
3  * Copyright 2001 TransGaming Technologies Inc.
4  *
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.
9  *
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.
14  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include "config.h"
21 #include "winerror.h"
22 #include "wine/debug.h"
23
24 #include <assert.h>
25 #include <string.h>
26
27 #define CONST_VTABLE
28
29 #include "ddraw_private.h"
30 #include "dpalette/main.h"
31 #include "dpalette/hal.h"
32 #include "ddraw/main.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
35
36 static const IDirectDrawPaletteVtbl DDRAW_HAL_Palette_VTable;
37
38 /******************************************************************************
39  *                      IDirectDrawPalette
40  */
41 HRESULT HAL_DirectDrawPalette_Construct(IDirectDrawPaletteImpl* This,
42                                         IDirectDrawImpl* pDD, DWORD dwFlags)
43 {
44     LPDDRAWI_DIRECTDRAW_GBL dd_gbl = pDD->local.lpGbl;
45     DDHAL_CREATEPALETTEDATA data;
46     HRESULT hr;
47
48     hr = Main_DirectDrawPalette_Construct(This, pDD, dwFlags);
49     if (FAILED(hr)) return hr;
50
51     This->final_release = HAL_DirectDrawPalette_final_release;
52     ICOM_INIT_INTERFACE(This, IDirectDrawPalette, DDRAW_HAL_Palette_VTable);
53
54     /* initialize HAL palette */
55     data.lpDD = dd_gbl;
56     data.lpDDPalette = &This->global;
57     data.lpColorTable = NULL;
58     data.ddRVal = 0;
59     data.CreatePalette = dd_gbl->lpDDCBtmp->HALDD.CreatePalette;
60     if (data.CreatePalette)
61         data.CreatePalette(&data);
62
63     return DD_OK;
64 }
65
66 HRESULT
67 HAL_DirectDrawPalette_Create(IDirectDrawImpl* pDD, DWORD dwFlags,
68                              LPDIRECTDRAWPALETTE* ppPalette,
69                              LPUNKNOWN pUnkOuter)
70 {
71     IDirectDrawPaletteImpl* This;
72     HRESULT hr;
73
74     if (pUnkOuter != NULL)
75         return CLASS_E_NOAGGREGATION; /* unchecked */
76
77     This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
78     if (This == NULL) return E_OUTOFMEMORY;
79
80     hr = HAL_DirectDrawPalette_Construct(This, pDD, dwFlags);
81     if (FAILED(hr))
82         HeapFree(GetProcessHeap(), 0, This);
83     else
84         *ppPalette = ICOM_INTERFACE(This, IDirectDrawPalette);
85
86     return hr;
87 }
88
89 HRESULT WINAPI
90 HAL_DirectDrawPalette_SetEntries(LPDIRECTDRAWPALETTE iface, DWORD dwFlags,
91                                  DWORD dwStart, DWORD dwCount,
92                                  LPPALETTEENTRY palent)
93 {
94     IDirectDrawPaletteImpl *This = (IDirectDrawPaletteImpl *)iface;
95     LPDDRAWI_DIRECTDRAW_GBL dd_gbl = This->local.lpDD_lcl->lpGbl;
96     DDHAL_SETENTRIESDATA data;
97
98     TRACE("(%p)->SetEntries(%08lx,%ld,%ld,%p)\n",This,dwFlags,dwStart,dwCount,
99           palent);
100
101     data.lpDD = dd_gbl;
102     data.lpDDPalette = &This->global;
103     data.dwBase = dwStart;
104     data.dwNumEntries = dwCount;
105     data.lpEntries = palent;
106     data.ddRVal = 0;
107     data.SetEntries = dd_gbl->lpDDCBtmp->HALDDPalette.SetEntries;
108     if (data.SetEntries)
109         data.SetEntries(&data);
110
111     return Main_DirectDrawPalette_SetEntries(iface, dwFlags, dwStart, dwCount, palent);
112 }
113
114 void HAL_DirectDrawPalette_final_release(IDirectDrawPaletteImpl* This)
115 {
116     LPDDRAWI_DIRECTDRAW_GBL dd_gbl = This->local.lpDD_lcl->lpGbl;
117     DDHAL_DESTROYPALETTEDATA data;
118
119     /* destroy HAL palette */
120     data.lpDD = dd_gbl;
121     data.lpDDPalette = &This->global;
122     data.ddRVal = 0;
123     data.DestroyPalette = dd_gbl->lpDDCBtmp->HALDDPalette.DestroyPalette;
124     if (data.DestroyPalette)
125         data.DestroyPalette(&data);
126
127     Main_DirectDrawPalette_final_release(This);
128 }
129
130 static const IDirectDrawPaletteVtbl DDRAW_HAL_Palette_VTable =
131 {
132     Main_DirectDrawPalette_QueryInterface,
133     Main_DirectDrawPalette_AddRef,
134     Main_DirectDrawPalette_Release,
135     Main_DirectDrawPalette_GetCaps,
136     Main_DirectDrawPalette_GetEntries,
137     Main_DirectDrawPalette_Initialize,
138     HAL_DirectDrawPalette_SetEntries
139 };