sprite.cpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. /*************************************************************************/
  2. /* sprite.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 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. #include "sprite.h"
  31. #include "core/core_string_names.h"
  32. #include "core/os/os.h"
  33. #include "scene/main/viewport.h"
  34. #include "scene/scene_string_names.h"
  35. #ifdef TOOLS_ENABLED
  36. Dictionary Sprite::_edit_get_state() const {
  37. Dictionary state = Node2D::_edit_get_state();
  38. state["offset"] = offset;
  39. return state;
  40. }
  41. void Sprite::_edit_set_state(const Dictionary &p_state) {
  42. Node2D::_edit_set_state(p_state);
  43. set_offset(p_state["offset"]);
  44. }
  45. void Sprite::_edit_set_pivot(const Point2 &p_pivot) {
  46. set_offset(get_offset() - p_pivot);
  47. set_position(get_transform().xform(p_pivot));
  48. }
  49. Point2 Sprite::_edit_get_pivot() const {
  50. return Vector2();
  51. }
  52. bool Sprite::_edit_use_pivot() const {
  53. return true;
  54. }
  55. bool Sprite::_edit_is_selected_on_click(const Point2 &p_point, double p_tolerance) const {
  56. return is_pixel_opaque(p_point);
  57. }
  58. Rect2 Sprite::_edit_get_rect() const {
  59. return get_rect();
  60. }
  61. bool Sprite::_edit_use_rect() const {
  62. return texture.is_valid();
  63. }
  64. #endif
  65. Rect2 Sprite::get_anchorable_rect() const {
  66. return get_rect();
  67. }
  68. void Sprite::_get_rects(Rect2 &r_src_rect, Rect2 &r_dst_rect, bool &r_filter_clip) const {
  69. Rect2 base_rect;
  70. if (region) {
  71. r_filter_clip = region_filter_clip;
  72. base_rect = region_rect;
  73. } else {
  74. r_filter_clip = false;
  75. base_rect = Rect2(0, 0, texture->get_width(), texture->get_height());
  76. }
  77. Size2 frame_size = base_rect.size / Size2(hframes, vframes);
  78. Point2 frame_offset = Point2(frame % hframes, frame / hframes);
  79. frame_offset *= frame_size;
  80. r_src_rect.size = frame_size;
  81. r_src_rect.position = base_rect.position + frame_offset;
  82. Point2 dest_offset = offset;
  83. if (centered)
  84. dest_offset -= frame_size / 2;
  85. if (Engine::get_singleton()->get_use_pixel_snap()) {
  86. dest_offset = dest_offset.floor();
  87. }
  88. r_dst_rect = Rect2(dest_offset, frame_size);
  89. if (hflip)
  90. r_dst_rect.size.x = -r_dst_rect.size.x;
  91. if (vflip)
  92. r_dst_rect.size.y = -r_dst_rect.size.y;
  93. }
  94. void Sprite::_notification(int p_what) {
  95. switch (p_what) {
  96. case NOTIFICATION_DRAW: {
  97. if (texture.is_null())
  98. return;
  99. RID ci = get_canvas_item();
  100. /*
  101. texture->draw(ci,Point2());
  102. break;
  103. */
  104. Rect2 src_rect, dst_rect;
  105. bool filter_clip;
  106. _get_rects(src_rect, dst_rect, filter_clip);
  107. texture->draw_rect_region(ci, dst_rect, src_rect, Color(1, 1, 1), false, normal_map, filter_clip);
  108. } break;
  109. }
  110. }
  111. void Sprite::set_texture(const Ref<Texture> &p_texture) {
  112. if (p_texture == texture)
  113. return;
  114. if (texture.is_valid())
  115. texture->disconnect(CoreStringNames::get_singleton()->changed, this, "_texture_changed");
  116. texture = p_texture;
  117. if (texture.is_valid())
  118. texture->connect(CoreStringNames::get_singleton()->changed, this, "_texture_changed");
  119. update();
  120. emit_signal("texture_changed");
  121. item_rect_changed();
  122. _change_notify("texture");
  123. }
  124. void Sprite::set_normal_map(const Ref<Texture> &p_texture) {
  125. normal_map = p_texture;
  126. update();
  127. }
  128. Ref<Texture> Sprite::get_normal_map() const {
  129. return normal_map;
  130. }
  131. Ref<Texture> Sprite::get_texture() const {
  132. return texture;
  133. }
  134. void Sprite::set_centered(bool p_center) {
  135. centered = p_center;
  136. update();
  137. item_rect_changed();
  138. }
  139. bool Sprite::is_centered() const {
  140. return centered;
  141. }
  142. void Sprite::set_offset(const Point2 &p_offset) {
  143. offset = p_offset;
  144. update();
  145. item_rect_changed();
  146. _change_notify("offset");
  147. }
  148. Point2 Sprite::get_offset() const {
  149. return offset;
  150. }
  151. void Sprite::set_flip_h(bool p_flip) {
  152. hflip = p_flip;
  153. update();
  154. }
  155. bool Sprite::is_flipped_h() const {
  156. return hflip;
  157. }
  158. void Sprite::set_flip_v(bool p_flip) {
  159. vflip = p_flip;
  160. update();
  161. }
  162. bool Sprite::is_flipped_v() const {
  163. return vflip;
  164. }
  165. void Sprite::set_region(bool p_region) {
  166. if (p_region == region)
  167. return;
  168. region = p_region;
  169. update();
  170. }
  171. bool Sprite::is_region() const {
  172. return region;
  173. }
  174. void Sprite::set_region_rect(const Rect2 &p_region_rect) {
  175. if (region_rect == p_region_rect)
  176. return;
  177. region_rect = p_region_rect;
  178. if (region)
  179. item_rect_changed();
  180. _change_notify("region_rect");
  181. }
  182. Rect2 Sprite::get_region_rect() const {
  183. return region_rect;
  184. }
  185. void Sprite::set_region_filter_clip(bool p_enable) {
  186. region_filter_clip = p_enable;
  187. update();
  188. }
  189. bool Sprite::is_region_filter_clip_enabled() const {
  190. return region_filter_clip;
  191. }
  192. void Sprite::set_frame(int p_frame) {
  193. ERR_FAIL_INDEX(p_frame, vframes * hframes);
  194. if (frame != p_frame)
  195. item_rect_changed();
  196. frame = p_frame;
  197. _change_notify("frame");
  198. _change_notify("frame_coords");
  199. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  200. }
  201. int Sprite::get_frame() const {
  202. return frame;
  203. }
  204. void Sprite::set_frame_coords(const Vector2 &p_coord) {
  205. ERR_FAIL_INDEX(int(p_coord.x), hframes);
  206. ERR_FAIL_INDEX(int(p_coord.y), vframes);
  207. set_frame(int(p_coord.y) * hframes + int(p_coord.x));
  208. }
  209. Vector2 Sprite::get_frame_coords() const {
  210. return Vector2(frame % hframes, frame / hframes);
  211. }
  212. void Sprite::set_vframes(int p_amount) {
  213. ERR_FAIL_COND_MSG(p_amount < 1, "Amount of vframes cannot be smaller than 1.");
  214. vframes = p_amount;
  215. update();
  216. item_rect_changed();
  217. _change_notify();
  218. }
  219. int Sprite::get_vframes() const {
  220. return vframes;
  221. }
  222. void Sprite::set_hframes(int p_amount) {
  223. ERR_FAIL_COND_MSG(p_amount < 1, "Amount of hframes cannot be smaller than 1.");
  224. hframes = p_amount;
  225. update();
  226. item_rect_changed();
  227. _change_notify();
  228. }
  229. int Sprite::get_hframes() const {
  230. return hframes;
  231. }
  232. bool Sprite::is_pixel_opaque(const Point2 &p_point) const {
  233. if (texture.is_null())
  234. return false;
  235. if (texture->get_size().width == 0 || texture->get_size().height == 0)
  236. return false;
  237. Rect2 src_rect, dst_rect;
  238. bool filter_clip;
  239. _get_rects(src_rect, dst_rect, filter_clip);
  240. dst_rect.size = dst_rect.size.abs();
  241. if (!dst_rect.has_point(p_point))
  242. return false;
  243. Vector2 q = (p_point - dst_rect.position) / dst_rect.size;
  244. if (hflip)
  245. q.x = 1.0f - q.x;
  246. if (vflip)
  247. q.y = 1.0f - q.y;
  248. q = q * src_rect.size + src_rect.position;
  249. bool is_repeat = texture->get_flags() & Texture::FLAG_REPEAT;
  250. bool is_mirrored_repeat = texture->get_flags() & Texture::FLAG_MIRRORED_REPEAT;
  251. if (is_repeat) {
  252. int mirror_x = 0;
  253. int mirror_y = 0;
  254. if (is_mirrored_repeat) {
  255. mirror_x = (int)(q.x / texture->get_size().width);
  256. mirror_y = (int)(q.y / texture->get_size().height);
  257. }
  258. q.x = Math::fmod(q.x, texture->get_size().width);
  259. q.y = Math::fmod(q.y, texture->get_size().height);
  260. if (mirror_x % 2 == 1) {
  261. q.x = texture->get_size().width - q.x - 1;
  262. }
  263. if (mirror_y % 2 == 1) {
  264. q.y = texture->get_size().height - q.y - 1;
  265. }
  266. } else {
  267. q.x = MIN(q.x, texture->get_size().width - 1);
  268. q.y = MIN(q.y, texture->get_size().height - 1);
  269. }
  270. return texture->is_pixel_opaque((int)q.x, (int)q.y);
  271. }
  272. Rect2 Sprite::get_rect() const {
  273. if (texture.is_null())
  274. return Rect2(0, 0, 1, 1);
  275. Size2i s;
  276. if (region) {
  277. s = region_rect.size;
  278. } else {
  279. s = texture->get_size();
  280. }
  281. s = s / Point2(hframes, vframes);
  282. Point2 ofs = offset;
  283. if (centered)
  284. ofs -= Size2(s) / 2;
  285. if (s == Size2(0, 0))
  286. s = Size2(1, 1);
  287. return Rect2(ofs, s);
  288. }
  289. void Sprite::_validate_property(PropertyInfo &property) const {
  290. if (property.name == "frame") {
  291. property.hint = PROPERTY_HINT_RANGE;
  292. property.hint_string = "0," + itos(vframes * hframes - 1) + ",1";
  293. property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
  294. }
  295. if (property.name == "frame_coords") {
  296. property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
  297. }
  298. }
  299. void Sprite::_texture_changed() {
  300. // Changes to the texture need to trigger an update to make
  301. // the editor redraw the sprite with the updated texture.
  302. if (texture.is_valid()) {
  303. update();
  304. }
  305. }
  306. void Sprite::_bind_methods() {
  307. ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Sprite::set_texture);
  308. ClassDB::bind_method(D_METHOD("get_texture"), &Sprite::get_texture);
  309. ClassDB::bind_method(D_METHOD("set_normal_map", "normal_map"), &Sprite::set_normal_map);
  310. ClassDB::bind_method(D_METHOD("get_normal_map"), &Sprite::get_normal_map);
  311. ClassDB::bind_method(D_METHOD("set_centered", "centered"), &Sprite::set_centered);
  312. ClassDB::bind_method(D_METHOD("is_centered"), &Sprite::is_centered);
  313. ClassDB::bind_method(D_METHOD("set_offset", "offset"), &Sprite::set_offset);
  314. ClassDB::bind_method(D_METHOD("get_offset"), &Sprite::get_offset);
  315. ClassDB::bind_method(D_METHOD("set_flip_h", "flip_h"), &Sprite::set_flip_h);
  316. ClassDB::bind_method(D_METHOD("is_flipped_h"), &Sprite::is_flipped_h);
  317. ClassDB::bind_method(D_METHOD("set_flip_v", "flip_v"), &Sprite::set_flip_v);
  318. ClassDB::bind_method(D_METHOD("is_flipped_v"), &Sprite::is_flipped_v);
  319. ClassDB::bind_method(D_METHOD("set_region", "enabled"), &Sprite::set_region);
  320. ClassDB::bind_method(D_METHOD("is_region"), &Sprite::is_region);
  321. ClassDB::bind_method(D_METHOD("is_pixel_opaque", "pos"), &Sprite::is_pixel_opaque);
  322. ClassDB::bind_method(D_METHOD("set_region_rect", "rect"), &Sprite::set_region_rect);
  323. ClassDB::bind_method(D_METHOD("get_region_rect"), &Sprite::get_region_rect);
  324. ClassDB::bind_method(D_METHOD("set_region_filter_clip", "enabled"), &Sprite::set_region_filter_clip);
  325. ClassDB::bind_method(D_METHOD("is_region_filter_clip_enabled"), &Sprite::is_region_filter_clip_enabled);
  326. ClassDB::bind_method(D_METHOD("set_frame", "frame"), &Sprite::set_frame);
  327. ClassDB::bind_method(D_METHOD("get_frame"), &Sprite::get_frame);
  328. ClassDB::bind_method(D_METHOD("set_frame_coords", "coords"), &Sprite::set_frame_coords);
  329. ClassDB::bind_method(D_METHOD("get_frame_coords"), &Sprite::get_frame_coords);
  330. ClassDB::bind_method(D_METHOD("set_vframes", "vframes"), &Sprite::set_vframes);
  331. ClassDB::bind_method(D_METHOD("get_vframes"), &Sprite::get_vframes);
  332. ClassDB::bind_method(D_METHOD("set_hframes", "hframes"), &Sprite::set_hframes);
  333. ClassDB::bind_method(D_METHOD("get_hframes"), &Sprite::get_hframes);
  334. ClassDB::bind_method(D_METHOD("get_rect"), &Sprite::get_rect);
  335. ClassDB::bind_method(D_METHOD("_texture_changed"), &Sprite::_texture_changed);
  336. ADD_SIGNAL(MethodInfo("frame_changed"));
  337. ADD_SIGNAL(MethodInfo("texture_changed"));
  338. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_texture", "get_texture");
  339. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "normal_map", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_normal_map", "get_normal_map");
  340. ADD_GROUP("Offset", "");
  341. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "centered"), "set_centered", "is_centered");
  342. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
  343. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_h"), "set_flip_h", "is_flipped_h");
  344. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_v"), "set_flip_v", "is_flipped_v");
  345. ADD_GROUP("Animation", "");
  346. ADD_PROPERTY(PropertyInfo(Variant::INT, "vframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_vframes", "get_vframes");
  347. ADD_PROPERTY(PropertyInfo(Variant::INT, "hframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_hframes", "get_hframes");
  348. ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame");
  349. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "frame_coords", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "set_frame_coords", "get_frame_coords");
  350. ADD_GROUP("Region", "region_");
  351. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_enabled"), "set_region", "is_region");
  352. ADD_PROPERTY(PropertyInfo(Variant::RECT2, "region_rect"), "set_region_rect", "get_region_rect");
  353. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_filter_clip"), "set_region_filter_clip", "is_region_filter_clip_enabled");
  354. }
  355. Sprite::Sprite() {
  356. centered = true;
  357. hflip = false;
  358. vflip = false;
  359. region = false;
  360. region_filter_clip = false;
  361. frame = 0;
  362. vframes = 1;
  363. hframes = 1;
  364. }
  365. Sprite::~Sprite() {
  366. }