label_3d.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /**************************************************************************/
  2. /* label_3d.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 LABEL_3D_H
  31. #define LABEL_3D_H
  32. #include "scene/3d/visual_instance_3d.h"
  33. #include "scene/resources/font.h"
  34. #include "servers/text_server.h"
  35. class Label3D : public GeometryInstance3D {
  36. GDCLASS(Label3D, GeometryInstance3D);
  37. public:
  38. enum DrawFlags {
  39. FLAG_SHADED,
  40. FLAG_DOUBLE_SIDED,
  41. FLAG_DISABLE_DEPTH_TEST,
  42. FLAG_FIXED_SIZE,
  43. FLAG_MAX
  44. };
  45. enum AlphaCutMode {
  46. ALPHA_CUT_DISABLED,
  47. ALPHA_CUT_DISCARD,
  48. ALPHA_CUT_OPAQUE_PREPASS,
  49. ALPHA_CUT_HASH,
  50. ALPHA_CUT_MAX
  51. };
  52. private:
  53. real_t pixel_size = 0.005;
  54. bool flags[FLAG_MAX] = {};
  55. AlphaCutMode alpha_cut = ALPHA_CUT_DISABLED;
  56. float alpha_scissor_threshold = 0.5;
  57. float alpha_hash_scale = 1.0;
  58. StandardMaterial3D::AlphaAntiAliasing alpha_antialiasing_mode = StandardMaterial3D::ALPHA_ANTIALIASING_OFF;
  59. float alpha_antialiasing_edge = 0.0f;
  60. AABB aabb;
  61. mutable Ref<TriangleMesh> triangle_mesh;
  62. RID mesh;
  63. struct SurfaceData {
  64. PackedVector3Array mesh_vertices;
  65. PackedVector3Array mesh_normals;
  66. PackedFloat32Array mesh_tangents;
  67. PackedColorArray mesh_colors;
  68. PackedVector2Array mesh_uvs;
  69. PackedInt32Array indices;
  70. int offset = 0;
  71. float z_shift = 0.0;
  72. RID material;
  73. };
  74. struct SurfaceKey {
  75. uint64_t texture_id;
  76. int32_t priority;
  77. int32_t outline_size;
  78. bool operator==(const SurfaceKey &p_b) const {
  79. return (texture_id == p_b.texture_id) && (priority == p_b.priority) && (outline_size == p_b.outline_size);
  80. }
  81. SurfaceKey(uint64_t p_texture_id, int p_priority, int p_outline_size) {
  82. texture_id = p_texture_id;
  83. priority = p_priority;
  84. outline_size = p_outline_size;
  85. }
  86. };
  87. struct SurfaceKeyHasher {
  88. _FORCE_INLINE_ static uint32_t hash(const SurfaceKey &p_a) {
  89. return hash_murmur3_buffer(&p_a, sizeof(SurfaceKey));
  90. }
  91. };
  92. HashMap<SurfaceKey, SurfaceData, SurfaceKeyHasher> surfaces;
  93. HorizontalAlignment horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER;
  94. VerticalAlignment vertical_alignment = VERTICAL_ALIGNMENT_CENTER;
  95. String text;
  96. String xl_text;
  97. bool uppercase = false;
  98. TextServer::AutowrapMode autowrap_mode = TextServer::AUTOWRAP_OFF;
  99. float width = 500.0;
  100. int font_size = 32;
  101. Ref<Font> font_override;
  102. mutable Ref<Font> theme_font;
  103. Color modulate = Color(1, 1, 1, 1);
  104. Point2 lbl_offset;
  105. int outline_render_priority = -1;
  106. int render_priority = 0;
  107. int outline_size = 12;
  108. Color outline_modulate = Color(0, 0, 0, 1);
  109. float line_spacing = 0.f;
  110. String language;
  111. TextServer::Direction text_direction = TextServer::DIRECTION_AUTO;
  112. TextServer::StructuredTextParser st_parser = TextServer::STRUCTURED_TEXT_DEFAULT;
  113. Array st_args;
  114. RID text_rid;
  115. Vector<RID> lines_rid;
  116. RID base_material;
  117. StandardMaterial3D::BillboardMode billboard_mode = StandardMaterial3D::BILLBOARD_DISABLED;
  118. StandardMaterial3D::TextureFilter texture_filter = StandardMaterial3D::TEXTURE_FILTER_LINEAR_WITH_MIPMAPS;
  119. bool pending_update = false;
  120. bool dirty_lines = true;
  121. bool dirty_font = true;
  122. bool dirty_text = true;
  123. void _generate_glyph_surfaces(const Glyph &p_glyph, Vector2 &r_offset, const Color &p_modulate, int p_priority = 0, int p_outline_size = 0);
  124. protected:
  125. GDVIRTUAL2RC(TypedArray<Vector3i>, _structured_text_parser, Array, String)
  126. void _notification(int p_what);
  127. static void _bind_methods();
  128. void _validate_property(PropertyInfo &p_property) const;
  129. void _im_update();
  130. void _font_changed();
  131. void _queue_update();
  132. void _shape();
  133. public:
  134. void set_horizontal_alignment(HorizontalAlignment p_alignment);
  135. HorizontalAlignment get_horizontal_alignment() const;
  136. void set_vertical_alignment(VerticalAlignment p_alignment);
  137. VerticalAlignment get_vertical_alignment() const;
  138. void set_render_priority(int p_priority);
  139. int get_render_priority() const;
  140. void set_outline_render_priority(int p_priority);
  141. int get_outline_render_priority() const;
  142. void set_text(const String &p_string);
  143. String get_text() const;
  144. void set_text_direction(TextServer::Direction p_text_direction);
  145. TextServer::Direction get_text_direction() const;
  146. void set_language(const String &p_language);
  147. String get_language() const;
  148. void set_structured_text_bidi_override(TextServer::StructuredTextParser p_parser);
  149. TextServer::StructuredTextParser get_structured_text_bidi_override() const;
  150. void set_structured_text_bidi_override_options(Array p_args);
  151. Array get_structured_text_bidi_override_options() const;
  152. void set_uppercase(bool p_uppercase);
  153. bool is_uppercase() const;
  154. void set_font(const Ref<Font> &p_font);
  155. Ref<Font> get_font() const;
  156. Ref<Font> _get_font_or_default() const;
  157. void set_font_size(int p_size);
  158. int get_font_size() const;
  159. void set_outline_size(int p_size);
  160. int get_outline_size() const;
  161. void set_line_spacing(float p_size);
  162. float get_line_spacing() const;
  163. void set_modulate(const Color &p_color);
  164. Color get_modulate() const;
  165. void set_outline_modulate(const Color &p_color);
  166. Color get_outline_modulate() const;
  167. void set_autowrap_mode(TextServer::AutowrapMode p_mode);
  168. TextServer::AutowrapMode get_autowrap_mode() const;
  169. void set_width(float p_width);
  170. float get_width() const;
  171. void set_pixel_size(real_t p_amount);
  172. real_t get_pixel_size() const;
  173. void set_offset(const Point2 &p_offset);
  174. Point2 get_offset() const;
  175. void set_draw_flag(DrawFlags p_flag, bool p_enable);
  176. bool get_draw_flag(DrawFlags p_flag) const;
  177. void set_alpha_cut_mode(AlphaCutMode p_mode);
  178. AlphaCutMode get_alpha_cut_mode() const;
  179. void set_alpha_scissor_threshold(float p_threshold);
  180. float get_alpha_scissor_threshold() const;
  181. void set_alpha_hash_scale(float p_hash_scale);
  182. float get_alpha_hash_scale() const;
  183. void set_alpha_antialiasing(BaseMaterial3D::AlphaAntiAliasing p_alpha_aa);
  184. BaseMaterial3D::AlphaAntiAliasing get_alpha_antialiasing() const;
  185. void set_alpha_antialiasing_edge(float p_edge);
  186. float get_alpha_antialiasing_edge() const;
  187. void set_billboard_mode(StandardMaterial3D::BillboardMode p_mode);
  188. StandardMaterial3D::BillboardMode get_billboard_mode() const;
  189. void set_texture_filter(StandardMaterial3D::TextureFilter p_filter);
  190. StandardMaterial3D::TextureFilter get_texture_filter() const;
  191. virtual AABB get_aabb() const override;
  192. Ref<TriangleMesh> generate_triangle_mesh() const;
  193. Label3D();
  194. ~Label3D();
  195. };
  196. VARIANT_ENUM_CAST(Label3D::DrawFlags);
  197. VARIANT_ENUM_CAST(Label3D::AlphaCutMode);
  198. #endif // LABEL_3D_H