forked from facelessuser/ColorHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ch_tool_diff.py
269 lines (225 loc) · 8.48 KB
/
ch_tool_diff.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
"""Color difference tool."""
import sublime
import sublime_plugin
from .lib import colorbox
import mdpopups
from . import ch_util as util
from .ch_mixin import _ColorMixin
import copy
from . import ch_tools as tools
DEF_DIFF = """---
markdown_extensions:
- markdown.extensions.attr_list
- markdown.extensions.def_list
- pymdownx.betterem
...
{}
## Format
<code>Color( - Color)?( !method)?</code>
## Instructions
Specify two colors, separated by a minus sign.<br>
Colors will be compared using Delta E 2000 unless<br>
a different method is specified.
The first color will be returned on completion.
"""
def parse_color(base, string, start=0, second=False):
"""
Parse colors.
The return of `more`:
- `None`: there is no more colors to process
- `True`: there are more colors to process
- `False`: there are more colors to process, but we failed to find them.
"""
length = len(string)
more = None
method = None
# First color
color = base.match(string, start=start, fullmatch=False)
if color:
start = color.end
if color.end != length:
more = True
m = tools.RE_MODE.match(string, start)
if m:
method = m.group(1)
start = m.end(0)
# Is the first color in the input or the second?
if not second and not method:
# Minus sign indicating we have an additional color to mix
m = tools.RE_MINUS.match(string, start)
if m and not method:
start = m.end(0)
more = start != length
else:
more = False
else:
more = None if start == length else False
if color:
color.end = start
return color, method, more
def evaluate(base, string):
"""Evaluate color."""
colors = []
try:
color = string.strip()
second = None
method = None
# Try to capture the color or the two colors diff
first, method, more = parse_color(base, color)
if first and more is not None:
if more is False:
first = None
else:
second, method, more = parse_color(base, color, start=first.end, second=True)
if not second or more is False:
first = None
second = None
if first:
first = first.color
if second:
second = second.color
else:
if first:
first = first.color
# Package up the color, or the two reference colors along with the mixed.
delta = 'Delta E 2000: 0'
if method is None:
method = "2000"
if first:
colors.append(first)
if second:
colors.append(second)
if method == 'euclidean':
delta = 'Distance: {}'.format(colors[0].distance(colors[1]))
else:
delta = 'Delta E {}: {}'.format(method, colors[0].delta_e(colors[1], method=method))
except Exception:
delta = 'Delta E 2000: 0'
colors = []
return colors, delta
class ColorHelperDifferenceInputHandler(tools._ColorInputHandler):
"""Handle color inputs."""
def __init__(self, view, initial=None, **kwargs):
"""Initialize."""
self.color = initial
super().__init__(view, **kwargs)
def placeholder(self):
"""Placeholder."""
return "Color"
def initial_text(self):
"""Initial text."""
if self.color is not None:
return '{} - {}'.format(self.color, self.color)
elif 1 <= len(self.view.sel()) <= 2:
self.setup_color_class()
sels = self.view.sel()
texts = []
texts.append(self.view.substr(sels[0]))
if len(sels) == 2:
texts.append(self.view.substr(sels[1]))
else:
texts.append(texts[0])
if texts:
colors = []
for text in texts:
color = None
try:
color = self.custom_color_class(text)
if color.space() not in self.filters:
raise ValueError('Space not in filters')
except Exception:
pass
if color is not None:
color = self.base(color)
colors.append(color.to_string(**util.DEFAULT))
if len(texts) == len(colors):
return ' - '.join(colors)
return ''
def preview(self, text):
"""Preview."""
style = self.get_html_style()
try:
colors, delta = evaluate(self.base, text)
if not colors:
raise ValueError('No colors')
html = mdpopups.md2html(self.view, DEF_DIFF.format(style))
html = ""
for color in colors:
orig = self.base(color)
message = ""
color_string = ""
if self.gamut_space == 'srgb':
check_space = self.gamut_space if orig.space() not in util.SRGB_SPACES else orig.space()
else:
check_space = self.gamut_space
if not orig.in_gamut(check_space):
orig.fit(self.gamut_space, method=self.gamut_map)
message = '<br><em style="font-size: 0.9em;">* preview out of gamut</em>'
color_string = "<strong>Gamut Mapped</strong>: {}<br>".format(orig.to_string())
orig.convert(self.gamut_space, fit=self.gamut_map, in_place=True)
color_string += "<strong>Color</strong>: {}".format(color.to_string(**util.DEFAULT))
preview = orig.clone().set('alpha', 1)
preview_alpha = orig
preview_border = self.default_border
temp = self.base(preview_border)
if temp.luminance() < 0.5:
second_border = temp.mix('white', 0.25, space=self.gamut_space, out_space=self.gamut_space)
second_border.set('alpha', 1)
else:
second_border = temp.mix('black', 0.25, space=self.gamut_space, out_space=self.gamut_space)
second_border.set('alpha', 1)
height = self.height * 3
width = self.width * 3
check_size = self.check_size(height, scale=8)
html += tools.PREVIEW_IMG.format(
colorbox.color_box(
[preview, preview_alpha],
preview_border, second_border,
border_size=2, height=height, width=width, check_size=check_size
),
message,
color_string
)
if colors:
html += delta
return sublime.Html(style + html)
except Exception:
return sublime.Html(mdpopups.md2html(self.view, DEF_DIFF.format(style)))
def validate(self, color):
"""Validate."""
try:
colors, _ = evaluate(self.base, color)
return len(colors) > 0
except Exception:
return False
class ColorHelperDifferenceCommand(_ColorMixin, sublime_plugin.TextCommand):
"""Open edit a color directly."""
def run(
self, edit, color_helper_difference, initial=None, on_done=None, **kwargs
):
"""Run command."""
self.base = util.get_base_color()
colors, _ = evaluate(self.base, color_helper_difference)
color = None
if colors:
color = colors[0]
if color is not None:
if on_done is None:
on_done = {
'command': 'color_helper',
'args': {'mode': "result", "result_type": "__tool__:__diff__"}
}
sels = self.view.sel()
if len(sels) > 1:
first = sels[0]
sels.clear()
sels.add(first)
call = on_done.get('command')
if call is None:
return
args = copy.deepcopy(on_done.get('args', {}))
args['color'] = color.to_string(**util.COLOR_FULL_PREC)
self.view.run_command(call, args)
def input(self, kwargs): # noqa: A003
"""Input."""
return ColorHelperDifferenceInputHandler(self.view, **kwargs)