environment_storage.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. /**************************************************************************/
  2. /* environment_storage.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef ENVIRONMENT_STORAGE_H
  31. #define ENVIRONMENT_STORAGE_H
  32. #include "core/templates/rid_owner.h"
  33. #include "servers/rendering_server.h"
  34. class RendererEnvironmentStorage {
  35. private:
  36. struct Environment {
  37. // Note, we capture and store all environment parameters received from Godot here.
  38. // Not all renderers support all effects and should just ignore the bits they don't support.
  39. // Background
  40. RS::EnvironmentBG background = RS::ENV_BG_CLEAR_COLOR;
  41. RID sky;
  42. float sky_custom_fov = 0.0;
  43. Basis sky_orientation;
  44. Color bg_color;
  45. float bg_energy_multiplier = 1.0;
  46. float bg_intensity = 1.0; // Measured in nits or candela/m^2. Default to 1.0 so this doesn't impact rendering when Physical Light Units disabled.
  47. int canvas_max_layer = 0;
  48. RS::EnvironmentAmbientSource ambient_source = RS::ENV_AMBIENT_SOURCE_BG;
  49. Color ambient_light;
  50. float ambient_light_energy = 1.0;
  51. float ambient_sky_contribution = 1.0;
  52. RS::EnvironmentReflectionSource reflection_source = RS::ENV_REFLECTION_SOURCE_BG;
  53. // Tonemap
  54. RS::EnvironmentToneMapper tone_mapper;
  55. float exposure = 1.0;
  56. float white = 1.0;
  57. // Fog
  58. bool fog_enabled = false;
  59. Color fog_light_color = Color(0.518, 0.553, 0.608);
  60. float fog_light_energy = 1.0;
  61. float fog_sun_scatter = 0.0;
  62. float fog_density = 0.01;
  63. float fog_sky_affect = 1.0;
  64. float fog_height = 0.0;
  65. float fog_height_density = 0.0; //can be negative to invert effect
  66. float fog_aerial_perspective = 0.0;
  67. // Volumetric Fog
  68. bool volumetric_fog_enabled = false;
  69. float volumetric_fog_density = 0.01;
  70. Color volumetric_fog_scattering = Color(1, 1, 1);
  71. Color volumetric_fog_emission = Color(0, 0, 0);
  72. float volumetric_fog_emission_energy = 0.0;
  73. float volumetric_fog_anisotropy = 0.2;
  74. float volumetric_fog_length = 64.0;
  75. float volumetric_fog_detail_spread = 2.0;
  76. float volumetric_fog_gi_inject = 1.0;
  77. float volumetric_fog_ambient_inject = 0.0;
  78. float volumetric_fog_sky_affect = 1.0;
  79. bool volumetric_fog_temporal_reprojection = true;
  80. float volumetric_fog_temporal_reprojection_amount = 0.9;
  81. // Glow
  82. bool glow_enabled = false;
  83. Vector<float> glow_levels;
  84. float glow_intensity = 0.8;
  85. float glow_strength = 1.0;
  86. float glow_bloom = 0.0;
  87. float glow_mix = 0.01;
  88. RS::EnvironmentGlowBlendMode glow_blend_mode = RS::ENV_GLOW_BLEND_MODE_SOFTLIGHT;
  89. float glow_hdr_bleed_threshold = 1.0;
  90. float glow_hdr_luminance_cap = 12.0;
  91. float glow_hdr_bleed_scale = 2.0;
  92. float glow_map_strength = 0.0f; // 1.0f in GLES3 ??
  93. RID glow_map;
  94. // SSR
  95. bool ssr_enabled = false;
  96. int ssr_max_steps = 64;
  97. float ssr_fade_in = 0.15;
  98. float ssr_fade_out = 2.0;
  99. float ssr_depth_tolerance = 0.2;
  100. // SSAO
  101. bool ssao_enabled = false;
  102. float ssao_radius = 1.0;
  103. float ssao_intensity = 2.0;
  104. float ssao_power = 1.5;
  105. float ssao_detail = 0.5;
  106. float ssao_horizon = 0.06;
  107. float ssao_sharpness = 0.98;
  108. float ssao_direct_light_affect = 0.0;
  109. float ssao_ao_channel_affect = 0.0;
  110. // SSIL
  111. bool ssil_enabled = false;
  112. float ssil_radius = 5.0;
  113. float ssil_intensity = 1.0;
  114. float ssil_sharpness = 0.98;
  115. float ssil_normal_rejection = 1.0;
  116. // SDFGI
  117. bool sdfgi_enabled = false;
  118. int sdfgi_cascades = 4;
  119. float sdfgi_min_cell_size = 0.2;
  120. bool sdfgi_use_occlusion = false;
  121. float sdfgi_bounce_feedback = 0.5;
  122. bool sdfgi_read_sky_light = true;
  123. float sdfgi_energy = 1.0;
  124. float sdfgi_normal_bias = 1.1;
  125. float sdfgi_probe_bias = 1.1;
  126. RS::EnvironmentSDFGIYScale sdfgi_y_scale = RS::ENV_SDFGI_Y_SCALE_75_PERCENT;
  127. // Adjustments
  128. bool adjustments_enabled = false;
  129. float adjustments_brightness = 1.0f;
  130. float adjustments_contrast = 1.0f;
  131. float adjustments_saturation = 1.0f;
  132. bool use_1d_color_correction = false;
  133. RID color_correction;
  134. };
  135. mutable RID_Owner<Environment, true> environment_owner;
  136. public:
  137. RID environment_allocate();
  138. void environment_initialize(RID p_rid);
  139. void environment_free(RID p_rid);
  140. bool is_environment(RID p_environment) const {
  141. return environment_owner.owns(p_environment);
  142. }
  143. // Background
  144. void environment_set_background(RID p_env, RS::EnvironmentBG p_bg);
  145. void environment_set_sky(RID p_env, RID p_sky);
  146. void environment_set_sky_custom_fov(RID p_env, float p_scale);
  147. void environment_set_sky_orientation(RID p_env, const Basis &p_orientation);
  148. void environment_set_bg_color(RID p_env, const Color &p_color);
  149. void environment_set_bg_energy(RID p_env, float p_multiplier, float p_exposure_value);
  150. void environment_set_canvas_max_layer(RID p_env, int p_max_layer);
  151. void environment_set_ambient_light(RID p_env, const Color &p_color, RS::EnvironmentAmbientSource p_ambient = RS::ENV_AMBIENT_SOURCE_BG, float p_energy = 1.0, float p_sky_contribution = 0.0, RS::EnvironmentReflectionSource p_reflection_source = RS::ENV_REFLECTION_SOURCE_BG);
  152. // FIXME: Disabled during Vulkan refactoring, should be ported.
  153. #if 0
  154. void environment_set_camera_feed_id(RID p_env, int p_camera_feed_id);
  155. #endif
  156. RS::EnvironmentBG environment_get_background(RID p_env) const;
  157. RID environment_get_sky(RID p_env) const;
  158. float environment_get_sky_custom_fov(RID p_env) const;
  159. Basis environment_get_sky_orientation(RID p_env) const;
  160. Color environment_get_bg_color(RID p_env) const;
  161. float environment_get_bg_energy_multiplier(RID p_env) const;
  162. float environment_get_bg_intensity(RID p_env) const;
  163. int environment_get_canvas_max_layer(RID p_env) const;
  164. RS::EnvironmentAmbientSource environment_get_ambient_source(RID p_env) const;
  165. Color environment_get_ambient_light(RID p_env) const;
  166. float environment_get_ambient_light_energy(RID p_env) const;
  167. float environment_get_ambient_sky_contribution(RID p_env) const;
  168. RS::EnvironmentReflectionSource environment_get_reflection_source(RID p_env) const;
  169. // Tonemap
  170. void environment_set_tonemap(RID p_env, RS::EnvironmentToneMapper p_tone_mapper, float p_exposure, float p_white);
  171. RS::EnvironmentToneMapper environment_get_tone_mapper(RID p_env) const;
  172. float environment_get_exposure(RID p_env) const;
  173. float environment_get_white(RID p_env) const;
  174. // Fog
  175. void environment_set_fog(RID p_env, bool p_enable, const Color &p_light_color, float p_light_energy, float p_sun_scatter, float p_density, float p_height, float p_height_density, float p_aerial_perspective, float p_sky_affect);
  176. bool environment_get_fog_enabled(RID p_env) const;
  177. Color environment_get_fog_light_color(RID p_env) const;
  178. float environment_get_fog_light_energy(RID p_env) const;
  179. float environment_get_fog_sun_scatter(RID p_env) const;
  180. float environment_get_fog_density(RID p_env) const;
  181. float environment_get_fog_sky_affect(RID p_env) const;
  182. float environment_get_fog_height(RID p_env) const;
  183. float environment_get_fog_height_density(RID p_env) const;
  184. float environment_get_fog_aerial_perspective(RID p_env) const;
  185. // Volumetric Fog
  186. void environment_set_volumetric_fog(RID p_env, bool p_enable, float p_density, const Color &p_albedo, const Color &p_emission, float p_emission_energy, float p_anisotropy, float p_length, float p_detail_spread, float p_gi_inject, bool p_temporal_reprojection, float p_temporal_reprojection_amount, float p_ambient_inject, float p_sky_affect);
  187. bool environment_get_volumetric_fog_enabled(RID p_env) const;
  188. float environment_get_volumetric_fog_density(RID p_env) const;
  189. Color environment_get_volumetric_fog_scattering(RID p_env) const;
  190. Color environment_get_volumetric_fog_emission(RID p_env) const;
  191. float environment_get_volumetric_fog_emission_energy(RID p_env) const;
  192. float environment_get_volumetric_fog_anisotropy(RID p_env) const;
  193. float environment_get_volumetric_fog_length(RID p_env) const;
  194. float environment_get_volumetric_fog_detail_spread(RID p_env) const;
  195. float environment_get_volumetric_fog_gi_inject(RID p_env) const;
  196. float environment_get_volumetric_fog_sky_affect(RID p_env) const;
  197. bool environment_get_volumetric_fog_temporal_reprojection(RID p_env) const;
  198. float environment_get_volumetric_fog_temporal_reprojection_amount(RID p_env) const;
  199. float environment_get_volumetric_fog_ambient_inject(RID p_env) const;
  200. // GLOW
  201. void environment_set_glow(RID p_env, bool p_enable, Vector<float> p_levels, float p_intensity, float p_strength, float p_mix, float p_bloom_threshold, RS::EnvironmentGlowBlendMode p_blend_mode, float p_hdr_bleed_threshold, float p_hdr_bleed_scale, float p_hdr_luminance_cap, float p_glow_map_strength, RID p_glow_map);
  202. bool environment_get_glow_enabled(RID p_env) const;
  203. Vector<float> environment_get_glow_levels(RID p_env) const;
  204. float environment_get_glow_intensity(RID p_env) const;
  205. float environment_get_glow_strength(RID p_env) const;
  206. float environment_get_glow_bloom(RID p_env) const;
  207. float environment_get_glow_mix(RID p_env) const;
  208. RS::EnvironmentGlowBlendMode environment_get_glow_blend_mode(RID p_env) const;
  209. float environment_get_glow_hdr_bleed_threshold(RID p_env) const;
  210. float environment_get_glow_hdr_luminance_cap(RID p_env) const;
  211. float environment_get_glow_hdr_bleed_scale(RID p_env) const;
  212. float environment_get_glow_map_strength(RID p_env) const;
  213. RID environment_get_glow_map(RID p_env) const;
  214. // SSR
  215. void environment_set_ssr(RID p_env, bool p_enable, int p_max_steps, float p_fade_int, float p_fade_out, float p_depth_tolerance);
  216. bool environment_get_ssr_enabled(RID p_env) const;
  217. int environment_get_ssr_max_steps(RID p_env) const;
  218. float environment_get_ssr_fade_in(RID p_env) const;
  219. float environment_get_ssr_fade_out(RID p_env) const;
  220. float environment_get_ssr_depth_tolerance(RID p_env) const;
  221. // SSAO
  222. void environment_set_ssao(RID p_env, bool p_enable, float p_radius, float p_intensity, float p_power, float p_detail, float p_horizon, float p_sharpness, float p_light_affect, float p_ao_channel_affect);
  223. bool environment_get_ssao_enabled(RID p_env) const;
  224. float environment_get_ssao_radius(RID p_env) const;
  225. float environment_get_ssao_intensity(RID p_env) const;
  226. float environment_get_ssao_power(RID p_env) const;
  227. float environment_get_ssao_detail(RID p_env) const;
  228. float environment_get_ssao_horizon(RID p_env) const;
  229. float environment_get_ssao_sharpness(RID p_env) const;
  230. float environment_get_ssao_direct_light_affect(RID p_env) const;
  231. float environment_get_ssao_ao_channel_affect(RID p_env) const;
  232. // SSIL
  233. void environment_set_ssil(RID p_env, bool p_enable, float p_radius, float p_intensity, float p_sharpness, float p_normal_rejection);
  234. bool environment_get_ssil_enabled(RID p_env) const;
  235. float environment_get_ssil_radius(RID p_env) const;
  236. float environment_get_ssil_intensity(RID p_env) const;
  237. float environment_get_ssil_sharpness(RID p_env) const;
  238. float environment_get_ssil_normal_rejection(RID p_env) const;
  239. // SDFGI
  240. void environment_set_sdfgi(RID p_env, bool p_enable, int p_cascades, float p_min_cell_size, RS::EnvironmentSDFGIYScale p_y_scale, bool p_use_occlusion, float p_bounce_feedback, bool p_read_sky, float p_energy, float p_normal_bias, float p_probe_bias);
  241. bool environment_get_sdfgi_enabled(RID p_env) const;
  242. int environment_get_sdfgi_cascades(RID p_env) const;
  243. float environment_get_sdfgi_min_cell_size(RID p_env) const;
  244. bool environment_get_sdfgi_use_occlusion(RID p_env) const;
  245. float environment_get_sdfgi_bounce_feedback(RID p_env) const;
  246. bool environment_get_sdfgi_read_sky_light(RID p_env) const;
  247. float environment_get_sdfgi_energy(RID p_env) const;
  248. float environment_get_sdfgi_normal_bias(RID p_env) const;
  249. float environment_get_sdfgi_probe_bias(RID p_env) const;
  250. RS::EnvironmentSDFGIYScale environment_get_sdfgi_y_scale(RID p_env) const;
  251. // Adjustment
  252. void environment_set_adjustment(RID p_env, bool p_enable, float p_brightness, float p_contrast, float p_saturation, bool p_use_1d_color_correction, RID p_color_correction);
  253. bool environment_get_adjustments_enabled(RID p_env) const;
  254. float environment_get_adjustments_brightness(RID p_env) const;
  255. float environment_get_adjustments_contrast(RID p_env) const;
  256. float environment_get_adjustments_saturation(RID p_env) const;
  257. bool environment_get_use_1d_color_correction(RID p_env) const;
  258. RID environment_get_color_correction(RID p_env) const;
  259. };
  260. #endif // ENVIRONMENT_STORAGE_H