sprite_3d.cpp 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415
  1. /**************************************************************************/
  2. /* sprite_3d.cpp */
  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. #include "sprite_3d.h"
  31. #include "scene/scene_string_names.h"
  32. Color SpriteBase3D::_get_color_accum() {
  33. if (!color_dirty) {
  34. return color_accum;
  35. }
  36. if (parent_sprite) {
  37. color_accum = parent_sprite->_get_color_accum();
  38. } else {
  39. color_accum = Color(1, 1, 1, 1);
  40. }
  41. color_accum.r *= modulate.r;
  42. color_accum.g *= modulate.g;
  43. color_accum.b *= modulate.b;
  44. color_accum.a *= modulate.a;
  45. color_dirty = false;
  46. return color_accum;
  47. }
  48. void SpriteBase3D::_propagate_color_changed() {
  49. if (color_dirty) {
  50. return;
  51. }
  52. color_dirty = true;
  53. _queue_redraw();
  54. for (SpriteBase3D *&E : children) {
  55. E->_propagate_color_changed();
  56. }
  57. }
  58. void SpriteBase3D::_notification(int p_what) {
  59. switch (p_what) {
  60. case NOTIFICATION_ENTER_TREE: {
  61. if (!pending_update) {
  62. _im_update();
  63. }
  64. parent_sprite = Object::cast_to<SpriteBase3D>(get_parent());
  65. if (parent_sprite) {
  66. pI = parent_sprite->children.push_back(this);
  67. }
  68. } break;
  69. case NOTIFICATION_EXIT_TREE: {
  70. if (parent_sprite) {
  71. parent_sprite->children.erase(pI);
  72. pI = nullptr;
  73. parent_sprite = nullptr;
  74. }
  75. } break;
  76. }
  77. }
  78. void SpriteBase3D::draw_texture_rect(Ref<Texture2D> p_texture, Rect2 p_dst_rect, Rect2 p_src_rect) {
  79. ERR_FAIL_COND(p_texture.is_null());
  80. Rect2 final_rect;
  81. Rect2 final_src_rect;
  82. if (!p_texture->get_rect_region(p_dst_rect, p_src_rect, final_rect, final_src_rect)) {
  83. return;
  84. }
  85. if (final_rect.size.x == 0 || final_rect.size.y == 0) {
  86. return;
  87. }
  88. // 2D: 3D plane (axes match exactly when `axis == Vector3::AXIS_Z`):
  89. // -X+ -X+
  90. // - +
  91. // Y +--------+ +--------+ +--------+ Y +--------+
  92. // + | +--+ | | | (2) | | - | 0--1 |
  93. // | |ab| | (1) | +--+ | (3) | 3--2 | | |ab| |
  94. // | |cd| | --> | |ab| | --> | |cd| | <==> | |cd| |
  95. // | +--+ | | |cd| | | |ab| | | 3--2 |
  96. // | | | +--+ | | 0--1 | | |
  97. // +--------+ +--------+ +--------+ +--------+
  98. // (1) Y-wise shift `final_rect` within `p_dst_rect` so after inverting Y
  99. // axis distances between top/bottom borders will be preserved (so for
  100. // example AtlasTextures with vertical margins will look the same in 2D/3D).
  101. final_rect.position.y = (p_dst_rect.position.y + p_dst_rect.size.y) - ((final_rect.position.y + final_rect.size.y) - p_dst_rect.position.y);
  102. Color color = _get_color_accum();
  103. real_t px_size = get_pixel_size();
  104. // (2) Order vertices (0123) bottom-top in 2D / top-bottom in 3D.
  105. Vector2 vertices[4] = {
  106. (final_rect.position + Vector2(0, final_rect.size.y)) * px_size,
  107. (final_rect.position + final_rect.size) * px_size,
  108. (final_rect.position + Vector2(final_rect.size.x, 0)) * px_size,
  109. final_rect.position * px_size,
  110. };
  111. Vector2 src_tsize = p_texture->get_size();
  112. // Properly setup UVs for impostor textures (AtlasTexture).
  113. Ref<AtlasTexture> atlas_tex = p_texture;
  114. if (atlas_tex != nullptr) {
  115. src_tsize[0] = atlas_tex->get_atlas()->get_width();
  116. src_tsize[1] = atlas_tex->get_atlas()->get_height();
  117. }
  118. // (3) Assign UVs (abcd) according to the vertices order (bottom-top in 2D / top-bottom in 3D).
  119. Vector2 uvs[4] = {
  120. final_src_rect.position / src_tsize,
  121. (final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / src_tsize,
  122. (final_src_rect.position + final_src_rect.size) / src_tsize,
  123. (final_src_rect.position + Vector2(0, final_src_rect.size.y)) / src_tsize,
  124. };
  125. if (is_flipped_h()) {
  126. SWAP(uvs[0], uvs[1]);
  127. SWAP(uvs[2], uvs[3]);
  128. }
  129. if (is_flipped_v()) {
  130. SWAP(uvs[0], uvs[3]);
  131. SWAP(uvs[1], uvs[2]);
  132. }
  133. Vector3 normal;
  134. int ax = get_axis();
  135. normal[ax] = 1.0;
  136. Plane tangent;
  137. if (ax == Vector3::AXIS_X) {
  138. tangent = Plane(0, 0, -1, 1);
  139. } else {
  140. tangent = Plane(1, 0, 0, 1);
  141. }
  142. int x_axis = ((ax + 1) % 3);
  143. int y_axis = ((ax + 2) % 3);
  144. if (ax != Vector3::AXIS_Z) {
  145. SWAP(x_axis, y_axis);
  146. for (int i = 0; i < 4; i++) {
  147. //uvs[i] = Vector2(1.0,1.0)-uvs[i];
  148. //SWAP(vertices[i].x,vertices[i].y);
  149. if (ax == Vector3::AXIS_Y) {
  150. vertices[i].y = -vertices[i].y;
  151. } else if (ax == Vector3::AXIS_X) {
  152. vertices[i].x = -vertices[i].x;
  153. }
  154. }
  155. }
  156. AABB aabb_new;
  157. // Everything except position and UV is compressed.
  158. uint8_t *vertex_write_buffer = vertex_buffer.ptrw();
  159. uint8_t *attribute_write_buffer = attribute_buffer.ptrw();
  160. uint32_t v_normal;
  161. {
  162. Vector2 res = normal.octahedron_encode();
  163. uint32_t value = 0;
  164. value |= (uint16_t)CLAMP(res.x * 65535, 0, 65535);
  165. value |= (uint16_t)CLAMP(res.y * 65535, 0, 65535) << 16;
  166. v_normal = value;
  167. }
  168. uint32_t v_tangent;
  169. {
  170. Plane t = tangent;
  171. Vector2 res = t.normal.octahedron_tangent_encode(t.d);
  172. uint32_t value = 0;
  173. value |= (uint16_t)CLAMP(res.x * 65535, 0, 65535);
  174. value |= (uint16_t)CLAMP(res.y * 65535, 0, 65535) << 16;
  175. v_tangent = value;
  176. }
  177. uint8_t v_color[4] = {
  178. uint8_t(CLAMP(color.r * 255.0, 0.0, 255.0)),
  179. uint8_t(CLAMP(color.g * 255.0, 0.0, 255.0)),
  180. uint8_t(CLAMP(color.b * 255.0, 0.0, 255.0)),
  181. uint8_t(CLAMP(color.a * 255.0, 0.0, 255.0))
  182. };
  183. for (int i = 0; i < 4; i++) {
  184. Vector3 vtx;
  185. vtx[x_axis] = vertices[i][0];
  186. vtx[y_axis] = vertices[i][1];
  187. if (i == 0) {
  188. aabb_new.position = vtx;
  189. aabb_new.size = Vector3();
  190. } else {
  191. aabb_new.expand_to(vtx);
  192. }
  193. float v_uv[2] = { (float)uvs[i].x, (float)uvs[i].y };
  194. memcpy(&attribute_write_buffer[i * attrib_stride + mesh_surface_offsets[RS::ARRAY_TEX_UV]], v_uv, 8);
  195. float v_vertex[3] = { (float)vtx.x, (float)vtx.y, (float)vtx.z };
  196. memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_VERTEX]], &v_vertex, sizeof(float) * 3);
  197. memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_NORMAL]], &v_normal, 4);
  198. memcpy(&vertex_write_buffer[i * vertex_stride + mesh_surface_offsets[RS::ARRAY_TANGENT]], &v_tangent, 4);
  199. memcpy(&attribute_write_buffer[i * attrib_stride + mesh_surface_offsets[RS::ARRAY_COLOR]], v_color, 4);
  200. }
  201. RID mesh_new = get_mesh();
  202. RS::get_singleton()->mesh_surface_update_vertex_region(mesh_new, 0, 0, vertex_buffer);
  203. RS::get_singleton()->mesh_surface_update_attribute_region(mesh_new, 0, 0, attribute_buffer);
  204. RS::get_singleton()->mesh_set_custom_aabb(mesh_new, aabb_new);
  205. set_aabb(aabb_new);
  206. RS::get_singleton()->material_set_param(get_material(), "alpha_scissor_threshold", alpha_scissor_threshold);
  207. RS::get_singleton()->material_set_param(get_material(), "alpha_hash_scale", alpha_hash_scale);
  208. RS::get_singleton()->material_set_param(get_material(), "alpha_antialiasing_edge", alpha_antialiasing_edge);
  209. BaseMaterial3D::Transparency mat_transparency = BaseMaterial3D::Transparency::TRANSPARENCY_DISABLED;
  210. if (get_draw_flag(FLAG_TRANSPARENT)) {
  211. if (get_alpha_cut_mode() == ALPHA_CUT_DISCARD) {
  212. mat_transparency = BaseMaterial3D::Transparency::TRANSPARENCY_ALPHA_SCISSOR;
  213. } else if (get_alpha_cut_mode() == ALPHA_CUT_OPAQUE_PREPASS) {
  214. mat_transparency = BaseMaterial3D::Transparency::TRANSPARENCY_ALPHA_DEPTH_PRE_PASS;
  215. } else if (get_alpha_cut_mode() == ALPHA_CUT_HASH) {
  216. mat_transparency = BaseMaterial3D::Transparency::TRANSPARENCY_ALPHA_HASH;
  217. } else {
  218. mat_transparency = BaseMaterial3D::Transparency::TRANSPARENCY_ALPHA;
  219. }
  220. }
  221. RID shader_rid;
  222. StandardMaterial3D::get_material_for_2d(get_draw_flag(FLAG_SHADED), mat_transparency, get_draw_flag(FLAG_DOUBLE_SIDED), get_billboard_mode() == StandardMaterial3D::BILLBOARD_ENABLED, get_billboard_mode() == StandardMaterial3D::BILLBOARD_FIXED_Y, false, get_draw_flag(FLAG_DISABLE_DEPTH_TEST), get_draw_flag(FLAG_FIXED_SIZE), get_texture_filter(), alpha_antialiasing_mode, &shader_rid);
  223. if (last_shader != shader_rid) {
  224. RS::get_singleton()->material_set_shader(get_material(), shader_rid);
  225. last_shader = shader_rid;
  226. }
  227. if (last_texture != p_texture->get_rid()) {
  228. RS::get_singleton()->material_set_param(get_material(), "texture_albedo", p_texture->get_rid());
  229. last_texture = p_texture->get_rid();
  230. }
  231. if (get_alpha_cut_mode() == ALPHA_CUT_DISABLED) {
  232. RS::get_singleton()->material_set_render_priority(get_material(), get_render_priority());
  233. RS::get_singleton()->mesh_surface_set_material(mesh, 0, get_material());
  234. }
  235. }
  236. void SpriteBase3D::set_centered(bool p_center) {
  237. centered = p_center;
  238. _queue_redraw();
  239. }
  240. bool SpriteBase3D::is_centered() const {
  241. return centered;
  242. }
  243. void SpriteBase3D::set_offset(const Point2 &p_offset) {
  244. offset = p_offset;
  245. _queue_redraw();
  246. }
  247. Point2 SpriteBase3D::get_offset() const {
  248. return offset;
  249. }
  250. void SpriteBase3D::set_flip_h(bool p_flip) {
  251. hflip = p_flip;
  252. _queue_redraw();
  253. }
  254. bool SpriteBase3D::is_flipped_h() const {
  255. return hflip;
  256. }
  257. void SpriteBase3D::set_flip_v(bool p_flip) {
  258. vflip = p_flip;
  259. _queue_redraw();
  260. }
  261. bool SpriteBase3D::is_flipped_v() const {
  262. return vflip;
  263. }
  264. void SpriteBase3D::set_modulate(const Color &p_color) {
  265. modulate = p_color;
  266. _propagate_color_changed();
  267. _queue_redraw();
  268. }
  269. Color SpriteBase3D::get_modulate() const {
  270. return modulate;
  271. }
  272. void SpriteBase3D::set_render_priority(int p_priority) {
  273. ERR_FAIL_COND(p_priority < RS::MATERIAL_RENDER_PRIORITY_MIN || p_priority > RS::MATERIAL_RENDER_PRIORITY_MAX);
  274. render_priority = p_priority;
  275. _queue_redraw();
  276. }
  277. int SpriteBase3D::get_render_priority() const {
  278. return render_priority;
  279. }
  280. void SpriteBase3D::set_pixel_size(real_t p_amount) {
  281. pixel_size = p_amount;
  282. _queue_redraw();
  283. }
  284. real_t SpriteBase3D::get_pixel_size() const {
  285. return pixel_size;
  286. }
  287. void SpriteBase3D::set_axis(Vector3::Axis p_axis) {
  288. ERR_FAIL_INDEX(p_axis, 3);
  289. axis = p_axis;
  290. _queue_redraw();
  291. }
  292. Vector3::Axis SpriteBase3D::get_axis() const {
  293. return axis;
  294. }
  295. void SpriteBase3D::_im_update() {
  296. _draw();
  297. pending_update = false;
  298. //texture->draw_rect_region(ci,dst_rect,src_rect,modulate);
  299. }
  300. void SpriteBase3D::_queue_redraw() {
  301. // The 3D equivalent of CanvasItem.queue_redraw().
  302. if (pending_update) {
  303. return;
  304. }
  305. triangle_mesh.unref();
  306. update_gizmos();
  307. pending_update = true;
  308. call_deferred(SceneStringNames::get_singleton()->_im_update);
  309. }
  310. AABB SpriteBase3D::get_aabb() const {
  311. return aabb;
  312. }
  313. Ref<TriangleMesh> SpriteBase3D::generate_triangle_mesh() const {
  314. if (triangle_mesh.is_valid()) {
  315. return triangle_mesh;
  316. }
  317. Vector<Vector3> faces;
  318. faces.resize(6);
  319. Vector3 *facesw = faces.ptrw();
  320. Rect2 final_rect = get_item_rect();
  321. if (final_rect.size.x == 0 || final_rect.size.y == 0) {
  322. return Ref<TriangleMesh>();
  323. }
  324. real_t px_size = get_pixel_size();
  325. Vector2 vertices[4] = {
  326. (final_rect.position + Vector2(0, final_rect.size.y)) * px_size,
  327. (final_rect.position + final_rect.size) * px_size,
  328. (final_rect.position + Vector2(final_rect.size.x, 0)) * px_size,
  329. final_rect.position * px_size,
  330. };
  331. int x_axis = ((axis + 1) % 3);
  332. int y_axis = ((axis + 2) % 3);
  333. if (axis != Vector3::AXIS_Z) {
  334. SWAP(x_axis, y_axis);
  335. for (int i = 0; i < 4; i++) {
  336. if (axis == Vector3::AXIS_Y) {
  337. vertices[i].y = -vertices[i].y;
  338. } else if (axis == Vector3::AXIS_X) {
  339. vertices[i].x = -vertices[i].x;
  340. }
  341. }
  342. }
  343. static const int indices[6] = {
  344. 0, 1, 2,
  345. 0, 2, 3
  346. };
  347. for (int j = 0; j < 6; j++) {
  348. int i = indices[j];
  349. Vector3 vtx;
  350. vtx[x_axis] = vertices[i][0];
  351. vtx[y_axis] = vertices[i][1];
  352. facesw[j] = vtx;
  353. }
  354. triangle_mesh = Ref<TriangleMesh>(memnew(TriangleMesh));
  355. triangle_mesh->create(faces);
  356. return triangle_mesh;
  357. }
  358. void SpriteBase3D::set_draw_flag(DrawFlags p_flag, bool p_enable) {
  359. ERR_FAIL_INDEX(p_flag, FLAG_MAX);
  360. flags[p_flag] = p_enable;
  361. _queue_redraw();
  362. }
  363. bool SpriteBase3D::get_draw_flag(DrawFlags p_flag) const {
  364. ERR_FAIL_INDEX_V(p_flag, FLAG_MAX, false);
  365. return flags[p_flag];
  366. }
  367. void SpriteBase3D::set_alpha_cut_mode(AlphaCutMode p_mode) {
  368. ERR_FAIL_INDEX(p_mode, ALPHA_CUT_MAX);
  369. alpha_cut = p_mode;
  370. _queue_redraw();
  371. }
  372. SpriteBase3D::AlphaCutMode SpriteBase3D::get_alpha_cut_mode() const {
  373. return alpha_cut;
  374. }
  375. void SpriteBase3D::set_alpha_hash_scale(float p_hash_scale) {
  376. if (alpha_hash_scale != p_hash_scale) {
  377. alpha_hash_scale = p_hash_scale;
  378. _queue_redraw();
  379. }
  380. }
  381. float SpriteBase3D::get_alpha_hash_scale() const {
  382. return alpha_hash_scale;
  383. }
  384. void SpriteBase3D::set_alpha_scissor_threshold(float p_threshold) {
  385. if (alpha_scissor_threshold != p_threshold) {
  386. alpha_scissor_threshold = p_threshold;
  387. _queue_redraw();
  388. }
  389. }
  390. float SpriteBase3D::get_alpha_scissor_threshold() const {
  391. return alpha_scissor_threshold;
  392. }
  393. void SpriteBase3D::set_alpha_antialiasing(BaseMaterial3D::AlphaAntiAliasing p_alpha_aa) {
  394. if (alpha_antialiasing_mode != p_alpha_aa) {
  395. alpha_antialiasing_mode = p_alpha_aa;
  396. _queue_redraw();
  397. }
  398. }
  399. BaseMaterial3D::AlphaAntiAliasing SpriteBase3D::get_alpha_antialiasing() const {
  400. return alpha_antialiasing_mode;
  401. }
  402. void SpriteBase3D::set_alpha_antialiasing_edge(float p_edge) {
  403. if (alpha_antialiasing_edge != p_edge) {
  404. alpha_antialiasing_edge = p_edge;
  405. _queue_redraw();
  406. }
  407. }
  408. float SpriteBase3D::get_alpha_antialiasing_edge() const {
  409. return alpha_antialiasing_edge;
  410. }
  411. void SpriteBase3D::set_billboard_mode(StandardMaterial3D::BillboardMode p_mode) {
  412. ERR_FAIL_INDEX(p_mode, 3); // Cannot use BILLBOARD_PARTICLES.
  413. billboard_mode = p_mode;
  414. _queue_redraw();
  415. }
  416. StandardMaterial3D::BillboardMode SpriteBase3D::get_billboard_mode() const {
  417. return billboard_mode;
  418. }
  419. void SpriteBase3D::set_texture_filter(StandardMaterial3D::TextureFilter p_filter) {
  420. if (texture_filter != p_filter) {
  421. texture_filter = p_filter;
  422. _queue_redraw();
  423. }
  424. }
  425. StandardMaterial3D::TextureFilter SpriteBase3D::get_texture_filter() const {
  426. return texture_filter;
  427. }
  428. void SpriteBase3D::_bind_methods() {
  429. ClassDB::bind_method(D_METHOD("set_centered", "centered"), &SpriteBase3D::set_centered);
  430. ClassDB::bind_method(D_METHOD("is_centered"), &SpriteBase3D::is_centered);
  431. ClassDB::bind_method(D_METHOD("set_offset", "offset"), &SpriteBase3D::set_offset);
  432. ClassDB::bind_method(D_METHOD("get_offset"), &SpriteBase3D::get_offset);
  433. ClassDB::bind_method(D_METHOD("set_flip_h", "flip_h"), &SpriteBase3D::set_flip_h);
  434. ClassDB::bind_method(D_METHOD("is_flipped_h"), &SpriteBase3D::is_flipped_h);
  435. ClassDB::bind_method(D_METHOD("set_flip_v", "flip_v"), &SpriteBase3D::set_flip_v);
  436. ClassDB::bind_method(D_METHOD("is_flipped_v"), &SpriteBase3D::is_flipped_v);
  437. ClassDB::bind_method(D_METHOD("set_modulate", "modulate"), &SpriteBase3D::set_modulate);
  438. ClassDB::bind_method(D_METHOD("get_modulate"), &SpriteBase3D::get_modulate);
  439. ClassDB::bind_method(D_METHOD("set_render_priority", "priority"), &SpriteBase3D::set_render_priority);
  440. ClassDB::bind_method(D_METHOD("get_render_priority"), &SpriteBase3D::get_render_priority);
  441. ClassDB::bind_method(D_METHOD("set_pixel_size", "pixel_size"), &SpriteBase3D::set_pixel_size);
  442. ClassDB::bind_method(D_METHOD("get_pixel_size"), &SpriteBase3D::get_pixel_size);
  443. ClassDB::bind_method(D_METHOD("set_axis", "axis"), &SpriteBase3D::set_axis);
  444. ClassDB::bind_method(D_METHOD("get_axis"), &SpriteBase3D::get_axis);
  445. ClassDB::bind_method(D_METHOD("set_draw_flag", "flag", "enabled"), &SpriteBase3D::set_draw_flag);
  446. ClassDB::bind_method(D_METHOD("get_draw_flag", "flag"), &SpriteBase3D::get_draw_flag);
  447. ClassDB::bind_method(D_METHOD("set_alpha_cut_mode", "mode"), &SpriteBase3D::set_alpha_cut_mode);
  448. ClassDB::bind_method(D_METHOD("get_alpha_cut_mode"), &SpriteBase3D::get_alpha_cut_mode);
  449. ClassDB::bind_method(D_METHOD("set_alpha_scissor_threshold", "threshold"), &SpriteBase3D::set_alpha_scissor_threshold);
  450. ClassDB::bind_method(D_METHOD("get_alpha_scissor_threshold"), &SpriteBase3D::get_alpha_scissor_threshold);
  451. ClassDB::bind_method(D_METHOD("set_alpha_hash_scale", "threshold"), &SpriteBase3D::set_alpha_hash_scale);
  452. ClassDB::bind_method(D_METHOD("get_alpha_hash_scale"), &SpriteBase3D::get_alpha_hash_scale);
  453. ClassDB::bind_method(D_METHOD("set_alpha_antialiasing", "alpha_aa"), &SpriteBase3D::set_alpha_antialiasing);
  454. ClassDB::bind_method(D_METHOD("get_alpha_antialiasing"), &SpriteBase3D::get_alpha_antialiasing);
  455. ClassDB::bind_method(D_METHOD("set_alpha_antialiasing_edge", "edge"), &SpriteBase3D::set_alpha_antialiasing_edge);
  456. ClassDB::bind_method(D_METHOD("get_alpha_antialiasing_edge"), &SpriteBase3D::get_alpha_antialiasing_edge);
  457. ClassDB::bind_method(D_METHOD("set_billboard_mode", "mode"), &SpriteBase3D::set_billboard_mode);
  458. ClassDB::bind_method(D_METHOD("get_billboard_mode"), &SpriteBase3D::get_billboard_mode);
  459. ClassDB::bind_method(D_METHOD("set_texture_filter", "mode"), &SpriteBase3D::set_texture_filter);
  460. ClassDB::bind_method(D_METHOD("get_texture_filter"), &SpriteBase3D::get_texture_filter);
  461. ClassDB::bind_method(D_METHOD("get_item_rect"), &SpriteBase3D::get_item_rect);
  462. ClassDB::bind_method(D_METHOD("generate_triangle_mesh"), &SpriteBase3D::generate_triangle_mesh);
  463. ClassDB::bind_method(D_METHOD("_im_update"), &SpriteBase3D::_im_update);
  464. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "centered"), "set_centered", "is_centered");
  465. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset", PROPERTY_HINT_NONE, "suffix:px"), "set_offset", "get_offset");
  466. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_h"), "set_flip_h", "is_flipped_h");
  467. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_v"), "set_flip_v", "is_flipped_v");
  468. ADD_PROPERTY(PropertyInfo(Variant::COLOR, "modulate"), "set_modulate", "get_modulate");
  469. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "pixel_size", PROPERTY_HINT_RANGE, "0.0001,128,0.0001,suffix:m"), "set_pixel_size", "get_pixel_size");
  470. ADD_PROPERTY(PropertyInfo(Variant::INT, "axis", PROPERTY_HINT_ENUM, "X-Axis,Y-Axis,Z-Axis"), "set_axis", "get_axis");
  471. ADD_GROUP("Flags", "");
  472. ADD_PROPERTY(PropertyInfo(Variant::INT, "billboard", PROPERTY_HINT_ENUM, "Disabled,Enabled,Y-Billboard"), "set_billboard_mode", "get_billboard_mode");
  473. ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "transparent"), "set_draw_flag", "get_draw_flag", FLAG_TRANSPARENT);
  474. ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "shaded"), "set_draw_flag", "get_draw_flag", FLAG_SHADED);
  475. ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "double_sided"), "set_draw_flag", "get_draw_flag", FLAG_DOUBLE_SIDED);
  476. ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "no_depth_test"), "set_draw_flag", "get_draw_flag", FLAG_DISABLE_DEPTH_TEST);
  477. ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "fixed_size"), "set_draw_flag", "get_draw_flag", FLAG_FIXED_SIZE);
  478. ADD_PROPERTY(PropertyInfo(Variant::INT, "alpha_cut", PROPERTY_HINT_ENUM, "Disabled,Discard,Opaque Pre-Pass,Alpha Hash"), "set_alpha_cut_mode", "get_alpha_cut_mode");
  479. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "alpha_scissor_threshold", PROPERTY_HINT_RANGE, "0,1,0.001"), "set_alpha_scissor_threshold", "get_alpha_scissor_threshold");
  480. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "alpha_hash_scale", PROPERTY_HINT_RANGE, "0,2,0.01"), "set_alpha_hash_scale", "get_alpha_hash_scale");
  481. ADD_PROPERTY(PropertyInfo(Variant::INT, "alpha_antialiasing_mode", PROPERTY_HINT_ENUM, "Disabled,Alpha Edge Blend,Alpha Edge Clip"), "set_alpha_antialiasing", "get_alpha_antialiasing");
  482. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "alpha_antialiasing_edge", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_alpha_antialiasing_edge", "get_alpha_antialiasing_edge");
  483. ADD_PROPERTY(PropertyInfo(Variant::INT, "texture_filter", PROPERTY_HINT_ENUM, "Nearest,Linear,Nearest Mipmap,Linear Mipmap,Nearest Mipmap Anisotropic,Linear Mipmap Anisotropic"), "set_texture_filter", "get_texture_filter");
  484. ADD_PROPERTY(PropertyInfo(Variant::INT, "render_priority", PROPERTY_HINT_RANGE, itos(RS::MATERIAL_RENDER_PRIORITY_MIN) + "," + itos(RS::MATERIAL_RENDER_PRIORITY_MAX) + ",1"), "set_render_priority", "get_render_priority");
  485. BIND_ENUM_CONSTANT(FLAG_TRANSPARENT);
  486. BIND_ENUM_CONSTANT(FLAG_SHADED);
  487. BIND_ENUM_CONSTANT(FLAG_DOUBLE_SIDED);
  488. BIND_ENUM_CONSTANT(FLAG_DISABLE_DEPTH_TEST);
  489. BIND_ENUM_CONSTANT(FLAG_FIXED_SIZE);
  490. BIND_ENUM_CONSTANT(FLAG_MAX);
  491. BIND_ENUM_CONSTANT(ALPHA_CUT_DISABLED);
  492. BIND_ENUM_CONSTANT(ALPHA_CUT_DISCARD);
  493. BIND_ENUM_CONSTANT(ALPHA_CUT_OPAQUE_PREPASS);
  494. BIND_ENUM_CONSTANT(ALPHA_CUT_HASH);
  495. }
  496. SpriteBase3D::SpriteBase3D() {
  497. for (int i = 0; i < FLAG_MAX; i++) {
  498. flags[i] = i == FLAG_TRANSPARENT || i == FLAG_DOUBLE_SIDED;
  499. }
  500. material = RenderingServer::get_singleton()->material_create();
  501. // Set defaults for material, names need to match up those in StandardMaterial3D.
  502. RS::get_singleton()->material_set_param(material, "albedo", Color(1, 1, 1, 1));
  503. RS::get_singleton()->material_set_param(material, "specular", 0.5);
  504. RS::get_singleton()->material_set_param(material, "metallic", 0.0);
  505. RS::get_singleton()->material_set_param(material, "roughness", 1.0);
  506. RS::get_singleton()->material_set_param(material, "uv1_offset", Vector3(0, 0, 0));
  507. RS::get_singleton()->material_set_param(material, "uv1_scale", Vector3(1, 1, 1));
  508. RS::get_singleton()->material_set_param(material, "uv2_offset", Vector3(0, 0, 0));
  509. RS::get_singleton()->material_set_param(material, "uv2_scale", Vector3(1, 1, 1));
  510. mesh = RenderingServer::get_singleton()->mesh_create();
  511. PackedVector3Array mesh_vertices;
  512. PackedVector3Array mesh_normals;
  513. PackedFloat32Array mesh_tangents;
  514. PackedColorArray mesh_colors;
  515. PackedVector2Array mesh_uvs;
  516. PackedInt32Array indices;
  517. mesh_vertices.resize(4);
  518. mesh_normals.resize(4);
  519. mesh_tangents.resize(16);
  520. mesh_colors.resize(4);
  521. mesh_uvs.resize(4);
  522. // Create basic mesh and store format information.
  523. for (int i = 0; i < 4; i++) {
  524. mesh_normals.write[i] = Vector3(0.0, 0.0, 0.0);
  525. mesh_tangents.write[i * 4 + 0] = 0.0;
  526. mesh_tangents.write[i * 4 + 1] = 0.0;
  527. mesh_tangents.write[i * 4 + 2] = 0.0;
  528. mesh_tangents.write[i * 4 + 3] = 0.0;
  529. mesh_colors.write[i] = Color(1.0, 1.0, 1.0, 1.0);
  530. mesh_uvs.write[i] = Vector2(0.0, 0.0);
  531. mesh_vertices.write[i] = Vector3(0.0, 0.0, 0.0);
  532. }
  533. indices.resize(6);
  534. indices.write[0] = 0;
  535. indices.write[1] = 1;
  536. indices.write[2] = 2;
  537. indices.write[3] = 0;
  538. indices.write[4] = 2;
  539. indices.write[5] = 3;
  540. Array mesh_array;
  541. mesh_array.resize(RS::ARRAY_MAX);
  542. mesh_array[RS::ARRAY_VERTEX] = mesh_vertices;
  543. mesh_array[RS::ARRAY_NORMAL] = mesh_normals;
  544. mesh_array[RS::ARRAY_TANGENT] = mesh_tangents;
  545. mesh_array[RS::ARRAY_COLOR] = mesh_colors;
  546. mesh_array[RS::ARRAY_TEX_UV] = mesh_uvs;
  547. mesh_array[RS::ARRAY_INDEX] = indices;
  548. RS::SurfaceData sd;
  549. RS::get_singleton()->mesh_create_surface_data_from_arrays(&sd, RS::PRIMITIVE_TRIANGLES, mesh_array);
  550. mesh_surface_format = sd.format;
  551. vertex_buffer = sd.vertex_data;
  552. attribute_buffer = sd.attribute_data;
  553. sd.material = material;
  554. RS::get_singleton()->mesh_surface_make_offsets_from_format(sd.format, sd.vertex_count, sd.index_count, mesh_surface_offsets, vertex_stride, attrib_stride, skin_stride);
  555. RS::get_singleton()->mesh_add_surface(mesh, sd);
  556. set_base(mesh);
  557. }
  558. SpriteBase3D::~SpriteBase3D() {
  559. ERR_FAIL_NULL(RenderingServer::get_singleton());
  560. RenderingServer::get_singleton()->free(mesh);
  561. RenderingServer::get_singleton()->free(material);
  562. }
  563. ///////////////////////////////////////////
  564. void Sprite3D::_draw() {
  565. if (get_base() != get_mesh()) {
  566. set_base(get_mesh());
  567. }
  568. if (texture.is_null()) {
  569. set_base(RID());
  570. return;
  571. }
  572. Vector2 tsize = texture->get_size();
  573. if (tsize.x == 0 || tsize.y == 0) {
  574. return;
  575. }
  576. Rect2 base_rect;
  577. if (region) {
  578. base_rect = region_rect;
  579. } else {
  580. base_rect = Rect2(0, 0, texture->get_width(), texture->get_height());
  581. }
  582. Size2 frame_size = base_rect.size / Size2(hframes, vframes);
  583. Point2 frame_offset = Point2(frame % hframes, frame / hframes) * frame_size;
  584. Point2 dst_offset = get_offset();
  585. if (is_centered()) {
  586. dst_offset -= frame_size / 2.0f;
  587. }
  588. Rect2 src_rect(base_rect.position + frame_offset, frame_size);
  589. Rect2 dst_rect(dst_offset, frame_size);
  590. draw_texture_rect(texture, dst_rect, src_rect);
  591. }
  592. void Sprite3D::set_texture(const Ref<Texture2D> &p_texture) {
  593. if (p_texture == texture) {
  594. return;
  595. }
  596. if (texture.is_valid()) {
  597. texture->disconnect(SceneStringNames::get_singleton()->changed, callable_mp((SpriteBase3D *)this, &Sprite3D::_queue_redraw));
  598. }
  599. texture = p_texture;
  600. if (texture.is_valid()) {
  601. texture->connect(SceneStringNames::get_singleton()->changed, callable_mp((SpriteBase3D *)this, &Sprite3D::_queue_redraw));
  602. }
  603. _queue_redraw();
  604. emit_signal(SceneStringNames::get_singleton()->texture_changed);
  605. }
  606. Ref<Texture2D> Sprite3D::get_texture() const {
  607. return texture;
  608. }
  609. void Sprite3D::set_region_enabled(bool p_region) {
  610. if (p_region == region) {
  611. return;
  612. }
  613. region = p_region;
  614. _queue_redraw();
  615. notify_property_list_changed();
  616. }
  617. bool Sprite3D::is_region_enabled() const {
  618. return region;
  619. }
  620. void Sprite3D::set_region_rect(const Rect2 &p_region_rect) {
  621. bool changed = region_rect != p_region_rect;
  622. region_rect = p_region_rect;
  623. if (region && changed) {
  624. _queue_redraw();
  625. }
  626. }
  627. Rect2 Sprite3D::get_region_rect() const {
  628. return region_rect;
  629. }
  630. void Sprite3D::set_frame(int p_frame) {
  631. ERR_FAIL_INDEX(p_frame, int64_t(vframes) * hframes);
  632. frame = p_frame;
  633. _queue_redraw();
  634. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  635. }
  636. int Sprite3D::get_frame() const {
  637. return frame;
  638. }
  639. void Sprite3D::set_frame_coords(const Vector2i &p_coord) {
  640. ERR_FAIL_INDEX(p_coord.x, hframes);
  641. ERR_FAIL_INDEX(p_coord.y, vframes);
  642. set_frame(p_coord.y * hframes + p_coord.x);
  643. }
  644. Vector2i Sprite3D::get_frame_coords() const {
  645. return Vector2i(frame % hframes, frame / hframes);
  646. }
  647. void Sprite3D::set_vframes(int p_amount) {
  648. ERR_FAIL_COND(p_amount < 1);
  649. vframes = p_amount;
  650. _queue_redraw();
  651. notify_property_list_changed();
  652. }
  653. int Sprite3D::get_vframes() const {
  654. return vframes;
  655. }
  656. void Sprite3D::set_hframes(int p_amount) {
  657. ERR_FAIL_COND(p_amount < 1);
  658. hframes = p_amount;
  659. _queue_redraw();
  660. notify_property_list_changed();
  661. }
  662. int Sprite3D::get_hframes() const {
  663. return hframes;
  664. }
  665. Rect2 Sprite3D::get_item_rect() const {
  666. if (texture.is_null()) {
  667. return Rect2(0, 0, 1, 1);
  668. }
  669. Size2 s;
  670. if (region) {
  671. s = region_rect.size;
  672. } else {
  673. s = texture->get_size();
  674. s = s / Point2(hframes, vframes);
  675. }
  676. Point2 ofs = get_offset();
  677. if (is_centered()) {
  678. ofs -= s / 2;
  679. }
  680. if (s == Size2(0, 0)) {
  681. s = Size2(1, 1);
  682. }
  683. return Rect2(ofs, s);
  684. }
  685. void Sprite3D::_validate_property(PropertyInfo &p_property) const {
  686. if (p_property.name == "frame") {
  687. p_property.hint = PROPERTY_HINT_RANGE;
  688. p_property.hint_string = "0," + itos(vframes * hframes - 1) + ",1";
  689. p_property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
  690. }
  691. if (p_property.name == "frame_coords") {
  692. p_property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
  693. }
  694. if (!region && (p_property.name == "region_rect")) {
  695. p_property.usage = PROPERTY_USAGE_NO_EDITOR;
  696. }
  697. }
  698. void Sprite3D::_bind_methods() {
  699. ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Sprite3D::set_texture);
  700. ClassDB::bind_method(D_METHOD("get_texture"), &Sprite3D::get_texture);
  701. ClassDB::bind_method(D_METHOD("set_region_enabled", "enabled"), &Sprite3D::set_region_enabled);
  702. ClassDB::bind_method(D_METHOD("is_region_enabled"), &Sprite3D::is_region_enabled);
  703. ClassDB::bind_method(D_METHOD("set_region_rect", "rect"), &Sprite3D::set_region_rect);
  704. ClassDB::bind_method(D_METHOD("get_region_rect"), &Sprite3D::get_region_rect);
  705. ClassDB::bind_method(D_METHOD("set_frame", "frame"), &Sprite3D::set_frame);
  706. ClassDB::bind_method(D_METHOD("get_frame"), &Sprite3D::get_frame);
  707. ClassDB::bind_method(D_METHOD("set_frame_coords", "coords"), &Sprite3D::set_frame_coords);
  708. ClassDB::bind_method(D_METHOD("get_frame_coords"), &Sprite3D::get_frame_coords);
  709. ClassDB::bind_method(D_METHOD("set_vframes", "vframes"), &Sprite3D::set_vframes);
  710. ClassDB::bind_method(D_METHOD("get_vframes"), &Sprite3D::get_vframes);
  711. ClassDB::bind_method(D_METHOD("set_hframes", "hframes"), &Sprite3D::set_hframes);
  712. ClassDB::bind_method(D_METHOD("get_hframes"), &Sprite3D::get_hframes);
  713. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_texture", "get_texture");
  714. ADD_GROUP("Animation", "");
  715. ADD_PROPERTY(PropertyInfo(Variant::INT, "hframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_hframes", "get_hframes");
  716. ADD_PROPERTY(PropertyInfo(Variant::INT, "vframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_vframes", "get_vframes");
  717. ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame");
  718. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "frame_coords", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "set_frame_coords", "get_frame_coords");
  719. ADD_GROUP("Region", "region_");
  720. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_enabled"), "set_region_enabled", "is_region_enabled");
  721. ADD_PROPERTY(PropertyInfo(Variant::RECT2, "region_rect", PROPERTY_HINT_NONE, "suffix:px"), "set_region_rect", "get_region_rect");
  722. ADD_SIGNAL(MethodInfo("frame_changed"));
  723. ADD_SIGNAL(MethodInfo("texture_changed"));
  724. }
  725. Sprite3D::Sprite3D() {
  726. }
  727. ////////////////////////////////////////
  728. void AnimatedSprite3D::_draw() {
  729. if (get_base() != get_mesh()) {
  730. set_base(get_mesh());
  731. }
  732. if (frames.is_null() || !frames->has_animation(animation)) {
  733. return;
  734. }
  735. Ref<Texture2D> texture = frames->get_frame_texture(animation, frame);
  736. if (texture.is_null()) {
  737. set_base(RID());
  738. return;
  739. }
  740. Size2 tsize = texture->get_size();
  741. if (tsize.x == 0 || tsize.y == 0) {
  742. return;
  743. }
  744. Rect2 src_rect;
  745. src_rect.size = tsize;
  746. Point2 ofs = get_offset();
  747. if (is_centered()) {
  748. ofs -= tsize / 2;
  749. }
  750. Rect2 dst_rect(ofs, tsize);
  751. draw_texture_rect(texture, dst_rect, src_rect);
  752. }
  753. void AnimatedSprite3D::_validate_property(PropertyInfo &p_property) const {
  754. if (!frames.is_valid()) {
  755. return;
  756. }
  757. if (p_property.name == "animation") {
  758. List<StringName> names;
  759. frames->get_animation_list(&names);
  760. names.sort_custom<StringName::AlphCompare>();
  761. bool current_found = false;
  762. bool is_first_element = true;
  763. for (const StringName &E : names) {
  764. if (!is_first_element) {
  765. p_property.hint_string += ",";
  766. } else {
  767. is_first_element = false;
  768. }
  769. p_property.hint_string += String(E);
  770. if (animation == E) {
  771. current_found = true;
  772. }
  773. }
  774. if (!current_found) {
  775. if (p_property.hint_string.is_empty()) {
  776. p_property.hint_string = String(animation);
  777. } else {
  778. p_property.hint_string = String(animation) + "," + p_property.hint_string;
  779. }
  780. }
  781. return;
  782. }
  783. if (p_property.name == "frame") {
  784. if (playing) {
  785. p_property.usage = PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_READ_ONLY;
  786. return;
  787. }
  788. p_property.hint = PROPERTY_HINT_RANGE;
  789. if (frames->has_animation(animation) && frames->get_frame_count(animation) > 0) {
  790. p_property.hint_string = "0," + itos(frames->get_frame_count(animation) - 1) + ",1";
  791. } else {
  792. // Avoid an error, `hint_string` is required for `PROPERTY_HINT_RANGE`.
  793. p_property.hint_string = "0,0,1";
  794. }
  795. p_property.usage |= PROPERTY_USAGE_KEYING_INCREMENTS;
  796. }
  797. }
  798. void AnimatedSprite3D::_notification(int p_what) {
  799. switch (p_what) {
  800. case NOTIFICATION_READY: {
  801. if (!Engine::get_singleton()->is_editor_hint() && !frames.is_null() && frames->has_animation(autoplay)) {
  802. play(autoplay);
  803. }
  804. } break;
  805. case NOTIFICATION_INTERNAL_PROCESS: {
  806. if (frames.is_null() || !frames->has_animation(animation)) {
  807. return;
  808. }
  809. double remaining = get_process_delta_time();
  810. int i = 0;
  811. while (remaining) {
  812. // Animation speed may be changed by animation_finished or frame_changed signals.
  813. double speed = frames->get_animation_speed(animation) * speed_scale * custom_speed_scale * frame_speed_scale;
  814. double abs_speed = Math::abs(speed);
  815. if (speed == 0) {
  816. return; // Do nothing.
  817. }
  818. // Frame count may be changed by animation_finished or frame_changed signals.
  819. int fc = frames->get_frame_count(animation);
  820. int last_frame = fc - 1;
  821. if (!signbit(speed)) {
  822. // Forwards.
  823. if (frame_progress >= 1.0) {
  824. if (frame >= last_frame) {
  825. if (frames->get_animation_loop(animation)) {
  826. frame = 0;
  827. emit_signal("animation_looped");
  828. } else {
  829. frame = last_frame;
  830. pause();
  831. emit_signal(SceneStringNames::get_singleton()->animation_finished);
  832. return;
  833. }
  834. } else {
  835. frame++;
  836. }
  837. _calc_frame_speed_scale();
  838. frame_progress = 0.0;
  839. _queue_redraw();
  840. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  841. }
  842. double to_process = MIN((1.0 - frame_progress) / abs_speed, remaining);
  843. frame_progress += to_process * abs_speed;
  844. remaining -= to_process;
  845. } else {
  846. // Backwards.
  847. if (frame_progress <= 0) {
  848. if (frame <= 0) {
  849. if (frames->get_animation_loop(animation)) {
  850. frame = last_frame;
  851. emit_signal("animation_looped");
  852. } else {
  853. frame = 0;
  854. pause();
  855. emit_signal(SceneStringNames::get_singleton()->animation_finished);
  856. return;
  857. }
  858. } else {
  859. frame--;
  860. }
  861. _calc_frame_speed_scale();
  862. frame_progress = 1.0;
  863. _queue_redraw();
  864. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  865. }
  866. double to_process = MIN(frame_progress / abs_speed, remaining);
  867. frame_progress -= to_process * abs_speed;
  868. remaining -= to_process;
  869. }
  870. i++;
  871. if (i > fc) {
  872. return; // Prevents freezing if to_process is each time much less than remaining.
  873. }
  874. }
  875. } break;
  876. }
  877. }
  878. void AnimatedSprite3D::set_sprite_frames(const Ref<SpriteFrames> &p_frames) {
  879. if (frames == p_frames) {
  880. return;
  881. }
  882. if (frames.is_valid()) {
  883. frames->disconnect(SceneStringNames::get_singleton()->changed, callable_mp(this, &AnimatedSprite3D::_res_changed));
  884. }
  885. stop();
  886. frames = p_frames;
  887. if (frames.is_valid()) {
  888. frames->connect(SceneStringNames::get_singleton()->changed, callable_mp(this, &AnimatedSprite3D::_res_changed));
  889. List<StringName> al;
  890. frames->get_animation_list(&al);
  891. if (al.size() == 0) {
  892. set_animation(StringName());
  893. autoplay = String();
  894. } else {
  895. if (!frames->has_animation(animation)) {
  896. set_animation(al[0]);
  897. }
  898. if (!frames->has_animation(autoplay)) {
  899. autoplay = String();
  900. }
  901. }
  902. }
  903. notify_property_list_changed();
  904. _queue_redraw();
  905. update_configuration_warnings();
  906. emit_signal("sprite_frames_changed");
  907. }
  908. Ref<SpriteFrames> AnimatedSprite3D::get_sprite_frames() const {
  909. return frames;
  910. }
  911. void AnimatedSprite3D::set_frame(int p_frame) {
  912. set_frame_and_progress(p_frame, signbit(get_playing_speed()) ? 1.0 : 0.0);
  913. }
  914. int AnimatedSprite3D::get_frame() const {
  915. return frame;
  916. }
  917. void AnimatedSprite3D::set_frame_progress(real_t p_progress) {
  918. frame_progress = p_progress;
  919. }
  920. real_t AnimatedSprite3D::get_frame_progress() const {
  921. return frame_progress;
  922. }
  923. void AnimatedSprite3D::set_frame_and_progress(int p_frame, real_t p_progress) {
  924. if (frames.is_null()) {
  925. return;
  926. }
  927. bool has_animation = frames->has_animation(animation);
  928. int end_frame = has_animation ? MAX(0, frames->get_frame_count(animation) - 1) : 0;
  929. bool is_changed = frame != p_frame;
  930. if (p_frame < 0) {
  931. frame = 0;
  932. } else if (has_animation && p_frame > end_frame) {
  933. frame = end_frame;
  934. } else {
  935. frame = p_frame;
  936. }
  937. _calc_frame_speed_scale();
  938. frame_progress = p_progress;
  939. if (!is_changed) {
  940. return; // No change, don't redraw.
  941. }
  942. _queue_redraw();
  943. emit_signal(SceneStringNames::get_singleton()->frame_changed);
  944. }
  945. void AnimatedSprite3D::set_speed_scale(float p_speed_scale) {
  946. speed_scale = p_speed_scale;
  947. }
  948. float AnimatedSprite3D::get_speed_scale() const {
  949. return speed_scale;
  950. }
  951. float AnimatedSprite3D::get_playing_speed() const {
  952. if (!playing) {
  953. return 0;
  954. }
  955. return speed_scale * custom_speed_scale;
  956. }
  957. Rect2 AnimatedSprite3D::get_item_rect() const {
  958. if (frames.is_null() || !frames->has_animation(animation)) {
  959. return Rect2(0, 0, 1, 1);
  960. }
  961. if (frame < 0 || frame >= frames->get_frame_count(animation)) {
  962. return Rect2(0, 0, 1, 1);
  963. }
  964. Ref<Texture2D> t;
  965. if (animation) {
  966. t = frames->get_frame_texture(animation, frame);
  967. }
  968. if (t.is_null()) {
  969. return Rect2(0, 0, 1, 1);
  970. }
  971. Size2 s = t->get_size();
  972. Point2 ofs = get_offset();
  973. if (centered) {
  974. ofs -= s / 2;
  975. }
  976. if (s == Size2(0, 0)) {
  977. s = Size2(1, 1);
  978. }
  979. return Rect2(ofs, s);
  980. }
  981. void AnimatedSprite3D::_res_changed() {
  982. set_frame_and_progress(frame, frame_progress);
  983. _queue_redraw();
  984. notify_property_list_changed();
  985. }
  986. bool AnimatedSprite3D::is_playing() const {
  987. return playing;
  988. }
  989. void AnimatedSprite3D::set_autoplay(const String &p_name) {
  990. if (is_inside_tree() && !Engine::get_singleton()->is_editor_hint()) {
  991. WARN_PRINT("Setting autoplay after the node has been added to the scene has no effect.");
  992. }
  993. autoplay = p_name;
  994. }
  995. String AnimatedSprite3D::get_autoplay() const {
  996. return autoplay;
  997. }
  998. void AnimatedSprite3D::play(const StringName &p_name, float p_custom_scale, bool p_from_end) {
  999. StringName name = p_name;
  1000. if (name == StringName()) {
  1001. name = animation;
  1002. }
  1003. ERR_FAIL_COND_MSG(frames == nullptr, vformat("There is no animation with name '%s'.", name));
  1004. ERR_FAIL_COND_MSG(!frames->get_animation_names().has(name), vformat("There is no animation with name '%s'.", name));
  1005. if (frames->get_frame_count(name) == 0) {
  1006. return;
  1007. }
  1008. playing = true;
  1009. custom_speed_scale = p_custom_scale;
  1010. int end_frame = MAX(0, frames->get_frame_count(animation) - 1);
  1011. if (name != animation) {
  1012. animation = name;
  1013. if (p_from_end) {
  1014. set_frame_and_progress(end_frame, 1.0);
  1015. } else {
  1016. set_frame_and_progress(0, 0.0);
  1017. }
  1018. emit_signal("animation_changed");
  1019. } else {
  1020. bool is_backward = signbit(speed_scale * custom_speed_scale);
  1021. if (p_from_end && is_backward && frame == 0 && frame_progress <= 0.0) {
  1022. set_frame_and_progress(end_frame, 1.0);
  1023. } else if (!p_from_end && !is_backward && frame == end_frame && frame_progress >= 1.0) {
  1024. set_frame_and_progress(0, 0.0);
  1025. }
  1026. }
  1027. set_process_internal(true);
  1028. notify_property_list_changed();
  1029. _queue_redraw();
  1030. }
  1031. void AnimatedSprite3D::play_backwards(const StringName &p_name) {
  1032. play(p_name, -1, true);
  1033. }
  1034. void AnimatedSprite3D::_stop_internal(bool p_reset) {
  1035. playing = false;
  1036. if (p_reset) {
  1037. custom_speed_scale = 1.0;
  1038. set_frame_and_progress(0, 0.0);
  1039. }
  1040. notify_property_list_changed();
  1041. set_process_internal(false);
  1042. }
  1043. void AnimatedSprite3D::pause() {
  1044. _stop_internal(false);
  1045. }
  1046. void AnimatedSprite3D::stop() {
  1047. _stop_internal(true);
  1048. }
  1049. double AnimatedSprite3D::_get_frame_duration() {
  1050. if (frames.is_valid() && frames->has_animation(animation)) {
  1051. return frames->get_frame_duration(animation, frame);
  1052. }
  1053. return 1.0;
  1054. }
  1055. void AnimatedSprite3D::_calc_frame_speed_scale() {
  1056. frame_speed_scale = 1.0 / _get_frame_duration();
  1057. }
  1058. void AnimatedSprite3D::set_animation(const StringName &p_name) {
  1059. if (animation == p_name) {
  1060. return;
  1061. }
  1062. animation = p_name;
  1063. emit_signal("animation_changed");
  1064. if (frames == nullptr) {
  1065. animation = StringName();
  1066. stop();
  1067. ERR_FAIL_MSG(vformat("There is no animation with name '%s'.", p_name));
  1068. }
  1069. int frame_count = frames->get_frame_count(animation);
  1070. if (animation == StringName() || frame_count == 0) {
  1071. stop();
  1072. return;
  1073. } else if (!frames->get_animation_names().has(animation)) {
  1074. animation = StringName();
  1075. stop();
  1076. ERR_FAIL_MSG(vformat("There is no animation with name '%s'.", p_name));
  1077. }
  1078. if (signbit(get_playing_speed())) {
  1079. set_frame_and_progress(frame_count - 1, 1.0);
  1080. } else {
  1081. set_frame_and_progress(0, 0.0);
  1082. }
  1083. notify_property_list_changed();
  1084. _queue_redraw();
  1085. }
  1086. StringName AnimatedSprite3D::get_animation() const {
  1087. return animation;
  1088. }
  1089. PackedStringArray AnimatedSprite3D::get_configuration_warnings() const {
  1090. PackedStringArray warnings = SpriteBase3D::get_configuration_warnings();
  1091. if (frames.is_null()) {
  1092. warnings.push_back(RTR("A SpriteFrames resource must be created or set in the \"Frames\" property in order for AnimatedSprite3D to display frames."));
  1093. }
  1094. return warnings;
  1095. }
  1096. void AnimatedSprite3D::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const {
  1097. if (p_idx == 0 && p_function == "play" && frames.is_valid()) {
  1098. List<StringName> al;
  1099. frames->get_animation_list(&al);
  1100. for (const StringName &name : al) {
  1101. r_options->push_back(String(name).quote());
  1102. }
  1103. }
  1104. Node::get_argument_options(p_function, p_idx, r_options);
  1105. }
  1106. #ifndef DISABLE_DEPRECATED
  1107. bool AnimatedSprite3D::_set(const StringName &p_name, const Variant &p_value) {
  1108. if ((p_name == SNAME("frames"))) {
  1109. set_sprite_frames(p_value);
  1110. return true;
  1111. }
  1112. return false;
  1113. }
  1114. #endif
  1115. void AnimatedSprite3D::_bind_methods() {
  1116. ClassDB::bind_method(D_METHOD("set_sprite_frames", "sprite_frames"), &AnimatedSprite3D::set_sprite_frames);
  1117. ClassDB::bind_method(D_METHOD("get_sprite_frames"), &AnimatedSprite3D::get_sprite_frames);
  1118. ClassDB::bind_method(D_METHOD("set_animation", "name"), &AnimatedSprite3D::set_animation);
  1119. ClassDB::bind_method(D_METHOD("get_animation"), &AnimatedSprite3D::get_animation);
  1120. ClassDB::bind_method(D_METHOD("set_autoplay", "name"), &AnimatedSprite3D::set_autoplay);
  1121. ClassDB::bind_method(D_METHOD("get_autoplay"), &AnimatedSprite3D::get_autoplay);
  1122. ClassDB::bind_method(D_METHOD("is_playing"), &AnimatedSprite3D::is_playing);
  1123. ClassDB::bind_method(D_METHOD("play", "name", "custom_speed", "from_end"), &AnimatedSprite3D::play, DEFVAL(StringName()), DEFVAL(1.0), DEFVAL(false));
  1124. ClassDB::bind_method(D_METHOD("play_backwards", "name"), &AnimatedSprite3D::play_backwards, DEFVAL(StringName()));
  1125. ClassDB::bind_method(D_METHOD("pause"), &AnimatedSprite3D::pause);
  1126. ClassDB::bind_method(D_METHOD("stop"), &AnimatedSprite3D::stop);
  1127. ClassDB::bind_method(D_METHOD("set_frame", "frame"), &AnimatedSprite3D::set_frame);
  1128. ClassDB::bind_method(D_METHOD("get_frame"), &AnimatedSprite3D::get_frame);
  1129. ClassDB::bind_method(D_METHOD("set_frame_progress", "progress"), &AnimatedSprite3D::set_frame_progress);
  1130. ClassDB::bind_method(D_METHOD("get_frame_progress"), &AnimatedSprite3D::get_frame_progress);
  1131. ClassDB::bind_method(D_METHOD("set_frame_and_progress", "frame", "progress"), &AnimatedSprite3D::set_frame_and_progress);
  1132. ClassDB::bind_method(D_METHOD("set_speed_scale", "speed_scale"), &AnimatedSprite3D::set_speed_scale);
  1133. ClassDB::bind_method(D_METHOD("get_speed_scale"), &AnimatedSprite3D::get_speed_scale);
  1134. ClassDB::bind_method(D_METHOD("get_playing_speed"), &AnimatedSprite3D::get_playing_speed);
  1135. ClassDB::bind_method(D_METHOD("_res_changed"), &AnimatedSprite3D::_res_changed);
  1136. ADD_SIGNAL(MethodInfo("sprite_frames_changed"));
  1137. ADD_SIGNAL(MethodInfo("animation_changed"));
  1138. ADD_SIGNAL(MethodInfo("frame_changed"));
  1139. ADD_SIGNAL(MethodInfo("animation_looped"));
  1140. ADD_SIGNAL(MethodInfo("animation_finished"));
  1141. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "sprite_frames", PROPERTY_HINT_RESOURCE_TYPE, "SpriteFrames"), "set_sprite_frames", "get_sprite_frames");
  1142. ADD_PROPERTY(PropertyInfo(Variant::STRING_NAME, "animation", PROPERTY_HINT_ENUM, ""), "set_animation", "get_animation");
  1143. ADD_PROPERTY(PropertyInfo(Variant::STRING_NAME, "autoplay", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR), "set_autoplay", "get_autoplay");
  1144. ADD_PROPERTY(PropertyInfo(Variant::INT, "frame"), "set_frame", "get_frame");
  1145. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "frame_progress", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR), "set_frame_progress", "get_frame_progress");
  1146. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "speed_scale"), "set_speed_scale", "get_speed_scale");
  1147. }
  1148. AnimatedSprite3D::AnimatedSprite3D() {
  1149. }