animated_texture.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /**************************************************************************/
  2. /* animated_texture.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. #pragma once
  31. #include "scene/resources/texture.h"
  32. class AnimatedTexture : public Texture2D {
  33. GDCLASS(AnimatedTexture, Texture2D);
  34. // Use readers writers lock for this, since its far more times read than written to.
  35. RWLock rw_lock;
  36. public:
  37. enum {
  38. MAX_FRAMES = 256
  39. };
  40. private:
  41. RID proxy_ph;
  42. RID proxy;
  43. struct Frame {
  44. Ref<Texture2D> texture;
  45. float duration = 1.0;
  46. };
  47. Frame frames[MAX_FRAMES];
  48. int frame_count = 1.0;
  49. int current_frame = 0;
  50. bool pause = false;
  51. bool one_shot = false;
  52. float speed_scale = 1.0;
  53. float time = 0.0;
  54. uint64_t prev_ticks = 0;
  55. void _update_proxy();
  56. void _finish_non_thread_safe_setup();
  57. protected:
  58. static void _bind_methods();
  59. void _validate_property(PropertyInfo &p_property) const;
  60. public:
  61. void set_frames(int p_frames);
  62. int get_frames() const;
  63. void set_current_frame(int p_frame);
  64. int get_current_frame() const;
  65. void set_pause(bool p_pause);
  66. bool get_pause() const;
  67. void set_one_shot(bool p_one_shot);
  68. bool get_one_shot() const;
  69. void set_frame_texture(int p_frame, const Ref<Texture2D> &p_texture);
  70. Ref<Texture2D> get_frame_texture(int p_frame) const;
  71. void set_frame_duration(int p_frame, float p_duration);
  72. float get_frame_duration(int p_frame) const;
  73. void set_speed_scale(float p_scale);
  74. float get_speed_scale() const;
  75. virtual int get_width() const override;
  76. virtual int get_height() const override;
  77. virtual RID get_rid() const override;
  78. virtual bool has_alpha() const override;
  79. virtual Ref<Image> get_image() const override;
  80. bool is_pixel_opaque(int p_x, int p_y) const override;
  81. AnimatedTexture();
  82. ~AnimatedTexture();
  83. };