2024-05-08 16:19:47 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
"""
|
|
|
|
A 3D font helper
|
|
|
|
"""
|
|
|
|
|
|
|
|
bl_info = {
|
2024-08-14 11:26:19 +02:00
|
|
|
"name": "ABC3D",
|
2024-05-08 16:19:47 +02:00
|
|
|
"author": "Jakob Schlötter, Studio Pointer*",
|
|
|
|
"version": (0, 0, 1),
|
|
|
|
"blender": (4, 1, 0),
|
2024-08-04 12:52:37 +02:00
|
|
|
"location": "VIEW3D",
|
2024-08-14 11:26:19 +02:00
|
|
|
"description": "Does ABC3D stuff",
|
2024-05-08 16:19:47 +02:00
|
|
|
"category": "Typography",
|
|
|
|
}
|
|
|
|
|
2024-05-21 18:00:49 +02:00
|
|
|
# make sure that modules are reloadable
|
|
|
|
# when registering
|
|
|
|
# handy for development
|
|
|
|
# first import dependencies for the method
|
|
|
|
import importlib
|
|
|
|
|
|
|
|
# then import dependencies for our addon
|
|
|
|
if "bpy" in locals():
|
|
|
|
importlib.reload(Font)
|
|
|
|
importlib.reload(utils)
|
|
|
|
importlib.reload(butils)
|
|
|
|
else:
|
|
|
|
from .common import Font
|
|
|
|
from .common import utils
|
|
|
|
from . import butils
|
|
|
|
|
2024-05-08 16:19:47 +02:00
|
|
|
import bpy
|
|
|
|
import math
|
2024-05-28 14:11:32 +02:00
|
|
|
import mathutils
|
2024-05-08 16:19:47 +02:00
|
|
|
import io
|
|
|
|
import functools
|
|
|
|
from bpy.types import Panel
|
|
|
|
from bpy.app.handlers import persistent
|
|
|
|
from random import uniform
|
|
|
|
|
|
|
|
import time
|
|
|
|
import datetime
|
|
|
|
|
2024-05-28 14:11:32 +02:00
|
|
|
import os
|
2024-05-21 18:00:49 +02:00
|
|
|
import re
|
|
|
|
|
2024-05-28 14:11:32 +02:00
|
|
|
def getPreferences(context):
|
|
|
|
preferences = context.preferences
|
|
|
|
return preferences.addons[__name__].preferences
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_addonPreferences(bpy.types.AddonPreferences):
|
|
|
|
"""ABC3D Addon Preferences
|
2024-05-28 14:11:32 +02:00
|
|
|
|
|
|
|
These are the preferences at Edit/Preferences/Add-ons"""
|
|
|
|
|
|
|
|
bl_idname = __name__
|
|
|
|
|
|
|
|
def get_default_assets_dir():
|
|
|
|
return bpy.utils.user_resource(
|
|
|
|
'DATAFILES',
|
|
|
|
path=f"{__name__}",
|
|
|
|
create=True)
|
|
|
|
|
|
|
|
def on_change_assets_dir(self, context):
|
|
|
|
if not os.path.isdir(self.assets_dir):
|
|
|
|
butils.ShowMessageBox(
|
|
|
|
title=f"{__name__} Warning",
|
|
|
|
icon="ERROR",
|
|
|
|
message=("Chosen directory does not exist.",
|
|
|
|
"Please, reset to default, create it or chose another one."))
|
|
|
|
elif not os.access(self.assets_dir, os.W_OK):
|
|
|
|
butils.ShowMessageBox(
|
|
|
|
title=f"{__name__} Warning",
|
|
|
|
icon="ERROR",
|
|
|
|
message=("Chosen directory is not writable.",
|
|
|
|
"Please reset to default or chose another one."))
|
|
|
|
|
|
|
|
print(f"{__name__}: change assets_dir to {self.assets_dir}")
|
|
|
|
|
|
|
|
assets_dir: bpy.props.StringProperty(
|
|
|
|
name="Assets Folder",
|
|
|
|
subtype='DIR_PATH',
|
|
|
|
default=get_default_assets_dir(),
|
|
|
|
update=on_change_assets_dir,
|
|
|
|
)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
layout.label(text="Directory for storage of fonts and other assets:")
|
|
|
|
layout.prop(self, "assets_dir")
|
|
|
|
|
2024-05-08 16:19:47 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_settings(bpy.types.PropertyGroup):
|
2024-06-27 14:56:43 +02:00
|
|
|
font_path: bpy.props.StringProperty(
|
|
|
|
name="Font path",
|
2024-08-04 12:52:37 +02:00
|
|
|
description="Load a *.glb or *.gltf fontfile from disk",
|
2024-06-27 14:56:43 +02:00
|
|
|
default="",
|
|
|
|
maxlen=1024,
|
|
|
|
subtype="FILE_PATH")
|
|
|
|
import_infix: bpy.props.StringProperty(
|
|
|
|
name="Font name import infix",
|
2024-08-04 13:31:06 +02:00
|
|
|
description="The infix which all font objects to import have. obj name: 'A_NM_Origin_Tender' -> infix: '_NM_Origin_Tender'",
|
2024-06-27 14:56:43 +02:00
|
|
|
default="_NM_",
|
|
|
|
maxlen=1024,
|
|
|
|
)
|
2024-08-04 12:52:37 +02:00
|
|
|
text: bpy.props.StringProperty(
|
|
|
|
name="Text",
|
|
|
|
description="The text.",
|
2024-06-27 14:56:43 +02:00
|
|
|
default="HELLO",
|
|
|
|
maxlen=1024,
|
|
|
|
)
|
2024-08-04 12:52:37 +02:00
|
|
|
target_object: bpy.props.PointerProperty(
|
|
|
|
name="The Target Object",
|
2024-06-27 14:56:43 +02:00
|
|
|
description="The target, which will be populated by character children of text.",
|
|
|
|
type=bpy.types.Object,
|
|
|
|
)
|
|
|
|
letter_spacing: bpy.props.FloatProperty(
|
|
|
|
name="Letter Spacing",
|
|
|
|
description="Letter Spacing",
|
|
|
|
default=0.0,
|
2024-08-04 12:52:37 +02:00
|
|
|
)
|
2024-08-07 13:13:07 +02:00
|
|
|
font_size: bpy.props.FloatProperty(
|
|
|
|
name="Font Size",
|
|
|
|
default=1.0,
|
|
|
|
subtype='NONE',
|
|
|
|
)
|
|
|
|
translation: bpy.props.FloatVectorProperty(
|
|
|
|
name="Translation",
|
|
|
|
default=(0.0, 0.0, 0.0),
|
|
|
|
subtype='TRANSLATION',
|
|
|
|
)
|
2024-08-04 12:52:37 +02:00
|
|
|
orientation: bpy.props.FloatVectorProperty(
|
|
|
|
name="Orientation",
|
|
|
|
default=(1.5707963267948966, 0.0, 0.0), # 90 degrees in radians
|
|
|
|
subtype='EULER',
|
2024-06-27 14:56:43 +02:00
|
|
|
)
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_available_font(bpy.types.PropertyGroup):
|
2024-06-27 14:56:43 +02:00
|
|
|
font_name: bpy.props.StringProperty(name="")
|
2024-08-08 11:28:31 +02:00
|
|
|
face_name: bpy.props.StringProperty(name="")
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_glyph_properties(bpy.types.PropertyGroup):
|
2024-06-27 14:56:43 +02:00
|
|
|
glyph_id: bpy.props.StringProperty(maxlen=1)
|
|
|
|
glyph_object: bpy.props.PointerProperty(type=bpy.types.Object)
|
|
|
|
letter_spacing: bpy.props.FloatProperty(
|
|
|
|
name="Letter Spacing",
|
|
|
|
description="Letter Spacing",
|
|
|
|
)
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_text_properties(bpy.types.PropertyGroup):
|
2024-08-14 10:50:57 +02:00
|
|
|
def font_name_items(self, context):
|
|
|
|
out = []
|
|
|
|
for f in Font.fonts.keys():
|
|
|
|
out.append((f, f, "A Font"))
|
|
|
|
return tuple(out)
|
|
|
|
def face_name_items(self, context):
|
|
|
|
out = []
|
|
|
|
for ff in Font.fonts[self.font_lol].faces.keys():
|
|
|
|
out.append((ff, ff, "A Face"))
|
|
|
|
return tuple(out)
|
|
|
|
def font_name_update_callback(self, context):
|
|
|
|
self.face_lol = Font.fonts[self.font_lol].faces.keys()[0]
|
|
|
|
update_callback(self, context)
|
2024-06-27 14:56:43 +02:00
|
|
|
def update_callback(self, context):
|
|
|
|
butils.set_text_on_curve(self)
|
2024-07-10 16:34:43 +02:00
|
|
|
text_id: bpy.props.IntProperty()
|
2024-06-27 14:56:43 +02:00
|
|
|
font_name: bpy.props.StringProperty()
|
2024-08-12 11:22:44 +02:00
|
|
|
face_name: bpy.props.StringProperty()
|
2024-08-14 10:50:57 +02:00
|
|
|
font_lol: bpy.props.EnumProperty(
|
|
|
|
items=font_name_items,
|
|
|
|
update=font_name_update_callback
|
|
|
|
)
|
|
|
|
face_lol: bpy.props.EnumProperty(
|
|
|
|
items=face_name_items,
|
|
|
|
update=update_callback
|
|
|
|
)
|
2024-06-27 14:56:43 +02:00
|
|
|
text_object: bpy.props.PointerProperty(type=bpy.types.Object)
|
2024-07-10 16:34:43 +02:00
|
|
|
text: bpy.props.StringProperty(
|
|
|
|
update=update_callback
|
|
|
|
)
|
2024-06-27 14:56:43 +02:00
|
|
|
letter_spacing: bpy.props.FloatProperty(
|
|
|
|
update=update_callback,
|
|
|
|
name="Letter Spacing",
|
|
|
|
description="Letter Spacing",
|
2024-08-04 12:52:37 +02:00
|
|
|
options={'ANIMATABLE'},
|
2024-06-27 14:56:43 +02:00
|
|
|
step=0.01,
|
|
|
|
)
|
2024-08-04 12:52:37 +02:00
|
|
|
orientation: bpy.props.FloatVectorProperty(
|
|
|
|
update=update_callback,
|
|
|
|
name="Orientation",
|
|
|
|
default=(1.5707963267948966, 0.0, 0.0), # 90 degrees in radians
|
|
|
|
subtype='EULER',
|
|
|
|
)
|
2024-08-05 12:59:07 +02:00
|
|
|
translation: bpy.props.FloatVectorProperty(
|
|
|
|
update=update_callback,
|
|
|
|
name="Translation",
|
|
|
|
default=(0.0, 0.0, 0.0),
|
|
|
|
subtype='TRANSLATION',
|
|
|
|
)
|
|
|
|
font_size: bpy.props.FloatProperty(
|
|
|
|
update=update_callback,
|
|
|
|
name="Font Size",
|
|
|
|
default=1.0,
|
|
|
|
subtype='NONE',
|
|
|
|
)
|
2024-08-08 11:30:05 +02:00
|
|
|
compensate_curvature: bpy.props.BoolProperty(
|
|
|
|
update=update_callback,
|
|
|
|
name="Compensate Curvature",
|
|
|
|
default=True,
|
|
|
|
)
|
|
|
|
ignore_orientation: bpy.props.BoolProperty(
|
|
|
|
update=update_callback,
|
|
|
|
name="Ignore Orientation",
|
|
|
|
default=False,
|
|
|
|
)
|
2024-06-27 14:56:43 +02:00
|
|
|
distribution_type: bpy.props.StringProperty()
|
2024-08-14 11:26:19 +02:00
|
|
|
glyphs: bpy.props.CollectionProperty(type=ABC3D_glyph_properties)
|
2024-05-21 18:00:49 +02:00
|
|
|
|
|
|
|
#TODO: simply, merge, cut cut cut
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_data(bpy.types.PropertyGroup):
|
|
|
|
available_fonts: bpy.props.CollectionProperty(type=ABC3D_available_font, name="name of the collection property")
|
2024-05-21 18:00:49 +02:00
|
|
|
active_font_index: bpy.props.IntProperty()
|
2024-08-14 11:26:19 +02:00
|
|
|
available_texts: bpy.props.CollectionProperty(type=ABC3D_text_properties, name="")
|
2024-08-04 12:52:37 +02:00
|
|
|
def active_text_index_update(self, context):
|
|
|
|
if self.active_text_index != -1:
|
|
|
|
o = self.available_texts[self.active_text_index].text_object
|
|
|
|
# active_text_index changed. so let's update the selection
|
|
|
|
# check if it is already selected
|
|
|
|
# or perhaps one of the glyphs
|
|
|
|
if not o.select_get() and not len([ c for c in o.children if c.select_get() ]) > 0:
|
|
|
|
bpy.ops.object.select_all(action="DESELECT")
|
|
|
|
o.select_set(True)
|
|
|
|
bpy.context.view_layer.objects.active = o
|
|
|
|
# else:
|
|
|
|
# print("already selected")
|
|
|
|
|
|
|
|
active_text_index: bpy.props.IntProperty(update=active_text_index_update)
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_UL_fonts(bpy.types.UIList):
|
2024-05-21 18:00:49 +02:00
|
|
|
def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):
|
2024-08-08 11:28:31 +02:00
|
|
|
layout.label(text=f"{index}: {item.font_name} {item.face_name}") # avoids renaming the item by accident
|
2024-05-21 18:00:49 +02:00
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
pass
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_UL_texts(bpy.types.UIList):
|
2024-06-27 14:56:43 +02:00
|
|
|
def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index):
|
|
|
|
split = layout.split(factor=0.3)
|
2024-07-10 16:34:43 +02:00
|
|
|
split.label(text="Id: %d" % (item.text_id))
|
2024-06-27 14:56:43 +02:00
|
|
|
split.label(text=f"{item.text}") # avoids renaming the item by accident
|
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
pass
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_Panel(bpy.types.Panel):
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_label = f"{__name__} panel"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_category = "ABC3D"
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2024-08-14 13:39:47 +02:00
|
|
|
icon = 'NONE'
|
|
|
|
if len(context.scene.abc3d_data.available_fonts) == 0:
|
|
|
|
icon = 'ERROR'
|
|
|
|
layout.row().label(text='no fonts loaded yet')
|
|
|
|
|
|
|
|
layout.operator(f"{__name__}.load_installed_fonts", text="load installed fonts", icon=icon)
|
2024-08-04 12:52:37 +02:00
|
|
|
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_LoadFontPanel(bpy.types.Panel):
|
2024-08-14 13:39:47 +02:00
|
|
|
bl_label = "Install a new font"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_parent_id = "ABC3D_PT_Panel"
|
|
|
|
bl_category = "ABC3D"
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
bl_options = {"DEFAULT_CLOSED"}
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
wm = context.window_manager
|
|
|
|
scene = context.scene
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-08-04 12:52:37 +02:00
|
|
|
|
2024-08-14 13:39:47 +02:00
|
|
|
layout.label(text="Install FontFile:")
|
2024-08-14 11:26:19 +02:00
|
|
|
layout.row().prop(abc3d, "font_path")
|
2024-08-14 13:39:47 +02:00
|
|
|
layout.row().operator(f"{__name__}.loadfont", text='Load Font')
|
2024-08-04 12:52:37 +02:00
|
|
|
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_FontList(bpy.types.Panel):
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_label = "Font List"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_parent_id = "ABC3D_PT_Panel"
|
|
|
|
bl_category = "ABC3D"
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
wm = context.window_manager
|
|
|
|
scene = context.scene
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-08-04 12:52:37 +02:00
|
|
|
|
|
|
|
layout.label(text="Loaded Fonts")
|
2024-08-14 11:26:19 +02:00
|
|
|
layout.template_list("ABC3D_UL_fonts", "", abc3d_data, "available_fonts", abc3d_data, "active_font_index")
|
2024-08-04 12:52:37 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_TextPlacement(bpy.types.Panel):
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_label = "Place Text"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_parent_id = "ABC3D_PT_Panel"
|
|
|
|
bl_category = "ABC3D"
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
|
2024-08-04 13:32:01 +02:00
|
|
|
can_place = False
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(self, context):
|
|
|
|
if type(context.active_object) != type(None) and context.active_object.type == 'CURVE':
|
|
|
|
self.can_place = True
|
|
|
|
else:
|
|
|
|
self.can_place = False
|
|
|
|
return True
|
|
|
|
|
2024-08-04 12:52:37 +02:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
wm = context.window_manager
|
|
|
|
scene = context.scene
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-08-04 12:52:37 +02:00
|
|
|
|
|
|
|
layout.label(text="Set Properties Objects")
|
2024-08-14 11:26:19 +02:00
|
|
|
layout.row().prop(abc3d, "text")
|
|
|
|
layout.row().prop(abc3d, "letter_spacing")
|
|
|
|
layout.row().prop(abc3d, "font_size")
|
|
|
|
layout.column().prop(abc3d, "translation")
|
|
|
|
layout.column().prop(abc3d, "orientation")
|
2024-08-04 13:32:01 +02:00
|
|
|
placerow = layout.row()
|
|
|
|
placerow.enabled = self.can_place
|
2024-08-05 12:59:45 +02:00
|
|
|
placerow.operator(f"{__name__}.placetext", text='Place Text')
|
2024-08-04 13:32:01 +02:00
|
|
|
if not self.can_place:
|
|
|
|
layout.label(text="Cannot place Text.")
|
|
|
|
layout.label(text="Select a curve as active object.")
|
2024-05-08 16:19:47 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_TextManagement(bpy.types.Panel):
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_label = "Text Management"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_parent_id = "ABC3D_PT_Panel"
|
|
|
|
bl_category = "ABC3D"
|
2024-05-08 16:19:47 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
|
2024-08-04 12:52:37 +02:00
|
|
|
# TODO: perhaps this should be done in a periodic timer
|
2024-06-27 14:56:43 +02:00
|
|
|
@classmethod
|
|
|
|
def poll(self, context):
|
|
|
|
scene = context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-08-04 12:52:37 +02:00
|
|
|
# TODO: update available_texts
|
2024-06-28 11:24:01 +02:00
|
|
|
def update():
|
2024-08-04 12:52:37 +02:00
|
|
|
if bpy.context.screen.is_animation_playing:
|
|
|
|
return
|
|
|
|
active_text_index = -1
|
2024-06-28 11:24:01 +02:00
|
|
|
remove_list = []
|
2024-08-14 11:26:19 +02:00
|
|
|
for i, t in enumerate(abc3d_data.available_texts):
|
2024-06-28 11:24:01 +02:00
|
|
|
if type(t.text_object) == type(None):
|
|
|
|
remove_list.append(i)
|
2024-07-02 12:22:24 +02:00
|
|
|
continue
|
|
|
|
remove_me = True
|
|
|
|
for c in t.text_object.children:
|
2024-07-10 16:34:43 +02:00
|
|
|
if len(c.users_collection) > 0 and (c.get('linked_textobject')) != type(None) and c.get('linked_textobject') == t.text_id:
|
2024-07-02 12:22:24 +02:00
|
|
|
remove_me = False
|
2024-07-10 16:34:43 +02:00
|
|
|
# not sure how to solve this reliably atm,
|
|
|
|
# we need to reassign the glyph, but also get the proper properties from glyph_properties
|
|
|
|
# these might be there in t.glyphs, but linked to removed objects
|
|
|
|
# or they might be lost
|
|
|
|
if type(next((g for g in t.glyphs if type(g.glyph_object) == type(None)), None)) == type(None):
|
|
|
|
g = next((g for g in t.glyphs if type(g.glyph_object) == type(None)), None)
|
2024-08-04 12:52:37 +02:00
|
|
|
# for g in t.glyphs:
|
|
|
|
# if type(g) == type(None):
|
|
|
|
# print("IS NONE")
|
|
|
|
# if type(g.glyph_object) == type(None):
|
|
|
|
# print("go IS NONE")
|
|
|
|
# else:
|
|
|
|
# if g.glyph_object == c:
|
|
|
|
# # print(g.glyph_object.name)
|
|
|
|
# pass
|
2024-07-10 16:34:43 +02:00
|
|
|
|
2024-07-02 12:22:24 +02:00
|
|
|
if remove_me:
|
|
|
|
remove_list.append(i)
|
|
|
|
|
2024-06-28 11:24:01 +02:00
|
|
|
for i in remove_list:
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d_data.available_texts.remove(i)
|
2024-06-28 11:24:01 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
for i, t in enumerate(abc3d_data.available_texts):
|
2024-07-10 16:34:43 +02:00
|
|
|
if context.active_object == t.text_object:
|
2024-08-04 12:52:37 +02:00
|
|
|
active_text_index = i
|
2024-07-10 16:34:43 +02:00
|
|
|
if (hasattr(context.active_object, "parent") and
|
|
|
|
context.active_object.parent == t.text_object):
|
2024-08-04 12:52:37 +02:00
|
|
|
active_text_index = i
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
if active_text_index != abc3d_data.active_text_index:
|
|
|
|
abc3d_data.active_text_index = active_text_index
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-07-10 17:14:02 +02:00
|
|
|
butils.run_in_main_thread(update)
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
2024-05-08 16:19:47 +02:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
wm = context.window_manager
|
|
|
|
scene = context.scene
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-06-27 14:56:43 +02:00
|
|
|
layout.label(text="Text Objects")
|
2024-08-14 11:26:19 +02:00
|
|
|
layout.template_list("ABC3D_UL_texts", "", abc3d_data, "available_texts", abc3d_data, "active_text_index")
|
2024-08-04 12:52:37 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_FontCreation(bpy.types.Panel):
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_label = "Font Creation"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_parent_id = "ABC3D_PT_Panel"
|
|
|
|
bl_category = "ABC3D"
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
bl_options = {"DEFAULT_CLOSED"}
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
wm = context.window_manager
|
|
|
|
scene = context.scene
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-08-04 12:52:37 +02:00
|
|
|
|
2024-08-12 11:22:44 +02:00
|
|
|
layout.row().operator(f"{__name__}.create_font_from_objects", text='Create/Extend Font')
|
2024-08-08 11:32:39 +02:00
|
|
|
layout.row().operator(f"{__name__}.save_font_to_file", text='Save Font To File')
|
2024-08-14 11:26:19 +02:00
|
|
|
layout.row().operator(f"{__name__}.toggle_abc3d_collection", text='Toggle Collection')
|
2024-08-07 11:56:13 +02:00
|
|
|
box = layout.box()
|
|
|
|
box.label(text="metrics")
|
|
|
|
box.row().operator(f"{__name__}.add_default_metrics", text='Add Default Metrics')
|
|
|
|
box.row().operator(f"{__name__}.remove_metrics", text='Remove Metrics')
|
|
|
|
box.row().operator(f"{__name__}.align_metrics", text='Align Metrics')
|
|
|
|
box.row().operator(f"{__name__}.align_metrics_to_active_object", text='Align Metrics to Active Object')
|
2024-08-08 11:32:39 +02:00
|
|
|
layout.row().operator(f"{__name__}.temporaryhelper", text='Debug Function Do Not Use')
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_TextPropertiesPanel(bpy.types.Panel):
|
2024-06-27 14:56:43 +02:00
|
|
|
bl_label = "Text Properties"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_parent_id = "ABC3D_PT_TextManagement"
|
|
|
|
bl_category = "ABC3D"
|
2024-06-27 14:56:43 +02:00
|
|
|
bl_space_type = "VIEW_3D"
|
|
|
|
bl_region_type = "UI"
|
|
|
|
|
|
|
|
def get_active_text_properties(self):
|
2024-08-04 15:12:38 +02:00
|
|
|
if type(bpy.context.active_object) != type(None):# and bpy.context.object.select_get():
|
2024-08-14 11:26:19 +02:00
|
|
|
for t in bpy.context.scene.abc3d_data.available_texts:
|
2024-08-04 15:12:38 +02:00
|
|
|
if bpy.context.active_object == t.text_object:
|
2024-06-27 14:56:43 +02:00
|
|
|
return t
|
2024-08-04 15:12:38 +02:00
|
|
|
if bpy.context.active_object.parent == t.text_object:
|
2024-06-27 14:56:43 +02:00
|
|
|
return t
|
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(self,context):
|
|
|
|
return type(self.get_active_text_properties(self)) != type(None)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
wm = context.window_manager
|
|
|
|
scene = context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
props = self.get_active_text_properties()
|
|
|
|
|
2024-06-28 11:24:29 +02:00
|
|
|
if type(props) == type(None) or type(props.text_object) == type(None):
|
|
|
|
# this should not happen
|
2024-08-04 12:52:37 +02:00
|
|
|
# as then polling does not work
|
|
|
|
# however, we are paranoid
|
2024-06-27 14:56:43 +02:00
|
|
|
return
|
|
|
|
|
|
|
|
layout.label(text=f"Mom: {props.text_object.name}")
|
2024-08-04 12:52:37 +02:00
|
|
|
layout.row().prop(props, "text")
|
2024-06-27 14:56:43 +02:00
|
|
|
layout.row().prop(props, "letter_spacing")
|
2024-08-05 12:59:07 +02:00
|
|
|
layout.row().prop(props, "font_size")
|
2024-08-08 11:30:05 +02:00
|
|
|
layout.row().prop(props, "compensate_curvature")
|
|
|
|
layout.row().prop(props, "ignore_orientation")
|
2024-08-05 12:59:07 +02:00
|
|
|
layout.column().prop(props, "translation")
|
2024-08-04 12:52:37 +02:00
|
|
|
layout.column().prop(props, "orientation")
|
2024-05-08 16:19:47 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_LoadFont(bpy.types.Operator):
|
2024-08-04 12:52:37 +02:00
|
|
|
"""Load Fontfile from path above.
|
|
|
|
(Format must be *.glb or *.gltf)"""
|
|
|
|
bl_idname = f"{__name__}.loadfont"
|
2024-05-08 16:19:47 +02:00
|
|
|
bl_label = "Load Font"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
scene = bpy.context.scene
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
if not os.path.exists(scene.abc3d.font_path):
|
2024-05-28 14:11:32 +02:00
|
|
|
butils.ShowMessageBox(
|
|
|
|
title=f"{__name__} Warning",
|
|
|
|
icon="ERROR",
|
2024-08-04 12:52:37 +02:00
|
|
|
message=f"We believe the font path ({scene[__name__].font_path}) does not exist.",
|
2024-05-28 14:11:32 +02:00
|
|
|
)
|
|
|
|
return {'CANCELLED'}
|
2024-05-08 16:19:47 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
butils.load_font_from_filepath(scene.abc3d.font_path)
|
2024-05-08 16:19:47 +02:00
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 13:39:47 +02:00
|
|
|
class ABC3D_OT_LoadInstalledFonts(bpy.types.Operator):
|
|
|
|
"""Load installed fontfiles from datapath."""
|
|
|
|
bl_idname = f"{__name__}.load_installed_fonts"
|
|
|
|
bl_label = "Loading installed Fonts."
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
layout.label(text="Loading font files can take a long time.")
|
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
return context.window_manager.invoke_props_dialog(self)
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
scene = bpy.context.scene
|
|
|
|
|
|
|
|
butils.load_installed_fonts()
|
|
|
|
butils.update_available_fonts()
|
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_AddDefaultMetrics(bpy.types.Operator):
|
2024-08-07 11:56:13 +02:00
|
|
|
"""Add default metrics to selected objects"""
|
|
|
|
bl_idname = f"{__name__}.add_default_metrics"
|
|
|
|
bl_label = "Add default metrics"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
objects = bpy.context.selected_objects
|
|
|
|
butils.add_default_metrics_to_objects(objects)
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_RemoveMetrics(bpy.types.Operator):
|
2024-08-07 11:56:13 +02:00
|
|
|
"""Remove metrics from selected objects"""
|
|
|
|
bl_idname = f"{__name__}.remove_metrics"
|
|
|
|
bl_label = "Remove metrics"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
objects = bpy.context.selected_objects
|
|
|
|
butils.remove_metrics_from_objects(objects)
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_AlignMetricsToActiveObject(bpy.types.Operator):
|
2024-08-07 11:56:13 +02:00
|
|
|
"""Align metrics of selected objects to metrics of active object"""
|
|
|
|
bl_idname = f"{__name__}.align_metrics_to_active_object"
|
|
|
|
bl_label = "Align metrics to active object"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
objects = bpy.context.selected_objects
|
|
|
|
butils.align_metrics_of_objects_to_active_object(objects)
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_AlignMetrics(bpy.types.Operator):
|
2024-08-07 11:56:13 +02:00
|
|
|
"""Align metrics of selected objects to each other"""
|
|
|
|
bl_idname = f"{__name__}.align_metrics"
|
|
|
|
bl_label = "Align metrics"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
objects = bpy.context.selected_objects
|
|
|
|
butils.align_metrics_of_objects(objects)
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_TemporaryHelper(bpy.types.Operator):
|
2024-06-27 14:56:43 +02:00
|
|
|
"""Temp Font 3D"""
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_idname = f"{__name__}.temporaryhelper"
|
2024-06-27 14:56:43 +02:00
|
|
|
bl_label = "Temp Font"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
global shared
|
|
|
|
scene = bpy.context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d_data = scene.abc3d_data
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
# butils.load_font_from_filepath("/home/jrkb/.config/blender/4.1/datafiles/abc3d/fonts/NM_Origin.glb")
|
2024-08-14 10:50:57 +02:00
|
|
|
butils.update_available_fonts()
|
|
|
|
|
|
|
|
# objects = bpy.context.selected_objects
|
|
|
|
# butils.add_default_metrics_to_objects(objects)
|
2024-08-07 11:56:13 +02:00
|
|
|
# reference_bound_box = None
|
|
|
|
# for o in objects:
|
|
|
|
# bb = o.bound_box
|
|
|
|
# reference_bound_box = butils.get_max_bound_box(bb, reference_bound_box)
|
|
|
|
# for o in objects:
|
|
|
|
# metrics = butils.get_metrics_bound_box(o.bound_box, reference_bound_box)
|
|
|
|
# butils.add_metrics_obj_from_bound_box(o, metrics)
|
|
|
|
# bpy.app.timers.register(lambda: butils.remove_metrics_from_objects(objects), first_interval=5)
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
return {'FINISHED'}
|
2024-05-28 14:11:32 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_PlaceText(bpy.types.Operator):
|
2024-08-04 13:32:01 +02:00
|
|
|
"""Place Text 3D on active object"""
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_idname = f"{__name__}.placetext"
|
|
|
|
bl_label = "Place Text"
|
2024-05-08 16:19:47 +02:00
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
global shared
|
|
|
|
scene = bpy.context.scene
|
|
|
|
|
2024-05-21 18:00:49 +02:00
|
|
|
selected = bpy.context.view_layer.objects.active
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
if abc3d.target_object:
|
|
|
|
selected = abc3d.target_object
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-05-28 14:11:32 +02:00
|
|
|
if selected:
|
2024-08-14 11:26:19 +02:00
|
|
|
font = abc3d_data.available_fonts[abc3d_data.active_font_index]
|
2024-08-12 11:22:44 +02:00
|
|
|
font_name = font.font_name
|
|
|
|
face_name = font.face_name
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
distribution_type = 'DEFAULT'
|
|
|
|
|
2024-07-10 16:34:43 +02:00
|
|
|
text_id = 0
|
2024-08-14 11:26:19 +02:00
|
|
|
for i, tt in enumerate(abc3d_data.available_texts):
|
2024-07-10 16:34:43 +02:00
|
|
|
while text_id == tt.text_id:
|
|
|
|
text_id = text_id + 1
|
2024-08-14 11:26:19 +02:00
|
|
|
t = abc3d_data.available_texts.add()
|
2024-07-10 16:34:43 +02:00
|
|
|
t.text_id = text_id
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
t.font_name = font_name
|
2024-08-12 11:22:44 +02:00
|
|
|
t.face_name = face_name
|
2024-06-27 14:56:43 +02:00
|
|
|
t.text_object = selected
|
2024-08-14 11:26:19 +02:00
|
|
|
t.text = scene.abc3d.text
|
|
|
|
t.letter_spacing = scene.abc3d.letter_spacing
|
|
|
|
t.font_size = scene.abc3d.font_size
|
|
|
|
t.translation = scene.abc3d.translation
|
|
|
|
t.orientation = scene.abc3d.orientation
|
2024-06-27 14:56:43 +02:00
|
|
|
t.distribution_type = distribution_type
|
2024-05-28 14:11:32 +02:00
|
|
|
else:
|
|
|
|
butils.ShowMessageBox(
|
|
|
|
title="No object selected",
|
|
|
|
message=(
|
|
|
|
"Please select an object.",
|
|
|
|
"It will be used to put the type on.",
|
2024-08-04 12:52:37 +02:00
|
|
|
"Thank you :)"),
|
2024-05-28 14:11:32 +02:00
|
|
|
icon='GHOST_ENABLED')
|
2024-05-21 18:00:49 +02:00
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_ToggleABC3DCollection(bpy.types.Operator):
|
|
|
|
"""Toggle ABC3D Collection"""
|
|
|
|
bl_idname = f"{__name__}.toggle_abc3d_collection"
|
2024-05-21 18:00:49 +02:00
|
|
|
bl_label = "Toggle Collection visibility"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
scene = context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
fontcollection = bpy.data.collections.get("ABC3D")
|
2024-05-21 18:00:49 +02:00
|
|
|
|
|
|
|
if fontcollection is None:
|
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: There is no collection")
|
|
|
|
elif scene.collection.children.find(fontcollection.name) < 0:
|
|
|
|
scene.collection.children.link(fontcollection)
|
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: show collection")
|
|
|
|
else:
|
|
|
|
scene.collection.children.unlink(fontcollection)
|
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: hide collection")
|
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_SaveFontToFile(bpy.types.Operator):
|
2024-05-28 14:11:32 +02:00
|
|
|
"""Save font to file"""
|
|
|
|
bl_idname = f"{__name__}.save_font_to_file"
|
|
|
|
bl_label = "Save Font"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
2024-08-14 10:50:57 +02:00
|
|
|
|
|
|
|
save_path: bpy.props.StringProperty(name="save_path", subtype="DIR_PATH")
|
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
wm = context.window_manager
|
|
|
|
return wm.invoke_props_dialog(self)
|
|
|
|
|
|
|
|
# def draw(self, contex):
|
|
|
|
# layout = self.layout
|
|
|
|
# layout.prop(self, 'font_name')
|
|
|
|
# layout.prop(self, 'face_name')
|
|
|
|
# layout.prop(self, 'import_infix')
|
|
|
|
# layout.prop(self, 'fix_common_misspellings')
|
|
|
|
# for k in Font.known_misspellings:
|
|
|
|
# character = ""
|
|
|
|
# if Font.known_misspellings[k] in Font.name_to_glyph_d:
|
|
|
|
# character = f" ({Font.name_to_glyph_d[Font.known_misspellings[k]]})"
|
|
|
|
# layout.label(text=f"{k} -> {Font.known_misspellings[k]}{character}")
|
2024-05-28 14:11:32 +02:00
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
global shared
|
|
|
|
scene = bpy.context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d_data = scene.abc3d_data
|
|
|
|
abc3d = scene.abc3d
|
2024-05-28 14:11:32 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
fontcollection = bpy.data.collections.get("ABC3D")
|
2024-05-28 14:11:32 +02:00
|
|
|
|
2024-06-27 14:56:43 +02:00
|
|
|
# check if all is good to proceed
|
2024-05-28 16:53:01 +02:00
|
|
|
if fontcollection is None:
|
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: There is no collection")
|
|
|
|
return {'CANCELLED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
if abc3d_data.active_font_index < 0:
|
2024-06-27 14:56:43 +02:00
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: There is no active font")
|
|
|
|
return {'CANCELLED'}
|
2024-05-28 16:53:01 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
if len(abc3d_data.available_fonts) <= abc3d_data.active_font_index:
|
2024-06-27 14:56:43 +02:00
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: Active font is not available")
|
|
|
|
return {'CANCELLED'}
|
|
|
|
|
|
|
|
# save state to restore later
|
|
|
|
was_fontcollection_linked = scene.collection.children.find(fontcollection.name) >= 0
|
|
|
|
was_selection = []
|
|
|
|
for obj in bpy.context.selected_objects:
|
|
|
|
was_selection.append(obj)
|
|
|
|
was_active_object = bpy.context.view_layer.objects.active
|
|
|
|
|
|
|
|
bpy.ops.object.select_all(action="DESELECT")
|
2024-05-28 16:53:01 +02:00
|
|
|
|
|
|
|
# get save data
|
2024-08-14 11:26:19 +02:00
|
|
|
selected_font = abc3d_data.available_fonts[abc3d_data.active_font_index]
|
2024-05-28 14:11:32 +02:00
|
|
|
|
2024-07-01 14:39:07 +02:00
|
|
|
# print(selected_font.font_name)
|
2024-08-08 11:28:31 +02:00
|
|
|
self.report({'INFO'}, f"{bl_info['name']}: {selected_font.font_name} {selected_font.face_name}")
|
2024-06-27 14:56:43 +02:00
|
|
|
preferences = getPreferences(context)
|
|
|
|
print(f"assets folder: {preferences.assets_dir}")
|
|
|
|
|
|
|
|
bpy.ops.scene.new(type='FULL_COPY')
|
|
|
|
|
|
|
|
linked_collections = bpy.context.scene.collection.children.values()
|
|
|
|
for c in linked_collections:
|
|
|
|
bpy.context.scene.collection.children.unlink(c)
|
|
|
|
bpy.context.scene.collection.children.link(fontcollection)
|
|
|
|
|
|
|
|
# select what needs to be selected
|
|
|
|
export_objects = []
|
|
|
|
for obj in fontcollection.objects:
|
|
|
|
if obj["font_name"] == selected_font.font_name:
|
2024-08-08 11:30:39 +02:00
|
|
|
if not butils.is_metrics_object(obj):
|
|
|
|
obj.select_set(True)
|
|
|
|
export_objects.append(obj)
|
2024-08-14 13:39:47 +02:00
|
|
|
else:
|
|
|
|
obj.select_set(True)
|
|
|
|
butils.add_faces_to_metrics(obj)
|
|
|
|
export_objects.append(obj)
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
context_override = bpy.context.copy()
|
|
|
|
context_override["selected_objects"] = list(export_objects)
|
|
|
|
# context_override["scene"] = bpy.context.scene.copy()
|
|
|
|
with bpy.context.temp_override(**context_override):
|
2024-06-28 10:24:22 +02:00
|
|
|
filepath = f"{preferences.assets_dir}/fonts/{selected_font.font_name}.gltf"
|
|
|
|
# get rid of scene extra data before export
|
2024-08-08 11:31:39 +02:00
|
|
|
scene_keys = []
|
2024-06-28 10:24:22 +02:00
|
|
|
for k in bpy.context.scene.keys():
|
2024-08-08 11:31:39 +02:00
|
|
|
scene_keys.append(k)
|
|
|
|
for k in scene_keys:
|
2024-06-28 10:24:22 +02:00
|
|
|
del bpy.context.scene[k]
|
2024-06-27 14:56:43 +02:00
|
|
|
|
|
|
|
# save as gltf
|
2024-06-28 10:24:56 +02:00
|
|
|
bpy.ops.export_scene.gltf(
|
2024-06-27 14:56:43 +02:00
|
|
|
filepath=filepath,
|
|
|
|
check_existing=False,
|
2024-08-08 11:31:59 +02:00
|
|
|
export_format='GLB', # GLB or GLTF_SEPARATE
|
2024-06-27 14:56:43 +02:00
|
|
|
export_extras=True,
|
|
|
|
# export_hierarchy_full_collections=True,
|
|
|
|
# use_active_collection_with_nested=True,
|
|
|
|
use_selection=True,
|
|
|
|
use_active_scene=True,
|
|
|
|
)
|
|
|
|
# bpy.app.timers.register(lambda: bpy.ops.scene.delete(), first_interval=5)
|
2024-05-28 16:53:01 +02:00
|
|
|
|
2024-06-27 14:56:43 +02:00
|
|
|
bpy.ops.scene.delete()
|
|
|
|
# restore()
|
2024-05-28 16:53:01 +02:00
|
|
|
|
2024-08-08 11:32:23 +02:00
|
|
|
for obj in fontcollection.objects:
|
|
|
|
if obj["font_name"] == selected_font.font_name:
|
|
|
|
if butils.is_metrics_object(obj):
|
|
|
|
butils.remove_faces_from_metrics(obj)
|
|
|
|
self.report({'INFO'}, f"did it")
|
|
|
|
|
2024-05-28 14:11:32 +02:00
|
|
|
return {'FINISHED'}
|
2024-08-14 11:26:19 +02:00
|
|
|
# keep = ['io_anim_bvh', 'io_curve_svg', 'io_mesh_stl', 'io_mesh_uv_layout', 'io_scene_fbx', 'io_scene_gltf2', 'io_scene_x3d', 'cycles', 'pose_library', 'abc3d']
|
2024-06-27 14:56:43 +02:00
|
|
|
# for addon in keep:
|
|
|
|
# bpy.ops.preferences.addon_enable(module=addon)
|
2024-05-28 14:11:32 +02:00
|
|
|
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_CreateFontFromObjects(bpy.types.Operator):
|
2024-08-07 11:56:13 +02:00
|
|
|
"""Create Font from selected objects"""
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_idname = f"{__name__}.create_font_from_objects"
|
2024-05-21 18:00:49 +02:00
|
|
|
bl_label = "Create Font"
|
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
|
|
|
|
2024-08-12 11:22:44 +02:00
|
|
|
font_name: bpy.props.StringProperty(
|
|
|
|
default="NM_Origin",
|
|
|
|
)
|
|
|
|
face_name: bpy.props.StringProperty(
|
|
|
|
default="Tender",
|
|
|
|
)
|
|
|
|
import_infix: bpy.props.StringProperty(
|
|
|
|
default="_NM_Origin_Tender",
|
|
|
|
)
|
2024-08-14 10:50:57 +02:00
|
|
|
autodetect_names: bpy.props.BoolProperty(
|
|
|
|
default=True,
|
|
|
|
)
|
2024-08-12 11:22:44 +02:00
|
|
|
fix_common_misspellings: bpy.props.BoolProperty(
|
|
|
|
default=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
wm = context.window_manager
|
|
|
|
return wm.invoke_props_dialog(self)
|
|
|
|
|
|
|
|
def draw(self, contex):
|
|
|
|
layout = self.layout
|
2024-08-14 10:50:57 +02:00
|
|
|
row = layout.row()
|
|
|
|
row.prop(self, 'autodetect_names')
|
|
|
|
if self.autodetect_names:
|
|
|
|
scale_y = 0.5
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="Watch out, follow convention in naming your meshes:")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="'<glyph id>_<font name>_<face name>'")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text=" - glyph id: unicode glyph name or raw glyph")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text=" - font name: font name with underscore")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text=" - face name: face name")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="working examples:")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="- 'A_NM_Origin_Tender'")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="- 'B_NM_Origin_Tender'")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="- 'arrowright_NM_Origin_Tender'")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="- '→_NM_Origin_Tender' (equal to above)")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="- 'quotesingle_NM_Origin_Tender.001'")
|
|
|
|
row = layout.row(); row.scale_y = scale_y
|
|
|
|
row.label(text="- 'colon_NM_Origin_Tender_2'")
|
|
|
|
box = layout.box()
|
|
|
|
box.enabled = not self.autodetect_names
|
|
|
|
box.prop(self, 'font_name')
|
|
|
|
box.prop(self, 'face_name')
|
|
|
|
box.prop(self, 'import_infix')
|
2024-08-12 11:22:44 +02:00
|
|
|
layout.prop(self, 'fix_common_misspellings')
|
2024-08-14 10:50:57 +02:00
|
|
|
if self.fix_common_misspellings:
|
|
|
|
for k in Font.known_misspellings:
|
|
|
|
character = ""
|
|
|
|
if Font.known_misspellings[k] in Font.name_to_glyph_d:
|
|
|
|
character = f" ({Font.name_to_glyph_d[Font.known_misspellings[k]]})"
|
|
|
|
row = layout.row(); row.scale_y = 0.5
|
|
|
|
row.label(text=f"{k} → {Font.known_misspellings[k]}{character}")
|
2024-08-12 11:22:44 +02:00
|
|
|
|
2024-05-21 18:00:49 +02:00
|
|
|
def execute(self, context):
|
2024-08-14 10:50:57 +02:00
|
|
|
print(f"executing {self.bl_idname}")
|
2024-05-21 18:00:49 +02:00
|
|
|
global shared
|
|
|
|
scene = bpy.context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
fontcollection = bpy.data.collections.get("ABC3D")
|
2024-05-21 18:00:49 +02:00
|
|
|
|
|
|
|
if fontcollection is None:
|
2024-08-14 11:26:19 +02:00
|
|
|
fontcollection = bpy.data.collections.new("ABC3D")
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
ifxsplit = abc3d.import_infix.split('_')
|
2024-08-12 11:22:44 +02:00
|
|
|
# if len(ifxsplit) != 4:
|
|
|
|
|
|
|
|
# font_name = f"{ifxsplit[1]}_{ifxsplit[2]}"
|
|
|
|
# face_name = ifxsplit[3]
|
|
|
|
font_name = self.font_name
|
|
|
|
face_name = self.face_name
|
2024-05-21 18:00:49 +02:00
|
|
|
|
2024-08-07 11:56:13 +02:00
|
|
|
# TODO: do not clear
|
2024-08-14 11:26:19 +02:00
|
|
|
# abc3d_data.available_fonts.clear()
|
2024-08-12 11:22:44 +02:00
|
|
|
# Font.fonts = {}
|
2024-05-21 18:00:49 +02:00
|
|
|
currentObjects = []
|
2024-08-07 11:56:13 +02:00
|
|
|
for o in context.selected_objects:
|
2024-05-21 18:00:49 +02:00
|
|
|
if o.name not in currentObjects:
|
2024-08-14 10:50:57 +02:00
|
|
|
print(f"processing {o.name}")
|
|
|
|
process_object = True
|
|
|
|
if self.autodetect_names:
|
|
|
|
ifxsplit = o.name.split('_')
|
|
|
|
if len(ifxsplit) < 4:
|
|
|
|
print(f"whoops name could not be autodetected {o.name}")
|
|
|
|
continue
|
|
|
|
font_name = f"{ifxsplit[1]}_{ifxsplit[2]}"
|
|
|
|
face_name = ifxsplit[3]
|
|
|
|
|
|
|
|
if butils.is_mesh(o) and not butils.is_metrics_object(o):
|
2024-05-21 18:00:49 +02:00
|
|
|
uc = o.users_collection
|
2024-08-14 11:26:19 +02:00
|
|
|
# regex = f"{abc3d.import_infix}(.)*"
|
2024-08-12 11:22:44 +02:00
|
|
|
if self.fix_common_misspellings:
|
|
|
|
o.name = Font.fix_glyph_name_misspellings(o.name)
|
2024-08-14 10:50:57 +02:00
|
|
|
# name = re.sub(regex, "", o.name)
|
|
|
|
# glyph_id = Font.name_to_glyph(name)
|
|
|
|
name = o.name.split('_')[0]
|
2024-08-12 11:22:44 +02:00
|
|
|
glyph_id = Font.name_to_glyph(name)
|
|
|
|
|
|
|
|
if type(glyph_id )!= type(None):
|
2024-06-27 14:56:43 +02:00
|
|
|
o["glyph"] = glyph_id
|
|
|
|
o["font_name"] = font_name
|
|
|
|
o["face_name"] = face_name
|
|
|
|
# butils.apply_all_transforms(o)
|
2024-05-21 18:00:49 +02:00
|
|
|
butils.move_in_fontcollection(
|
|
|
|
o,
|
2024-06-27 14:56:43 +02:00
|
|
|
fontcollection)
|
2024-05-21 18:00:49 +02:00
|
|
|
Font.add_glyph(
|
|
|
|
font_name,
|
|
|
|
face_name,
|
|
|
|
glyph_id,
|
|
|
|
o)
|
|
|
|
|
|
|
|
#TODO: is there a better way to iterate over a CollectionProperty?
|
|
|
|
found = False
|
2024-08-14 11:26:19 +02:00
|
|
|
for f in abc3d_data.available_fonts.values():
|
2024-08-12 11:22:44 +02:00
|
|
|
if (f.font_name == font_name
|
|
|
|
and f.face_name == face_name):
|
2024-05-21 18:00:49 +02:00
|
|
|
found = True
|
|
|
|
break
|
|
|
|
if not found:
|
2024-08-14 11:26:19 +02:00
|
|
|
f = abc3d_data.available_fonts.add()
|
2024-05-21 18:00:49 +02:00
|
|
|
f.font_name = font_name
|
2024-08-12 11:22:44 +02:00
|
|
|
f.face_name = face_name
|
2024-05-21 18:00:49 +02:00
|
|
|
|
|
|
|
else:
|
2024-08-12 11:22:44 +02:00
|
|
|
print(f"import warning: did not understand glyph {name}")
|
2024-05-21 18:00:49 +02:00
|
|
|
self.report({'INFO'}, f"did not understand glyph {name}")
|
2024-05-08 16:19:47 +02:00
|
|
|
|
|
|
|
return {'FINISHED'}
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_PT_RightPropertiesPanel(bpy.types.Panel):
|
2024-07-01 14:39:07 +02:00
|
|
|
"""Creates a Panel in the Object properties window"""
|
2024-08-04 12:52:37 +02:00
|
|
|
bl_label = f"{bl_info['name']}"
|
2024-08-14 11:26:19 +02:00
|
|
|
bl_idname = "ABC3D_PT_RightPropertiesPanel"
|
2024-07-01 14:39:07 +02:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "object"
|
|
|
|
|
2024-07-10 16:34:43 +02:00
|
|
|
@classmethod
|
|
|
|
def poll(self,context):
|
|
|
|
# only show the panel, if it's a textobject or a glyph
|
2024-08-14 11:26:19 +02:00
|
|
|
is_text = type(next((t for t in context.scene.abc3d_data.available_texts if t.text_object == context.active_object), None)) != type(None)
|
|
|
|
is_glyph = type(next((t for t in context.scene.abc3d_data.available_texts if t.text_object == context.active_object.parent), None)) != type(None)
|
2024-07-10 16:34:43 +02:00
|
|
|
return is_text or is_glyph
|
|
|
|
|
2024-07-01 14:39:07 +02:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
scene = context.scene
|
2024-08-14 11:26:19 +02:00
|
|
|
abc3d = scene.abc3d
|
|
|
|
abc3d_data = scene.abc3d_data
|
2024-07-01 14:39:07 +02:00
|
|
|
|
|
|
|
obj = context.active_object
|
|
|
|
|
2024-08-05 12:59:07 +02:00
|
|
|
def is_it_text():
|
2024-08-14 11:26:19 +02:00
|
|
|
return type(next((t for t in context.scene.abc3d_data.available_texts if t.text_object == context.active_object), None)) != type(None)
|
2024-08-05 12:59:07 +02:00
|
|
|
def is_it_glyph():
|
2024-08-14 11:26:19 +02:00
|
|
|
return type(next((t for t in context.scene.abc3d_data.available_texts if t.text_object == context.active_object.parent), None)) != type(None)
|
2024-07-10 16:34:43 +02:00
|
|
|
|
2024-08-05 12:59:07 +02:00
|
|
|
is_text = is_it_text()
|
|
|
|
is_glyph = is_it_glyph()
|
2024-07-10 16:34:43 +02:00
|
|
|
|
2024-08-05 12:59:07 +02:00
|
|
|
textobject = obj if is_text else obj.parent if is_glyph else obj
|
2024-08-14 11:26:19 +02:00
|
|
|
available_text = abc3d_data.available_texts[abc3d_data.active_text_index]
|
2024-07-01 14:39:07 +02:00
|
|
|
|
2024-08-05 12:59:07 +02:00
|
|
|
# row = layout.row()
|
|
|
|
# row.label(text="Hello world!", icon='WORLD_DATA')
|
|
|
|
# row = layout.row()
|
|
|
|
# row.label(text="Active object is: " + obj.name)
|
|
|
|
# row = layout.row()
|
|
|
|
# row.label(text="text object is: " + textobject.name)
|
2024-07-10 16:34:43 +02:00
|
|
|
row = layout.row()
|
2024-08-14 11:26:19 +02:00
|
|
|
row.label(text=f"active text index is: {abc3d_data.active_text_index}")
|
2024-08-05 12:59:07 +02:00
|
|
|
|
|
|
|
layout.row().label(text="Text Properties:")
|
2024-08-04 12:52:37 +02:00
|
|
|
layout.row().prop(available_text, "text")
|
|
|
|
layout.row().prop(available_text, "letter_spacing")
|
2024-08-05 12:59:07 +02:00
|
|
|
layout.row().prop(available_text, "font_size")
|
2024-08-08 11:30:05 +02:00
|
|
|
layout.row().prop(available_text, "compensate_curvature")
|
|
|
|
layout.row().prop(available_text, "ignore_orientation")
|
2024-08-05 12:59:07 +02:00
|
|
|
layout.column().prop(available_text, "translation")
|
2024-08-04 12:52:37 +02:00
|
|
|
layout.column().prop(available_text, "orientation")
|
2024-07-01 14:39:07 +02:00
|
|
|
|
2024-08-05 12:59:07 +02:00
|
|
|
if is_glyph:
|
|
|
|
layout.row().label(text="Glyph Properties:")
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
class ABC3D_OT_Reporter(bpy.types.Operator):
|
2024-08-14 10:50:57 +02:00
|
|
|
bl_idname = f"{__name__}.reporter"
|
|
|
|
bl_label = "Report"
|
|
|
|
|
|
|
|
label = bpy.props.StringProperty(
|
|
|
|
name="label",
|
|
|
|
default="INFO",
|
|
|
|
)
|
|
|
|
message = bpy.props.StringProperty(
|
|
|
|
name="message",
|
|
|
|
default="I have nothing to say really",
|
|
|
|
)
|
|
|
|
|
|
|
|
def execute(self, context):
|
|
|
|
#this is where I send the message
|
|
|
|
self.report({'INFO'}, 'whatever')
|
|
|
|
print("lalala reporter")
|
|
|
|
for i in range(0,10):
|
|
|
|
butils.ShowMessageBox('whatever','INFO','INFO')
|
|
|
|
return {'FINISHED'}
|
2024-07-01 14:39:07 +02:00
|
|
|
|
2024-05-08 16:19:47 +02:00
|
|
|
classes = (
|
2024-08-14 11:26:19 +02:00
|
|
|
ABC3D_addonPreferences,
|
|
|
|
ABC3D_available_font,
|
|
|
|
ABC3D_glyph_properties,
|
|
|
|
ABC3D_text_properties,
|
|
|
|
ABC3D_data,
|
|
|
|
ABC3D_settings,
|
|
|
|
ABC3D_UL_fonts,
|
|
|
|
ABC3D_UL_texts,
|
|
|
|
ABC3D_PT_Panel,
|
|
|
|
ABC3D_PT_LoadFontPanel,
|
|
|
|
ABC3D_PT_FontList,
|
|
|
|
ABC3D_PT_TextPlacement,
|
|
|
|
ABC3D_PT_TextManagement,
|
|
|
|
ABC3D_PT_FontCreation,
|
|
|
|
ABC3D_PT_TextPropertiesPanel,
|
2024-08-14 13:39:47 +02:00
|
|
|
ABC3D_OT_LoadInstalledFonts,
|
2024-08-14 11:26:19 +02:00
|
|
|
ABC3D_OT_AddDefaultMetrics,
|
|
|
|
ABC3D_OT_RemoveMetrics,
|
|
|
|
ABC3D_OT_AlignMetricsToActiveObject,
|
|
|
|
ABC3D_OT_AlignMetrics,
|
|
|
|
ABC3D_OT_TemporaryHelper,
|
|
|
|
ABC3D_OT_PlaceText,
|
|
|
|
ABC3D_OT_LoadFont,
|
|
|
|
ABC3D_OT_ToggleABC3DCollection,
|
|
|
|
ABC3D_OT_SaveFontToFile,
|
|
|
|
ABC3D_OT_CreateFontFromObjects,
|
|
|
|
ABC3D_PT_RightPropertiesPanel,
|
|
|
|
ABC3D_OT_Reporter,
|
2024-05-08 16:19:47 +02:00
|
|
|
)
|
|
|
|
|
2024-07-10 16:34:43 +02:00
|
|
|
@persistent
|
|
|
|
def load_handler(self, dummy):
|
2024-07-10 17:14:02 +02:00
|
|
|
if not bpy.app.timers.is_registered(butils.execute_queued_functions):
|
|
|
|
bpy.app.timers.register(butils.execute_queued_functions)
|
2024-08-14 10:50:57 +02:00
|
|
|
butils.run_in_main_thread(butils.update_available_fonts)
|
2024-08-14 13:39:47 +02:00
|
|
|
# butils.run_in_main_thread(bpy.ops.abc3d.load_installed_fonts)
|
2024-07-10 16:34:43 +02:00
|
|
|
|
|
|
|
def load_handler_unload():
|
2024-07-10 17:14:02 +02:00
|
|
|
if bpy.app.timers.is_registered(butils.execute_queued_functions):
|
|
|
|
bpy.app.timers.unregister(butils.execute_queued_functions)
|
2024-07-10 16:34:43 +02:00
|
|
|
|
2024-08-04 12:52:37 +02:00
|
|
|
@persistent
|
|
|
|
def on_frame_changed(self, dummy):
|
2024-08-14 11:26:19 +02:00
|
|
|
for t in bpy.context.scene.abc3d_data.available_texts:
|
2024-08-04 12:52:37 +02:00
|
|
|
# TODO PERFORMANCE: only on demand
|
|
|
|
butils.set_text_on_curve(t)
|
2024-08-14 11:26:19 +02:00
|
|
|
# for i, t in enumerate(bpy.context.scene.abc3d_data.available_texts):
|
2024-08-04 12:52:37 +02:00
|
|
|
# # TODO PERFORMANCE: only on demand
|
|
|
|
# # butils.set_text_on_curve(t)
|
|
|
|
# pass
|
|
|
|
|
2024-05-08 16:19:47 +02:00
|
|
|
def register():
|
|
|
|
for cls in classes:
|
|
|
|
bpy.utils.register_class(cls)
|
2024-08-14 11:26:19 +02:00
|
|
|
bpy.types.Scene.abc3d = bpy.props.PointerProperty(type=ABC3D_settings)
|
|
|
|
bpy.types.Scene.abc3d_data = bpy.props.PointerProperty(type=ABC3D_data)
|
2024-07-10 16:34:43 +02:00
|
|
|
# bpy.types.Object.__del__ = lambda self: print(f"Bye {self.name}")
|
2024-05-21 18:00:49 +02:00
|
|
|
print(f"REGISTER {bl_info['name']}")
|
|
|
|
|
2024-07-10 17:14:02 +02:00
|
|
|
# auto start if we load a blend file
|
2024-07-10 16:34:43 +02:00
|
|
|
if load_handler not in bpy.app.handlers.load_post:
|
|
|
|
bpy.app.handlers.load_post.append(load_handler)
|
2024-07-10 17:14:02 +02:00
|
|
|
# and autostart if we reload script
|
|
|
|
load_handler(None, None)
|
2024-05-08 16:19:47 +02:00
|
|
|
|
2024-08-04 12:52:37 +02:00
|
|
|
if on_frame_changed not in bpy.app.handlers.frame_change_post:
|
|
|
|
bpy.app.handlers.frame_change_post.append(on_frame_changed)
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-08-04 12:52:37 +02:00
|
|
|
butils.run_in_main_thread(butils.clear_available_fonts)
|
2024-08-14 13:39:47 +02:00
|
|
|
# butils.run_in_main_thread(butils.load_installed_fonts)
|
2024-08-14 10:50:57 +02:00
|
|
|
butils.run_in_main_thread(butils.update_available_fonts)
|
2024-06-27 14:56:43 +02:00
|
|
|
|
2024-08-14 13:39:47 +02:00
|
|
|
# bpy.ops.abc3d.load_installed_fonts()
|
|
|
|
|
2024-08-12 11:22:44 +02:00
|
|
|
Font.name_to_glyph_d = Font.generate_name_to_glyph_d()
|
|
|
|
|
2024-05-08 16:19:47 +02:00
|
|
|
def unregister():
|
|
|
|
for cls in classes:
|
|
|
|
bpy.utils.unregister_class(cls)
|
2024-07-10 16:34:43 +02:00
|
|
|
|
2024-07-10 17:14:02 +02:00
|
|
|
# remove autostart when loading blend file
|
2024-07-10 16:34:43 +02:00
|
|
|
if load_handler in bpy.app.handlers.load_post:
|
|
|
|
bpy.app.handlers.load_post.remove(load_handler)
|
2024-07-10 17:14:02 +02:00
|
|
|
# and when reload script
|
2024-07-10 16:34:43 +02:00
|
|
|
load_handler_unload()
|
2024-05-08 16:19:47 +02:00
|
|
|
|
2024-08-04 12:52:37 +02:00
|
|
|
if on_frame_changed in bpy.app.handlers.frame_change_post:
|
|
|
|
bpy.app.handlers.frame_change_post.remove(on_frame_changed)
|
|
|
|
|
2024-08-14 11:26:19 +02:00
|
|
|
del bpy.types.Scene.abc3d
|
|
|
|
del bpy.types.Scene.abc3d_data
|
2024-05-21 18:00:49 +02:00
|
|
|
print(f"UNREGISTER {bl_info['name']}")
|
2024-05-08 16:19:47 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
register()
|
|
|
|
|