-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathproperties.py
404 lines (298 loc) · 10.5 KB
/
properties.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
import bpy
import os
from . import load_fonts as lf
from .addon_prefs import get_addon_preferences
from . import switch_font_operator as sw
def favorite_callback(self, context):
debug = get_addon_preferences().debug
font_props = context.window_manager.fontselector_properties
if font_props.no_callback:
if debug:
print("FONTSELECTOR --- Favorite update function cancelled")
return
if debug:
print(f"FONTSELECTOR --- Updating favorite : {self.name}")
# Get favorite datas
datas = lf.get_existing_favorite_datas()
# Remove existing favorite entry
idx = 0
for font in datas["favorites"]:
if font == self.name:
datas["favorites"].pop(idx)
idx += 1
# Add entry
if self.favorite:
datas["favorites"].append(
self.name,
)
# Write json
path = lf.get_favorite_json_filepath()
lf.write_json_file(datas, path)
class FONTSELECTOR_PR_single_font_properties(bpy.types.PropertyGroup):
filepath: bpy.props.StringProperty(
name = "Filepath",
subtype = "FILE_PATH",
)
font_name: bpy.props.StringProperty(
name = "Font Name",
)
class FONTSELECTOR_PR_font_family_properties(bpy.types.PropertyGroup):
favorite: bpy.props.BoolProperty(
name = "Favorite",
update = favorite_callback,
)
fonts : bpy.props.CollectionProperty(
type=FONTSELECTOR_PR_single_font_properties,
)
multi_component: bpy.props.BoolProperty()
class FONTSELECTOR_PR_properties(bpy.types.PropertyGroup):
font_families : bpy.props.CollectionProperty(
type = FONTSELECTOR_PR_font_family_properties,
)
remove_existing_type_fonts : bpy.props.BoolProperty(
name = "Remove Blender Type Fonts",
description = "Remove blender type fonts (bold, italic, bold italic) slots on font change",
default = True,
)
no_callback : bpy.props.BoolProperty()
def get_font_datablock(
font,
debug,
):
new_font = None
if debug:
print(f"FONTSELECTOR --- Getting {font.filepath}")
# Local
try:
# Existing datablock
font_datablock = bpy.data.fonts[font.font_name]
# Correct datablock
if os.path.isfile(font_datablock.filepath):
return font_datablock
# Missing font file
else:
bpy.data.fonts.remove(font_datablock)
except KeyError:
if debug:
print(f"FONTSELECTOR --- Importing : {font.font_name}")
else:
pass
# Importing
new_font = bpy.data.fonts.load(filepath=font.filepath)
new_font.name = font.font_name
# Prevent double users
new_font.user_clear()
return new_font
def clear_font_datas():
for font in bpy.data.fonts:
if font.name != "Bfont Regular"\
and font.users == 0:
bpy.data.fonts.remove(font)
def clear_obj_type_fonts(font_obj):
# Get blender default font if available
try:
blank_font = bpy.data.fonts["Bfont Regular"]
except KeyError:
blank_font = None
font_obj.font = blank_font
font_obj.font_bold = blank_font
font_obj.font_bold_italic = blank_font
font_obj.font_italic = blank_font
def change_objects_font(
target_font,
self,
context,
):
font_props = context.window_manager.fontselector_properties
# Prevent callback
font_props.no_callback = True
# Remove type fonts if needed
if font_props.remove_existing_type_fonts:
clear_obj_type_fonts(self.id_data)
# Change active object font
self.id_data.font = target_font
# Properties to store font in case of index change
family_name = font_props.font_families[self.family_index].name
self.relink_family_name = family_name
self.relink_type_name = self.family_types
# Change selected objects
for obj in context.selected_objects:
if obj.type == "FONT":
if obj.data == self.id_data:
continue
# Remove type fonts if needed
if font_props.remove_existing_type_fonts:
clear_obj_type_fonts(obj.data)
obj.data.font = target_font
props = obj.data.fontselector_object_properties
props.family_index = self.family_index
props.family_types = self.family_types
props.relink_family_name = family_name
props.relink_type_name = self.family_types
font_props.no_callback = False
def change_strips_font(
target_font,
self,
context,
):
active_strip = context.active_sequence_strip
font_props = context.window_manager.fontselector_properties
# Prevent callback
font_props.no_callback = True
# Change active font
active_strip.font = target_font
# Properties to store font in case of index change
family_name = font_props.font_families[self.family_index].name
# active_strip.fontselector_object_properties.relink_family_name = family_name
self.relink_family_name = family_name
self.relink_type_name = self.family_types
# Change selected objects
for strip in context.selected_sequences:
if strip.type == "TEXT":
if strip == active_strip:
continue
strip.font = target_font
props = strip.fontselector_object_properties
props.family_index = self.family_index
props.family_types = self.family_types
props.relink_family_name = family_name
props.relink_type_name = self.family_types
font_props.no_callback = False
def family_type_update(self, context):
debug = get_addon_preferences().debug
font_props = context.window_manager.fontselector_properties
if font_props.no_callback:
if debug:
print("FONTSELECTOR --- Update function cancelled")
return
if debug:
print("FONTSELECTOR --- Update function")
target_family = font_props.font_families[self.family_index]
target_font_props = target_family.fonts[self.family_types]
# Import font
target_font = get_font_datablock(
target_font_props,
debug,
)
# Invalid font
if target_font is None:
if debug:
print(f"FONTSELECTOR --- Update cancelled, unable to get font file : {target_font_props.name}")
return
# Find object or strip
if isinstance(self.id_data, bpy.types.TextCurve):
change_objects_font(
target_font,
self,
context,
)
else:
change_strips_font(
target_font,
self,
context,
)
# Clear old fonts
clear_font_datas()
def family_selection_update(self, context):
debug = get_addon_preferences().debug
font_props = context.window_manager.fontselector_properties
if font_props.no_callback\
or self.family_index == -1:
if debug:
print("FONTSELECTOR --- Update function cancelled")
return
if debug:
print("FONTSELECTOR --- Update function")
# Set first available type
first_type = sw.get_enum_values(
self,
"family_types",
)[0]
self.family_types = first_type
def family_type_callback(self, context):
items = []
font_props = context.window_manager.fontselector_properties
target_family_props = font_props.font_families[self.family_index]
for font in target_family_props.fonts:
items.append(
(font.name, font.name, ""),
)
return items
class FONTSELECTOR_PR_object_properties(bpy.types.PropertyGroup):
# Search
font_search: bpy.props.StringProperty(
options = {"TEXTEDIT_UPDATE"},
)
# Relink Font
relink_family_name : bpy.props.StringProperty()
relink_type_name : bpy.props.StringProperty()
# Families
family_index : bpy.props.IntProperty(
default = -1,
update = family_selection_update,
)
family_name : bpy.props.StringProperty()
family_types : bpy.props.EnumProperty(
name = "Types",
items = family_type_callback,
update = family_type_update,
)
# Display
show_favorite : bpy.props.BoolProperty(
name = "Show Favorites",
description = "Show Favorites icon",
default=True,
)
show_multi_component : bpy.props.BoolProperty(
name = "Show Multi Component Families",
description = "Show Multi Component Families icon",
default=True,
)
# Filters
favorite_filter : bpy.props.BoolProperty(
name = "Favorites Filter",
description = "Show only Favorites",
)
invert_filter : bpy.props.BoolProperty(
name = "Invert Filters",
description = "Invert Filters",
)
# Search filters
search_filepath : bpy.props.BoolProperty(
name = "Search Font Filepath",
description = "Search individual fonts filepath",
)
search_font_names: bpy.props.BoolProperty(
name = "Search Font Names",
description = "Search individual fonts names",
)
### REGISTER ---
def register():
bpy.utils.register_class(FONTSELECTOR_PR_single_font_properties)
bpy.utils.register_class(FONTSELECTOR_PR_font_family_properties)
bpy.utils.register_class(FONTSELECTOR_PR_properties)
bpy.utils.register_class(FONTSELECTOR_PR_object_properties)
bpy.types.WindowManager.fontselector_properties = \
bpy.props.PointerProperty(
type = FONTSELECTOR_PR_properties,
name="Font Selector Properties",
)
bpy.types.TextCurve.fontselector_object_properties = \
bpy.props.PointerProperty(
type = FONTSELECTOR_PR_object_properties,
name="Font Selector Properties",
)
bpy.types.TextSequence.fontselector_object_properties = \
bpy.props.PointerProperty(
type = FONTSELECTOR_PR_object_properties,
name="Font Selector Properties",
)
def unregister():
bpy.utils.unregister_class(FONTSELECTOR_PR_single_font_properties)
bpy.utils.unregister_class(FONTSELECTOR_PR_font_family_properties)
bpy.utils.unregister_class(FONTSELECTOR_PR_properties)
bpy.utils.unregister_class(FONTSELECTOR_PR_object_properties)
del bpy.types.WindowManager.fontselector_properties
del bpy.types.TextCurve.fontselector_object_properties
del bpy.types.TextSequence.fontselector_object_properties