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-04-27 18:05:58 +00:00
|
|
|
import bpy
|
2010-01-08 08:54:41 +00:00
|
|
|
from rna_prop_ui import PropertyPanel
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-11-12 12:35:37 +00:00
|
|
|
narrowui = 180
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-11-14 13:35:44 +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):
|
2010-02-23 12:48:35 +00:00
|
|
|
rd = context.scene.render
|
2009-10-31 19:31:45 +00:00
|
|
|
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"
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
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
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-10-31 19:31:45 +00:00
|
|
|
def poll(self, context):
|
2010-02-23 12:48:35 +00:00
|
|
|
rd = context.scene.render
|
2009-10-31 19:31:45 +00:00
|
|
|
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-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-06-07 13:36:12 +00:00
|
|
|
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 21:44:35 +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")
|
|
|
|
else:
|
|
|
|
layout.template_ID(scene, "world", new="world.new")
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-01-08 08:54:41 +00:00
|
|
|
class WORLD_PT_custom_props(WorldButtonsPanel, PropertyPanel):
|
2010-01-08 10:11:04 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2010-01-08 08:54:41 +00:00
|
|
|
_context_path = "world"
|
|
|
|
|
|
|
|
|
2009-07-09 09:07:25 +00:00
|
|
|
class WORLD_PT_world(WorldButtonsPanel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = "World"
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2009-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
2009-10-31 19:31:45 +00:00
|
|
|
world = context.world
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 12:35:37 +00:00
|
|
|
row = layout.row()
|
2009-11-23 00:27:30 +00:00
|
|
|
row.prop(world, "paper_sky")
|
|
|
|
row.prop(world, "blend_sky")
|
|
|
|
row.prop(world, "real_sky")
|
2009-11-12 12:35:37 +00:00
|
|
|
else:
|
|
|
|
col = layout.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(world, "paper_sky")
|
|
|
|
col.prop(world, "blend_sky")
|
|
|
|
col.prop(world, "real_sky")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
row = layout.row()
|
2009-11-23 00:27:30 +00:00
|
|
|
row.column().prop(world, "horizon_color")
|
2009-10-31 19:31:45 +00:00
|
|
|
col = row.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(world, "zenith_color")
|
2009-10-31 19:31:45 +00:00
|
|
|
col.active = world.blend_sky
|
2009-11-23 00:27:30 +00:00
|
|
|
row.column().prop(world, "ambient_color")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
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"
|
2010-01-27 21:40:08 +00:00
|
|
|
bl_default_closed = True
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'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-11-23 00:27:30 +00:00
|
|
|
self.layout.prop(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-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
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
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-12 12:35:37 +00:00
|
|
|
split = layout.split()
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-12 12:35:37 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(world.mist, "intensity", slider=True)
|
|
|
|
col.prop(world.mist, "start")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 12:35:37 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(world.mist, "depth")
|
|
|
|
col.prop(world.mist, "height")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
layout.prop(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"
|
2010-01-27 21:40:08 +00:00
|
|
|
bl_default_closed = True
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw_header(self, context):
|
|
|
|
world = context.world
|
|
|
|
|
2009-11-23 00:27:30 +00:00
|
|
|
self.layout.prop(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-11-19 13:26:51 +00:00
|
|
|
wide_ui = context.region.width > narrowui
|
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-11-12 12:35:37 +00:00
|
|
|
split = layout.split()
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2009-11-12 12:35:37 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(world.stars, "size")
|
|
|
|
col.prop(world.stars, "color_randomization", text="Colors")
|
2009-11-12 12:35:37 +00:00
|
|
|
|
2009-11-19 13:26:51 +00:00
|
|
|
if wide_ui:
|
2009-11-12 12:35:37 +00:00
|
|
|
col = split.column()
|
2009-11-23 00:27:30 +00:00
|
|
|
col.prop(world.stars, "min_distance", text="Min. Dist")
|
|
|
|
col.prop(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"
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw_header(self, context):
|
2010-01-27 21:40:08 +00:00
|
|
|
light = context.world.lighting
|
|
|
|
self.layout.prop(light, "use_ambient_occlusion", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2010-01-27 21:40:08 +00:00
|
|
|
light = context.world.lighting
|
|
|
|
|
|
|
|
layout.active = light.use_ambient_occlusion
|
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
split.prop(light, "ao_factor", text="Factor")
|
|
|
|
split.prop(light, "ao_blend_mode", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
class WORLD_PT_environment_lighting(WorldButtonsPanel):
|
|
|
|
bl_label = "Environment Lighting"
|
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
def draw_header(self, context):
|
|
|
|
light = context.world.lighting
|
|
|
|
self.layout.prop(light, "use_environment_lighting", text="")
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
light = context.world.lighting
|
|
|
|
|
|
|
|
layout.active = light.use_environment_lighting
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
2010-01-27 21:40:08 +00:00
|
|
|
split.prop(light, "environment_energy", text="Energy")
|
|
|
|
split.prop(light, "environment_color", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
class WORLD_PT_indirect_lighting(WorldButtonsPanel):
|
|
|
|
bl_label = "Indirect Lighting"
|
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
def draw_header(self, context):
|
|
|
|
light = context.world.lighting
|
|
|
|
self.layout.prop(light, "use_indirect_lighting", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
light = context.world.lighting
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
layout.active = light.use_indirect_lighting
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
split = layout.split()
|
|
|
|
split.prop(light, "indirect_factor", text="Factor")
|
|
|
|
split.prop(light, "indirect_bounces", text="Bounces")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
class WORLD_PT_gather(WorldButtonsPanel):
|
|
|
|
bl_label = "Gather"
|
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
light = context.world.lighting
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
layout.active = light.use_ambient_occlusion or light.use_environment_lighting or light.use_indirect_lighting
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
layout.prop(light, "gather_method", expand=True)
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2010-01-27 21:40:08 +00:00
|
|
|
col.label(text="Attenuation:")
|
|
|
|
if light.gather_method == 'RAYTRACE':
|
|
|
|
col.prop(light, "distance")
|
|
|
|
col.prop(light, "falloff")
|
|
|
|
sub = col.row()
|
|
|
|
sub.active = light.falloff
|
|
|
|
sub.prop(light, "falloff_strength", text="Strength")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
if light.gather_method == 'RAYTRACE':
|
2009-11-12 12:35:37 +00:00
|
|
|
col = split.column()
|
2010-01-27 21:40:08 +00:00
|
|
|
|
|
|
|
col.label(text="Sampling:")
|
|
|
|
col.prop(light, "sample_method", text="")
|
|
|
|
|
|
|
|
sub = col.column()
|
|
|
|
sub.prop(light, "samples")
|
|
|
|
|
|
|
|
if light.sample_method == 'ADAPTIVE_QMC':
|
|
|
|
sub.prop(light, "threshold")
|
|
|
|
sub.prop(light, "adapt_to_speed", slider=True)
|
|
|
|
elif light.sample_method == 'CONSTANT_JITTERED':
|
|
|
|
sub.prop(light, "bias")
|
|
|
|
|
|
|
|
if light.gather_method == 'APPROXIMATE':
|
|
|
|
col = split.column()
|
|
|
|
|
|
|
|
col.label(text="Sampling:")
|
|
|
|
col.prop(light, "passes")
|
|
|
|
col.prop(light, "error_tolerance", text="Error")
|
|
|
|
col.prop(light, "pixel_cache")
|
|
|
|
col.prop(light, "correction")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
|
|
|
|
classes = [
|
|
|
|
WORLD_PT_context_world,
|
|
|
|
WORLD_PT_preview,
|
|
|
|
WORLD_PT_world,
|
|
|
|
WORLD_PT_ambient_occlusion,
|
|
|
|
WORLD_PT_environment_lighting,
|
|
|
|
WORLD_PT_indirect_lighting,
|
|
|
|
WORLD_PT_gather,
|
|
|
|
WORLD_PT_mist,
|
|
|
|
WORLD_PT_stars,
|
|
|
|
|
|
|
|
WORLD_PT_custom_props]
|
|
|
|
|
|
|
|
|
|
|
|
def register():
|
|
|
|
register = bpy.types.register
|
|
|
|
for cls in classes:
|
|
|
|
register(cls)
|
|
|
|
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
def unregister():
|
|
|
|
unregister = bpy.types.unregister
|
|
|
|
for cls in classes:
|
|
|
|
unregister(cls)
|
2010-02-16 09:55:07 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
register()
|