finish add_floor ui display
This commit is contained in:
parent
35655a671d
commit
6ae4cbeddc
@ -66,6 +66,8 @@ class BALLANCE_OT_add_floor(bpy.types.Operator):
|
|||||||
name="Bottom face"
|
name="Bottom face"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
previous_floor_type = ''
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(self, context):
|
def poll(self, context):
|
||||||
prefs = bpy.context.preferences.addons[__package__].preferences
|
prefs = bpy.context.preferences.addons[__package__].preferences
|
||||||
@ -79,6 +81,22 @@ class BALLANCE_OT_add_floor(bpy.types.Operator):
|
|||||||
return wm.invoke_props_dialog(self)
|
return wm.invoke_props_dialog(self)
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
|
# get floor prototype
|
||||||
|
floor_prototype = config.floor_block_dict[self.floor_type]
|
||||||
|
|
||||||
|
# try sync default value
|
||||||
|
if self.previous_floor_type != self.floor_type:
|
||||||
|
self.previous_floor_type = self.floor_type
|
||||||
|
|
||||||
|
default_sides = floor_prototype['DefaultSideConfig']
|
||||||
|
self.use_2d_top = default_sides['UseTwoDTop']
|
||||||
|
self.use_2d_right = default_sides['UseTwoDRight']
|
||||||
|
self.use_2d_bottom = default_sides['UseTwoDBottom']
|
||||||
|
self.use_2d_left = default_sides['UseTwoDLeft']
|
||||||
|
self.use_3d_top = default_sides['UseThreeDTop']
|
||||||
|
self.use_3d_bottom = default_sides['UseThreeDBottom']
|
||||||
|
|
||||||
|
# show property
|
||||||
layout = self.layout
|
layout = self.layout
|
||||||
col = layout.column()
|
col = layout.column()
|
||||||
col.label(text="Basic param")
|
col.label(text="Basic param")
|
||||||
@ -88,17 +106,21 @@ class BALLANCE_OT_add_floor(bpy.types.Operator):
|
|||||||
|
|
||||||
col.separator()
|
col.separator()
|
||||||
col.label(text="Expand")
|
col.label(text="Expand")
|
||||||
col.prop(self, "expand_length_1")
|
if floor_prototype['ExpandType'] == 'Column' or floor_prototype['ExpandType'] == 'Freedom':
|
||||||
col.prop(self, "expand_length_2")
|
col.prop(self, "expand_length_1")
|
||||||
grids = col.grid_flow(columns=3)
|
if floor_prototype['ExpandType'] == 'Freedom':
|
||||||
|
col.prop(self, "expand_length_2")
|
||||||
|
col.label(text="Unit size: " + floor_prototype['UnitSize'])
|
||||||
|
col.label(text="Expand mode: " + floor_prototype['ExpandType'])
|
||||||
|
grids = col.grid_flow(row_major=True, columns=3)
|
||||||
grids.separator()
|
grids.separator()
|
||||||
grids.label(text="X")
|
grids.label(text=config.floor_expand_direction_map[floor_prototype['InitColumnDirection']][floor_prototype['ExpandType']][0])
|
||||||
grids.separator()
|
grids.separator()
|
||||||
grids.label(text="X")
|
grids.label(text=config.floor_expand_direction_map[floor_prototype['InitColumnDirection']][floor_prototype['ExpandType']][3])
|
||||||
grids.template_icon(icon_value = config.blenderIcon_floor_dict[self.floor_type])
|
grids.template_icon(icon_value = config.blenderIcon_floor_dict[self.floor_type])
|
||||||
grids.label(text="X")
|
grids.label(text=config.floor_expand_direction_map[floor_prototype['InitColumnDirection']][floor_prototype['ExpandType']][1])
|
||||||
grids.separator()
|
grids.separator()
|
||||||
grids.label(text="X")
|
grids.label(text=config.floor_expand_direction_map[floor_prototype['InitColumnDirection']][floor_prototype['ExpandType']][2])
|
||||||
grids.separator()
|
grids.separator()
|
||||||
|
|
||||||
col.separator()
|
col.separator()
|
||||||
@ -109,7 +131,7 @@ class BALLANCE_OT_add_floor(bpy.types.Operator):
|
|||||||
|
|
||||||
col.separator()
|
col.separator()
|
||||||
col.label(text="Sides")
|
col.label(text="Sides")
|
||||||
grids = col.grid_flow(columns=3)
|
grids = col.grid_flow(row_major=True, columns=3)
|
||||||
grids.separator()
|
grids.separator()
|
||||||
grids.prop(self, "use_2d_top")
|
grids.prop(self, "use_2d_top")
|
||||||
grids.separator()
|
grids.separator()
|
||||||
|
@ -115,6 +115,34 @@ component_list = [
|
|||||||
"PS_FourFlames"
|
"PS_FourFlames"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
'''
|
||||||
|
format: key is diection, value is a dict
|
||||||
|
dict's key is expand mode, value is a tuple
|
||||||
|
tuple always have 4 items, it means (TOP_STR, RIGHT_STR, BOTTOM_STR, LEFT_STR)
|
||||||
|
'''
|
||||||
|
floor_expand_direction_map = {
|
||||||
|
"PositiveX": {
|
||||||
|
"Static": ("X", "X", "X", "X"),
|
||||||
|
"Column": ("X", "X", "D1", "X"),
|
||||||
|
"Freedom": ("X", "X", "D1", "D2"),
|
||||||
|
},
|
||||||
|
"NegativeX": {
|
||||||
|
"Static": ("X", "X", "X", "X"),
|
||||||
|
"Column": ("D1", "X", "X", "X"),
|
||||||
|
"Freedom": ("D1", "D2", "X", "X"),
|
||||||
|
},
|
||||||
|
"PositiveY": {
|
||||||
|
"Static": ("X", "X", "X", "X"),
|
||||||
|
"Column": ("X", "D1", "X", "X"),
|
||||||
|
"Freedom": ("X", "D1", "D2", "X"),
|
||||||
|
},
|
||||||
|
"NegativeY": {
|
||||||
|
"Static": ("X", "X", "X", "X"),
|
||||||
|
"Column": ("X", "X", "X", "D1"),
|
||||||
|
"Freedom": ("D2", "X", "X", "D1"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
floor_block_dict = {}
|
floor_block_dict = {}
|
||||||
floor_basic_block_list = []
|
floor_basic_block_list = []
|
||||||
floor_derived_block_list = []
|
floor_derived_block_list = []
|
||||||
|
Loading…
Reference in New Issue
Block a user