rich_text_effect.h 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*************************************************************************/
  2. /* rich_text_effect.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 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 RICH_TEXT_EFFECT_H
  31. #define RICH_TEXT_EFFECT_H
  32. #include "core/resource.h"
  33. class RichTextEffect : public Resource {
  34. GDCLASS(RichTextEffect, Resource);
  35. OBJ_SAVE_TYPE(RichTextEffect);
  36. protected:
  37. static void _bind_methods();
  38. public:
  39. Variant get_bbcode() const;
  40. bool _process_effect_impl(Ref<class CharFXTransform> p_cfx);
  41. RichTextEffect();
  42. };
  43. class CharFXTransform : public Reference {
  44. GDCLASS(CharFXTransform, Reference);
  45. protected:
  46. static void _bind_methods();
  47. public:
  48. uint64_t relative_index;
  49. uint64_t absolute_index;
  50. bool visibility;
  51. Point2 offset;
  52. Color color;
  53. CharType character;
  54. float elapsed_time;
  55. Dictionary environment;
  56. CharFXTransform();
  57. ~CharFXTransform();
  58. uint64_t get_relative_index() { return relative_index; }
  59. void set_relative_index(uint64_t p_index) { relative_index = p_index; }
  60. uint64_t get_absolute_index() { return absolute_index; }
  61. void set_absolute_index(uint64_t p_index) { absolute_index = p_index; }
  62. float get_elapsed_time() { return elapsed_time; }
  63. void set_elapsed_time(float p_elapsed_time) { elapsed_time = p_elapsed_time; }
  64. bool is_visible() { return visibility; }
  65. void set_visibility(bool p_vis) { visibility = p_vis; }
  66. Point2 get_offset() { return offset; }
  67. void set_offset(Point2 p_offset) { offset = p_offset; }
  68. Color get_color() { return color; }
  69. void set_color(Color p_color) { color = p_color; }
  70. int get_character() { return (int)character; }
  71. void set_character(int p_char) { character = (CharType)p_char; }
  72. Dictionary get_environment() { return environment; }
  73. void set_environment(Dictionary p_environment) { environment = p_environment; }
  74. };
  75. #endif // RICH_TEXT_EFFECT_H