2022-04-03 22:48:12 +08:00
|
|
|
import bpy, mathutils
|
|
|
|
from . import UTILS_functions
|
2020-09-02 23:04:21 +08:00
|
|
|
|
2022-04-03 22:48:12 +08:00
|
|
|
class BALLANCE_OT_add_rails(bpy.types.Operator):
|
2020-09-02 23:04:21 +08:00
|
|
|
"""Add rail"""
|
2022-04-03 22:48:12 +08:00
|
|
|
bl_idname = "ballance.add_rails"
|
2020-09-03 23:44:47 +08:00
|
|
|
bl_label = "Add rail section"
|
2020-09-02 23:04:21 +08:00
|
|
|
bl_options = {'UNDO'}
|
|
|
|
|
|
|
|
rail_type: bpy.props.EnumProperty(
|
|
|
|
name="Type",
|
|
|
|
description="Rail type",
|
|
|
|
items=(('MONO', "Monorail", ""),
|
|
|
|
('DOUBLE', "Rail", ""),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
rail_radius: bpy.props.FloatProperty(
|
|
|
|
name="Rail radius",
|
|
|
|
description="Define rail section radius",
|
|
|
|
default=0.375,
|
|
|
|
)
|
|
|
|
|
|
|
|
rail_span: bpy.props.FloatProperty(
|
|
|
|
name="Rail span",
|
|
|
|
description="Define rail span",
|
|
|
|
default=3.75,
|
|
|
|
)
|
|
|
|
|
|
|
|
def execute(self, context):
|
2020-09-03 23:44:47 +08:00
|
|
|
bpy.ops.object.select_all(action='DESELECT')
|
|
|
|
# create one first
|
|
|
|
bpy.ops.mesh.primitive_circle_add(vertices=8,
|
|
|
|
radius=self.rail_radius,
|
|
|
|
fill_type='NOTHING',
|
|
|
|
calc_uvs=False,
|
|
|
|
enter_editmode=False,
|
|
|
|
align='WORLD',
|
|
|
|
location=(0.0, 0.0, 0.0))
|
|
|
|
|
|
|
|
firstObj = bpy.context.selected_objects[0]
|
|
|
|
|
|
|
|
# for double rail
|
|
|
|
if self.rail_type == 'DOUBLE':
|
|
|
|
bpy.ops.object.select_all(action='DESELECT')
|
|
|
|
bpy.ops.mesh.primitive_circle_add(vertices=8,
|
|
|
|
radius=self.rail_radius,
|
|
|
|
fill_type='NOTHING',
|
|
|
|
calc_uvs=False,
|
|
|
|
enter_editmode=False,
|
|
|
|
align='WORLD',
|
|
|
|
location=(self.rail_span, 0.0, 0.0))
|
|
|
|
secondObj = bpy.context.selected_objects[0]
|
|
|
|
|
|
|
|
# merge
|
|
|
|
bpy.ops.object.select_all(action='DESELECT')
|
|
|
|
bpy.context.view_layer.objects.active = firstObj
|
|
|
|
firstObj.select_set(True)
|
|
|
|
secondObj.select_set(True)
|
|
|
|
bpy.ops.object.join()
|
|
|
|
|
|
|
|
# apply 3d cursor
|
2022-04-04 12:45:41 +08:00
|
|
|
UTILS_functions.move_to_cursor(firstObj)
|
2020-09-03 23:44:47 +08:00
|
|
|
|
2020-09-02 23:04:21 +08:00
|
|
|
return {'FINISHED'}
|
|
|
|
|
|
|
|
def invoke(self, context, event):
|
|
|
|
wm = context.window_manager
|
|
|
|
return wm.invoke_props_dialog(self)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
layout.prop(self, "rail_type")
|
|
|
|
layout.prop(self, "rail_radius")
|
2020-09-03 23:44:47 +08:00
|
|
|
if self.rail_type == 'DOUBLE':
|
|
|
|
layout.prop(self, "rail_span")
|
2022-04-03 22:48:12 +08:00
|
|
|
|