2019-11-11 10:03:52 +00:00
|
|
|
""" Gathers the Blender objects from the current scene and returns them as a list of
|
|
|
|
Model objects. """
|
|
|
|
|
|
|
|
import bpy
|
2019-11-15 09:40:47 +00:00
|
|
|
import math
|
2019-11-15 07:02:04 +00:00
|
|
|
from typing import List, Set, Dict, Tuple
|
2019-11-11 10:03:52 +00:00
|
|
|
from itertools import zip_longest
|
|
|
|
from .msh_model import *
|
|
|
|
from .msh_model_utilities import *
|
|
|
|
from .msh_utilities import *
|
|
|
|
|
|
|
|
SKIPPED_OBJECT_TYPES = {"LATTICE", "CAMERA", "LIGHT", "SPEAKER", "LIGHT_PROBE"}
|
|
|
|
MESH_OBJECT_TYPES = {"MESH", "CURVE", "SURFACE", "META", "FONT", "GPENCIL"}
|
2019-11-19 14:33:01 +00:00
|
|
|
MAX_MSH_VERTEX_COUNT = 32767
|
2019-11-11 10:03:52 +00:00
|
|
|
|
2019-11-20 06:18:49 +00:00
|
|
|
def gather_models(apply_modifiers: bool) -> List[Model]:
|
2019-11-11 10:03:52 +00:00
|
|
|
""" Gathers the Blender objects from the current scene and returns them as a list of
|
|
|
|
Model objects. """
|
|
|
|
|
2019-11-13 03:38:55 +00:00
|
|
|
depsgraph = bpy.context.evaluated_depsgraph_get()
|
2019-11-11 10:03:52 +00:00
|
|
|
parents = create_parents_set()
|
|
|
|
|
|
|
|
models_list: List[Model] = []
|
|
|
|
|
2019-11-13 03:38:55 +00:00
|
|
|
for uneval_obj in bpy.context.scene.objects:
|
|
|
|
if uneval_obj.type in SKIPPED_OBJECT_TYPES and uneval_obj.name not in parents:
|
2019-11-11 10:03:52 +00:00
|
|
|
continue
|
|
|
|
|
2019-11-20 06:18:49 +00:00
|
|
|
if apply_modifiers:
|
|
|
|
obj = uneval_obj.evaluated_get(depsgraph)
|
|
|
|
else:
|
|
|
|
obj = uneval_obj
|
2019-11-13 03:38:55 +00:00
|
|
|
|
2019-11-21 10:23:52 +00:00
|
|
|
check_for_bad_lod_suffix(obj)
|
|
|
|
|
2019-11-18 12:33:55 +00:00
|
|
|
local_translation, local_rotation, _ = obj.matrix_local.decompose()
|
|
|
|
|
2019-11-11 10:03:52 +00:00
|
|
|
model = Model()
|
|
|
|
model.name = obj.name
|
|
|
|
model.model_type = get_model_type(obj)
|
|
|
|
model.hidden = get_is_model_hidden(obj)
|
2019-11-18 12:33:55 +00:00
|
|
|
model.transform.rotation = convert_rotation_space(local_rotation)
|
|
|
|
model.transform.translation = convert_vector_space(local_translation)
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
if obj.parent is not None:
|
|
|
|
model.parent = obj.parent.name
|
|
|
|
|
|
|
|
if obj.type in MESH_OBJECT_TYPES:
|
|
|
|
mesh = obj.to_mesh()
|
|
|
|
model.geometry = create_mesh_geometry(mesh)
|
|
|
|
obj.to_mesh_clear()
|
|
|
|
|
2019-11-18 12:33:55 +00:00
|
|
|
_, _, world_scale = obj.matrix_world.decompose()
|
|
|
|
world_scale = convert_scale_space(world_scale)
|
|
|
|
scale_segments(world_scale, model.geometry)
|
2019-11-19 14:33:01 +00:00
|
|
|
|
|
|
|
for segment in model.geometry:
|
|
|
|
if len(segment.positions) > MAX_MSH_VERTEX_COUNT:
|
|
|
|
raise RuntimeError(f"Object '{obj.name}' has resulted in a .msh geometry segment that has "
|
|
|
|
f"more than {MAX_MSH_VERTEX_COUNT} vertices! Split the object's mesh up "
|
|
|
|
f"and try again!")
|
2019-11-11 10:03:52 +00:00
|
|
|
|
2019-11-15 09:40:47 +00:00
|
|
|
if get_is_collision_primitive(obj):
|
|
|
|
model.collisionprimitive = get_collision_primitive(obj)
|
|
|
|
|
2019-11-11 10:03:52 +00:00
|
|
|
models_list.append(model)
|
|
|
|
|
|
|
|
return models_list
|
|
|
|
|
|
|
|
def create_parents_set() -> Set[str]:
|
|
|
|
""" Creates a set with the names of the Blender objects from the current scene
|
|
|
|
that have at least one child. """
|
|
|
|
|
|
|
|
parents = set()
|
|
|
|
|
|
|
|
for obj in bpy.context.scene.objects:
|
|
|
|
if obj.parent is not None:
|
|
|
|
parents.add(obj.parent.name)
|
|
|
|
|
|
|
|
return parents
|
|
|
|
|
|
|
|
def create_mesh_geometry(mesh: bpy.types.Mesh) -> List[GeometrySegment]:
|
|
|
|
""" Creates a list of GeometrySegment objects from a Blender mesh.
|
|
|
|
Does NOT create triangle strips in the GeometrySegment however. """
|
|
|
|
|
2019-11-15 07:02:04 +00:00
|
|
|
if mesh.has_custom_normals:
|
|
|
|
mesh.calc_normals_split()
|
|
|
|
|
2019-11-11 10:03:52 +00:00
|
|
|
mesh.validate_material_indices()
|
|
|
|
mesh.calc_loop_triangles()
|
|
|
|
|
2019-11-15 07:02:04 +00:00
|
|
|
material_count = max(len(mesh.materials), 1)
|
2019-11-11 10:03:52 +00:00
|
|
|
|
2019-11-15 07:02:04 +00:00
|
|
|
segments: List[GeometrySegment] = [GeometrySegment() for i in range(material_count)]
|
2019-11-20 02:10:44 +00:00
|
|
|
vertex_cache: List[Dict[Tuple[float], int]] = [dict() for i in range(material_count)]
|
|
|
|
vertex_remap: List[Dict[Tuple[int, int], int]] = [dict() for i in range(material_count)]
|
2019-11-15 07:02:04 +00:00
|
|
|
polygons: List[Set[int]] = [set() for i in range(material_count)]
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
if mesh.vertex_colors.active is not None:
|
|
|
|
for segment in segments:
|
|
|
|
segment.colors = []
|
|
|
|
|
|
|
|
for segment, material in zip(segments, mesh.materials):
|
|
|
|
segment.material_name = material.name
|
|
|
|
|
2019-11-15 07:02:04 +00:00
|
|
|
def add_vertex(material_index: int, vertex_index: int, loop_index: int) -> int:
|
2019-11-11 10:03:52 +00:00
|
|
|
nonlocal segments, vertex_remap
|
|
|
|
|
2019-11-20 02:10:44 +00:00
|
|
|
vertex_cache_miss_index = -1
|
2019-11-11 10:03:52 +00:00
|
|
|
segment = segments[material_index]
|
2019-11-20 02:10:44 +00:00
|
|
|
cache = vertex_cache[material_index]
|
2019-11-11 10:03:52 +00:00
|
|
|
remap = vertex_remap[material_index]
|
|
|
|
|
2019-11-20 02:10:44 +00:00
|
|
|
def get_cache_vertex(vertex_index: int, loop_index: int):
|
|
|
|
yield mesh.vertices[vertex_index].co.x
|
|
|
|
yield mesh.vertices[vertex_index].co.y
|
|
|
|
yield mesh.vertices[vertex_index].co.z
|
|
|
|
|
|
|
|
if mesh.has_custom_normals:
|
|
|
|
yield mesh.loops[loop_index].normal.x
|
|
|
|
yield mesh.loops[loop_index].normal.y
|
|
|
|
yield mesh.loops[loop_index].normal.z
|
|
|
|
else:
|
|
|
|
yield mesh.vertices[vertex_index].normal.x
|
|
|
|
yield mesh.vertices[vertex_index].normal.y
|
|
|
|
yield mesh.vertices[vertex_index].normal.z
|
|
|
|
|
|
|
|
if mesh.uv_layers.active is not None:
|
|
|
|
yield mesh.uv_layers.active.data[loop_index].uv.x
|
|
|
|
yield mesh.uv_layers.active.data[loop_index].uv.y
|
|
|
|
|
|
|
|
if segment.colors is not None:
|
2019-11-21 10:48:42 +00:00
|
|
|
for v in mesh.vertex_colors.active.data[loop_index].color:
|
2019-11-20 02:10:44 +00:00
|
|
|
yield v
|
|
|
|
|
|
|
|
vertex_cache_entry = tuple(get_cache_vertex(vertex_index, loop_index))
|
|
|
|
cached_vertex_index = cache.get(vertex_cache_entry, vertex_cache_miss_index)
|
|
|
|
|
|
|
|
if cached_vertex_index != vertex_cache_miss_index:
|
|
|
|
remap[(vertex_index, loop_index)] = cached_vertex_index
|
|
|
|
|
|
|
|
return cached_vertex_index
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
new_index: int = len(segment.positions)
|
2019-11-20 02:10:44 +00:00
|
|
|
cache[vertex_cache_entry] = new_index
|
2019-11-15 07:02:04 +00:00
|
|
|
remap[(vertex_index, loop_index)] = new_index
|
|
|
|
|
2019-11-15 07:41:31 +00:00
|
|
|
segment.positions.append(convert_vector_space(mesh.vertices[vertex_index].co))
|
2019-11-11 10:03:52 +00:00
|
|
|
|
2019-11-15 07:02:04 +00:00
|
|
|
if mesh.has_custom_normals:
|
2019-11-15 07:41:31 +00:00
|
|
|
segment.normals.append(convert_vector_space(mesh.loops[loop_index].normal))
|
2019-11-15 07:02:04 +00:00
|
|
|
else:
|
2019-11-15 07:41:31 +00:00
|
|
|
segment.normals.append(convert_vector_space(mesh.vertices[vertex_index].normal))
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
if mesh.uv_layers.active is None:
|
|
|
|
segment.texcoords.append(Vector((0.0, 0.0)))
|
|
|
|
else:
|
2019-11-15 07:02:04 +00:00
|
|
|
segment.texcoords.append(mesh.uv_layers.active.data[loop_index].uv.copy())
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
if segment.colors is not None:
|
2019-11-21 10:48:42 +00:00
|
|
|
segment.colors.append(list(mesh.vertex_colors.active.data[loop_index].color))
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
return new_index
|
|
|
|
|
|
|
|
for tri in mesh.loop_triangles:
|
|
|
|
polygons[tri.material_index].add(tri.polygon_index)
|
2019-11-15 07:41:31 +00:00
|
|
|
segments[tri.material_index].triangles.append([
|
|
|
|
add_vertex(tri.material_index, tri.vertices[0], tri.loops[0]),
|
2019-11-18 13:39:23 +00:00
|
|
|
add_vertex(tri.material_index, tri.vertices[1], tri.loops[1]),
|
|
|
|
add_vertex(tri.material_index, tri.vertices[2], tri.loops[2])])
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
for segment, remap, polys in zip(segments, vertex_remap, polygons):
|
|
|
|
for poly_index in polys:
|
|
|
|
poly = mesh.polygons[poly_index]
|
|
|
|
|
2019-11-15 07:02:04 +00:00
|
|
|
segment.polygons.append([remap[(v, l)] for v, l in zip(poly.vertices, poly.loop_indices)])
|
2019-11-11 10:03:52 +00:00
|
|
|
|
|
|
|
return segments
|
|
|
|
|
|
|
|
def get_model_type(obj: bpy.types.Object) -> ModelType:
|
|
|
|
""" Get the ModelType for a Blender object. """
|
|
|
|
# TODO: Skinning support, etc
|
|
|
|
|
|
|
|
if obj.type in MESH_OBJECT_TYPES:
|
|
|
|
return ModelType.STATIC
|
|
|
|
|
|
|
|
return ModelType.NULL
|
|
|
|
|
|
|
|
def get_is_model_hidden(obj: bpy.types.Object) -> bool:
|
|
|
|
""" Gets if a Blender object should be marked as hidden in the .msh file. """
|
|
|
|
|
|
|
|
name = obj.name.lower()
|
|
|
|
|
|
|
|
if name.startswith("sv_"):
|
|
|
|
return True
|
|
|
|
if name.startswith("p_"):
|
|
|
|
return True
|
|
|
|
if name.startswith("collision"):
|
|
|
|
return True
|
2019-11-21 10:23:52 +00:00
|
|
|
|
2019-11-11 10:03:52 +00:00
|
|
|
if obj.type not in MESH_OBJECT_TYPES:
|
|
|
|
return True
|
|
|
|
|
2019-11-21 10:23:52 +00:00
|
|
|
if name.endswith("_lod2"):
|
|
|
|
return True
|
|
|
|
if name.endswith("_lod3"):
|
|
|
|
return True
|
|
|
|
if name.endswith("_lowrez"):
|
|
|
|
return True
|
|
|
|
if name.endswith("_lowres"):
|
|
|
|
return True
|
|
|
|
|
2019-11-11 10:03:52 +00:00
|
|
|
return False
|
2019-11-15 07:41:31 +00:00
|
|
|
|
2019-11-15 09:40:47 +00:00
|
|
|
def get_is_collision_primitive(obj: bpy.types.Object) -> bool:
|
|
|
|
""" Gets if a Blender object represents a collision primitive. """
|
|
|
|
|
|
|
|
name = obj.name.lower()
|
|
|
|
|
|
|
|
return name.startswith("p_")
|
|
|
|
|
|
|
|
def get_collision_primitive(obj: bpy.types.Object) -> CollisionPrimitive:
|
|
|
|
""" Gets the CollisionPrimitive of an object or raises an error if
|
|
|
|
it can't. """
|
|
|
|
|
|
|
|
primitive = CollisionPrimitive()
|
|
|
|
primitive.shape = get_collision_primitive_shape(obj)
|
|
|
|
|
|
|
|
if primitive.shape == CollisionPrimitiveShape.SPHERE:
|
|
|
|
# Tolerate a 5% difference to account for icospheres with 2 subdivisions.
|
|
|
|
if not (math.isclose(obj.dimensions[0], obj.dimensions[1], rel_tol=0.05) and
|
|
|
|
math.isclose(obj.dimensions[0], obj.dimensions[2], rel_tol=0.05)):
|
|
|
|
raise RuntimeError(f"Object '{obj.name}' is being used as a sphere collision "
|
|
|
|
f"primitive but it's dimensions are not uniform!")
|
|
|
|
|
|
|
|
primitive.radius = max(obj.dimensions[0], obj.dimensions[1], obj.dimensions[2]) * 0.5
|
|
|
|
elif primitive.shape == CollisionPrimitiveShape.CYLINDER:
|
|
|
|
if not math.isclose(obj.dimensions[0], obj.dimensions[1], rel_tol=0.001):
|
|
|
|
raise RuntimeError(f"Object '{obj.name}' is being used as a cylinder collision "
|
|
|
|
f"primitive but it's X and Y dimensions are not uniform!")
|
|
|
|
primitive.radius = obj.dimensions[0] * 0.5
|
2019-11-18 12:33:55 +00:00
|
|
|
primitive.height = obj.dimensions[2]
|
2019-11-15 09:40:47 +00:00
|
|
|
elif primitive.shape == CollisionPrimitiveShape.BOX:
|
|
|
|
primitive.radius = obj.dimensions[0] * 0.5
|
|
|
|
primitive.height = obj.dimensions[2] * 0.5
|
|
|
|
primitive.length = obj.dimensions[1] * 0.5
|
|
|
|
|
|
|
|
return primitive
|
|
|
|
|
|
|
|
def get_collision_primitive_shape(obj: bpy.types.Object) -> CollisionPrimitiveShape:
|
|
|
|
""" Gets the CollisionPrimitiveShape of an object or raises an error if
|
|
|
|
it can't. """
|
|
|
|
|
|
|
|
name = obj.name.lower()
|
|
|
|
|
|
|
|
if "sphere" in name or "sphr" in name or "spr" in name:
|
|
|
|
return CollisionPrimitiveShape.SPHERE
|
|
|
|
if "cylinder" in name or "cyln" in name or "cyl" in name:
|
|
|
|
return CollisionPrimitiveShape.CYLINDER
|
2019-11-18 14:41:46 +00:00
|
|
|
if "box" in name or "cube" in name or "cuboid" in name:
|
2019-11-15 09:40:47 +00:00
|
|
|
return CollisionPrimitiveShape.BOX
|
|
|
|
|
|
|
|
raise RuntimeError(f"Object '{obj.name}' has no primitive type specified in it's name!")
|
|
|
|
|
2019-11-21 10:23:52 +00:00
|
|
|
def check_for_bad_lod_suffix(obj: bpy.types.Object):
|
|
|
|
""" Checks if the object has an LOD suffix that is known to be ignored by """
|
|
|
|
|
|
|
|
name = obj.name.lower()
|
|
|
|
failure_message = f"Object '{obj.name}' has unknown LOD suffix at the end of it's name!"
|
|
|
|
|
|
|
|
if name.endswith("_lod1"):
|
|
|
|
raise RuntimeError(failure_message)
|
|
|
|
|
|
|
|
for i in range(4, 10):
|
|
|
|
if name.endswith(f"_lod{i}"):
|
|
|
|
raise RuntimeError(failure_message)
|
|
|
|
|
2019-11-15 07:41:31 +00:00
|
|
|
def convert_vector_space(vec: Vector) -> Vector:
|
2019-11-18 13:39:23 +00:00
|
|
|
return Vector((-vec.x, vec.z, vec.y))
|
2019-11-15 07:41:31 +00:00
|
|
|
|
|
|
|
def convert_scale_space(vec: Vector) -> Vector:
|
|
|
|
return Vector(vec.xzy)
|
|
|
|
|
|
|
|
def convert_rotation_space(quat: Quaternion) -> Quaternion:
|
2019-11-18 13:39:23 +00:00
|
|
|
return Quaternion((-quat.w, quat.x, -quat.z, -quat.y))
|