-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathexport_layers.py
executable file
·173 lines (129 loc) · 5.39 KB
/
export_layers.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
import inspect
import os
import sys
# Allow importing modules in directories in the 'plug-ins' directory.
current_module_dirpath = os.path.dirname(inspect.getfile(inspect.currentframe()))
if current_module_dirpath not in sys.path:
sys.path.append(current_module_dirpath)
# Disable overlay scrollbar (notably used in Ubuntu) to be consistent with the
# Export menu.
os.environ['LIBOVERLAY_SCROLLBAR'] = '0'
from export_layers import pygimplib as pg
from future.builtins import *
import gimpenums
from export_layers import batcher as batcher_
from export_layers import exceptions
from export_layers import settings_main
from export_layers import update
from export_layers import utils as utils_
from export_layers.gui import main as gui_main
SETTINGS = settings_main.create_settings()
@pg.procedure(
blurb=_('Export layers as separate images'),
author=pg.config.AUTHOR_NAME,
copyright_notice=pg.config.AUTHOR_NAME,
date=pg.config.COPYRIGHT_YEARS,
menu_name=_('E_xport Layers...'),
menu_path='<Image>/File/Export',
parameters=[SETTINGS['special'], SETTINGS['main']]
)
def plug_in_export_layers(run_mode, image, *args):
SETTINGS['special/run_mode'].set_value(run_mode)
SETTINGS['special/image'].set_value(image)
layer_tree = pg.itemtree.LayerTree(image, name=pg.config.SOURCE_NAME)
status, unused_ = update.update(
SETTINGS, 'ask_to_clear' if run_mode == gimpenums.RUN_INTERACTIVE else 'clear')
if status == update.ABORT:
return
if run_mode == gimpenums.RUN_INTERACTIVE:
_run_export_layers_interactive(layer_tree)
elif run_mode == gimpenums.RUN_WITH_LAST_VALS:
_run_with_last_vals(layer_tree)
else:
_run_noninteractive(layer_tree, args)
@pg.procedure(
blurb=_('Run "{}" with the last values specified').format(pg.config.PLUGIN_TITLE),
description=_(
'If the plug-in is run for the first time (i.e. no last values exist),'
' default values will be used.'),
author=pg.config.AUTHOR_NAME,
copyright_notice=pg.config.AUTHOR_NAME,
date=pg.config.COPYRIGHT_YEARS,
menu_name=_('E_xport Layers (repeat)'),
menu_path='<Image>/File/Export',
parameters=[SETTINGS['special']]
)
def plug_in_export_layers_repeat(run_mode, image):
layer_tree = pg.itemtree.LayerTree(image, name=pg.config.SOURCE_NAME)
status, unused_ = update.update(
SETTINGS, 'ask_to_clear' if run_mode == gimpenums.RUN_INTERACTIVE else 'clear')
if status == update.ABORT:
return
if run_mode == gimpenums.RUN_INTERACTIVE:
SETTINGS['special/first_plugin_run'].load()
if SETTINGS['special/first_plugin_run'].value:
_run_export_layers_interactive(layer_tree)
else:
_run_export_layers_repeat_interactive(layer_tree)
else:
_run_with_last_vals(layer_tree)
@pg.procedure(
blurb=_('Run "{}" with the specified configuration file').format(pg.config.PLUGIN_TITLE),
description=_(
'The configuration file can be obtained by exporting settings'
" in the plug-in's interactive dialog."
' This procedure will fail if the specified configuration file does not exist'
' or is not valid.'),
author=pg.config.AUTHOR_NAME,
copyright_notice=pg.config.AUTHOR_NAME,
date=pg.config.COPYRIGHT_YEARS,
parameters=[
SETTINGS['special/run_mode'],
SETTINGS['special/image'],
pg.setting.StringSetting(name='config_filepath', display_name=_('Path to configuration file'))]
)
def plug_in_export_layers_with_config(run_mode, image, config_filepath):
if not config_filepath or not os.path.isfile(config_filepath):
sys.exit(1)
layer_tree = pg.itemtree.LayerTree(image, name=pg.config.SOURCE_NAME)
if config_filepath.endswith('.pkl'):
setting_source_class = pg.setting.PickleFileSource
else:
setting_source_class = pg.setting.JsonFileSource
setting_source = setting_source_class(
pg.config.SOURCE_NAME, config_filepath, source_type='persistent')
status, unused_ = update.update(
SETTINGS, handle_invalid='abort', sources={'persistent': setting_source})
if status == update.ABORT:
sys.exit(1)
load_result = SETTINGS.load({'persistent': setting_source})
if load_result.status not in [
pg.setting.Persistor.SUCCESS, pg.setting.Persistor.PARTIAL_SUCCESS]:
sys.exit(1)
_run_plugin_noninteractive(gimpenums.RUN_NONINTERACTIVE, layer_tree)
def _run_noninteractive(layer_tree, args):
main_settings = [
setting for setting in SETTINGS['main'].walk()
if setting.can_be_registered_to_pdb()]
for setting, arg in zip(main_settings, pg.setting.iter_args(args, main_settings)):
setting.set_value(arg)
_run_plugin_noninteractive(gimpenums.RUN_NONINTERACTIVE, layer_tree)
def _run_with_last_vals(layer_tree):
SETTINGS['main'].load()
_run_plugin_noninteractive(gimpenums.RUN_WITH_LAST_VALS, layer_tree)
def _run_export_layers_interactive(layer_tree):
gui_main.ExportLayersDialog(layer_tree, SETTINGS)
def _run_export_layers_repeat_interactive(layer_tree):
gui_main.ExportLayersRepeatDialog(layer_tree, SETTINGS)
def _run_plugin_noninteractive(run_mode, layer_tree):
batcher = batcher_.Batcher(
run_mode, layer_tree.image, SETTINGS['main/procedures'], SETTINGS['main/constraints'])
try:
batcher.run(item_tree=layer_tree, **utils_.get_settings_for_batcher(SETTINGS['main']))
except exceptions.BatcherCancelError:
pass
if __name__ == '__main__':
pg.main()