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,
|
|
|
|
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
2009-10-31 20:16:59 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
# <pep8 compliant>
|
2009-04-27 18:05:58 +00:00
|
|
|
import bpy
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-04-27 18:05:58 +00:00
|
|
|
class WorldButtonsPanel(bpy.types.Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_space_type = 'PROPERTIES'
|
|
|
|
bl_region_type = 'WINDOW'
|
|
|
|
bl_context = "world"
|
|
|
|
# COMPAT_ENGINES must be defined in each subclass, external engines can add themselves here
|
|
|
|
|
|
|
|
def poll(self, context):
|
|
|
|
rd = context.scene.render_data
|
|
|
|
return (context.world) and (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES)
|
2009-05-28 23:45:50 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-05-28 23:45:50 +00:00
|
|
|
class WORLD_PT_preview(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Preview"
|
|
|
|
COMPAT_ENGINES = set(['BLENDER_RENDER'])
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
self.layout.template_preview(context.world)
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-07-09 09:42:34 +00:00
|
|
|
class WORLD_PT_context_world(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = ""
|
|
|
|
bl_show_header = False
|
|
|
|
COMPAT_ENGINES = set(['BLENDER_RENDER'])
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
def poll(self, context):
|
|
|
|
rd = context.scene.render_data
|
|
|
|
return (not rd.use_game_engine) and (rd.engine in self.COMPAT_ENGINES)
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
scene = context.scene
|
|
|
|
world = context.world
|
|
|
|
space = context.space_data
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
split = layout.split(percentage=0.65)
|
|
|
|
|
|
|
|
if scene:
|
|
|
|
split.template_ID(scene, "world", new="world.new")
|
|
|
|
elif world:
|
|
|
|
split.template_ID(space, "pin_id")
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-07-09 09:07:25 +00:00
|
|
|
class WORLD_PT_world(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "World"
|
|
|
|
COMPAT_ENGINES = set(['BLENDER_RENDER'])
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
world = context.world
|
|
|
|
|
|
|
|
row = layout.row()
|
|
|
|
row.itemR(world, "paper_sky")
|
|
|
|
row.itemR(world, "blend_sky")
|
|
|
|
row.itemR(world, "real_sky")
|
|
|
|
|
|
|
|
row = layout.row()
|
|
|
|
row.column().itemR(world, "horizon_color")
|
|
|
|
col = row.column()
|
|
|
|
col.itemR(world, "zenith_color")
|
|
|
|
col.active = world.blend_sky
|
|
|
|
row.column().itemR(world, "ambient_color")
|
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-04-27 18:05:58 +00:00
|
|
|
class WORLD_PT_mist(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Mist"
|
|
|
|
COMPAT_ENGINES = set(['BLENDER_RENDER'])
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
def draw_header(self, context):
|
|
|
|
world = context.world
|
2009-05-20 14:46:49 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
self.layout.itemR(world.mist, "enabled", text="")
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-06-13 21:22:21 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
world = context.world
|
2009-05-20 13:56:22 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
layout.active = world.mist.enabled
|
|
|
|
|
|
|
|
flow = layout.column_flow()
|
|
|
|
flow.itemR(world.mist, "intensity", slider=True)
|
|
|
|
flow.itemR(world.mist, "start")
|
|
|
|
flow.itemR(world.mist, "depth")
|
|
|
|
flow.itemR(world.mist, "height")
|
|
|
|
|
|
|
|
layout.itemR(world.mist, "falloff")
|
2.5: Render/Game Engine
An engine to use for output can now be selected an influences what
shows in the buttons window, only showing relevant data. The idea
behind this is to make it more clear what is supported where, make
the system more pluggable for external render/game engines, and save
space hiding stuff that is not relevant anyway.
* Top header now has an engine menu, to choose between the blender
render engine, game engine, and other future external engines.
* If the game engine is enabled, the buttons window should show
only properties that work in the game engine, and similarly for
the render engine.
* Moved panels from the logic space and game tabs to the physics,
scene and world tabs instead, and removed the game tab.
* Materials and textures tabs should eventually become game
specific too, to better show what is supported.
2009-07-23 21:50:40 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-04-27 18:05:58 +00:00
|
|
|
class WORLD_PT_stars(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Stars"
|
|
|
|
COMPAT_ENGINES = set(['BLENDER_RENDER'])
|
|
|
|
|
|
|
|
def draw_header(self, context):
|
|
|
|
world = context.world
|
|
|
|
|
|
|
|
self.layout.itemR(world.stars, "enabled", text="")
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-05-20 14:46:49 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
world = context.world
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
layout.active = world.stars.enabled
|
2009-06-13 21:22:21 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
flow = layout.column_flow()
|
|
|
|
flow.itemR(world.stars, "size")
|
|
|
|
flow.itemR(world.stars, "color_randomization", text="Colors")
|
|
|
|
flow.itemR(world.stars, "min_distance", text="Min. Dist")
|
|
|
|
flow.itemR(world.stars, "average_separation", text="Separation")
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-04-27 18:05:58 +00:00
|
|
|
class WORLD_PT_ambient_occlusion(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "Ambient Occlusion"
|
|
|
|
COMPAT_ENGINES = set(['BLENDER_RENDER'])
|
|
|
|
|
|
|
|
def draw_header(self, context):
|
|
|
|
world = context.world
|
|
|
|
|
|
|
|
self.layout.itemR(world.ambient_occlusion, "enabled", text="")
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
|
|
|
|
ao = context.world.ambient_occlusion
|
|
|
|
|
|
|
|
layout.active = ao.enabled
|
|
|
|
|
|
|
|
layout.itemR(ao, "gather_method", expand=True)
|
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
col.itemL(text="Attenuation:")
|
|
|
|
if ao.gather_method == 'RAYTRACE':
|
|
|
|
col.itemR(ao, "distance")
|
|
|
|
col.itemR(ao, "falloff")
|
|
|
|
sub = col.row()
|
|
|
|
sub.active = ao.falloff
|
|
|
|
sub.itemR(ao, "falloff_strength", text="Strength")
|
|
|
|
|
|
|
|
if ao.gather_method == 'RAYTRACE':
|
|
|
|
col = split.column()
|
|
|
|
|
|
|
|
col.itemL(text="Sampling:")
|
|
|
|
col.itemR(ao, "sample_method", text="")
|
|
|
|
|
|
|
|
sub = col.column()
|
|
|
|
sub.itemR(ao, "samples")
|
|
|
|
|
|
|
|
if ao.sample_method == 'ADAPTIVE_QMC':
|
|
|
|
sub.itemR(ao, "threshold")
|
|
|
|
sub.itemR(ao, "adapt_to_speed", slider=True)
|
|
|
|
elif ao.sample_method == 'CONSTANT_JITTERED':
|
|
|
|
sub.itemR(ao, "bias")
|
|
|
|
|
|
|
|
if ao.gather_method == 'APPROXIMATE':
|
|
|
|
col = split.column()
|
|
|
|
|
|
|
|
col.itemL(text="Sampling:")
|
|
|
|
col.itemR(ao, "passes")
|
|
|
|
col.itemR(ao, "error_tolerance", text="Error")
|
|
|
|
col.itemR(ao, "pixel_cache")
|
|
|
|
col.itemR(ao, "correction")
|
|
|
|
|
|
|
|
col = layout.column()
|
|
|
|
col.itemL(text="Influence:")
|
|
|
|
|
|
|
|
col.row().itemR(ao, "blend_mode", expand=True)
|
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
col.itemR(ao, "energy")
|
|
|
|
|
|
|
|
col = split.column()
|
|
|
|
sub = col.split(percentage=0.3)
|
|
|
|
sub.itemL(text="Color:")
|
|
|
|
sub.itemR(ao, "color", text="")
|
|
|
|
|
|
|
|
bpy.types.register(WORLD_PT_context_world)
|
2009-05-28 23:45:50 +00:00
|
|
|
bpy.types.register(WORLD_PT_preview)
|
2009-04-27 18:05:58 +00:00
|
|
|
bpy.types.register(WORLD_PT_world)
|
2009-05-20 13:56:22 +00:00
|
|
|
bpy.types.register(WORLD_PT_ambient_occlusion)
|
2009-04-27 18:05:58 +00:00
|
|
|
bpy.types.register(WORLD_PT_mist)
|
|
|
|
bpy.types.register(WORLD_PT_stars)
|