light_storage.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /**************************************************************************/
  2. /* light_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 LIGHT_STORAGE_H
  31. #define LIGHT_STORAGE_H
  32. #include "render_scene_buffers.h"
  33. #include "servers/rendering_server.h"
  34. class RendererLightStorage {
  35. public:
  36. virtual ~RendererLightStorage() {}
  37. /* Light API */
  38. virtual RID directional_light_allocate() = 0;
  39. virtual void directional_light_initialize(RID p_rid) = 0;
  40. virtual RID omni_light_allocate() = 0;
  41. virtual void omni_light_initialize(RID p_rid) = 0;
  42. virtual RID spot_light_allocate() = 0;
  43. virtual void spot_light_initialize(RID p_rid) = 0;
  44. virtual void light_free(RID p_rid) = 0;
  45. virtual void light_set_color(RID p_light, const Color &p_color) = 0;
  46. virtual void light_set_param(RID p_light, RS::LightParam p_param, float p_value) = 0;
  47. virtual void light_set_shadow(RID p_light, bool p_enabled) = 0;
  48. virtual void light_set_projector(RID p_light, RID p_texture) = 0;
  49. virtual void light_set_negative(RID p_light, bool p_enable) = 0;
  50. virtual void light_set_cull_mask(RID p_light, uint32_t p_mask) = 0;
  51. virtual void light_set_distance_fade(RID p_light, bool p_enabled, float p_begin, float p_shadow, float p_length) = 0;
  52. virtual void light_set_reverse_cull_face_mode(RID p_light, bool p_enabled) = 0;
  53. virtual void light_set_shadow_caster_mask(RID p_light, uint32_t p_caster_mask) = 0;
  54. virtual uint32_t light_get_shadow_caster_mask(RID p_light) const = 0;
  55. virtual void light_set_bake_mode(RID p_light, RS::LightBakeMode p_bake_mode) = 0;
  56. virtual void light_set_max_sdfgi_cascade(RID p_light, uint32_t p_cascade) = 0;
  57. virtual void light_omni_set_shadow_mode(RID p_light, RS::LightOmniShadowMode p_mode) = 0;
  58. virtual void light_directional_set_shadow_mode(RID p_light, RS::LightDirectionalShadowMode p_mode) = 0;
  59. virtual void light_directional_set_blend_splits(RID p_light, bool p_enable) = 0;
  60. virtual bool light_directional_get_blend_splits(RID p_light) const = 0;
  61. virtual void light_directional_set_sky_mode(RID p_light, RS::LightDirectionalSkyMode p_mode) = 0;
  62. virtual RS::LightDirectionalSkyMode light_directional_get_sky_mode(RID p_light) const = 0;
  63. virtual RS::LightDirectionalShadowMode light_directional_get_shadow_mode(RID p_light) = 0;
  64. virtual RS::LightOmniShadowMode light_omni_get_shadow_mode(RID p_light) = 0;
  65. virtual bool light_has_shadow(RID p_light) const = 0;
  66. virtual bool light_has_projector(RID p_light) const = 0;
  67. virtual RS::LightType light_get_type(RID p_light) const = 0;
  68. virtual AABB light_get_aabb(RID p_light) const = 0;
  69. virtual float light_get_param(RID p_light, RS::LightParam p_param) = 0;
  70. virtual Color light_get_color(RID p_light) = 0;
  71. virtual bool light_get_reverse_cull_face_mode(RID p_light) const = 0;
  72. virtual RS::LightBakeMode light_get_bake_mode(RID p_light) = 0;
  73. virtual uint32_t light_get_max_sdfgi_cascade(RID p_light) = 0;
  74. virtual uint64_t light_get_version(RID p_light) const = 0;
  75. virtual uint32_t light_get_cull_mask(RID p_light) const = 0;
  76. /* LIGHT INSTANCE API */
  77. virtual RID light_instance_create(RID p_light) = 0;
  78. virtual void light_instance_free(RID p_light_instance) = 0;
  79. virtual void light_instance_set_transform(RID p_light_instance, const Transform3D &p_transform) = 0;
  80. virtual void light_instance_set_aabb(RID p_light_instance, const AABB &p_aabb) = 0;
  81. virtual void light_instance_set_shadow_transform(RID p_light_instance, const Projection &p_projection, const Transform3D &p_transform, float p_far, float p_split, int p_pass, float p_shadow_texel_size, float p_bias_scale = 1.0, float p_range_begin = 0, const Vector2 &p_uv_scale = Vector2()) = 0;
  82. virtual void light_instance_mark_visible(RID p_light_instance) = 0;
  83. virtual bool light_instances_can_render_shadow_cube() const {
  84. return true;
  85. }
  86. virtual bool light_instance_is_shadow_visible_at_position(RID p_light, const Vector3 &p_position) const = 0;
  87. /* PROBE API */
  88. virtual RID reflection_probe_allocate() = 0;
  89. virtual void reflection_probe_initialize(RID p_rid) = 0;
  90. virtual void reflection_probe_free(RID p_rid) = 0;
  91. virtual void reflection_probe_set_update_mode(RID p_probe, RS::ReflectionProbeUpdateMode p_mode) = 0;
  92. virtual void reflection_probe_set_resolution(RID p_probe, int p_resolution) = 0;
  93. virtual void reflection_probe_set_intensity(RID p_probe, float p_intensity) = 0;
  94. virtual void reflection_probe_set_ambient_mode(RID p_probe, RS::ReflectionProbeAmbientMode p_mode) = 0;
  95. virtual void reflection_probe_set_ambient_color(RID p_probe, const Color &p_color) = 0;
  96. virtual void reflection_probe_set_ambient_energy(RID p_probe, float p_energy) = 0;
  97. virtual void reflection_probe_set_max_distance(RID p_probe, float p_distance) = 0;
  98. virtual void reflection_probe_set_size(RID p_probe, const Vector3 &p_size) = 0;
  99. virtual void reflection_probe_set_origin_offset(RID p_probe, const Vector3 &p_offset) = 0;
  100. virtual void reflection_probe_set_as_interior(RID p_probe, bool p_enable) = 0;
  101. virtual void reflection_probe_set_enable_box_projection(RID p_probe, bool p_enable) = 0;
  102. virtual void reflection_probe_set_enable_shadows(RID p_probe, bool p_enable) = 0;
  103. virtual void reflection_probe_set_cull_mask(RID p_probe, uint32_t p_layers) = 0;
  104. virtual void reflection_probe_set_reflection_mask(RID p_probe, uint32_t p_layers) = 0;
  105. virtual void reflection_probe_set_mesh_lod_threshold(RID p_probe, float p_ratio) = 0;
  106. virtual AABB reflection_probe_get_aabb(RID p_probe) const = 0;
  107. virtual RS::ReflectionProbeUpdateMode reflection_probe_get_update_mode(RID p_probe) const = 0;
  108. virtual uint32_t reflection_probe_get_cull_mask(RID p_probe) const = 0;
  109. virtual uint32_t reflection_probe_get_reflection_mask(RID p_probe) const = 0;
  110. virtual Vector3 reflection_probe_get_size(RID p_probe) const = 0;
  111. virtual Vector3 reflection_probe_get_origin_offset(RID p_probe) const = 0;
  112. virtual float reflection_probe_get_origin_max_distance(RID p_probe) const = 0;
  113. virtual bool reflection_probe_renders_shadows(RID p_probe) const = 0;
  114. virtual float reflection_probe_get_mesh_lod_threshold(RID p_probe) const = 0;
  115. /* REFLECTION ATLAS */
  116. virtual RID reflection_atlas_create() = 0;
  117. virtual void reflection_atlas_free(RID p_ref_atlas) = 0;
  118. virtual void reflection_atlas_set_size(RID p_ref_atlas, int p_reflection_size, int p_reflection_count) = 0;
  119. virtual int reflection_atlas_get_size(RID p_ref_atlas) const = 0;
  120. /* REFLECTION PROBE INSTANCE */
  121. virtual RID reflection_probe_instance_create(RID p_probe) = 0;
  122. virtual void reflection_probe_instance_free(RID p_instance) = 0;
  123. virtual void reflection_probe_instance_set_transform(RID p_instance, const Transform3D &p_transform) = 0;
  124. virtual bool reflection_probe_has_atlas_index(RID p_instance) = 0;
  125. virtual void reflection_probe_release_atlas_index(RID p_instance) = 0;
  126. virtual bool reflection_probe_instance_needs_redraw(RID p_instance) = 0;
  127. virtual bool reflection_probe_instance_has_reflection(RID p_instance) = 0;
  128. virtual bool reflection_probe_instance_begin_render(RID p_instance, RID p_reflection_atlas) = 0;
  129. virtual Ref<RenderSceneBuffers> reflection_probe_atlas_get_render_buffers(RID p_reflection_atlas) = 0;
  130. virtual bool reflection_probe_instance_postprocess_step(RID p_instance) = 0;
  131. /* LIGHTMAP */
  132. virtual RID lightmap_allocate() = 0;
  133. virtual void lightmap_initialize(RID p_rid) = 0;
  134. virtual void lightmap_free(RID p_rid) = 0;
  135. virtual void lightmap_set_textures(RID p_lightmap, RID p_light, bool p_uses_spherical_haromics) = 0;
  136. virtual void lightmap_set_probe_bounds(RID p_lightmap, const AABB &p_bounds) = 0;
  137. virtual void lightmap_set_probe_interior(RID p_lightmap, bool p_interior) = 0;
  138. virtual void lightmap_set_probe_capture_data(RID p_lightmap, const PackedVector3Array &p_points, const PackedColorArray &p_point_sh, const PackedInt32Array &p_tetrahedra, const PackedInt32Array &p_bsp_tree) = 0;
  139. virtual void lightmap_set_baked_exposure_normalization(RID p_lightmap, float p_exposure) = 0;
  140. virtual PackedVector3Array lightmap_get_probe_capture_points(RID p_lightmap) const = 0;
  141. virtual PackedColorArray lightmap_get_probe_capture_sh(RID p_lightmap) const = 0;
  142. virtual PackedInt32Array lightmap_get_probe_capture_tetrahedra(RID p_lightmap) const = 0;
  143. virtual PackedInt32Array lightmap_get_probe_capture_bsp_tree(RID p_lightmap) const = 0;
  144. virtual AABB lightmap_get_aabb(RID p_lightmap) const = 0;
  145. virtual void lightmap_tap_sh_light(RID p_lightmap, const Vector3 &p_point, Color *r_sh) = 0;
  146. virtual bool lightmap_is_interior(RID p_lightmap) const = 0;
  147. virtual void lightmap_set_probe_capture_update_speed(float p_speed) = 0;
  148. virtual float lightmap_get_probe_capture_update_speed() const = 0;
  149. /* LIGHTMAP INSTANCE */
  150. virtual RID lightmap_instance_create(RID p_lightmap) = 0;
  151. virtual void lightmap_instance_free(RID p_lightmap) = 0;
  152. virtual void lightmap_instance_set_transform(RID p_lightmap, const Transform3D &p_transform) = 0;
  153. /* SHADOW ATLAS */
  154. virtual RID shadow_atlas_create() = 0;
  155. virtual void shadow_atlas_free(RID p_atlas) = 0;
  156. virtual void shadow_atlas_set_size(RID p_atlas, int p_size, bool p_use_16_bits = true) = 0;
  157. virtual void shadow_atlas_set_quadrant_subdivision(RID p_atlas, int p_quadrant, int p_subdivision) = 0;
  158. virtual bool shadow_atlas_update_light(RID p_atlas, RID p_light_intance, float p_coverage, uint64_t p_light_version) = 0;
  159. virtual void shadow_atlas_update(RID p_atlas) = 0;
  160. virtual void directional_shadow_atlas_set_size(int p_size, bool p_16_bits = true) = 0;
  161. virtual int get_directional_light_shadow_size(RID p_light_intance) = 0;
  162. virtual void set_directional_shadow_count(int p_count) = 0;
  163. };
  164. #endif // LIGHT_STORAGE_H