2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
2020-03-26 21:49:16 +00:00
|
|
|
/* light_3d.h */
|
2014-02-10 01:10:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2020-07-01 12:18:13 +00:00
|
|
|
#ifndef LIGHT_3D_H
|
|
|
|
#define LIGHT_3D_H
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
#include "scene/3d/visual_instance_3d.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
class Light3D : public VisualInstance3D {
|
|
|
|
GDCLASS(Light3D, VisualInstance3D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
public:
|
2016-10-27 14:50:26 +00:00
|
|
|
enum Param {
|
2020-03-27 18:21:27 +00:00
|
|
|
PARAM_ENERGY = RS::LIGHT_PARAM_ENERGY,
|
|
|
|
PARAM_INDIRECT_ENERGY = RS::LIGHT_PARAM_INDIRECT_ENERGY,
|
2021-07-09 08:28:33 +00:00
|
|
|
PARAM_VOLUMETRIC_FOG_ENERGY = RS::LIGHT_PARAM_VOLUMETRIC_FOG_ENERGY,
|
2020-03-27 18:21:27 +00:00
|
|
|
PARAM_SPECULAR = RS::LIGHT_PARAM_SPECULAR,
|
|
|
|
PARAM_RANGE = RS::LIGHT_PARAM_RANGE,
|
2020-04-09 18:11:15 +00:00
|
|
|
PARAM_SIZE = RS::LIGHT_PARAM_SIZE,
|
2020-03-27 18:21:27 +00:00
|
|
|
PARAM_ATTENUATION = RS::LIGHT_PARAM_ATTENUATION,
|
|
|
|
PARAM_SPOT_ANGLE = RS::LIGHT_PARAM_SPOT_ANGLE,
|
|
|
|
PARAM_SPOT_ATTENUATION = RS::LIGHT_PARAM_SPOT_ATTENUATION,
|
|
|
|
PARAM_SHADOW_MAX_DISTANCE = RS::LIGHT_PARAM_SHADOW_MAX_DISTANCE,
|
|
|
|
PARAM_SHADOW_SPLIT_1_OFFSET = RS::LIGHT_PARAM_SHADOW_SPLIT_1_OFFSET,
|
|
|
|
PARAM_SHADOW_SPLIT_2_OFFSET = RS::LIGHT_PARAM_SHADOW_SPLIT_2_OFFSET,
|
|
|
|
PARAM_SHADOW_SPLIT_3_OFFSET = RS::LIGHT_PARAM_SHADOW_SPLIT_3_OFFSET,
|
|
|
|
PARAM_SHADOW_FADE_START = RS::LIGHT_PARAM_SHADOW_FADE_START,
|
|
|
|
PARAM_SHADOW_NORMAL_BIAS = RS::LIGHT_PARAM_SHADOW_NORMAL_BIAS,
|
|
|
|
PARAM_SHADOW_BIAS = RS::LIGHT_PARAM_SHADOW_BIAS,
|
2020-04-08 01:51:52 +00:00
|
|
|
PARAM_SHADOW_PANCAKE_SIZE = RS::LIGHT_PARAM_SHADOW_PANCAKE_SIZE,
|
2022-06-10 10:47:06 +00:00
|
|
|
PARAM_SHADOW_OPACITY = RS::LIGHT_PARAM_SHADOW_OPACITY,
|
2020-04-10 09:30:36 +00:00
|
|
|
PARAM_SHADOW_BLUR = RS::LIGHT_PARAM_SHADOW_BLUR,
|
2020-04-08 01:51:52 +00:00
|
|
|
PARAM_TRANSMITTANCE_BIAS = RS::LIGHT_PARAM_TRANSMITTANCE_BIAS,
|
2022-07-31 23:20:24 +00:00
|
|
|
PARAM_INTENSITY = RS::LIGHT_PARAM_INTENSITY,
|
2020-03-27 18:21:27 +00:00
|
|
|
PARAM_MAX = RS::LIGHT_PARAM_MAX
|
2014-06-11 13:41:03 +00:00
|
|
|
};
|
|
|
|
|
2017-12-14 11:59:46 +00:00
|
|
|
enum BakeMode {
|
|
|
|
BAKE_DISABLED,
|
2021-11-26 16:47:37 +00:00
|
|
|
BAKE_STATIC,
|
2020-06-25 13:33:28 +00:00
|
|
|
BAKE_DYNAMIC,
|
2017-12-14 11:59:46 +00:00
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
private:
|
2016-10-27 14:50:26 +00:00
|
|
|
Color color;
|
2021-01-30 00:55:54 +00:00
|
|
|
real_t param[PARAM_MAX] = {};
|
2021-02-07 21:29:31 +00:00
|
|
|
bool shadow = false;
|
|
|
|
bool negative = false;
|
|
|
|
bool reverse_cull = false;
|
|
|
|
uint32_t cull_mask = 0;
|
2022-02-24 21:55:14 +00:00
|
|
|
bool distance_fade_enabled = false;
|
|
|
|
real_t distance_fade_begin = 40.0;
|
|
|
|
real_t distance_fade_shadow = 50.0;
|
|
|
|
real_t distance_fade_length = 10.0;
|
2021-02-07 21:29:31 +00:00
|
|
|
RS::LightType type = RenderingServer::LIGHT_DIRECTIONAL;
|
|
|
|
bool editor_only = false;
|
2014-10-12 05:13:22 +00:00
|
|
|
void _update_visibility();
|
2021-02-07 21:29:31 +00:00
|
|
|
BakeMode bake_mode = BAKE_DYNAMIC;
|
2020-04-14 20:05:45 +00:00
|
|
|
Ref<Texture2D> projector;
|
2022-07-31 23:20:24 +00:00
|
|
|
Color correlated_color = Color(1.0, 1.0, 1.0);
|
|
|
|
float temperature = 6500.0;
|
2016-12-20 03:21:07 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
// bind helpers
|
|
|
|
|
2022-06-23 06:19:18 +00:00
|
|
|
virtual void owner_changed_notify() override;
|
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
protected:
|
2014-02-10 01:10:30 +00:00
|
|
|
RID light;
|
|
|
|
|
|
|
|
static void _bind_methods();
|
2014-10-12 05:13:22 +00:00
|
|
|
void _notification(int p_what);
|
2022-08-12 20:57:11 +00:00
|
|
|
void _validate_property(PropertyInfo &p_property) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-27 18:21:27 +00:00
|
|
|
Light3D(RenderingServer::LightType p_type);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2020-03-27 18:21:27 +00:00
|
|
|
RS::LightType get_light_type() const { return type; }
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2014-10-12 05:13:22 +00:00
|
|
|
void set_editor_only(bool p_editor_only);
|
|
|
|
bool is_editor_only() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-01-30 00:55:54 +00:00
|
|
|
void set_param(Param p_param, real_t p_value);
|
|
|
|
real_t get_param(Param p_param) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void set_shadow(bool p_enable);
|
|
|
|
bool has_shadow() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void set_negative(bool p_enable);
|
|
|
|
bool is_negative() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2022-02-24 21:55:14 +00:00
|
|
|
void set_enable_distance_fade(bool p_enable);
|
|
|
|
bool is_distance_fade_enabled() const;
|
|
|
|
|
|
|
|
void set_distance_fade_begin(real_t p_distance);
|
|
|
|
real_t get_distance_fade_begin() const;
|
|
|
|
|
|
|
|
void set_distance_fade_shadow(real_t p_distance);
|
|
|
|
real_t get_distance_fade_shadow() const;
|
|
|
|
|
|
|
|
void set_distance_fade_length(real_t p_length);
|
|
|
|
real_t get_distance_fade_length() const;
|
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void set_cull_mask(uint32_t p_cull_mask);
|
|
|
|
uint32_t get_cull_mask() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-27 14:50:26 +00:00
|
|
|
void set_color(const Color &p_color);
|
|
|
|
Color get_color() const;
|
2014-06-11 13:41:03 +00:00
|
|
|
|
2017-08-19 23:06:40 +00:00
|
|
|
void set_shadow_reverse_cull_face(bool p_enable);
|
|
|
|
bool get_shadow_reverse_cull_face() const;
|
|
|
|
|
2017-12-14 11:59:46 +00:00
|
|
|
void set_bake_mode(BakeMode p_mode);
|
|
|
|
BakeMode get_bake_mode() const;
|
|
|
|
|
2020-04-15 07:09:48 +00:00
|
|
|
void set_projector(const Ref<Texture2D> &p_texture);
|
2020-04-14 20:05:45 +00:00
|
|
|
Ref<Texture2D> get_projector() const;
|
|
|
|
|
2022-07-31 23:20:24 +00:00
|
|
|
void set_temperature(const float p_temperature);
|
|
|
|
float get_temperature() const;
|
|
|
|
Color get_correlated_color() const;
|
|
|
|
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual AABB get_aabb() const override;
|
2024-02-17 18:03:21 +00:00
|
|
|
virtual PackedStringArray get_configuration_warnings() const override;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
Light3D();
|
|
|
|
~Light3D();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
VARIANT_ENUM_CAST(Light3D::Param);
|
|
|
|
VARIANT_ENUM_CAST(Light3D::BakeMode);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
class DirectionalLight3D : public Light3D {
|
|
|
|
GDCLASS(DirectionalLight3D, Light3D);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum ShadowMode {
|
|
|
|
SHADOW_ORTHOGONAL,
|
2014-05-05 01:50:23 +00:00
|
|
|
SHADOW_PARALLEL_2_SPLITS,
|
2020-07-01 12:18:13 +00:00
|
|
|
SHADOW_PARALLEL_4_SPLITS,
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2021-10-19 22:40:46 +00:00
|
|
|
enum SkyMode {
|
|
|
|
SKY_MODE_LIGHT_AND_SKY,
|
|
|
|
SKY_MODE_LIGHT_ONLY,
|
|
|
|
SKY_MODE_SKY_ONLY,
|
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
private:
|
2016-11-10 02:55:06 +00:00
|
|
|
bool blend_splits;
|
2014-02-10 01:10:30 +00:00
|
|
|
ShadowMode shadow_mode;
|
2021-10-19 22:40:46 +00:00
|
|
|
SkyMode sky_mode = SKY_MODE_LIGHT_AND_SKY;
|
2016-10-03 19:33:42 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2022-08-12 20:57:11 +00:00
|
|
|
void _validate_property(PropertyInfo &p_property) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2014-02-10 01:10:30 +00:00
|
|
|
void set_shadow_mode(ShadowMode p_mode);
|
|
|
|
ShadowMode get_shadow_mode() const;
|
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
void set_blend_splits(bool p_enable);
|
|
|
|
bool is_blend_splits_enabled() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-10-19 22:40:46 +00:00
|
|
|
void set_sky_mode(SkyMode p_mode);
|
|
|
|
SkyMode get_sky_mode() const;
|
2020-10-22 06:22:53 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
DirectionalLight3D();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
VARIANT_ENUM_CAST(DirectionalLight3D::ShadowMode)
|
2021-10-19 22:40:46 +00:00
|
|
|
VARIANT_ENUM_CAST(DirectionalLight3D::SkyMode)
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
class OmniLight3D : public Light3D {
|
|
|
|
GDCLASS(OmniLight3D, Light3D);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2016-11-10 02:55:06 +00:00
|
|
|
public:
|
|
|
|
// omni light
|
|
|
|
enum ShadowMode {
|
|
|
|
SHADOW_DUAL_PARABOLOID,
|
|
|
|
SHADOW_CUBE,
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
ShadowMode shadow_mode;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2016-11-10 02:55:06 +00:00
|
|
|
void set_shadow_mode(ShadowMode p_mode);
|
|
|
|
ShadowMode get_shadow_mode() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2024-02-17 18:03:21 +00:00
|
|
|
PackedStringArray get_configuration_warnings() const override;
|
2020-04-14 20:05:45 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
OmniLight3D();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
VARIANT_ENUM_CAST(OmniLight3D::ShadowMode)
|
2016-11-10 02:55:06 +00:00
|
|
|
|
2020-03-26 21:49:16 +00:00
|
|
|
class SpotLight3D : public Light3D {
|
|
|
|
GDCLASS(SpotLight3D, Light3D);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
2024-02-17 18:03:21 +00:00
|
|
|
PackedStringArray get_configuration_warnings() const override;
|
2019-07-07 14:22:09 +00:00
|
|
|
|
2022-12-05 20:44:23 +00:00
|
|
|
SpotLight3D();
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-07-01 12:18:13 +00:00
|
|
|
#endif // LIGHT_3D_H
|