You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

83 lines
2.9 KiB

# 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
class AgeOperator:
@classmethod
def poll(cls, context):
return context.scene.render.engine == "PLASMA_GAME"
class PageAddOperator(AgeOperator, bpy.types.Operator):
bl_idname = "world.plasma_page_add"
bl_label = "Add Page"
bl_description = "Adds a new Plasma Registry Page"
def execute(self, context):
w = context.world
if w:
age = w.plasma_age
page = age.pages.add()
# Find the first non-zero ID and suggest that.
suffixes = {p.seq_suffix for p in age.pages}
if suffixes:
test = set(range(min(suffixes), max(suffixes)))
missing = test - suffixes
try:
suffix = missing.pop()
except KeyError:
suffix = max(suffixes) + 1
page.make_default_name(suffix)
else:
# Page 0 is a magic "catch-all" page. The user *may* define it
# if he wants. If he doesn't, we'll defer it until export time
page.make_default_name(1)
# Finally, select the new page
age.active_page_index = len(age.pages) - 1
return {"FINISHED"}
else:
return {"CANCELLED"}
class PageRemoveOperator(AgeOperator, bpy.types.Operator):
bl_idname = "world.plasma_page_remove"
bl_label = "Remove Page"
bl_description = "Removes the selected Plasma Registry Page"
def execute(self, context):
w = context.world
if w:
age = w.plasma_age
if age.active_page_index >= len(age.pages):
return {"CANCELLED"}
page = age.pages[age.active_page_index]
# Need to reassign objects in this page to the default page
defpg = ""
for i in age.pages:
if i.seq_suffix == 0:
defpg = i.name
break
for o in bpy.data.objects:
if o.plasma_object.page == page.name:
o.plasma_object.page = defpg
age.pages.remove(age.active_page_index)
return {"FINISHED"}
else:
return {"CANCELLED"}