2009-11-01 15:21:20 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program 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 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# This program 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.
|
2009-11-03 07:23:02 +00:00
|
|
|
#
|
2009-11-01 15:21:20 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-01 15:21:20 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
2009-10-31 20:16:59 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
# <pep8 compliant>
|
2009-06-20 06:06:13 +00:00
|
|
|
import bpy
|
2011-08-12 06:57:00 +00:00
|
|
|
from bpy.types import Header, Menu, Panel
|
2011-07-13 14:41:12 +00:00
|
|
|
from blf import gettext as _
|
2009-06-20 06:06:13 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class LOGIC_PT_properties(Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'LOGIC_EDITOR'
|
|
|
|
bl_region_type = 'UI'
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "Properties"
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2009-10-31 19:31:45 +00:00
|
|
|
ob = context.active_object
|
|
|
|
return ob and ob.game
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ob = context.active_object
|
|
|
|
game = ob.game
|
|
|
|
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator("object.game_property_new", text=_("Add Game Property"), icon='ZOOMIN')
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
for i, prop in enumerate(game.properties):
|
2010-07-05 22:22:22 +00:00
|
|
|
|
2010-06-26 21:40:11 +00:00
|
|
|
box = layout.box()
|
|
|
|
row = box.row()
|
2009-11-23 00:27:30 +00:00
|
|
|
row.prop(prop, "name", text="")
|
|
|
|
row.prop(prop, "type", text="")
|
2010-09-07 15:17:42 +00:00
|
|
|
row.prop(prop, "value", text="", toggle=True) # we dont care about the type. rna will display correctly
|
2010-08-21 04:51:00 +00:00
|
|
|
row.prop(prop, "show_debug", text="", toggle=True, icon='INFO')
|
2010-06-26 21:40:11 +00:00
|
|
|
row.operator("object.game_property_remove", text="", icon='X', emboss=False).index = i
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-06-09 19:12:03 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class LOGIC_MT_logicbricks_add(Menu):
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "Add"
|
2010-05-16 16:28:50 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
2011-07-13 14:41:12 +00:00
|
|
|
layout.operator_menu_enum("logic.sensor_add", "type", text=_("Sensor"))
|
|
|
|
layout.operator_menu_enum("logic.controller_add", "type", text=_("Controller"))
|
|
|
|
layout.operator_menu_enum("logic.actuator_add", "type", text=_("Actuator"))
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2010-07-30 15:44:26 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class LOGIC_HT_header(Header):
|
2010-07-30 15:44:26 +00:00
|
|
|
bl_space_type = 'LOGIC_EDITOR'
|
|
|
|
|
|
|
|
def draw(self, context):
|
2011-08-13 17:52:13 +00:00
|
|
|
layout = self.layout.row(align=True)
|
2010-07-30 15:44:26 +00:00
|
|
|
|
2011-08-13 17:52:13 +00:00
|
|
|
layout.template_header()
|
2010-07-30 15:44:26 +00:00
|
|
|
|
|
|
|
if context.area.show_menus:
|
2011-08-13 17:52:13 +00:00
|
|
|
layout.menu("LOGIC_MT_view")
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2010-07-30 15:44:26 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class LOGIC_MT_view(Menu):
|
2011-09-15 13:20:18 +00:00
|
|
|
bl_label = "View"
|
2010-07-30 15:44:26 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
layout.operator("logic.properties", icon='MENU_PANEL')
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|