mirror of https://github.com/H-uru/korman.git
12 changed files with 177 additions and 190 deletions
@ -1,61 +0,0 @@
|
||||
# This file is part of Korman. |
||||
# |
||||
# Korman 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. |
||||
# |
||||
# Korman 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 Korman. If not, see <http://www.gnu.org/licenses/>. |
||||
|
||||
import bpy |
||||
from bpy.props import * |
||||
|
||||
class TextureOperator: |
||||
@classmethod |
||||
def poll(cls, context): |
||||
return context.scene.render.engine == "PLASMA_GAME" and context.texture |
||||
|
||||
|
||||
class TextureCollectionAddOperator(TextureOperator, bpy.types.Operator): |
||||
bl_idname = "texture.plasma_collection_add" |
||||
bl_label = "Add Item" |
||||
bl_description = "Adds an item to the collection" |
||||
|
||||
group = StringProperty(name="Modifier", description="Attribute name of the PropertyGroup") |
||||
collection = StringProperty(name="Collection", description="Attribute name of the collection property") |
||||
name_prefix = StringProperty(name="Name Prefix", description="Prefix for autogenerated item names", default="Item") |
||||
name_prop = StringProperty(name="Name Property", description="Attribute name of the item name property") |
||||
|
||||
def execute(self, context): |
||||
mod = getattr(context.texture, self.group) |
||||
collection = getattr(mod, self.collection) |
||||
idx = len(collection) |
||||
collection.add() |
||||
if self.name_prop: |
||||
setattr(collection[idx], self.name_prop, "{} {}".format(self.name_prefix, idx+1)) |
||||
return {"FINISHED"} |
||||
|
||||
|
||||
class TextureCollectionRemoveOperator(TextureOperator, bpy.types.Operator): |
||||
bl_idname = "texture.plasma_collection_remove" |
||||
bl_label = "Remove Item" |
||||
bl_description = "Removes an item from the collection" |
||||
|
||||
group = StringProperty(name="Modifier", description="Attribute name of the PropertyGroup") |
||||
collection = StringProperty(name="Collection", description="Attribute name of the collection property") |
||||
index = IntProperty(name="Index", description="Item index to remove") |
||||
|
||||
def execute(self, context): |
||||
mod = getattr(context.texture, self.group) |
||||
collection = getattr(mod, self.collection) |
||||
if len(collection) > self.index: |
||||
collection.remove(self.index) |
||||
return {"FINISHED"} |
||||
else: |
||||
return {"CANCELLED"} |
@ -0,0 +1,89 @@
|
||||
# This file is part of Korman. |
||||
# |
||||
# Korman 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. |
||||
# |
||||
# Korman 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 Korman. If not, see <http://www.gnu.org/licenses/>. |
||||
|
||||
import bpy |
||||
from bpy.props import * |
||||
|
||||
class UIOperator: |
||||
@classmethod |
||||
def poll(cls, context): |
||||
return context.scene.render.engine == "PLASMA_GAME" |
||||
|
||||
|
||||
class CollectionAddOperator(UIOperator, bpy.types.Operator): |
||||
bl_idname = "ui.plasma_collection_add" |
||||
bl_label = "Add Item" |
||||
bl_description = "Adds an item to the collection" |
||||
|
||||
context = StringProperty(name="ID Path", |
||||
description="Path to the relevant datablock from the current context", |
||||
options=set()) |
||||
group_path = StringProperty(name="Property Group Path", |
||||
description="Path to the property group from the ID", |
||||
options=set()) |
||||
collection_prop = StringProperty(name="Collection Property", |
||||
description="Name of the collection property", |
||||
options=set()) |
||||
index_prop = StringProperty(name="Index Property", |
||||
description="Name of the active element index property", |
||||
options=set()) |
||||
name_prefix = StringProperty(name="Name Prefix", |
||||
description="Prefix for autogenerated item names", |
||||
default="Item", |
||||
options=set()) |
||||
name_prop = StringProperty(name="Name Property", |
||||
description="Attribute name of the item name property", |
||||
options=set()) |
||||
|
||||
def execute(self, context): |
||||
props = getattr(context, self.context).path_resolve(self.group_path) |
||||
collection = getattr(props, self.collection_prop) |
||||
idx = len(collection) |
||||
collection.add() |
||||
if self.name_prop: |
||||
setattr(collection[idx], self.name_prop, "{} {}".format(self.name_prefix, idx+1)) |
||||
if self.index_prop: |
||||
setattr(props, self.index_prop, idx) |
||||
return {"FINISHED"} |
||||
|
||||
|
||||
class CollectionRemoveOperator(UIOperator, bpy.types.Operator): |
||||
bl_idname = "ui.plasma_collection_remove" |
||||
bl_label = "Remove Item" |
||||
bl_description = "Removes an item from the collection" |
||||
|
||||
context = StringProperty(name="ID Path", |
||||
description="Path to the relevant datablock from the current context", |
||||
options=set()) |
||||
group_path = StringProperty(name="Property Group Path", |
||||
description="Path to the property group from the ID", |
||||
options=set()) |
||||
collection_prop = StringProperty(name="Collection Property", |
||||
description="Name of the collection property", |
||||
options=set()) |
||||
index_prop = StringProperty(name="Index Property", |
||||
description="Name of the active element index property", |
||||
options=set()) |
||||
|
||||
def execute(self, context): |
||||
props = getattr(context, self.context).path_resolve(self.group_path) |
||||
collection = getattr(props, self.collection_prop) |
||||
index = getattr(props, self.index_prop) |
||||
if len(collection) > index: |
||||
collection.remove(index) |
||||
setattr(props, self.index_prop, index - 1) |
||||
return {"FINISHED"} |
||||
else: |
||||
return {"CANCELLED"} |
@ -0,0 +1,55 @@
|
||||
# This file is part of Korman. |
||||
# |
||||
# Korman 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. |
||||
# |
||||
# Korman 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 Korman. If not, see <http://www.gnu.org/licenses/>. |
||||
|
||||
import bpy |
||||
|
||||
def draw_list(layout, listtype, context_attr, prop_base, collection_name, index_name, **kwargs): |
||||
"""Draws a generic UI list, including add/remove buttons. Note that in order to use this, |
||||
the parent datablock must be available in the context provided to operators. This should |
||||
always be true, but this is Blender... |
||||
Arguments: |
||||
- layout: required |
||||
- listtype: bpy.types.UIList subclass |
||||
- context_attr: attribute name to get the properties from in the current context |
||||
- prop_base: property group owning the collection |
||||
- collection_name: name of the collection property |
||||
- index_name: name of the active element index property |
||||
- name_prefix: (optional) prefix to apply to display name of new elements |
||||
- name_prop: (optional) property for each element's display name |
||||
*** any other arguments are passed as keyword arguments to the template_list call |
||||
""" |
||||
prop_path = prop_base.path_from_id() |
||||
name_prefix = kwargs.pop("name_prefix", "") |
||||
name_prop = kwargs.pop("name_prop", "") |
||||
|
||||
row = layout.row() |
||||
row.template_list(listtype, collection_name, prop_base, collection_name, |
||||
prop_base, index_name, **kwargs) |
||||
col = row.column(align=True) |
||||
op = col.operator("ui.plasma_collection_add", icon="ZOOMIN", text="") |
||||
op.context = context_attr |
||||
op.group_path = prop_path |
||||
op.collection_prop = collection_name |
||||
op.index_prop = index_name |
||||
op.name_prefix = name_prefix |
||||
op.name_prop = name_prop |
||||
op = col.operator("ui.plasma_collection_remove", icon="ZOOMOUT", text="") |
||||
op.context = context_attr |
||||
op.group_path = prop_path |
||||
op.collection_prop = collection_name |
||||
op.index_prop = index_name |
||||
|
||||
def draw_modifier_list(layout, listtype, prop_base, collection_name, index_name, **kwargs): |
||||
draw_list(layout, listtype, "object", prop_base, collection_name, index_name, **kwargs) |
Loading…
Reference in new issue