shader_warnings.h 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /**************************************************************************/
  2. /* shader_warnings.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 SHADER_WARNINGS_H
  31. #define SHADER_WARNINGS_H
  32. #ifdef DEBUG_ENABLED
  33. #include "core/string/string_name.h"
  34. #include "core/templates/hash_map.h"
  35. #include "core/templates/list.h"
  36. #include "core/templates/rb_map.h"
  37. #include "core/variant/variant.h"
  38. class ShaderWarning {
  39. public:
  40. enum Code {
  41. FLOAT_COMPARISON,
  42. UNUSED_CONSTANT,
  43. UNUSED_FUNCTION,
  44. UNUSED_STRUCT,
  45. UNUSED_UNIFORM,
  46. UNUSED_VARYING,
  47. UNUSED_LOCAL_VARIABLE,
  48. FORMATTING_ERROR,
  49. DEVICE_LIMIT_EXCEEDED,
  50. WARNING_MAX,
  51. };
  52. enum CodeFlags : uint32_t {
  53. NONE_FLAG = 0U,
  54. FLOAT_COMPARISON_FLAG = 1U,
  55. UNUSED_CONSTANT_FLAG = 2U,
  56. UNUSED_FUNCTION_FLAG = 4U,
  57. UNUSED_STRUCT_FLAG = 8U,
  58. UNUSED_UNIFORM_FLAG = 16U,
  59. UNUSED_VARYING_FLAG = 32U,
  60. UNUSED_LOCAL_VARIABLE_FLAG = 64U,
  61. FORMATTING_ERROR_FLAG = 128U,
  62. DEVICE_LIMIT_EXCEEDED_FLAG = 256U,
  63. };
  64. private:
  65. Code code;
  66. int line;
  67. StringName subject;
  68. Vector<Variant> extra_args;
  69. public:
  70. Code get_code() const;
  71. int get_line() const;
  72. const StringName &get_subject() const;
  73. String get_message() const;
  74. String get_name() const;
  75. Vector<Variant> get_extra_args() const;
  76. static String get_name_from_code(Code p_code);
  77. static Code get_code_from_name(const String &p_name);
  78. static CodeFlags get_flags_from_codemap(const HashMap<Code, bool> &p_map);
  79. ShaderWarning(Code p_code = WARNING_MAX, int p_line = -1, const StringName &p_subject = "", const Vector<Variant> &p_extra_args = Vector<Variant>());
  80. };
  81. #endif // DEBUG_ENABLED
  82. #endif // SHADER_WARNINGS_H