2 * Copyright 2010 Christian Costa
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 #include "wine/debug.h"
20 #include "d3dx9_36_private.h"
22 WINE_DEFAULT_DEBUG_CHANNEL(d3dx
);
24 HRESULT WINAPI
D3DXLoadVolumeFromFileA(IDirect3DVolume9
*dst_volume
,
25 const PALETTEENTRY
*dst_palette
,
26 const D3DBOX
*dst_box
,
28 const D3DBOX
*src_box
,
37 TRACE("(%p, %p, %p, %s, %p, %#x, %#x, %p)\n",
38 dst_volume
, dst_palette
, dst_box
, debugstr_a(filename
), src_box
,
39 filter
, color_key
, info
);
41 if (!dst_volume
|| !filename
) return D3DERR_INVALIDCALL
;
43 length
= MultiByteToWideChar(CP_ACP
, 0, filename
, -1, NULL
, 0);
44 filenameW
= HeapAlloc(GetProcessHeap(), 0, length
* sizeof(*filenameW
));
45 if (!filenameW
) return E_OUTOFMEMORY
;
47 hr
= D3DXLoadVolumeFromFileW(dst_volume
, dst_palette
, dst_box
, filenameW
,
48 src_box
, filter
, color_key
, info
);
49 HeapFree(GetProcessHeap(), 0, filenameW
);
54 HRESULT WINAPI
D3DXLoadVolumeFromFileW(IDirect3DVolume9
*dst_volume
,
55 const PALETTEENTRY
*dst_palette
,
56 const D3DBOX
*dst_box
,
57 const WCHAR
*filename
,
58 const D3DBOX
*src_box
,
67 TRACE("(%p, %p, %p, %s, %p, %#x, %#x, %p)\n",
68 dst_volume
, dst_palette
, dst_box
, debugstr_w(filename
), src_box
,
69 filter
, color_key
, info
);
71 if (!dst_volume
|| !filename
) return D3DERR_INVALIDCALL
;
73 if (FAILED(map_view_of_file(filename
, &data
, &data_size
)))
74 return D3DXERR_INVALIDDATA
;
76 hr
= D3DXLoadVolumeFromFileInMemory(dst_volume
, dst_palette
, dst_box
,
77 data
, data_size
, src_box
, filter
, color_key
, info
);
78 UnmapViewOfFile(data
);
83 HRESULT WINAPI
D3DXLoadVolumeFromMemory(IDirect3DVolume9
*dst_volume
,
84 const PALETTEENTRY
*dst_palette
,
85 const D3DBOX
*dst_box
,
86 const void *src_memory
,
90 const PALETTEENTRY
*src_palette
,
91 const D3DBOX
*src_box
,
97 D3DLOCKED_BOX locked_box
;
98 struct volume dst_size
, src_size
;
99 const struct pixel_format_desc
*src_format_desc
, *dst_format_desc
;
101 TRACE("(%p, %p, %p, %p, %#x, %u, %u, %p, %p, %x, %x)\n", dst_volume
, dst_palette
, dst_box
,
102 src_memory
, src_format
, src_row_pitch
, src_slice_pitch
, src_palette
, src_box
,
105 if (!dst_volume
|| !src_memory
|| !src_box
) return D3DERR_INVALIDCALL
;
107 if (src_format
== D3DFMT_UNKNOWN
108 || src_box
->Left
>= src_box
->Right
109 || src_box
->Top
>= src_box
->Bottom
110 || src_box
->Front
>= src_box
->Back
)
113 if (filter
== D3DX_DEFAULT
)
114 filter
= D3DX_FILTER_TRIANGLE
| D3DX_FILTER_DITHER
;
116 IDirect3DVolume9_GetDesc(dst_volume
, &desc
);
118 src_size
.width
= src_box
->Right
- src_box
->Left
;
119 src_size
.height
= src_box
->Bottom
- src_box
->Top
;
120 src_size
.depth
= src_box
->Back
- src_box
->Front
;
124 dst_size
.width
= desc
.Width
;
125 dst_size
.height
= desc
.Height
;
126 dst_size
.depth
= desc
.Depth
;
130 if (dst_box
->Left
>= dst_box
->Right
|| dst_box
->Right
> desc
.Width
)
131 return D3DERR_INVALIDCALL
;
132 if (dst_box
->Top
>= dst_box
->Bottom
|| dst_box
->Bottom
> desc
.Height
)
133 return D3DERR_INVALIDCALL
;
134 if (dst_box
->Front
>= dst_box
->Back
|| dst_box
->Back
> desc
.Depth
)
135 return D3DERR_INVALIDCALL
;
137 dst_size
.width
= dst_box
->Right
- dst_box
->Left
;
138 dst_size
.height
= dst_box
->Bottom
- dst_box
->Top
;
139 dst_size
.depth
= dst_box
->Back
- dst_box
->Front
;
142 src_format_desc
= get_format_info(src_format
);
143 if (src_format_desc
->type
== FORMAT_UNKNOWN
)
146 dst_format_desc
= get_format_info(desc
.Format
);
147 if (dst_format_desc
->type
== FORMAT_UNKNOWN
)
150 if (desc
.Format
== src_format
151 && dst_size
.width
== src_size
.width
&& dst_size
.height
== src_size
.height
&& dst_size
.depth
== src_size
.depth
)
155 const BYTE
*src_addr
;
156 UINT row_block_count
= (src_size
.width
+ src_format_desc
->block_width
- 1) / src_format_desc
->block_width
;
157 UINT row_count
= (src_size
.height
+ src_format_desc
->block_height
- 1) / src_format_desc
->block_height
;
159 if (src_box
->Left
& (src_format_desc
->block_width
- 1)
160 || src_box
->Top
& (src_format_desc
->block_height
- 1)
161 || (src_box
->Right
& (src_format_desc
->block_width
- 1)
162 && src_size
.width
!= desc
.Width
)
163 || (src_box
->Bottom
& (src_format_desc
->block_height
- 1)
164 && src_size
.height
!= desc
.Height
))
166 FIXME("Source box (%u, %u, %u, %u) is misaligned\n",
167 src_box
->Left
, src_box
->Top
, src_box
->Right
, src_box
->Bottom
);
171 hr
= IDirect3DVolume9_LockBox(dst_volume
, &locked_box
, dst_box
, 0);
172 if (FAILED(hr
)) return hr
;
174 for (slice
= 0; slice
< src_size
.depth
; slice
++)
176 src_addr
= src_memory
;
177 src_addr
+= (src_box
->Front
+ slice
) * src_slice_pitch
;
178 src_addr
+= (src_box
->Top
/ src_format_desc
->block_height
) * src_row_pitch
;
179 src_addr
+= (src_box
->Left
/ src_format_desc
->block_width
) * src_format_desc
->block_byte_count
;
181 dst_addr
= locked_box
.pBits
;
182 dst_addr
+= slice
* locked_box
.SlicePitch
;
184 for (row
= 0; row
< row_count
; row
++)
186 memcpy(dst_addr
, src_addr
, row_block_count
* src_format_desc
->block_byte_count
);
187 src_addr
+= src_row_pitch
;
188 dst_addr
+= locked_box
.RowPitch
;
192 IDirect3DVolume9_UnlockBox(dst_volume
);
196 const BYTE
*src_addr
;
198 if (src_format_desc
->type
!= FORMAT_ARGB
|| dst_format_desc
->type
!= FORMAT_ARGB
)
200 FIXME("Pixel format conversion not implemented %#x -> %#x\n",
201 src_format_desc
->format
, dst_format_desc
->format
);
205 src_addr
= src_memory
;
206 src_addr
+= src_box
->Front
* src_slice_pitch
;
207 src_addr
+= src_box
->Top
* src_row_pitch
;
208 src_addr
+= src_box
->Left
* src_format_desc
->bytes_per_pixel
;
210 hr
= IDirect3DVolume9_LockBox(dst_volume
, &locked_box
, dst_box
, 0);
211 if (FAILED(hr
)) return hr
;
213 if ((filter
& 0xf) == D3DX_FILTER_NONE
)
215 convert_argb_pixels(src_memory
, src_row_pitch
, src_slice_pitch
, &src_size
, src_format_desc
,
216 locked_box
.pBits
, locked_box
.RowPitch
, locked_box
.SlicePitch
, &dst_size
, dst_format_desc
, color_key
);
220 if ((filter
& 0xf) != D3DX_FILTER_POINT
)
221 FIXME("Unhandled filter %#x.\n", filter
);
223 point_filter_argb_pixels(src_addr
, src_row_pitch
, src_slice_pitch
, &src_size
, src_format_desc
,
224 locked_box
.pBits
, locked_box
.RowPitch
, locked_box
.SlicePitch
, &dst_size
, dst_format_desc
, color_key
);
227 IDirect3DVolume9_UnlockBox(dst_volume
);
233 HRESULT WINAPI
D3DXLoadVolumeFromFileInMemory(IDirect3DVolume9
*dst_volume
,
234 const PALETTEENTRY
*dst_palette
,
235 const D3DBOX
*dst_box
,
236 const void *src_data
,
238 const D3DBOX
*src_box
,
241 D3DXIMAGE_INFO
*src_info
)
245 D3DXIMAGE_INFO image_info
;
247 if (!dst_volume
|| !src_data
) return D3DERR_INVALIDCALL
;
249 hr
= D3DXGetImageInfoFromFileInMemory(src_data
, src_data_size
, &image_info
);
250 if (FAILED(hr
)) return hr
;
254 if (src_box
->Right
> image_info
.Width
255 || src_box
->Bottom
> image_info
.Height
256 || src_box
->Back
> image_info
.Depth
)
257 return D3DERR_INVALIDCALL
;
265 box
.Right
= image_info
.Width
;
266 box
.Bottom
= image_info
.Height
;
268 box
.Back
= image_info
.Depth
;
272 if (image_info
.ImageFileFormat
!= D3DXIFF_DDS
)
274 FIXME("File format %#x is not supported yet\n", image_info
.ImageFileFormat
);
278 hr
= load_volume_from_dds(dst_volume
, dst_palette
, dst_box
, src_data
, &box
,
279 filter
, color_key
, &image_info
);
280 if (FAILED(hr
)) return hr
;
283 *src_info
= image_info
;
288 HRESULT WINAPI
D3DXLoadVolumeFromVolume(IDirect3DVolume9
*dst_volume
,
289 const PALETTEENTRY
*dst_palette
,
290 const D3DBOX
*dst_box
,
291 IDirect3DVolume9
*src_volume
,
292 const PALETTEENTRY
*src_palette
,
293 const D3DBOX
*src_box
,
300 D3DLOCKED_BOX locked_box
;
302 TRACE("(%p, %p, %p, %p, %p, %p, %#x, %#x)\n",
303 dst_volume
, dst_palette
, dst_box
, src_volume
, src_palette
, src_box
,
306 if (!dst_volume
|| !src_volume
) return D3DERR_INVALIDCALL
;
308 IDirect3DVolume9_GetDesc(src_volume
, &desc
);
312 box
.Left
= box
.Top
= 0;
313 box
.Right
= desc
.Width
;
314 box
.Bottom
= desc
.Height
;
316 box
.Back
= desc
.Depth
;
320 hr
= IDirect3DVolume9_LockBox(src_volume
, &locked_box
, NULL
, D3DLOCK_READONLY
);
321 if (FAILED(hr
)) return hr
;
323 hr
= D3DXLoadVolumeFromMemory(dst_volume
, dst_palette
, dst_box
,
324 locked_box
.pBits
, desc
.Format
, locked_box
.RowPitch
, locked_box
.SlicePitch
,
325 src_palette
, &box
, filter
, color_key
);
327 IDirect3DVolume9_UnlockBox(src_volume
);