2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* environment.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef ENVIRONMENT_H
|
|
|
|
#define ENVIRONMENT_H
|
|
|
|
|
|
|
|
#include "resource.h"
|
2016-11-19 17:23:37 +01:00
|
|
|
#include "scene/resources/sky_box.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/resources/texture.h"
|
|
|
|
#include "servers/visual_server.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
class Environment : public Resource {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(Environment, Resource);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2016-10-21 12:27:13 +02:00
|
|
|
enum BGMode {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-21 12:27:13 +02:00
|
|
|
BG_CLEAR_COLOR,
|
|
|
|
BG_COLOR,
|
2017-05-25 18:53:59 +02:00
|
|
|
BG_SKY,
|
2016-10-21 12:27:13 +02:00
|
|
|
BG_CANVAS,
|
|
|
|
BG_KEEP,
|
|
|
|
BG_MAX
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2016-10-30 01:48:09 +02:00
|
|
|
enum ToneMapper {
|
|
|
|
TONE_MAPPER_LINEAR,
|
|
|
|
TONE_MAPPER_REINHARDT,
|
|
|
|
TONE_MAPPER_FILMIC,
|
2016-12-07 21:49:52 +01:00
|
|
|
TONE_MAPPER_ACES
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2016-12-08 13:48:38 +01:00
|
|
|
enum GlowBlendMode {
|
|
|
|
GLOW_BLEND_MODE_ADDITIVE,
|
|
|
|
GLOW_BLEND_MODE_SCREEN,
|
|
|
|
GLOW_BLEND_MODE_SOFTLIGHT,
|
|
|
|
GLOW_BLEND_MODE_REPLACE,
|
2014-05-29 15:56:39 +02:00
|
|
|
};
|
|
|
|
|
2016-12-10 05:13:20 +01:00
|
|
|
enum DOFBlurQuality {
|
|
|
|
DOF_BLUR_QUALITY_LOW,
|
|
|
|
DOF_BLUR_QUALITY_MEDIUM,
|
|
|
|
DOF_BLUR_QUALITY_HIGH,
|
2014-06-28 04:21:45 +02:00
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
private:
|
|
|
|
RID environment;
|
|
|
|
|
2016-10-21 12:27:13 +02:00
|
|
|
BGMode bg_mode;
|
2017-05-25 18:53:59 +02:00
|
|
|
Ref<Sky> bg_sky;
|
|
|
|
float bg_sky_scale;
|
2016-10-21 12:27:13 +02:00
|
|
|
Color bg_color;
|
|
|
|
float bg_energy;
|
|
|
|
int bg_canvas_max_layer;
|
|
|
|
Color ambient_color;
|
|
|
|
float ambient_energy;
|
2017-05-25 18:53:59 +02:00
|
|
|
float ambient_sky_contribution;
|
2016-10-21 12:27:13 +02:00
|
|
|
|
2016-10-30 01:48:09 +02:00
|
|
|
ToneMapper tone_mapper;
|
|
|
|
float tonemap_exposure;
|
|
|
|
float tonemap_white;
|
|
|
|
bool tonemap_auto_exposure;
|
|
|
|
float tonemap_auto_exposure_max;
|
|
|
|
float tonemap_auto_exposure_min;
|
|
|
|
float tonemap_auto_exposure_speed;
|
2016-12-07 21:49:52 +01:00
|
|
|
float tonemap_auto_exposure_grey;
|
2016-10-30 01:48:09 +02:00
|
|
|
|
|
|
|
bool adjustment_enabled;
|
|
|
|
float adjustment_contrast;
|
|
|
|
float adjustment_saturation;
|
|
|
|
float adjustment_brightness;
|
|
|
|
Ref<Texture> adjustment_color_correction;
|
|
|
|
|
2016-11-29 23:55:12 +01:00
|
|
|
bool ssr_enabled;
|
|
|
|
int ssr_max_steps;
|
2017-06-16 02:28:05 +02:00
|
|
|
float ssr_fade_in;
|
|
|
|
float ssr_fade_out;
|
2016-11-29 23:55:12 +01:00
|
|
|
float ssr_depth_tolerance;
|
|
|
|
bool ssr_roughness;
|
|
|
|
|
2016-12-04 16:45:30 +01:00
|
|
|
bool ssao_enabled;
|
|
|
|
float ssao_radius;
|
|
|
|
float ssao_intensity;
|
|
|
|
float ssao_radius2;
|
|
|
|
float ssao_intensity2;
|
|
|
|
float ssao_bias;
|
|
|
|
float ssao_direct_light_affect;
|
|
|
|
Color ssao_color;
|
|
|
|
bool ssao_blur;
|
|
|
|
|
2016-12-08 13:48:38 +01:00
|
|
|
bool glow_enabled;
|
|
|
|
int glow_levels;
|
|
|
|
float glow_intensity;
|
|
|
|
float glow_strength;
|
|
|
|
float glow_bloom;
|
|
|
|
GlowBlendMode glow_blend_mode;
|
2017-07-08 17:12:18 +02:00
|
|
|
float glow_hdr_bleed_threshold;
|
2016-12-08 13:48:38 +01:00
|
|
|
float glow_hdr_bleed_scale;
|
2016-12-10 05:13:20 +01:00
|
|
|
bool glow_bicubic_upscale;
|
|
|
|
|
|
|
|
bool dof_blur_far_enabled;
|
|
|
|
float dof_blur_far_distance;
|
|
|
|
float dof_blur_far_transition;
|
|
|
|
float dof_blur_far_amount;
|
|
|
|
DOFBlurQuality dof_blur_far_quality;
|
2016-12-08 13:48:38 +01:00
|
|
|
|
2016-12-10 05:13:20 +01:00
|
|
|
bool dof_blur_near_enabled;
|
|
|
|
float dof_blur_near_distance;
|
|
|
|
float dof_blur_near_transition;
|
|
|
|
float dof_blur_near_amount;
|
|
|
|
DOFBlurQuality dof_blur_near_quality;
|
2016-12-04 16:45:30 +01:00
|
|
|
|
2017-06-07 04:16:17 +02:00
|
|
|
bool fog_enabled;
|
|
|
|
Color fog_color;
|
|
|
|
Color fog_sun_color;
|
|
|
|
float fog_sun_amount;
|
|
|
|
|
|
|
|
bool fog_depth_enabled;
|
|
|
|
float fog_depth_begin;
|
|
|
|
float fog_depth_curve;
|
|
|
|
|
|
|
|
bool fog_transmit_enabled;
|
|
|
|
float fog_transmit_curve;
|
|
|
|
|
|
|
|
bool fog_height_enabled;
|
|
|
|
float fog_height_min;
|
|
|
|
float fog_height_max;
|
|
|
|
float fog_height_curve;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void _validate_property(PropertyInfo &property) const;
|
2016-10-21 12:27:13 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
2016-10-21 12:27:13 +02:00
|
|
|
void set_background(BGMode p_bg);
|
2017-05-25 18:53:59 +02:00
|
|
|
void set_sky(const Ref<Sky> &p_sky);
|
|
|
|
void set_sky_scale(float p_scale);
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_bg_color(const Color &p_color);
|
2016-10-21 12:27:13 +02:00
|
|
|
void set_bg_energy(float p_energy);
|
|
|
|
void set_canvas_max_layer(int p_max_layer);
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_ambient_light_color(const Color &p_color);
|
2016-10-21 12:27:13 +02:00
|
|
|
void set_ambient_light_energy(float p_energy);
|
2017-05-25 18:53:59 +02:00
|
|
|
void set_ambient_light_sky_contribution(float p_energy);
|
2016-10-21 12:27:13 +02:00
|
|
|
|
|
|
|
BGMode get_background() const;
|
2017-05-25 18:53:59 +02:00
|
|
|
Ref<Sky> get_sky() const;
|
|
|
|
float get_sky_scale() const;
|
2016-10-21 12:27:13 +02:00
|
|
|
Color get_bg_color() const;
|
|
|
|
float get_bg_energy() const;
|
|
|
|
int get_canvas_max_layer() const;
|
|
|
|
Color get_ambient_light_color() const;
|
|
|
|
float get_ambient_light_energy() const;
|
2017-05-25 18:53:59 +02:00
|
|
|
float get_ambient_light_sky_contribution() const;
|
2016-10-21 12:27:13 +02:00
|
|
|
|
2016-10-30 01:48:09 +02:00
|
|
|
void set_tonemapper(ToneMapper p_tone_mapper);
|
|
|
|
ToneMapper get_tonemapper() const;
|
|
|
|
|
|
|
|
void set_tonemap_exposure(float p_exposure);
|
|
|
|
float get_tonemap_exposure() const;
|
|
|
|
|
|
|
|
void set_tonemap_white(float p_white);
|
|
|
|
float get_tonemap_white() const;
|
|
|
|
|
|
|
|
void set_tonemap_auto_exposure(bool p_enabled);
|
|
|
|
bool get_tonemap_auto_exposure() const;
|
|
|
|
|
|
|
|
void set_tonemap_auto_exposure_max(float p_auto_exposure_max);
|
|
|
|
float get_tonemap_auto_exposure_max() const;
|
|
|
|
|
|
|
|
void set_tonemap_auto_exposure_min(float p_auto_exposure_min);
|
|
|
|
float get_tonemap_auto_exposure_min() const;
|
|
|
|
|
|
|
|
void set_tonemap_auto_exposure_speed(float p_auto_exposure_speed);
|
|
|
|
float get_tonemap_auto_exposure_speed() const;
|
|
|
|
|
2016-12-07 21:49:52 +01:00
|
|
|
void set_tonemap_auto_exposure_grey(float p_auto_exposure_grey);
|
|
|
|
float get_tonemap_auto_exposure_grey() const;
|
2016-10-30 01:48:09 +02:00
|
|
|
|
|
|
|
void set_adjustment_enable(bool p_enable);
|
|
|
|
bool is_adjustment_enabled() const;
|
|
|
|
|
|
|
|
void set_adjustment_brightness(float p_brightness);
|
|
|
|
float get_adjustment_brightness() const;
|
|
|
|
|
|
|
|
void set_adjustment_contrast(float p_contrast);
|
|
|
|
float get_adjustment_contrast() const;
|
|
|
|
|
|
|
|
void set_adjustment_saturation(float p_saturation);
|
|
|
|
float get_adjustment_saturation() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_adjustment_color_correction(const Ref<Texture> &p_ramp);
|
2016-10-30 01:48:09 +02:00
|
|
|
Ref<Texture> get_adjustment_color_correction() const;
|
|
|
|
|
2016-11-29 23:55:12 +01:00
|
|
|
void set_ssr_enabled(bool p_enable);
|
|
|
|
bool is_ssr_enabled() const;
|
|
|
|
|
|
|
|
void set_ssr_max_steps(int p_steps);
|
|
|
|
int get_ssr_max_steps() const;
|
|
|
|
|
2017-08-11 21:10:05 +02:00
|
|
|
void set_ssr_fade_in(float p_fade_in);
|
2017-06-16 02:28:05 +02:00
|
|
|
float get_ssr_fade_in() const;
|
2016-11-29 23:55:12 +01:00
|
|
|
|
2017-08-11 21:10:05 +02:00
|
|
|
void set_ssr_fade_out(float p_fade_out);
|
2017-06-16 02:28:05 +02:00
|
|
|
float get_ssr_fade_out() const;
|
2016-11-29 23:55:12 +01:00
|
|
|
|
|
|
|
void set_ssr_depth_tolerance(float p_depth_tolerance);
|
|
|
|
float get_ssr_depth_tolerance() const;
|
|
|
|
|
|
|
|
void set_ssr_rough(bool p_enable);
|
|
|
|
bool is_ssr_rough() const;
|
|
|
|
|
2016-12-04 16:45:30 +01:00
|
|
|
void set_ssao_enabled(bool p_enable);
|
|
|
|
bool is_ssao_enabled() const;
|
|
|
|
|
|
|
|
void set_ssao_radius(float p_radius);
|
|
|
|
float get_ssao_radius() const;
|
|
|
|
|
|
|
|
void set_ssao_intensity(float p_intensity);
|
|
|
|
float get_ssao_intensity() const;
|
|
|
|
|
|
|
|
void set_ssao_radius2(float p_radius);
|
|
|
|
float get_ssao_radius2() const;
|
|
|
|
|
|
|
|
void set_ssao_intensity2(float p_intensity);
|
|
|
|
float get_ssao_intensity2() const;
|
|
|
|
|
|
|
|
void set_ssao_bias(float p_bias);
|
|
|
|
float get_ssao_bias() const;
|
|
|
|
|
|
|
|
void set_ssao_direct_light_affect(float p_direct_light_affect);
|
|
|
|
float get_ssao_direct_light_affect() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_ssao_color(const Color &p_color);
|
2016-12-04 16:45:30 +01:00
|
|
|
Color get_ssao_color() const;
|
|
|
|
|
|
|
|
void set_ssao_blur(bool p_enable);
|
|
|
|
bool is_ssao_blur_enabled() const;
|
|
|
|
|
2016-12-08 13:48:38 +01:00
|
|
|
void set_glow_enabled(bool p_enabled);
|
|
|
|
bool is_glow_enabled() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_glow_level(int p_level, bool p_enabled);
|
2016-12-08 13:48:38 +01:00
|
|
|
bool is_glow_level_enabled(int p_level) const;
|
|
|
|
|
|
|
|
void set_glow_intensity(float p_intensity);
|
|
|
|
float get_glow_intensity() const;
|
|
|
|
|
|
|
|
void set_glow_strength(float p_strength);
|
|
|
|
float get_glow_strength() const;
|
|
|
|
|
2017-07-08 17:12:18 +02:00
|
|
|
void set_glow_bloom(float p_threshold);
|
2016-12-08 13:48:38 +01:00
|
|
|
float get_glow_bloom() const;
|
|
|
|
|
|
|
|
void set_glow_blend_mode(GlowBlendMode p_mode);
|
|
|
|
GlowBlendMode get_glow_blend_mode() const;
|
|
|
|
|
2017-07-08 17:12:18 +02:00
|
|
|
void set_glow_hdr_bleed_threshold(float p_threshold);
|
|
|
|
float get_glow_hdr_bleed_threshold() const;
|
2016-12-08 13:48:38 +01:00
|
|
|
|
|
|
|
void set_glow_hdr_bleed_scale(float p_scale);
|
|
|
|
float get_glow_hdr_bleed_scale() const;
|
|
|
|
|
2016-12-10 05:13:20 +01:00
|
|
|
void set_glow_bicubic_upscale(bool p_enable);
|
|
|
|
bool is_glow_bicubic_upscale_enabled() const;
|
|
|
|
|
|
|
|
void set_dof_blur_far_enabled(bool p_enable);
|
|
|
|
bool is_dof_blur_far_enabled() const;
|
|
|
|
|
|
|
|
void set_dof_blur_far_distance(float p_distance);
|
|
|
|
float get_dof_blur_far_distance() const;
|
|
|
|
|
|
|
|
void set_dof_blur_far_transition(float p_distance);
|
|
|
|
float get_dof_blur_far_transition() const;
|
|
|
|
|
|
|
|
void set_dof_blur_far_amount(float p_amount);
|
|
|
|
float get_dof_blur_far_amount() const;
|
|
|
|
|
|
|
|
void set_dof_blur_far_quality(DOFBlurQuality p_quality);
|
|
|
|
DOFBlurQuality get_dof_blur_far_quality() const;
|
|
|
|
|
|
|
|
void set_dof_blur_near_enabled(bool p_enable);
|
|
|
|
bool is_dof_blur_near_enabled() const;
|
|
|
|
|
|
|
|
void set_dof_blur_near_distance(float p_distance);
|
|
|
|
float get_dof_blur_near_distance() const;
|
|
|
|
|
|
|
|
void set_dof_blur_near_transition(float p_distance);
|
|
|
|
float get_dof_blur_near_transition() const;
|
|
|
|
|
|
|
|
void set_dof_blur_near_amount(float p_amount);
|
|
|
|
float get_dof_blur_near_amount() const;
|
|
|
|
|
|
|
|
void set_dof_blur_near_quality(DOFBlurQuality p_quality);
|
|
|
|
DOFBlurQuality get_dof_blur_near_quality() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-07 04:16:17 +02:00
|
|
|
void set_fog_enabled(bool p_enabled);
|
|
|
|
bool is_fog_enabled() const;
|
|
|
|
|
|
|
|
void set_fog_color(const Color &p_color);
|
|
|
|
Color get_fog_color() const;
|
|
|
|
|
|
|
|
void set_fog_sun_color(const Color &p_color);
|
|
|
|
Color get_fog_sun_color() const;
|
|
|
|
|
|
|
|
void set_fog_sun_amount(float p_amount);
|
|
|
|
float get_fog_sun_amount() const;
|
|
|
|
|
|
|
|
void set_fog_depth_enabled(bool p_enabled);
|
|
|
|
bool is_fog_depth_enabled() const;
|
|
|
|
|
|
|
|
void set_fog_depth_begin(float p_distance);
|
|
|
|
float get_fog_depth_begin() const;
|
|
|
|
|
|
|
|
void set_fog_depth_curve(float p_curve);
|
|
|
|
float get_fog_depth_curve() const;
|
|
|
|
|
|
|
|
void set_fog_transmit_enabled(bool p_enabled);
|
|
|
|
bool is_fog_transmit_enabled() const;
|
|
|
|
|
|
|
|
void set_fog_transmit_curve(float p_curve);
|
|
|
|
float get_fog_transmit_curve() const;
|
|
|
|
|
|
|
|
void set_fog_height_enabled(bool p_enabled);
|
|
|
|
bool is_fog_height_enabled() const;
|
|
|
|
|
|
|
|
void set_fog_height_min(float p_distance);
|
|
|
|
float get_fog_height_min() const;
|
|
|
|
|
|
|
|
void set_fog_height_max(float p_distance);
|
|
|
|
float get_fog_height_max() const;
|
|
|
|
|
|
|
|
void set_fog_height_curve(float p_distance);
|
|
|
|
float get_fog_height_curve() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual RID get_rid() const;
|
|
|
|
|
|
|
|
Environment();
|
|
|
|
~Environment();
|
|
|
|
};
|
|
|
|
|
2016-10-21 12:27:13 +02:00
|
|
|
VARIANT_ENUM_CAST(Environment::BGMode)
|
2016-10-30 01:48:09 +02:00
|
|
|
VARIANT_ENUM_CAST(Environment::ToneMapper)
|
2016-12-08 13:48:38 +01:00
|
|
|
VARIANT_ENUM_CAST(Environment::GlowBlendMode)
|
2016-12-10 05:13:20 +01:00
|
|
|
VARIANT_ENUM_CAST(Environment::DOFBlurQuality)
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
#endif // ENVIRONMENT_H
|