2
0

shader_rd.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*************************************************************************/
  2. /* shader_rd.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  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 SHADER_RD_H
  31. #define SHADER_RD_H
  32. #include "core/os/mutex.h"
  33. #include "core/string/string_builder.h"
  34. #include "core/templates/hash_map.h"
  35. #include "core/templates/local_vector.h"
  36. #include "core/templates/map.h"
  37. #include "core/templates/rid_owner.h"
  38. #include "core/variant/variant.h"
  39. #include "servers/rendering_server.h"
  40. #include <stdio.h>
  41. /**
  42. @author Juan Linietsky <[email protected]>
  43. */
  44. class ShaderRD {
  45. //versions
  46. CharString general_defines;
  47. Vector<CharString> variant_defines;
  48. Vector<bool> variants_enabled;
  49. struct Version {
  50. CharString uniforms;
  51. CharString vertex_globals;
  52. CharString compute_globals;
  53. CharString fragment_globals;
  54. Map<StringName, CharString> code_sections;
  55. Vector<CharString> custom_defines;
  56. Vector<uint8_t> *variant_data = nullptr;
  57. RID *variants = nullptr; //same size as version defines
  58. bool valid;
  59. bool dirty;
  60. bool initialize_needed;
  61. };
  62. Mutex variant_set_mutex;
  63. void _compile_variant(uint32_t p_variant, Version *p_version);
  64. void _clear_version(Version *p_version);
  65. void _compile_version(Version *p_version);
  66. RID_Owner<Version> version_owner;
  67. struct StageTemplate {
  68. struct Chunk {
  69. enum Type {
  70. TYPE_VERSION_DEFINES,
  71. TYPE_MATERIAL_UNIFORMS,
  72. TYPE_VERTEX_GLOBALS,
  73. TYPE_FRAGMENT_GLOBALS,
  74. TYPE_COMPUTE_GLOBALS,
  75. TYPE_CODE,
  76. TYPE_TEXT
  77. };
  78. Type type;
  79. StringName code;
  80. CharString text;
  81. };
  82. LocalVector<Chunk> chunks;
  83. };
  84. bool is_compute = false;
  85. String name;
  86. CharString base_compute_defines;
  87. String base_sha256;
  88. static String shader_cache_dir;
  89. static bool shader_cache_cleanup_on_start;
  90. static bool shader_cache_save_compressed;
  91. static bool shader_cache_save_compressed_zstd;
  92. static bool shader_cache_save_debug;
  93. bool shader_cache_dir_valid = false;
  94. enum StageType {
  95. STAGE_TYPE_VERTEX,
  96. STAGE_TYPE_FRAGMENT,
  97. STAGE_TYPE_COMPUTE,
  98. STAGE_TYPE_MAX,
  99. };
  100. StageTemplate stage_templates[STAGE_TYPE_MAX];
  101. void _build_variant_code(StringBuilder &p_builder, uint32_t p_variant, const Version *p_version, const StageTemplate &p_template);
  102. void _add_stage(const char *p_code, StageType p_stage_type);
  103. String _version_get_sha1(Version *p_version) const;
  104. bool _load_from_cache(Version *p_version);
  105. void _save_to_cache(Version *p_version);
  106. protected:
  107. ShaderRD();
  108. void setup(const char *p_vertex_code, const char *p_fragment_code, const char *p_compute_code, const char *p_name);
  109. public:
  110. RID version_create();
  111. void version_set_code(RID p_version, const Map<String, String> &p_code, const String &p_uniforms, const String &p_vertex_globals, const String &p_fragment_globals, const Vector<String> &p_custom_defines);
  112. void version_set_compute_code(RID p_version, const Map<String, String> &p_code, const String &p_uniforms, const String &p_compute_globals, const Vector<String> &p_custom_defines);
  113. _FORCE_INLINE_ RID version_get_shader(RID p_version, int p_variant) {
  114. ERR_FAIL_INDEX_V(p_variant, variant_defines.size(), RID());
  115. ERR_FAIL_COND_V(!variants_enabled[p_variant], RID());
  116. Version *version = version_owner.get_or_null(p_version);
  117. ERR_FAIL_COND_V(!version, RID());
  118. if (version->dirty) {
  119. _compile_version(version);
  120. }
  121. if (!version->valid) {
  122. return RID();
  123. }
  124. return version->variants[p_variant];
  125. }
  126. bool version_is_valid(RID p_version);
  127. bool version_free(RID p_version);
  128. void set_variant_enabled(int p_variant, bool p_enabled);
  129. bool is_variant_enabled(int p_variant) const;
  130. static void set_shader_cache_dir(const String &p_dir);
  131. static void set_shader_cache_save_compressed(bool p_enable);
  132. static void set_shader_cache_save_compressed_zstd(bool p_enable);
  133. static void set_shader_cache_save_debug(bool p_enable);
  134. RS::ShaderNativeSourceCode version_get_native_source_code(RID p_version);
  135. void initialize(const Vector<String> &p_variant_defines, const String &p_general_defines = "");
  136. virtual ~ShaderRD();
  137. };
  138. #endif