-
Notifications
You must be signed in to change notification settings - Fork 4
/
dds.c
371 lines (322 loc) · 12.7 KB
/
dds.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
/*
DDS GIMP plugin
Copyright (C) 2004-2012 Shawn Kirst <[email protected]>,
with parts (C) 2003 Arne Reuter <[email protected]> where specified.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, 51 Franklin Street, Fifth Floor
Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>
#include "ddsplugin.h"
#include "dds.h"
#include "misc.h"
FILE *errFile;
gchar *prog_name = "dds";
gchar *filename;
gint interactive_dds;
static void query(void);
static void run(const gchar *name, gint nparams, const GimpParam *param,
gint *nreturn_vals, GimpParam **return_vals);
GimpPlugInInfo PLUG_IN_INFO =
{
0, 0, query, run
};
DDSWriteVals dds_write_vals =
{
DDS_COMPRESS_NONE, DDS_MIPMAP_NONE, DDS_SAVE_SELECTED_LAYER,
DDS_FORMAT_DEFAULT, -1, DDS_MIPMAP_FILTER_DEFAULT, DDS_MIPMAP_WRAP_DEFAULT,
0, 0, 0.0, 0, 0,
0, 0.5
};
DDSReadVals dds_read_vals =
{
1, 1, 1
};
static GimpParamDef load_args[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_STRING, "filename", "The name of the file to load"},
{GIMP_PDB_STRING, "raw_filename", "The name entered"},
{GIMP_PDB_INT32, "load_mipmaps", "Load mipmaps if present"},
{GIMP_PDB_INT32, "decode_images", "Decode YCoCg/AExp images when detected"}
};
static GimpParamDef load_return_vals[] =
{
{GIMP_PDB_IMAGE, "image", "Output image"}
};
static GimpParamDef save_args[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image"},
{GIMP_PDB_DRAWABLE, "drawable", "Drawable to save"},
{GIMP_PDB_STRING, "filename", "The name of the file to save the image as"},
{GIMP_PDB_STRING, "raw_filename", "The name entered"},
{GIMP_PDB_INT32, "compression_format", "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))"},
{GIMP_PDB_INT32, "mipmaps", "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)"},
{GIMP_PDB_INT32, "savetype", "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array"},
{GIMP_PDB_INT32, "format", "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)"},
{GIMP_PDB_INT32, "transparent_index", "Index of transparent color or -1 to disable (for indexed images only)."},
{GIMP_PDB_INT32, "mipmap_filter", "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)"},
{GIMP_PDB_INT32, "mipmap_wrap", "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)"},
{GIMP_PDB_INT32, "gamma_correct", "Use gamma correct mipmap filtering"},
{GIMP_PDB_INT32, "srgb", "Use sRGB colorspace for gamma correction"},
{GIMP_PDB_FLOAT, "gamma", "Gamma value to use for gamma correction (i.e. 2.2)"},
{GIMP_PDB_INT32, "perceptual_metric", "Use a perceptual error metric during compression"},
{GIMP_PDB_INT32, "preserve_alpha_coverage", "Preserve alpha test converage for alpha channel maps"},
{GIMP_PDB_FLOAT, "alpha_test_threshold", "Alpha test threshold value for which alpha test converage should be preserved"}
};
static GimpParamDef decode_args[] =
{
{GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive"},
{GIMP_PDB_IMAGE, "image", "Input image"},
{GIMP_PDB_DRAWABLE, "drawable", "Drawable to save"}
};
MAIN()
static void query(void)
{
gimp_install_procedure(LOAD_PROC,
"Loads files in DDS image format",
"Loads files in DDS image format",
"Shawn Kirst",
"Shawn Kirst",
"2008",
"<Load>/DDS image",
0,
GIMP_PLUGIN,
G_N_ELEMENTS(load_args),
G_N_ELEMENTS(load_return_vals),
load_args, load_return_vals);
gimp_register_file_handler_mime(LOAD_PROC, "image/dds");
gimp_register_magic_load_handler(LOAD_PROC,
"dds",
"",
"0,string,DDS");
gimp_install_procedure(SAVE_PROC,
"Saves files in DDS image format",
"Saves files in DDS image format",
"Shawn Kirst",
"Shawn Kirst",
"2008",
"<Save>/DDS image",
"INDEXED, GRAY, RGB",
GIMP_PLUGIN,
G_N_ELEMENTS(save_args), 0,
save_args, 0);
gimp_register_file_handler_mime(SAVE_PROC, "image/dds");
gimp_register_save_handler(SAVE_PROC,
"dds",
"");
gimp_install_procedure(DECODE_YCOCG_PROC,
"Converts YCoCg encoded pixels to RGB",
"Converts YCoCg encoded pixels to RGB",
"Shawn Kirst",
"Shawn Kirst",
"2008",
"<Image>/Filters/Colors/Decode YCoCg",
"RGBA",
GIMP_PLUGIN,
G_N_ELEMENTS(decode_args), 0,
decode_args, 0);
gimp_install_procedure(DECODE_YCOCG_SCALED_PROC,
"Converts YCoCg (scaled) encoded pixels to RGB",
"Converts YCoCg (scaled) encoded pixels to RGB",
"Shawn Kirst",
"Shawn Kirst",
"2008",
"<Image>/Filters/Colors/Decode YCoCg (scaled)",
"RGBA",
GIMP_PLUGIN,
G_N_ELEMENTS(decode_args), 0,
decode_args, 0);
gimp_install_procedure(DECODE_ALPHA_EXP_PROC,
"Converts alpha exponent encoded pixels to RGB",
"Converts alpha exponent encoded pixels to RGB",
"Shawn Kirst",
"Shawn Kirst",
"2008",
"<Image>/Filters/Colors/Decode Alpha exponent",
"RGBA",
GIMP_PLUGIN,
G_N_ELEMENTS(decode_args), 0,
decode_args, 0);
}
static void run(const gchar *name, gint nparams, const GimpParam *param,
gint *nreturn_vals, GimpParam **return_vals)
{
static GimpParam values[2];
GimpRunMode run_mode;
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
gint32 imageID;
gint32 drawableID;
GimpExportReturn export = GIMP_EXPORT_CANCEL;
run_mode = param[0].data.d_int32;
*nreturn_vals = 1;
*return_vals = values;
values[0].type = GIMP_PDB_STATUS;
values[0].data.d_status = GIMP_PDB_EXECUTION_ERROR;
if(!strcmp(name, LOAD_PROC))
{
switch(run_mode)
{
case GIMP_RUN_INTERACTIVE:
gimp_ui_init("dds", 0);
interactive_dds = 1;
gimp_get_data(LOAD_PROC, &dds_read_vals);
break;
case GIMP_RUN_NONINTERACTIVE:
interactive_dds = 0;
dds_read_vals.show_dialog = 0;
dds_read_vals.mipmaps = param[3].data.d_int32;
dds_read_vals.decode_images = param[4].data.d_int32;
if(nparams != G_N_ELEMENTS(load_args))
status = GIMP_PDB_CALLING_ERROR;
break;
default:
break;
}
if(status == GIMP_PDB_SUCCESS)
{
status = read_dds(param[1].data.d_string, &imageID);
if(status == GIMP_PDB_SUCCESS && imageID != -1)
{
*nreturn_vals = 2;
values[1].type = GIMP_PDB_IMAGE;
values[1].data.d_image = imageID;
if(interactive_dds)
gimp_set_data(LOAD_PROC, &dds_read_vals, sizeof(dds_read_vals));
}
else if(status != GIMP_PDB_CANCEL)
status = GIMP_PDB_EXECUTION_ERROR;
}
}
else if(!strcmp(name, SAVE_PROC))
{
imageID = param[1].data.d_int32;
drawableID = param[2].data.d_int32;
switch(run_mode)
{
case GIMP_RUN_INTERACTIVE:
case GIMP_RUN_WITH_LAST_VALS:
gimp_ui_init("dds", 0);
export = gimp_export_image(&imageID, &drawableID, "DDS",
(GIMP_EXPORT_CAN_HANDLE_RGB |
GIMP_EXPORT_CAN_HANDLE_GRAY |
GIMP_EXPORT_CAN_HANDLE_INDEXED |
GIMP_EXPORT_CAN_HANDLE_ALPHA |
GIMP_EXPORT_CAN_HANDLE_LAYERS));
if(export == GIMP_EXPORT_CANCEL)
{
values[0].data.d_status = GIMP_PDB_CANCEL;
return;
}
default:
break;
}
switch(run_mode)
{
case GIMP_RUN_INTERACTIVE:
gimp_get_data(SAVE_PROC, &dds_write_vals);
interactive_dds = 1;
break;
case GIMP_RUN_NONINTERACTIVE:
interactive_dds = 0;
if(nparams != G_N_ELEMENTS(save_args))
status = GIMP_PDB_CALLING_ERROR;
else
{
dds_write_vals.compression = param[5].data.d_int32;
dds_write_vals.mipmaps = param[6].data.d_int32;
dds_write_vals.savetype = param[7].data.d_int32;
dds_write_vals.format = param[8].data.d_int32;
dds_write_vals.transindex = param[9].data.d_int32;
dds_write_vals.mipmap_filter = param[10].data.d_int32;
dds_write_vals.mipmap_wrap = param[11].data.d_int32;
dds_write_vals.gamma_correct = param[12].data.d_int32;
dds_write_vals.srgb = param[13].data.d_int32;
dds_write_vals.gamma = param[14].data.d_float;
dds_write_vals.perceptual_metric = param[15].data.d_int32;
dds_write_vals.preserve_alpha_coverage = param[16].data.d_int32;
dds_write_vals.alpha_test_threshold = param[17].data.d_float;
if((dds_write_vals.compression < DDS_COMPRESS_NONE) ||
(dds_write_vals.compression >= DDS_COMPRESS_MAX))
status = GIMP_PDB_CALLING_ERROR;
if((dds_write_vals.mipmaps < DDS_MIPMAP_NONE) ||
(dds_write_vals.mipmaps >= DDS_MIPMAP_MAX))
status = GIMP_PDB_CALLING_ERROR;
if((dds_write_vals.savetype < DDS_SAVE_SELECTED_LAYER) ||
(dds_write_vals.savetype >= DDS_SAVE_MAX))
status = GIMP_PDB_CALLING_ERROR;
if((dds_write_vals.format < DDS_FORMAT_DEFAULT) ||
(dds_write_vals.format >= DDS_FORMAT_MAX))
status = GIMP_PDB_CALLING_ERROR;
if((dds_write_vals.mipmap_filter < DDS_MIPMAP_FILTER_DEFAULT) ||
(dds_write_vals.mipmap_filter >= DDS_MIPMAP_FILTER_MAX))
status = GIMP_PDB_CALLING_ERROR;
if((dds_write_vals.mipmap_wrap < DDS_MIPMAP_WRAP_DEFAULT) ||
(dds_write_vals.mipmap_wrap >= DDS_MIPMAP_WRAP_MAX))
status = GIMP_PDB_CALLING_ERROR;
}
break;
case GIMP_RUN_WITH_LAST_VALS:
gimp_get_data(SAVE_PROC, &dds_write_vals);
interactive_dds = 0;
break;
default:
break;
}
if(dds_write_vals.gamma < 1e-04f)
dds_write_vals.gamma = gimp_gamma();
if(status == GIMP_PDB_SUCCESS)
{
status = write_dds(param[3].data.d_string, imageID, drawableID);
if(status == GIMP_PDB_SUCCESS)
gimp_set_data(SAVE_PROC, &dds_write_vals, sizeof(dds_write_vals));
}
if(export == GIMP_EXPORT_EXPORT)
gimp_image_delete(imageID);
}
else if(!strcmp(name, DECODE_YCOCG_PROC))
{
imageID = param[1].data.d_int32;
drawableID = param[2].data.d_int32;
decode_ycocg_image(drawableID);
status = GIMP_PDB_SUCCESS;
if(run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush();
}
else if(!strcmp(name, DECODE_YCOCG_SCALED_PROC))
{
imageID = param[1].data.d_int32;
drawableID = param[2].data.d_int32;
decode_ycocg_scaled_image(drawableID);
status = GIMP_PDB_SUCCESS;
if(run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush();
}
else if(!strcmp(name, DECODE_ALPHA_EXP_PROC))
{
imageID = param[1].data.d_int32;
drawableID = param[2].data.d_int32;
decode_alpha_exp_image(drawableID);
status = GIMP_PDB_SUCCESS;
if(run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush();
}
else
status = GIMP_PDB_CALLING_ERROR;
values[0].data.d_status = status;
}