test_sprite_frames.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /**************************************************************************/
  2. /* test_sprite_frames.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 TEST_SPRITE_FRAMES_H
  31. #define TEST_SPRITE_FRAMES_H
  32. #include "scene/resources/sprite_frames.h"
  33. #include "tests/test_macros.h"
  34. namespace TestSpriteFrames {
  35. const String test_animation_name = "GodotTest";
  36. TEST_CASE("[SpriteFrames] Constructor methods") {
  37. const SpriteFrames frames;
  38. CHECK_MESSAGE(
  39. frames.get_animation_names().size() == 1,
  40. "Should be initialized with 1 entry.");
  41. CHECK_MESSAGE(
  42. frames.get_animation_names().get(0) == "default",
  43. "Should be initialized with default entry.");
  44. }
  45. TEST_CASE("[SpriteFrames] Animation addition, list getter, renaming, removal, and retrieval") {
  46. SpriteFrames frames;
  47. Vector<String> test_names = { "default", "2", "1", "3" };
  48. // "default" is there already
  49. frames.add_animation("2");
  50. frames.add_animation("1");
  51. frames.add_animation("3");
  52. for (int i = 0; i < test_names.size(); i++) {
  53. CHECK_MESSAGE(
  54. frames.has_animation(test_names[i]),
  55. "Add animation properly worked for each value");
  56. }
  57. CHECK_MESSAGE(
  58. !frames.has_animation("999"),
  59. "Return false when checking for animation that does not exist");
  60. List<StringName> sname_list;
  61. frames.get_animation_list(&sname_list);
  62. CHECK_MESSAGE(
  63. sname_list.size() == test_names.size(),
  64. "StringName List getter returned list of expected size");
  65. for (int i = 0; i < test_names.size(); i++) {
  66. CHECK_MESSAGE(
  67. sname_list[i] == StringName(test_names[i]),
  68. "StringName List getter returned expected values");
  69. }
  70. // get_animation_names() sorts the results.
  71. Vector<String> string_vector = frames.get_animation_names();
  72. test_names.sort();
  73. for (int i = 0; i < test_names.size(); i++) {
  74. CHECK_MESSAGE(
  75. string_vector[i] == test_names[i],
  76. "String Vector getter returned expected values");
  77. }
  78. // These error handling cases should not crash.
  79. ERR_PRINT_OFF;
  80. frames.rename_animation("This does not exist", "0");
  81. ERR_PRINT_ON;
  82. CHECK_MESSAGE(
  83. !frames.has_animation("0"),
  84. "Correctly handles rename error when entry does not exist");
  85. // These error handling cases should not crash.
  86. ERR_PRINT_OFF;
  87. frames.rename_animation("3", "1");
  88. ERR_PRINT_ON;
  89. CHECK_MESSAGE(
  90. frames.has_animation("3"),
  91. "Correctly handles rename error when entry exists, but new name already exists");
  92. ERR_PRINT_OFF;
  93. frames.add_animation("1");
  94. ERR_PRINT_ON;
  95. CHECK_MESSAGE(
  96. frames.get_animation_names().size() == 4,
  97. "Correctly does not add when entry already exists");
  98. frames.rename_animation("3", "9");
  99. CHECK_MESSAGE(
  100. frames.has_animation("9"),
  101. "Animation renamed correctly");
  102. frames.remove_animation("9");
  103. CHECK_MESSAGE(
  104. !frames.has_animation("9"),
  105. "Animation removed correctly");
  106. frames.clear_all();
  107. CHECK_MESSAGE(
  108. frames.get_animation_names().size() == 1,
  109. "Clear all removed all animations and re-added the default animation entry");
  110. }
  111. TEST_CASE("[SpriteFrames] Animation Speed getter and setter") {
  112. SpriteFrames frames;
  113. frames.add_animation(test_animation_name);
  114. CHECK_MESSAGE(
  115. frames.get_animation_speed(test_animation_name) == 5.0,
  116. "Sets new animation to default speed");
  117. frames.set_animation_speed(test_animation_name, 123.0004);
  118. CHECK_MESSAGE(
  119. frames.get_animation_speed(test_animation_name) == 123.0004,
  120. "Sets animation to positive double");
  121. // These error handling cases should not crash.
  122. ERR_PRINT_OFF;
  123. frames.get_animation_speed("This does not exist");
  124. frames.set_animation_speed("This does not exist", 100);
  125. frames.set_animation_speed(test_animation_name, -999.999);
  126. ERR_PRINT_ON;
  127. CHECK_MESSAGE(
  128. frames.get_animation_speed(test_animation_name) == 123.0004,
  129. "Prevents speed of animation being set to a negative value");
  130. frames.set_animation_speed(test_animation_name, 0.0);
  131. CHECK_MESSAGE(
  132. frames.get_animation_speed(test_animation_name) == 0.0,
  133. "Sets animation to zero");
  134. }
  135. TEST_CASE("[SpriteFrames] Animation Loop getter and setter") {
  136. SpriteFrames frames;
  137. frames.add_animation(test_animation_name);
  138. CHECK_MESSAGE(
  139. frames.get_animation_loop(test_animation_name),
  140. "Sets new animation to default loop value.");
  141. frames.set_animation_loop(test_animation_name, true);
  142. CHECK_MESSAGE(
  143. frames.get_animation_loop(test_animation_name),
  144. "Sets animation loop to true");
  145. frames.set_animation_loop(test_animation_name, false);
  146. CHECK_MESSAGE(
  147. !frames.get_animation_loop(test_animation_name),
  148. "Sets animation loop to false");
  149. // These error handling cases should not crash.
  150. ERR_PRINT_OFF;
  151. frames.get_animation_loop("This does not exist");
  152. frames.set_animation_loop("This does not exist", false);
  153. ERR_PRINT_ON;
  154. }
  155. // TODO
  156. TEST_CASE("[SpriteFrames] Frame addition, removal, and retrieval") {
  157. Ref<Texture2D> dummy_frame1;
  158. dummy_frame1.instantiate();
  159. SpriteFrames frames;
  160. frames.add_animation(test_animation_name);
  161. frames.add_animation("1");
  162. frames.add_animation("2");
  163. CHECK_MESSAGE(
  164. frames.get_frame_count(test_animation_name) == 0,
  165. "Animation has a default frame count of 0");
  166. frames.add_frame(test_animation_name, dummy_frame1, 1.0, 0);
  167. frames.add_frame(test_animation_name, dummy_frame1, 1.0, 1);
  168. frames.add_frame(test_animation_name, dummy_frame1, 1.0, 2);
  169. CHECK_MESSAGE(
  170. frames.get_frame_count(test_animation_name) == 3,
  171. "Adds multiple frames");
  172. frames.remove_frame(test_animation_name, 1);
  173. frames.remove_frame(test_animation_name, 0);
  174. CHECK_MESSAGE(
  175. frames.get_frame_count(test_animation_name) == 1,
  176. "Removes multiple frames");
  177. // These error handling cases should not crash.
  178. ERR_PRINT_OFF;
  179. frames.add_frame("does not exist", dummy_frame1, 1.0, 0);
  180. frames.remove_frame(test_animation_name, -99);
  181. frames.remove_frame("does not exist", 0);
  182. ERR_PRINT_ON;
  183. CHECK_MESSAGE(
  184. frames.get_frame_count(test_animation_name) == 1,
  185. "Handles bad values when adding or removing frames.");
  186. frames.clear(test_animation_name);
  187. CHECK_MESSAGE(
  188. frames.get_frame_count(test_animation_name) == 0,
  189. "Clears frames.");
  190. }
  191. } // namespace TestSpriteFrames
  192. #endif // TEST_SPRITE_FRAMES_H