2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* light.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "light.h"
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "globals.h"
|
|
|
|
#include "scene/resources/surface_tool.h"
|
2016-12-20 03:21:07 +00:00
|
|
|
#include "baked_light_instance.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool Light::_can_gizmo_scale() const {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void Light::set_param(Param p_param, float p_value) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
ERR_FAIL_INDEX(p_param,PARAM_MAX);
|
|
|
|
param[p_param]=p_value;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
VS::get_singleton()->light_set_param(light,VS::LightParam(p_param),p_value);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
if (p_param==PARAM_SPOT_ANGLE || p_param==PARAM_RANGE) {
|
|
|
|
update_gizmo();;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
float Light::get_param(Param p_param) const{
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
ERR_FAIL_INDEX_V(p_param,PARAM_MAX,0);
|
|
|
|
return param[p_param];
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void Light::set_shadow(bool p_enable){
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
shadow=p_enable;
|
|
|
|
VS::get_singleton()->light_set_shadow(light,p_enable);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|
2016-10-27 14:50:26 +00:00
|
|
|
bool Light::has_shadow() const{
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
return shadow;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void Light::set_negative(bool p_enable){
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
negative=p_enable;
|
|
|
|
VS::get_singleton()->light_set_negative(light,p_enable);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-27 14:50:26 +00:00
|
|
|
bool Light::is_negative() const{
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
return negative;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void Light::set_cull_mask(uint32_t p_cull_mask){
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
cull_mask=p_cull_mask;
|
|
|
|
VS::get_singleton()->light_set_cull_mask(light,p_cull_mask);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
}
|
|
|
|
uint32_t Light::get_cull_mask() const{
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
return cull_mask;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void Light::set_color(const Color& p_color){
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
color=p_color;
|
|
|
|
VS::get_singleton()->light_set_color(light,p_color);
|
|
|
|
}
|
|
|
|
Color Light::get_color() const{
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
return color;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-11 15:27:52 +00:00
|
|
|
void Light::set_shadow_color(const Color& p_shadow_color){
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-11 15:27:52 +00:00
|
|
|
shadow_color=p_shadow_color;
|
|
|
|
VS::get_singleton()->light_set_shadow_color(light,p_shadow_color);
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-11 15:27:52 +00:00
|
|
|
Color Light::get_shadow_color() const{
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-11 15:27:52 +00:00
|
|
|
return shadow_color;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Rect3 Light::get_aabb() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (type==VisualServer::LIGHT_DIRECTIONAL) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
return Rect3( Vector3(-1,-1,-1), Vector3(2, 2, 2 ) );
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
} else if (type==VisualServer::LIGHT_OMNI) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
return Rect3( Vector3(-1,-1,-1) * param[PARAM_RANGE], Vector3(2, 2, 2 ) * param[PARAM_RANGE]);
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
} else if (type==VisualServer::LIGHT_SPOT) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
float len=param[PARAM_RANGE];
|
|
|
|
float size=Math::tan(Math::deg2rad(param[PARAM_SPOT_ANGLE]))*len;
|
2017-01-11 03:52:51 +00:00
|
|
|
return Rect3( Vector3( -size,-size,-len ), Vector3( size*2, size*2, len ) );
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
return Rect3();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<Face3> Light::get_faces(uint32_t p_usage_flags) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
return PoolVector<Face3>();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-12 05:13:22 +00:00
|
|
|
|
|
|
|
void Light::_update_visibility() {
|
|
|
|
|
2014-11-06 00:20:42 +00:00
|
|
|
if (!is_inside_tree())
|
2014-10-12 05:13:22 +00:00
|
|
|
return;
|
|
|
|
|
2014-10-14 04:01:25 +00:00
|
|
|
|
2016-10-03 19:33:42 +00:00
|
|
|
bool editor_ok=true;
|
2014-10-14 04:01:25 +00:00
|
|
|
|
|
|
|
#ifdef TOOLS_ENABLED
|
2014-10-12 05:13:22 +00:00
|
|
|
if (editor_only) {
|
2014-11-06 00:20:42 +00:00
|
|
|
if (!get_tree()->is_editor_hint()) {
|
2014-10-12 05:13:22 +00:00
|
|
|
editor_ok=false;
|
|
|
|
} else {
|
2014-11-06 00:20:42 +00:00
|
|
|
editor_ok = (get_tree()->get_edited_scene_root() && (this==get_tree()->get_edited_scene_root() || get_owner()==get_tree()->get_edited_scene_root()));
|
2014-10-12 05:13:22 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-03 14:23:43 +00:00
|
|
|
#else
|
|
|
|
if (editor_only) {
|
|
|
|
editor_ok=false;
|
|
|
|
}
|
2014-10-14 04:01:25 +00:00
|
|
|
#endif
|
2014-10-12 05:13:22 +00:00
|
|
|
|
2016-10-03 19:33:42 +00:00
|
|
|
//VS::get_singleton()->instance_light_set_enabled(get_instance(),is_visible() && editor_ok);
|
2014-10-12 05:13:22 +00:00
|
|
|
_change_notify("geometry/visible");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Light::_notification(int p_what) {
|
|
|
|
|
2016-12-20 03:21:07 +00:00
|
|
|
|
|
|
|
if (p_what==NOTIFICATION_VISIBILITY_CHANGED) {
|
|
|
|
|
2014-10-12 05:13:22 +00:00
|
|
|
_update_visibility();
|
2016-12-20 03:21:07 +00:00
|
|
|
|
2014-10-12 05:13:22 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 03:21:07 +00:00
|
|
|
if (p_what==NOTIFICATION_ENTER_TREE) {
|
|
|
|
_update_visibility();
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2016-12-20 03:21:07 +00:00
|
|
|
Node *node = this;
|
|
|
|
|
|
|
|
while(node) {
|
|
|
|
|
|
|
|
baked_light=node->cast_to<BakedLight>();
|
|
|
|
if (baked_light) {
|
|
|
|
baked_light->lights.insert(this);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
node=node->get_parent();
|
|
|
|
}
|
2014-10-12 05:13:22 +00:00
|
|
|
}
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2016-12-20 03:21:07 +00:00
|
|
|
if (p_what==NOTIFICATION_EXIT_TREE) {
|
|
|
|
|
|
|
|
if (baked_light) {
|
|
|
|
baked_light->lights.erase(this);
|
|
|
|
}
|
|
|
|
}
|
2014-06-11 13:41:03 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-12 05:13:22 +00:00
|
|
|
void Light::set_editor_only(bool p_editor_only) {
|
|
|
|
|
|
|
|
editor_only=p_editor_only;
|
|
|
|
_update_visibility();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Light::is_editor_only() const{
|
|
|
|
|
|
|
|
return editor_only;
|
|
|
|
}
|
|
|
|
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void Light::_bind_methods() {
|
|
|
|
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_editor_only","editor_only"), &Light::set_editor_only );
|
|
|
|
ClassDB::bind_method(_MD("is_editor_only"), &Light::is_editor_only );
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_param","param","value"), &Light::set_param );
|
|
|
|
ClassDB::bind_method(_MD("get_param","param"), &Light::get_param );
|
2016-10-27 14:50:26 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_shadow","enabled"), &Light::set_shadow );
|
|
|
|
ClassDB::bind_method(_MD("has_shadow"), &Light::has_shadow );
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_negative","enabled"), &Light::set_negative );
|
|
|
|
ClassDB::bind_method(_MD("is_negative"), &Light::is_negative );
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_cull_mask","cull_mask"), &Light::set_cull_mask );
|
|
|
|
ClassDB::bind_method(_MD("get_cull_mask"), &Light::get_cull_mask );
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_color","color"), &Light::set_color );
|
|
|
|
ClassDB::bind_method(_MD("get_color"), &Light::get_color );
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method(_MD("set_shadow_color","shadow_color"), &Light::set_shadow_color );
|
|
|
|
ClassDB::bind_method(_MD("get_shadow_color"), &Light::get_shadow_color );
|
2016-11-11 15:27:52 +00:00
|
|
|
|
2017-01-04 04:16:14 +00:00
|
|
|
ADD_GROUP("Light","light_");
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::COLOR, "light_color",PROPERTY_HINT_COLOR_NO_ALPHA), _SCS("set_color"), _SCS("get_color"));
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "light_energy",PROPERTY_HINT_RANGE,"0,16,0.01"), _SCS("set_param"), _SCS("get_param"), PARAM_ENERGY);
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::BOOL, "light_negative"), _SCS("set_negative"), _SCS("is_negative"));
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "light_specular",PROPERTY_HINT_RANGE,"0,1,0.01"), _SCS("set_param"), _SCS("get_param"), PARAM_SPECULAR);
|
2017-01-11 01:20:57 +00:00
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::INT, "light_cull_mask",PROPERTY_HINT_LAYERS_3D_RENDER), _SCS("set_cull_mask"), _SCS("get_cull_mask"));
|
2017-01-04 04:16:14 +00:00
|
|
|
ADD_GROUP("Shadow","shadow_");
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::BOOL, "shadow_enabled"), _SCS("set_shadow"), _SCS("has_shadow"));
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::COLOR, "shadow_color",PROPERTY_HINT_COLOR_NO_ALPHA), _SCS("set_shadow_color"), _SCS("get_shadow_color"));
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "shadow_bias",PROPERTY_HINT_RANGE,"-16,16,0.01"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_BIAS);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "shadow_max_distance",PROPERTY_HINT_RANGE,"0,65536,0.1"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_MAX_DISTANCE);
|
|
|
|
ADD_GROUP("Editor","");
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::BOOL, "editor_only"), _SCS("set_editor_only"), _SCS("is_editor_only"));
|
|
|
|
ADD_GROUP("","");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
BIND_CONSTANT( PARAM_ENERGY );
|
2016-10-27 14:50:26 +00:00
|
|
|
BIND_CONSTANT( PARAM_SPECULAR );
|
|
|
|
BIND_CONSTANT( PARAM_RANGE );
|
2014-02-10 01:10:30 +00:00
|
|
|
BIND_CONSTANT( PARAM_ATTENUATION );
|
|
|
|
BIND_CONSTANT( PARAM_SPOT_ANGLE );
|
|
|
|
BIND_CONSTANT( PARAM_SPOT_ATTENUATION );
|
2016-10-27 14:50:26 +00:00
|
|
|
BIND_CONSTANT( PARAM_SHADOW_MAX_DISTANCE );
|
|
|
|
BIND_CONSTANT( PARAM_SHADOW_SPLIT_1_OFFSET );
|
|
|
|
BIND_CONSTANT( PARAM_SHADOW_SPLIT_2_OFFSET );
|
|
|
|
BIND_CONSTANT( PARAM_SHADOW_SPLIT_3_OFFSET );
|
|
|
|
BIND_CONSTANT( PARAM_SHADOW_NORMAL_BIAS );
|
|
|
|
BIND_CONSTANT( PARAM_SHADOW_BIAS );
|
|
|
|
BIND_CONSTANT( PARAM_SHADOW_BIAS_SPLIT_SCALE );
|
|
|
|
BIND_CONSTANT( PARAM_MAX );
|
2014-08-14 13:31:38 +00:00
|
|
|
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Light::Light(VisualServer::LightType p_type) {
|
|
|
|
|
|
|
|
type=p_type;
|
|
|
|
light=VisualServer::get_singleton()->light_create(p_type);
|
2016-10-27 14:50:26 +00:00
|
|
|
VS::get_singleton()->instance_set_base(get_instance(),light);
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2016-12-20 03:21:07 +00:00
|
|
|
baked_light=NULL;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2014-10-12 05:13:22 +00:00
|
|
|
editor_only=false;
|
2016-10-27 14:50:26 +00:00
|
|
|
set_color(Color(1,1,1,1));
|
|
|
|
set_shadow(false);
|
|
|
|
set_negative(false);
|
|
|
|
set_cull_mask(0xFFFFFFFF);
|
|
|
|
|
|
|
|
set_param(PARAM_ENERGY,1);
|
2016-11-21 01:49:53 +00:00
|
|
|
set_param(PARAM_SPECULAR,0.5);
|
2016-10-27 14:50:26 +00:00
|
|
|
set_param(PARAM_RANGE,5);
|
|
|
|
set_param(PARAM_ATTENUATION,1);
|
|
|
|
set_param(PARAM_SPOT_ANGLE,45);
|
|
|
|
set_param(PARAM_SPOT_ATTENUATION,1);
|
|
|
|
set_param(PARAM_SHADOW_MAX_DISTANCE,0);
|
|
|
|
set_param(PARAM_SHADOW_SPLIT_1_OFFSET,0.1);
|
|
|
|
set_param(PARAM_SHADOW_SPLIT_2_OFFSET,0.2);
|
|
|
|
set_param(PARAM_SHADOW_SPLIT_3_OFFSET,0.5);
|
|
|
|
set_param(PARAM_SHADOW_NORMAL_BIAS,0.1);
|
|
|
|
set_param(PARAM_SHADOW_BIAS,0.1);
|
|
|
|
set_param(PARAM_SHADOW_BIAS_SPLIT_SCALE,0.1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Light::Light() {
|
|
|
|
|
|
|
|
type=VisualServer::LIGHT_DIRECTIONAL;
|
|
|
|
ERR_PRINT("Light shouldn't be instanced dircetly, use the subtypes.");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Light::~Light() {
|
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
VS::get_singleton()->instance_set_base(get_instance(),RID());
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (light.is_valid())
|
|
|
|
VisualServer::get_singleton()->free(light);
|
|
|
|
}
|
|
|
|
/////////////////////////////////////////
|
|
|
|
|
|
|
|
void DirectionalLight::set_shadow_mode(ShadowMode p_mode) {
|
|
|
|
|
|
|
|
shadow_mode=p_mode;
|
2016-11-10 02:55:06 +00:00
|
|
|
VS::get_singleton()->light_directional_set_shadow_mode(light,VS::LightDirectionalShadowMode(p_mode));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
DirectionalLight::ShadowMode DirectionalLight::get_shadow_mode() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return shadow_mode;
|
|
|
|
}
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
void DirectionalLight::set_blend_splits(bool p_enable) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
blend_splits=p_enable;
|
2016-11-11 15:27:52 +00:00
|
|
|
VS::get_singleton()->light_directional_set_blend_splits(light,p_enable);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
bool DirectionalLight::is_blend_splits_enabled() const {
|
|
|
|
|
|
|
|
return blend_splits;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DirectionalLight::_bind_methods() {
|
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method( _MD("set_shadow_mode","mode"),&DirectionalLight::set_shadow_mode);
|
|
|
|
ClassDB::bind_method( _MD("get_shadow_mode"),&DirectionalLight::get_shadow_mode);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method( _MD("set_blend_splits","enabled"),&DirectionalLight::set_blend_splits);
|
|
|
|
ClassDB::bind_method( _MD("is_blend_splits_enabled"),&DirectionalLight::is_blend_splits_enabled);
|
2016-11-10 02:55:06 +00:00
|
|
|
|
2017-01-04 04:16:14 +00:00
|
|
|
ADD_GROUP("Directional Shadow","directional_shadow_");
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::INT, "directional_shadow_mode",PROPERTY_HINT_ENUM,"Orthogonal,PSSM 2 Splits,PSSM 4 Splits"), _SCS("set_shadow_mode"), _SCS("get_shadow_mode"));
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "directional_shadow_split_1",PROPERTY_HINT_RANGE,"0,1,0.001"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_SPLIT_1_OFFSET);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "directional_shadow_split_2",PROPERTY_HINT_RANGE,"0,1,0.001"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_SPLIT_2_OFFSET);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "directional_shadow_split_3",PROPERTY_HINT_RANGE,"0,1,0.001"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_SPLIT_3_OFFSET);
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::BOOL, "directional_shadow_blend_splits"), _SCS("set_blend_splits"), _SCS("is_blend_splits_enabled"));
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "directional_shadow_normal_bias",PROPERTY_HINT_RANGE,"0,16,0.01"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_NORMAL_BIAS);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "directional_shadow_bias_split_scale",PROPERTY_HINT_RANGE,"0,16,0.01"), _SCS("set_param"), _SCS("get_param"), PARAM_SHADOW_BIAS_SPLIT_SCALE);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
BIND_CONSTANT( SHADOW_ORTHOGONAL );
|
2014-05-05 01:50:23 +00:00
|
|
|
BIND_CONSTANT( SHADOW_PARALLEL_2_SPLITS );
|
|
|
|
BIND_CONSTANT( SHADOW_PARALLEL_4_SPLITS );
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DirectionalLight::DirectionalLight() : Light( VisualServer::LIGHT_DIRECTIONAL ) {
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
set_shadow_mode(SHADOW_PARALLEL_4_SPLITS);
|
|
|
|
blend_splits=false;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
void OmniLight::set_shadow_mode(ShadowMode p_mode) {
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
shadow_mode=p_mode;
|
|
|
|
VS::get_singleton()->light_omni_set_shadow_mode(light,VS::LightOmniShadowMode(p_mode));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
OmniLight::ShadowMode OmniLight::get_shadow_mode() const{
|
|
|
|
|
|
|
|
return shadow_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OmniLight::set_shadow_detail(ShadowDetail p_detail){
|
|
|
|
|
|
|
|
shadow_detail=p_detail;
|
|
|
|
VS::get_singleton()->light_omni_set_shadow_detail(light,VS::LightOmniShadowDetail(p_detail));
|
|
|
|
}
|
|
|
|
OmniLight::ShadowDetail OmniLight::get_shadow_detail() const{
|
|
|
|
|
|
|
|
return shadow_detail;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
void OmniLight::_bind_methods() {
|
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method( _MD("set_shadow_mode","mode"),&OmniLight::set_shadow_mode);
|
|
|
|
ClassDB::bind_method( _MD("get_shadow_mode"),&OmniLight::get_shadow_mode);
|
2016-11-10 02:55:06 +00:00
|
|
|
|
2017-01-03 02:03:46 +00:00
|
|
|
ClassDB::bind_method( _MD("set_shadow_detail","detail"),&OmniLight::set_shadow_detail);
|
|
|
|
ClassDB::bind_method( _MD("get_shadow_detail"),&OmniLight::get_shadow_detail);
|
2016-11-10 02:55:06 +00:00
|
|
|
|
2017-01-04 04:16:14 +00:00
|
|
|
ADD_GROUP("Omni","omni_");
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "omni_range",PROPERTY_HINT_RANGE,"0,65536,0.1"), _SCS("set_param"), _SCS("get_param"), PARAM_RANGE);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "omni_attenuation",PROPERTY_HINT_EXP_EASING), _SCS("set_param"), _SCS("get_param"), PARAM_ATTENUATION);
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::INT, "omni_shadow_mode",PROPERTY_HINT_ENUM,"Dual Paraboloid,Cube"), _SCS("set_shadow_mode"), _SCS("get_shadow_mode"));
|
|
|
|
ADD_PROPERTY( PropertyInfo( Variant::INT, "omni_shadow_detail",PROPERTY_HINT_ENUM,"Vertical,Horizontal"), _SCS("set_shadow_detail"), _SCS("get_shadow_detail"));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
OmniLight::OmniLight() : Light( VisualServer::LIGHT_OMNI ) {
|
|
|
|
|
|
|
|
set_shadow_mode(SHADOW_DUAL_PARABOLOID);
|
|
|
|
set_shadow_detail(SHADOW_DETAIL_HORIZONTAL);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpotLight::_bind_methods() {
|
|
|
|
|
2017-01-04 04:16:14 +00:00
|
|
|
ADD_GROUP("Spot","spot_");
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "spot_range",PROPERTY_HINT_RANGE,"0,65536,0.1"), _SCS("set_param"), _SCS("get_param"), PARAM_RANGE);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "spot_attenuation",PROPERTY_HINT_EXP_EASING), _SCS("set_param"), _SCS("get_param"), PARAM_ATTENUATION);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "spot_angle",PROPERTY_HINT_RANGE,"0,180,0.1"), _SCS("set_param"), _SCS("get_param"), PARAM_SPOT_ANGLE);
|
|
|
|
ADD_PROPERTYI( PropertyInfo( Variant::REAL, "spot_angle_attenuation",PROPERTY_HINT_EXP_EASING), _SCS("set_param"), _SCS("get_param"), PARAM_SPOT_ATTENUATION);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
}
|