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
|
2011-08-12 06:57:00 +00:00
|
|
|
from bpy.types import Panel
|
2010-01-08 08:54:41 +00:00
|
|
|
from rna_prop_ui import PropertyPanel
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-08-02 02:55:12 +00:00
|
|
|
class WorldButtonsPanel():
|
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
|
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-08-13 22:35:13 +00:00
|
|
|
return (context.world and context.scene.render.engine in cls.COMPAT_ENGINES)
|
2010-08-09 01:37:09 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_context_world(WorldButtonsPanel, Panel):
|
2009-10-31 19:31:45 +00:00
|
|
|
bl_label = ""
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'HIDE_HEADER'}
|
2009-12-13 16:20:18 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
2009-04-27 18:05:58 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-02-23 12:48:35 +00:00
|
|
|
rd = context.scene.render
|
2010-08-09 01:37:09 +00:00
|
|
|
return (not rd.use_game_engine) and (rd.engine in cls.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
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2010-09-06 10:25:38 +00:00
|
|
|
texture_count = world and len(world.texture_slots.keys())
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-08-06 15:17:44 +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-10-31 23:35:56 +00:00
|
|
|
|
2010-09-06 10:25:38 +00:00
|
|
|
if texture_count:
|
2010-09-02 18:13:06 +00:00
|
|
|
split.label(text=str(texture_count), icon='TEXTURE')
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-09-07 15:17:42 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_preview(WorldButtonsPanel, Panel):
|
2010-08-12 19:36:10 +00:00
|
|
|
bl_label = "Preview"
|
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
|
|
|
rd = context.scene.render
|
|
|
|
return (context.world) and (not rd.use_game_engine) and (rd.engine in cls.COMPAT_ENGINES)
|
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
self.layout.template_preview(context.world)
|
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_world(WorldButtonsPanel, Panel):
|
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
|
|
|
|
world = context.world
|
2009-11-14 13:35:44 +00:00
|
|
|
|
2010-08-06 15:17:44 +00:00
|
|
|
row = layout.row()
|
2010-08-20 06:09:58 +00:00
|
|
|
row.prop(world, "use_sky_paper")
|
|
|
|
row.prop(world, "use_sky_blend")
|
|
|
|
row.prop(world, "use_sky_real")
|
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")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.active = world.use_sky_blend
|
2009-11-23 00:27:30 +00:00
|
|
|
row.column().prop(world, "ambient_color")
|
2011-07-29 01:24:03 +00:00
|
|
|
|
2011-07-24 11:24:30 +00:00
|
|
|
row = layout.row()
|
|
|
|
row.prop(world, "exposure")
|
|
|
|
row.prop(world, "color_range")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2009-10-31 23:35:56 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_ambient_occlusion(WorldButtonsPanel, Panel):
|
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-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2010-01-27 21:40:08 +00:00
|
|
|
self.layout.prop(light, "use_ambient_occlusion", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2010-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2010-01-27 21:40:08 +00:00
|
|
|
|
|
|
|
layout.active = light.use_ambient_occlusion
|
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
split.prop(light, "ao_factor", text="Factor")
|
2010-08-20 06:09:58 +00:00
|
|
|
split.prop(light, "ao_blend_type", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_environment_lighting(WorldButtonsPanel, Panel):
|
2010-01-27 21:40:08 +00:00
|
|
|
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):
|
2010-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2010-08-20 06:09:58 +00:00
|
|
|
self.layout.prop(light, "use_environment_light", text="")
|
2010-01-27 21:40:08 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2010-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2010-01-27 21:40:08 +00:00
|
|
|
|
2010-08-20 06:09:58 +00:00
|
|
|
layout.active = light.use_environment_light
|
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
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_indirect_lighting(WorldButtonsPanel, Panel):
|
2010-01-27 21:40:08 +00:00
|
|
|
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):
|
2010-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2010-08-20 06:09:58 +00:00
|
|
|
self.layout.prop(light, "use_indirect_light", text="")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-27 21:40:08 +00:00
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
2010-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-11-06 21:37:11 +00:00
|
|
|
layout.active = light.use_indirect_light and light.gather_method == 'APPROXIMATE'
|
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")
|
2011-01-01 07:20:34 +00:00
|
|
|
|
2010-11-06 21:37:11 +00:00
|
|
|
if light.gather_method == 'RAYTRACE':
|
|
|
|
layout.label(text="Only works with Approximate gather method")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-01-31 14:46:28 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_gather(WorldButtonsPanel, Panel):
|
2010-01-27 21:40:08 +00:00
|
|
|
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
|
2010-08-21 04:51:00 +00:00
|
|
|
light = context.world.light_settings
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-08-20 06:09:58 +00:00
|
|
|
layout.active = light.use_ambient_occlusion or light.use_environment_light or light.use_indirect_light
|
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")
|
2010-08-21 04:51:00 +00:00
|
|
|
col.prop(light, "use_falloff")
|
2010-01-27 21:40:08 +00:00
|
|
|
sub = col.row()
|
2010-08-21 04:51:00 +00:00
|
|
|
sub.active = light.use_falloff
|
2010-01-27 21:40:08 +00:00
|
|
|
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")
|
2010-08-20 06:09:58 +00:00
|
|
|
col.prop(light, "error_threshold", text="Error")
|
|
|
|
col.prop(light, "use_cache")
|
2010-01-27 21:40:08 +00:00
|
|
|
col.prop(light, "correction")
|
2009-10-31 19:31:45 +00:00
|
|
|
|
2010-02-14 11:21:21 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_mist(WorldButtonsPanel, Panel):
|
2010-08-12 19:36:10 +00:00
|
|
|
bl_label = "Mist"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-08-12 19:36:10 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
|
|
|
|
|
|
|
def draw_header(self, context):
|
|
|
|
world = context.world
|
|
|
|
|
2010-08-21 04:51:00 +00:00
|
|
|
self.layout.prop(world.mist_settings, "use_mist", text="")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
world = context.world
|
|
|
|
|
2010-08-21 04:51:00 +00:00
|
|
|
layout.active = world.mist_settings.use_mist
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2010-08-21 04:51:00 +00:00
|
|
|
col.prop(world.mist_settings, "intensity", slider=True)
|
|
|
|
col.prop(world.mist_settings, "start")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
col = split.column()
|
2010-08-21 04:51:00 +00:00
|
|
|
col.prop(world.mist_settings, "depth")
|
|
|
|
col.prop(world.mist_settings, "height")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
2010-08-21 04:51:00 +00:00
|
|
|
layout.prop(world.mist_settings, "falloff")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_stars(WorldButtonsPanel, Panel):
|
2010-08-12 19:36:10 +00:00
|
|
|
bl_label = "Stars"
|
2010-08-26 01:05:37 +00:00
|
|
|
bl_options = {'DEFAULT_CLOSED'}
|
2010-08-12 19:36:10 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER'}
|
|
|
|
|
|
|
|
def draw_header(self, context):
|
|
|
|
world = context.world
|
|
|
|
|
2010-08-21 04:51:00 +00:00
|
|
|
self.layout.prop(world.star_settings, "use_stars", text="")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
def draw(self, context):
|
|
|
|
layout = self.layout
|
|
|
|
world = context.world
|
|
|
|
|
2010-08-21 04:51:00 +00:00
|
|
|
layout.active = world.star_settings.use_stars
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
split = layout.split()
|
|
|
|
|
|
|
|
col = split.column()
|
2010-08-21 04:51:00 +00:00
|
|
|
col.prop(world.star_settings, "size")
|
|
|
|
col.prop(world.star_settings, "color_random", text="Colors")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
col = split.column()
|
2010-08-21 04:51:00 +00:00
|
|
|
col.prop(world.star_settings, "distance_min", text="Min. Dist")
|
|
|
|
col.prop(world.star_settings, "average_separation", text="Separation")
|
2010-08-12 19:36:10 +00:00
|
|
|
|
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class WORLD_PT_custom_props(WorldButtonsPanel, PropertyPanel, Panel):
|
2010-08-12 19:36:10 +00:00
|
|
|
COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
|
|
|
|
_context_path = "world"
|
2010-12-17 10:33:28 +00:00
|
|
|
_property_type = bpy.types.World
|
2011-04-04 10:13:04 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
|
|
bpy.utils.register_module(__name__)
|