71 lines
2.1 KiB
Python
71 lines
2.1 KiB
Python
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
import bpy
|
|
import mathutils
|
|
|
|
from .dump_anything import Dumper, Loader, np_dump_collection, np_load_collection
|
|
from .bl_datablock import BlDatablock
|
|
from replication.exception import ContextError
|
|
|
|
POINT = ['co', 'weight_softbody', 'co_deform']
|
|
|
|
|
|
class BlLattice(BlDatablock):
|
|
bl_id = "lattices"
|
|
bl_class = bpy.types.Lattice
|
|
bl_check_common = False
|
|
bl_icon = 'LATTICE_DATA'
|
|
bl_reload_parent = False
|
|
|
|
def construct(data: dict) -> object:
|
|
return bpy.data.lattices.new(data["name"])
|
|
|
|
def load(data: dict, datablock: object):
|
|
if target.is_editmode:
|
|
raise ContextError("lattice is in edit mode")
|
|
|
|
loader = Loader()
|
|
loader.load(target, data)
|
|
|
|
np_load_collection(data['points'], target.points, POINT)
|
|
|
|
def dump(datablock: object) -> dict:
|
|
if instance.is_editmode:
|
|
raise ContextError("lattice is in edit mode")
|
|
|
|
dumper = Dumper()
|
|
dumper.depth = 1
|
|
dumper.include_filter = [
|
|
"name",
|
|
'type',
|
|
'points_u',
|
|
'points_v',
|
|
'points_w',
|
|
'interpolation_type_u',
|
|
'interpolation_type_v',
|
|
'interpolation_type_w',
|
|
'use_outside'
|
|
]
|
|
data = dumper.dump(instance)
|
|
|
|
data['points'] = np_dump_collection(instance.points, POINT)
|
|
|
|
return data
|
|
|