-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbuiltin_procedures.py
470 lines (414 loc) · 14.2 KB
/
builtin_procedures.py
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
# -*- coding: utf-8 -*-
"""Built-in plug-in procedures."""
from __future__ import absolute_import, division, print_function, unicode_literals
from future.builtins import *
import collections
import gimp
from gimp import pdb
import gimpenums
from export_layers import background_foreground
from export_layers import export as export_
from export_layers import renamer as renamer_
NAME_ONLY_TAG = 'name'
def set_active_and_current_layer(batcher):
if pdb.gimp_item_is_valid(batcher.current_raw_item):
batcher.current_image.active_layer = batcher.current_raw_item
else:
if pdb.gimp_item_is_valid(batcher.current_image.active_layer):
# The active layer may have been set by the procedure.
batcher.current_raw_item = batcher.current_image.active_layer
else:
if len(batcher.current_image.layers) > 0:
# We cannot make a good guess of what layer is the "right" one, so we
# resort to taking the first.
first_layer = batcher.current_image.layers[0]
batcher.current_raw_item = first_layer
batcher.current_image.active_layer = first_layer
else:
# There is nothing we can do. An exception may be raised if a procedure
# requires an active layer/at least one layer. An empty image could
# occur e.g. if all layers were removed by the previous procedures.
pass
def set_active_and_current_layer_after_action(batcher):
action_applied = yield
if action_applied or action_applied is None:
set_active_and_current_layer(batcher)
def sync_item_name_and_raw_item_name(batcher):
yield
if batcher.process_names and not batcher.is_preview:
batcher.current_item.name = batcher.current_raw_item.name
def preserve_locks_between_actions(batcher):
# We assume `edit_mode` is True, we can therefore safely use `Item.raw`
# instead of `current_raw_item`. We need to use `Item.raw` for parents as
# well.
item = batcher.current_item
is_item_group = isinstance(item.raw, gimp.GroupLayer)
locks_content = {}
for item_or_parent in [item] + item.parents:
if pdb.gimp_item_is_valid(item_or_parent.raw):
locks_content[item_or_parent] = pdb.gimp_item_get_lock_content(item_or_parent.raw)
if not is_item_group and pdb.gimp_item_is_valid(item.raw):
if gimp.version >= (2, 10):
lock_position = pdb.gimp_item_get_lock_position(item.raw)
else:
lock_position = None
lock_alpha = pdb.gimp_layer_get_lock_alpha(item.raw)
else:
lock_position = None
lock_alpha = None
for item_or_parent, lock_content in locks_content.items():
if lock_content:
pdb.gimp_item_set_lock_content(item_or_parent.raw, False)
if not is_item_group:
if lock_position:
if gimp.version >= (2, 10):
pdb.gimp_item_set_lock_position(item.raw, False)
if lock_alpha:
pdb.gimp_layer_set_lock_alpha(item.raw, False)
yield
for item_or_parent, lock_content in locks_content.items():
if lock_content and pdb.gimp_item_is_valid(item_or_parent.raw):
pdb.gimp_item_set_lock_content(item_or_parent.raw, lock_content)
if not is_item_group and pdb.gimp_item_is_valid(item.raw):
if lock_position:
if gimp.version >= (2, 10):
pdb.gimp_item_set_lock_position(item.raw, lock_position)
if lock_alpha:
pdb.gimp_layer_set_lock_alpha(item.raw, lock_alpha)
def remove_folder_hierarchy_from_item(batcher):
item = batcher.current_item
item.parents = []
item.children = []
def inherit_transparency_from_layer_groups(batcher):
new_layer_opacity = batcher.current_raw_item.opacity / 100.0
for parent in batcher.current_item.parents:
new_layer_opacity = new_layer_opacity * (parent.raw.opacity / 100.0)
batcher.current_raw_item.opacity = new_layer_opacity * 100.0
def rename_layer(batcher, pattern, rename_layers=True, rename_folders=False):
renamer = renamer_.ItemRenamer(pattern)
renamed_parents = set()
while True:
if rename_layers:
batcher.current_item.name = renamer.rename(batcher)
if rename_folders:
for parent in batcher.current_item.parents:
if parent not in renamed_parents:
parent.name = renamer.rename(batcher, item=parent)
renamed_parents.add(parent)
if batcher.process_names and not batcher.is_preview:
batcher.current_raw_item.name = batcher.current_item.name
yield
def resize_to_layer_size(batcher):
image = batcher.current_image
layer = batcher.current_raw_item
layer_offset_x, layer_offset_y = layer.offsets
pdb.gimp_image_resize(image, layer.width, layer.height, -layer_offset_x, -layer_offset_y)
def scale(
_batcher,
image,
raw_item,
new_width,
width_unit,
new_height,
height_unit,
interpolation,
local_origin,
):
width_pixels = _convert_to_pixels(image, raw_item, new_width, width_unit)
height_pixels = _convert_to_pixels(image, raw_item, new_height, height_unit)
pdb.gimp_context_push()
pdb.gimp_context_set_interpolation(interpolation)
pdb.gimp_layer_scale(raw_item, width_pixels, height_pixels, local_origin)
pdb.gimp_context_pop()
def _convert_to_pixels(image, raw_item, dimension, dimension_unit):
if dimension_unit == PERCENT_IMAGE_WIDTH:
pixels = (dimension / 100) * image.width
elif dimension_unit == PERCENT_IMAGE_HEIGHT:
pixels = (dimension / 100) * image.height
elif dimension_unit == PERCENT_LAYER_WIDTH:
pixels = (dimension / 100) * raw_item.width
elif dimension_unit == PERCENT_LAYER_HEIGHT:
pixels = (dimension / 100) * raw_item.height
else:
pixels = dimension
return int(pixels)
_SCALE_OBJECT_TYPES = IMAGE, LAYER = (0, 1)
_SCALE_UNITS = (
PERCENT_LAYER_WIDTH,
PERCENT_LAYER_HEIGHT,
PERCENT_IMAGE_WIDTH,
PERCENT_IMAGE_HEIGHT,
PIXELS,
) = (0, 1, 2, 3, 4)
_INTERPOLATION_TYPES = (
NONE,
LINEAR,
CUBIC,
NOHALO,
LOHALO,
) = (0, 1, 2, 3, 4)
_BUILTIN_PROCEDURES_LIST = [
{
'name': 'export',
'function': export_.export,
'display_name': _('Export'),
'additional_tags': [NAME_ONLY_TAG],
'display_options_on_create': True,
'arguments': [
{
'type': 'directory',
'name': 'output_directory',
'default_value': gimp.user_directory(1), # `Documents` directory
'display_name': _('Output folder'),
'gui_type': 'folder_chooser_button',
},
{
'type': 'file_extension',
'name': 'file_extension',
'default_value': 'png',
'display_name': _('File extension'),
'gui_type': 'file_extension_entry',
'adjust_value': True,
},
{
'type': 'options',
'name': 'export_mode',
'default_value': 'each_layer',
'items': [
('each_layer', _('For each layer'), export_.ExportModes.EACH_LAYER),
('each_top_level_layer_or_group',
_('For each top-level layer or group'),
export_.ExportModes.EACH_TOP_LEVEL_LAYER_OR_GROUP),
('entire_image_at_once',
_('For the entire image at once'),
export_.ExportModes.ENTIRE_IMAGE_AT_ONCE),
],
'display_name': _('Perform export:'),
},
{
'type': 'filename_pattern',
'name': 'single_image_filename_pattern',
'default_value': '[image name]',
'display_name': _('Image filename pattern'),
'gui_type': 'filename_pattern_entry',
},
{
'type': 'boolean',
'name': 'use_file_extension_in_item_name',
'default_value': False,
'display_name': _('Use file extension in layer name'),
'gui_type': 'check_button_no_text',
},
{
'type': 'boolean',
'name': 'convert_file_extension_to_lowercase',
'default_value': False,
'display_name': _('Convert file extension to lowercase'),
'gui_type': 'check_button_no_text',
},
{
'type': 'boolean',
'name': 'preserve_layer_name_after_export',
'default_value': False,
'display_name': _('Preserve layer name after export'),
'gui_type': 'check_button_no_text',
},
],
},
{
'name': 'ignore_folder_structure',
'function': remove_folder_hierarchy_from_item,
'display_name': _('Ignore folder structure'),
'additional_tags': [NAME_ONLY_TAG],
},
{
'name': 'inherit_transparency_from_layer_groups',
'function': inherit_transparency_from_layer_groups,
'display_name': _('Inherit transparency from layer groups'),
},
{
'name': 'insert_background_layers',
'function': background_foreground.insert_background_layer,
'display_name': _('Insert background layers'),
'arguments': [
{
'type': 'string',
'name': 'tag',
'display_name': _('Tag'),
'default_value': 'background',
},
],
},
{
'name': 'insert_foreground_layers',
'function': background_foreground.insert_foreground_layer,
'display_name': _('Insert foreground layers'),
'arguments': [
{
'type': 'string',
'name': 'tag',
'display_name': _('Tag'),
'default_value': 'foreground',
},
],
},
{
'name': 'merge_background',
'function': background_foreground.merge_background,
'display_name': _('Merge background'),
'arguments': [
{
'type': 'options',
'name': 'merge_type',
'default_value': 'expand_as_necessary',
'items': [
('expand_as_necessary', _('Expand as necessary'), gimpenums.EXPAND_AS_NECESSARY),
('clip_to_image', _('Clip to image'), gimpenums.CLIP_TO_IMAGE),
('clip_to_bottom_layer', _('Clip to bottom layer'), gimpenums.CLIP_TO_BOTTOM_LAYER),
],
'display_name': _('Merge type'),
},
],
},
{
'name': 'merge_foreground',
'function': background_foreground.merge_foreground,
'display_name': _('Merge foreground'),
'arguments': [
{
'type': 'options',
'name': 'merge_type',
'default_value': 'expand_as_necessary',
'items': [
('expand_as_necessary', _('Expand as necessary'), gimpenums.EXPAND_AS_NECESSARY),
('clip_to_image', _('Clip to image'), gimpenums.CLIP_TO_IMAGE),
('clip_to_bottom_layer', _('Clip to bottom layer'), gimpenums.CLIP_TO_BOTTOM_LAYER),
],
'display_name': _('Merge type'),
},
],
},
{
'name': 'rename',
'function': rename_layer,
'display_name': _('Rename'),
'additional_tags': [NAME_ONLY_TAG],
'display_options_on_create': True,
'arguments': [
{
'type': 'filename_pattern',
'name': 'pattern',
'default_value': '[layer name]',
'display_name': _('Layer filename pattern'),
'gui_type': 'filename_pattern_entry',
},
{
'type': 'boolean',
'name': 'rename_layers',
'default_value': True,
'display_name': _('Rename layers'),
'gui_type': 'check_button_no_text',
},
{
'type': 'boolean',
'name': 'rename_folders',
'default_value': False,
'display_name': _('Rename folders'),
'gui_type': 'check_button_no_text',
},
],
},
{
'name': 'scale',
'function': scale,
'display_name': _('Scale'),
'display_options_on_create': True,
'arguments': [
{
'type': 'placeholder_image',
'name': 'image',
'display_name': _('Image'),
},
{
'type': 'placeholder_layer',
'name': 'layer',
'display_name': _('Layer'),
},
{
'type': 'float',
'default_value': 100.0,
'name': 'new_width',
'display_name': _('New width'),
},
{
'type': 'options',
'default_value': 'percentage_of_layer_width',
'name': 'width_unit',
'items': [
('percentage_of_layer_width', _('% of layer width'), PERCENT_LAYER_WIDTH),
('percentage_of_layer_height', _('% of layer height'), PERCENT_LAYER_HEIGHT),
('percentage_of_image_width', _('% of image width'), PERCENT_IMAGE_WIDTH),
('percentage_of_image_height', _('% of image height'), PERCENT_IMAGE_HEIGHT),
('pixels', _('Pixels'), PIXELS),
],
'display_name': _('Unit for width'),
},
{
'type': 'float',
'default_value': 100.0,
'name': 'new_height',
'display_name': _('New height'),
},
{
'type': 'options',
'default_value': 'percentage_of_layer_height',
'name': 'height_unit',
'items': [
('percentage_of_layer_width', _('% of layer width'), PERCENT_LAYER_WIDTH),
('percentage_of_layer_height', _('% of layer height'), PERCENT_LAYER_HEIGHT),
('percentage_of_image_width', _('% of image width'), PERCENT_IMAGE_WIDTH),
('percentage_of_image_height', _('% of image height'), PERCENT_IMAGE_HEIGHT),
('pixels', _('Pixels'), PIXELS),
],
'display_name': _('Unit for height'),
},
{
'type': 'options',
'default_value': 'none',
'name': 'interpolation',
'items': [
('none', _('None'), NONE),
('linear', _('Linear'), LINEAR),
('cubic', _('Cubic'), CUBIC),
('nohalo', 'NoHalo', NOHALO),
('lohalo', 'LoHalo', LOHALO),
],
'display_name': _('Interpolation'),
},
{
'type': 'bool',
'name': 'local_origin',
'default_value': False,
'display_name': _('Use local origin'),
'gui_type': 'check_button_no_text',
},
],
},
{
'name': 'use_layer_size',
'function': resize_to_layer_size,
'display_name': _('Use layer size'),
},
]
# Create a separate dictionary for functions since objects cannot be saved
# to a persistent source. Saving them as strings would not be reliable as
# function names and paths may change when refactoring or adding/modifying features.
# The 'function' setting is set to an empty value as the function can be inferred
# via the action's 'orig_name' setting.
BUILTIN_PROCEDURES = collections.OrderedDict()
BUILTIN_PROCEDURES_FUNCTIONS = collections.OrderedDict()
for action_dict in _BUILTIN_PROCEDURES_LIST:
function = action_dict['function']
action_dict['function'] = ''
BUILTIN_PROCEDURES[action_dict['name']] = action_dict
BUILTIN_PROCEDURES_FUNCTIONS[action_dict['name']] = function