2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* sprite_3d.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:11:42 +00:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2016-06-18 12:46:12 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2014-05-29 13:56:39 +00:00
|
|
|
#include "sprite_3d.h"
|
|
|
|
#include "core_string_names.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/scene_string_names.h"
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
Color SpriteBase3D::_get_color_accum() {
|
|
|
|
|
|
|
|
if (!color_dirty)
|
|
|
|
return color_accum;
|
|
|
|
|
|
|
|
if (parent_sprite)
|
2017-03-05 15:44:50 +00:00
|
|
|
color_accum = parent_sprite->_get_color_accum();
|
2014-05-29 13:56:39 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
color_accum = Color(1, 1, 1, 1);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
color_accum.r *= modulate.r;
|
|
|
|
color_accum.g *= modulate.g;
|
|
|
|
color_accum.b *= modulate.b;
|
|
|
|
color_accum.a *= modulate.a;
|
|
|
|
color_dirty = false;
|
2014-05-29 13:56:39 +00:00
|
|
|
return color_accum;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::_propagate_color_changed() {
|
|
|
|
|
|
|
|
if (color_dirty)
|
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
color_dirty = true;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (List<SpriteBase3D *>::Element *E = children.front(); E; E = E->next()) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
E->get()->_propagate_color_changed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::_notification(int p_what) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_what == NOTIFICATION_ENTER_TREE) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
if (!pending_update)
|
|
|
|
_im_update();
|
|
|
|
|
2017-08-24 20:58:51 +00:00
|
|
|
parent_sprite = Object::cast_to<SpriteBase3D>(get_parent());
|
|
|
|
if (parent_sprite) {
|
|
|
|
pI = parent_sprite->children.push_back(this);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_what == NOTIFICATION_EXIT_TREE) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
if (parent_sprite) {
|
|
|
|
|
|
|
|
parent_sprite->children.erase(pI);
|
2017-03-05 15:44:50 +00:00
|
|
|
pI = NULL;
|
|
|
|
parent_sprite = NULL;
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::set_centered(bool p_center) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
centered = p_center;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SpriteBase3D::is_centered() const {
|
|
|
|
|
|
|
|
return centered;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void SpriteBase3D::set_offset(const Point2 &p_offset) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
offset = p_offset;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
Point2 SpriteBase3D::get_offset() const {
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::set_flip_h(bool p_flip) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
hflip = p_flip;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
bool SpriteBase3D::is_flipped_h() const {
|
|
|
|
|
|
|
|
return hflip;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::set_flip_v(bool p_flip) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
vflip = p_flip;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
bool SpriteBase3D::is_flipped_v() const {
|
|
|
|
|
|
|
|
return vflip;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void SpriteBase3D::set_modulate(const Color &p_color) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
modulate = p_color;
|
2014-05-29 13:56:39 +00:00
|
|
|
_propagate_color_changed();
|
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Color SpriteBase3D::get_modulate() const {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
return modulate;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::set_pixel_size(float p_amount) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
pixel_size = p_amount;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
float SpriteBase3D::get_pixel_size() const {
|
|
|
|
|
|
|
|
return pixel_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::set_opacity(float p_amount) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
opacity = p_amount;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
float SpriteBase3D::get_opacity() const {
|
|
|
|
|
|
|
|
return opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::set_axis(Vector3::Axis p_axis) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
axis = p_axis;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
Vector3::Axis SpriteBase3D::get_axis() const {
|
|
|
|
|
|
|
|
return axis;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::_im_update() {
|
|
|
|
|
|
|
|
_draw();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
pending_update = false;
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
//texture->draw_rect_region(ci,dst_rect,src_rect,modulate);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void SpriteBase3D::_queue_update() {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (pending_update)
|
2014-05-29 13:56:39 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
pending_update = true;
|
2014-05-29 13:56:39 +00:00
|
|
|
call_deferred(SceneStringNames::get_singleton()->_im_update);
|
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Rect3 SpriteBase3D::get_aabb() const {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
return aabb;
|
|
|
|
}
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<Face3> SpriteBase3D::get_faces(uint32_t p_usage_flags) const {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
return PoolVector<Face3>();
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void SpriteBase3D::set_draw_flag(DrawFlags p_flag, bool p_enable) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_INDEX(p_flag, FLAG_MAX);
|
|
|
|
flags[p_flag] = p_enable;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool SpriteBase3D::get_draw_flag(DrawFlags p_flag) const {
|
|
|
|
ERR_FAIL_INDEX_V(p_flag, FLAG_MAX, false);
|
2014-05-29 13:56:39 +00:00
|
|
|
return flags[p_flag];
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void SpriteBase3D::set_alpha_cut_mode(AlphaCutMode p_mode) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_INDEX(p_mode, 3);
|
|
|
|
alpha_cut = p_mode;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
SpriteBase3D::AlphaCutMode SpriteBase3D::get_alpha_cut_mode() const {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
return alpha_cut;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteBase3D::_bind_methods() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_centered", "centered"), &SpriteBase3D::set_centered);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_centered"), &SpriteBase3D::is_centered);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_offset", "offset"), &SpriteBase3D::set_offset);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_offset"), &SpriteBase3D::get_offset);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_flip_h", "flip_h"), &SpriteBase3D::set_flip_h);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_flipped_h"), &SpriteBase3D::is_flipped_h);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_flip_v", "flip_v"), &SpriteBase3D::set_flip_v);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_flipped_v"), &SpriteBase3D::is_flipped_v);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_modulate", "modulate"), &SpriteBase3D::set_modulate);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_modulate"), &SpriteBase3D::get_modulate);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_opacity", "opacity"), &SpriteBase3D::set_opacity);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_opacity"), &SpriteBase3D::get_opacity);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_pixel_size", "pixel_size"), &SpriteBase3D::set_pixel_size);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_pixel_size"), &SpriteBase3D::get_pixel_size);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_axis", "axis"), &SpriteBase3D::set_axis);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_axis"), &SpriteBase3D::get_axis);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_draw_flag", "flag", "enabled"), &SpriteBase3D::set_draw_flag);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_draw_flag", "flag"), &SpriteBase3D::get_draw_flag);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_alpha_cut_mode", "mode"), &SpriteBase3D::set_alpha_cut_mode);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_alpha_cut_mode"), &SpriteBase3D::get_alpha_cut_mode);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("get_item_rect"), &SpriteBase3D::get_item_rect);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_queue_update"), &SpriteBase3D::_queue_update);
|
|
|
|
ClassDB::bind_method(D_METHOD("_im_update"), &SpriteBase3D::_im_update);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "centered"), "set_centered", "is_centered");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_h"), "set_flip_h", "is_flipped_h");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "flip_v"), "set_flip_v", "is_flipped_v");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "modulate"), "set_modulate", "get_modulate");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "opacity", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_opacity", "get_opacity");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "pixel_size", PROPERTY_HINT_RANGE, "0.0001,128,0.0001"), "set_pixel_size", "get_pixel_size");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "axis", PROPERTY_HINT_ENUM, "X-Axis,Y-Axis,Z-Axis"), "set_axis", "get_axis");
|
|
|
|
ADD_GROUP("Flags", "");
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "transparent"), "set_draw_flag", "get_draw_flag", FLAG_TRANSPARENT);
|
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "shaded"), "set_draw_flag", "get_draw_flag", FLAG_SHADED);
|
2017-04-17 01:32:51 +00:00
|
|
|
ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "double_sided"), "set_draw_flag", "get_draw_flag", FLAG_DOUBLE_SIDED);
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "alpha_cut", PROPERTY_HINT_ENUM, "Disabled,Discard,Opaque Pre-Pass"), "set_alpha_cut_mode", "get_alpha_cut_mode");
|
2014-12-07 05:04:20 +00:00
|
|
|
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(FLAG_TRANSPARENT);
|
|
|
|
BIND_ENUM_CONSTANT(FLAG_SHADED);
|
|
|
|
BIND_ENUM_CONSTANT(FLAG_DOUBLE_SIDED);
|
|
|
|
BIND_ENUM_CONSTANT(FLAG_MAX);
|
|
|
|
|
|
|
|
BIND_ENUM_CONSTANT(ALPHA_CUT_DISABLED);
|
|
|
|
BIND_ENUM_CONSTANT(ALPHA_CUT_DISCARD);
|
|
|
|
BIND_ENUM_CONSTANT(ALPHA_CUT_OPAQUE_PREPASS);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SpriteBase3D::SpriteBase3D() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
color_dirty = true;
|
|
|
|
centered = true;
|
|
|
|
hflip = false;
|
|
|
|
vflip = false;
|
|
|
|
parent_sprite = NULL;
|
|
|
|
pI = NULL;
|
|
|
|
|
|
|
|
for (int i = 0; i < FLAG_MAX; i++)
|
2017-04-17 01:32:51 +00:00
|
|
|
flags[i] = i == FLAG_TRANSPARENT || i == FLAG_DOUBLE_SIDED;
|
2017-03-05 15:44:50 +00:00
|
|
|
|
|
|
|
axis = Vector3::AXIS_Z;
|
|
|
|
pixel_size = 0.01;
|
|
|
|
modulate = Color(1, 1, 1, 1);
|
|
|
|
pending_update = false;
|
|
|
|
opacity = 1.0;
|
2014-05-29 13:56:39 +00:00
|
|
|
immediate = VisualServer::get_singleton()->immediate_create();
|
|
|
|
set_base(immediate);
|
|
|
|
}
|
|
|
|
|
|
|
|
SpriteBase3D::~SpriteBase3D() {
|
|
|
|
|
|
|
|
VisualServer::get_singleton()->free(immediate);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////
|
|
|
|
|
|
|
|
void Sprite3D::_draw() {
|
|
|
|
|
|
|
|
RID immediate = get_immediate();
|
|
|
|
|
|
|
|
VS::get_singleton()->immediate_clear(immediate);
|
|
|
|
if (!texture.is_valid())
|
|
|
|
return; //no texuture no life
|
|
|
|
Vector2 tsize = texture->get_size();
|
2017-03-05 15:44:50 +00:00
|
|
|
if (tsize.x == 0 || tsize.y == 0)
|
2014-05-29 13:56:39 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
Size2i s;
|
|
|
|
Rect2i src_rect;
|
|
|
|
|
|
|
|
if (region) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
s = region_rect.size;
|
|
|
|
src_rect = region_rect;
|
2014-05-29 13:56:39 +00:00
|
|
|
} else {
|
|
|
|
s = texture->get_size();
|
2017-03-05 15:44:50 +00:00
|
|
|
s = s / Size2i(hframes, vframes);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
src_rect.size = s;
|
2017-06-03 22:25:13 +00:00
|
|
|
src_rect.position.x += (frame % hframes) * s.x;
|
|
|
|
src_rect.position.y += (frame / hframes) * s.y;
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Point2i ofs = get_offset();
|
2014-05-29 13:56:39 +00:00
|
|
|
if (is_centered())
|
2017-03-05 15:44:50 +00:00
|
|
|
ofs -= s / 2;
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Rect2i dst_rect(ofs, s);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
Rect2 final_rect;
|
|
|
|
Rect2 final_src_rect;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (!texture->get_rect_region(dst_rect, src_rect, final_rect, final_src_rect))
|
2014-05-29 13:56:39 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (final_rect.size.x == 0 || final_rect.size.y == 0)
|
2014-05-29 13:56:39 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Color color = _get_color_accum();
|
|
|
|
color.a *= get_opacity();
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
float pixel_size = get_pixel_size();
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2 vertices[4] = {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-06-03 22:25:13 +00:00
|
|
|
(final_rect.position + Vector2(0, final_rect.size.y)) * pixel_size,
|
|
|
|
(final_rect.position + final_rect.size) * pixel_size,
|
|
|
|
(final_rect.position + Vector2(final_rect.size.x, 0)) * pixel_size,
|
|
|
|
final_rect.position * pixel_size,
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
};
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2 uvs[4] = {
|
2017-06-03 22:25:13 +00:00
|
|
|
final_src_rect.position / tsize,
|
|
|
|
(final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / tsize,
|
|
|
|
(final_src_rect.position + final_src_rect.size) / tsize,
|
|
|
|
(final_src_rect.position + Vector2(0, final_src_rect.size.y)) / tsize,
|
2014-05-29 13:56:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (is_flipped_h()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
SWAP(uvs[0], uvs[1]);
|
|
|
|
SWAP(uvs[2], uvs[3]);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
if (is_flipped_v()) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
SWAP(uvs[0], uvs[3]);
|
|
|
|
SWAP(uvs[1], uvs[2]);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 normal;
|
|
|
|
int axis = get_axis();
|
2017-03-05 15:44:50 +00:00
|
|
|
normal[axis] = 1.0;
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-08-08 20:23:44 +00:00
|
|
|
RID mat = SpatialMaterial::get_material_rid_for_2d(get_draw_flag(FLAG_SHADED), get_draw_flag(FLAG_TRANSPARENT), get_draw_flag(FLAG_DOUBLE_SIDED), get_alpha_cut_mode() == ALPHA_CUT_DISCARD, get_alpha_cut_mode() == ALPHA_CUT_OPAQUE_PREPASS);
|
2017-03-05 15:44:50 +00:00
|
|
|
VS::get_singleton()->immediate_set_material(immediate, mat);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VS::get_singleton()->immediate_begin(immediate, VS::PRIMITIVE_TRIANGLE_FAN, texture->get_rid());
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
int x_axis = ((axis + 1) % 3);
|
|
|
|
int y_axis = ((axis + 2) % 3);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (axis != Vector3::AXIS_Z) {
|
|
|
|
SWAP(x_axis, y_axis);
|
2014-09-21 04:43:42 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2014-09-21 04:43:42 +00:00
|
|
|
//uvs[i] = Vector2(1.0,1.0)-uvs[i];
|
|
|
|
//SWAP(vertices[i].x,vertices[i].y);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (axis == Vector3::AXIS_Y) {
|
|
|
|
vertices[i].y = -vertices[i].y;
|
|
|
|
} else if (axis == Vector3::AXIS_X) {
|
|
|
|
vertices[i].x = -vertices[i].x;
|
2014-09-21 04:43:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Rect3 aabb;
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
VS::get_singleton()->immediate_normal(immediate, normal);
|
|
|
|
VS::get_singleton()->immediate_color(immediate, color);
|
|
|
|
VS::get_singleton()->immediate_uv(immediate, uvs[i]);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
Vector3 vtx;
|
2017-03-05 15:44:50 +00:00
|
|
|
vtx[x_axis] = vertices[i][0];
|
|
|
|
vtx[y_axis] = vertices[i][1];
|
|
|
|
VS::get_singleton()->immediate_vertex(immediate, vtx);
|
|
|
|
if (i == 0) {
|
2017-06-06 18:33:51 +00:00
|
|
|
aabb.position = vtx;
|
2017-03-05 15:44:50 +00:00
|
|
|
aabb.size = Vector3();
|
2014-05-29 13:56:39 +00:00
|
|
|
} else {
|
|
|
|
aabb.expand_to(vtx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set_aabb(aabb);
|
|
|
|
VS::get_singleton()->immediate_end(immediate);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Sprite3D::set_texture(const Ref<Texture> &p_texture) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_texture == texture)
|
2014-05-29 13:56:39 +00:00
|
|
|
return;
|
|
|
|
if (texture.is_valid()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
texture->disconnect(CoreStringNames::get_singleton()->changed, this, SceneStringNames::get_singleton()->_queue_update);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
texture = p_texture;
|
2014-05-29 13:56:39 +00:00
|
|
|
if (texture.is_valid()) {
|
|
|
|
texture->set_flags(texture->get_flags()); //remove repeat from texture, it looks bad in sprites
|
2017-03-05 15:44:50 +00:00
|
|
|
texture->connect(CoreStringNames::get_singleton()->changed, this, SceneStringNames::get_singleton()->_queue_update);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<Texture> Sprite3D::get_texture() const {
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite3D::set_region(bool p_region) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_region == region)
|
2014-05-29 13:56:39 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
region = p_region;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool Sprite3D::is_region() const {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Sprite3D::set_region_rect(const Rect2 &p_region_rect) {
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool changed = region_rect != p_region_rect;
|
|
|
|
region_rect = p_region_rect;
|
2014-05-29 13:56:39 +00:00
|
|
|
if (region && changed) {
|
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect2 Sprite3D::get_region_rect() const {
|
|
|
|
|
|
|
|
return region_rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite3D::set_frame(int p_frame) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_INDEX(p_frame, vframes * hframes);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
if (frame != p_frame)
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
frame = p_frame;
|
2014-06-11 13:41:03 +00:00
|
|
|
_queue_update();
|
2015-01-02 16:08:28 +00:00
|
|
|
emit_signal(SceneStringNames::get_singleton()->frame_changed);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int Sprite3D::get_frame() const {
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite3D::set_vframes(int p_amount) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND(p_amount < 1);
|
|
|
|
vframes = p_amount;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
2017-08-05 19:19:36 +00:00
|
|
|
_change_notify();
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
int Sprite3D::get_vframes() const {
|
|
|
|
|
|
|
|
return vframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite3D::set_hframes(int p_amount) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND(p_amount < 1);
|
|
|
|
hframes = p_amount;
|
2014-05-29 13:56:39 +00:00
|
|
|
_queue_update();
|
2017-08-05 19:19:36 +00:00
|
|
|
_change_notify();
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
int Sprite3D::get_hframes() const {
|
|
|
|
|
|
|
|
return hframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect2 Sprite3D::get_item_rect() const {
|
|
|
|
|
|
|
|
if (texture.is_null())
|
2017-03-05 15:44:50 +00:00
|
|
|
return Rect2(0, 0, 1, 1);
|
2017-01-14 11:26:56 +00:00
|
|
|
/*
|
|
|
|
if (texture.is_null())
|
|
|
|
return CanvasItem::get_item_rect();
|
|
|
|
*/
|
2014-05-29 13:56:39 +00:00
|
|
|
|
|
|
|
Size2i s;
|
|
|
|
|
|
|
|
if (region) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
s = region_rect.size;
|
2014-05-29 13:56:39 +00:00
|
|
|
} else {
|
|
|
|
s = texture->get_size();
|
2017-03-05 15:44:50 +00:00
|
|
|
s = s / Point2(hframes, vframes);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Point2i ofs = get_offset();
|
2014-05-29 13:56:39 +00:00
|
|
|
if (is_centered())
|
2017-03-05 15:44:50 +00:00
|
|
|
ofs -= s / 2;
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (s == Size2(0, 0))
|
|
|
|
s = Size2(1, 1);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Rect2(ofs, s);
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void Sprite3D::_validate_property(PropertyInfo &property) const {
|
2016-07-07 02:46:04 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (property.name == "frame") {
|
2016-07-07 02:46:04 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint = PROPERTY_HINT_SPRITE_FRAME;
|
2016-07-07 02:46:04 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint_string = "0," + itos(vframes * hframes - 1) + ",1";
|
2016-07-07 02:46:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-29 13:56:39 +00:00
|
|
|
void Sprite3D::_bind_methods() {
|
|
|
|
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_texture", "texture"), &Sprite3D::set_texture);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_texture"), &Sprite3D::get_texture);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_region", "enabled"), &Sprite3D::set_region);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_region"), &Sprite3D::is_region);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_region_rect", "rect"), &Sprite3D::set_region_rect);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_region_rect"), &Sprite3D::get_region_rect);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_frame", "frame"), &Sprite3D::set_frame);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_frame"), &Sprite3D::get_frame);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_vframes", "vframes"), &Sprite3D::set_vframes);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_vframes"), &Sprite3D::get_vframes);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_hframes", "hframes"), &Sprite3D::set_hframes);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_hframes"), &Sprite3D::get_hframes);
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_texture", "get_texture");
|
2017-06-25 21:57:28 +00:00
|
|
|
ADD_GROUP("Animation", "");
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "vframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_vframes", "get_vframes");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "hframes", PROPERTY_HINT_RANGE, "1,16384,1"), "set_hframes", "get_hframes");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "frame", PROPERTY_HINT_SPRITE_FRAME), "set_frame", "get_frame");
|
2017-06-25 21:57:28 +00:00
|
|
|
ADD_GROUP("Region", "region_");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "region_enabled"), "set_region", "is_region");
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::RECT2, "region_rect"), "set_region_rect", "get_region_rect");
|
2014-05-29 13:56:39 +00:00
|
|
|
|
2014-12-07 05:04:20 +00:00
|
|
|
ADD_SIGNAL(MethodInfo("frame_changed"));
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Sprite3D::Sprite3D() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
region = false;
|
|
|
|
frame = 0;
|
|
|
|
vframes = 1;
|
|
|
|
hframes = 1;
|
2014-05-29 13:56:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////
|
|
|
|
|
2016-06-08 21:03:06 +00:00
|
|
|
void AnimatedSprite3D::_draw() {
|
|
|
|
|
|
|
|
RID immediate = get_immediate();
|
|
|
|
VS::get_singleton()->immediate_clear(immediate);
|
|
|
|
|
|
|
|
if (frames.is_null()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (frame < 0) {
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!frames->has_animation(animation)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Ref<Texture> texture = frames->get_frame(animation, frame);
|
2016-06-08 21:03:06 +00:00
|
|
|
if (!texture.is_valid())
|
|
|
|
return; //no texuture no life
|
|
|
|
Vector2 tsize = texture->get_size();
|
2017-03-05 15:44:50 +00:00
|
|
|
if (tsize.x == 0 || tsize.y == 0)
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Size2i s = tsize;
|
2016-06-08 21:03:06 +00:00
|
|
|
Rect2i src_rect;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
src_rect.size = s;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Point2i ofs = get_offset();
|
2016-06-08 21:03:06 +00:00
|
|
|
if (is_centered())
|
2017-03-05 15:44:50 +00:00
|
|
|
ofs -= s / 2;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Rect2i dst_rect(ofs, s);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
Rect2 final_rect;
|
|
|
|
Rect2 final_src_rect;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (!texture->get_rect_region(dst_rect, src_rect, final_rect, final_src_rect))
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (final_rect.size.x == 0 || final_rect.size.y == 0)
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Color color = _get_color_accum();
|
|
|
|
color.a *= get_opacity();
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
float pixel_size = get_pixel_size();
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2 vertices[4] = {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-06-03 22:25:13 +00:00
|
|
|
(final_rect.position + Vector2(0, final_rect.size.y)) * pixel_size,
|
|
|
|
(final_rect.position + final_rect.size) * pixel_size,
|
|
|
|
(final_rect.position + Vector2(final_rect.size.x, 0)) * pixel_size,
|
|
|
|
final_rect.position * pixel_size,
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
};
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector2 uvs[4] = {
|
2017-06-03 22:25:13 +00:00
|
|
|
final_src_rect.position / tsize,
|
|
|
|
(final_src_rect.position + Vector2(final_src_rect.size.x, 0)) / tsize,
|
|
|
|
(final_src_rect.position + final_src_rect.size) / tsize,
|
|
|
|
(final_src_rect.position + Vector2(0, final_src_rect.size.y)) / tsize,
|
2016-06-08 21:03:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (is_flipped_h()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
SWAP(uvs[0], uvs[1]);
|
|
|
|
SWAP(uvs[2], uvs[3]);
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
if (is_flipped_v()) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
SWAP(uvs[0], uvs[3]);
|
|
|
|
SWAP(uvs[1], uvs[2]);
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 normal;
|
|
|
|
int axis = get_axis();
|
2017-03-05 15:44:50 +00:00
|
|
|
normal[axis] = 1.0;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-08-08 20:23:44 +00:00
|
|
|
RID mat = SpatialMaterial::get_material_rid_for_2d(get_draw_flag(FLAG_SHADED), get_draw_flag(FLAG_TRANSPARENT), get_draw_flag(FLAG_DOUBLE_SIDED), get_alpha_cut_mode() == ALPHA_CUT_DISCARD, get_alpha_cut_mode() == ALPHA_CUT_OPAQUE_PREPASS);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VS::get_singleton()->immediate_set_material(immediate, mat);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
VS::get_singleton()->immediate_begin(immediate, VS::PRIMITIVE_TRIANGLE_FAN, texture->get_rid());
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
int x_axis = ((axis + 1) % 3);
|
|
|
|
int y_axis = ((axis + 2) % 3);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (axis != Vector3::AXIS_Z) {
|
|
|
|
SWAP(x_axis, y_axis);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2016-06-08 21:03:06 +00:00
|
|
|
//uvs[i] = Vector2(1.0,1.0)-uvs[i];
|
|
|
|
//SWAP(vertices[i].x,vertices[i].y);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (axis == Vector3::AXIS_Y) {
|
|
|
|
vertices[i].y = -vertices[i].y;
|
|
|
|
} else if (axis == Vector3::AXIS_X) {
|
|
|
|
vertices[i].x = -vertices[i].x;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Rect3 aabb;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
VS::get_singleton()->immediate_normal(immediate, normal);
|
|
|
|
VS::get_singleton()->immediate_color(immediate, color);
|
|
|
|
VS::get_singleton()->immediate_uv(immediate, uvs[i]);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
Vector3 vtx;
|
2017-03-05 15:44:50 +00:00
|
|
|
vtx[x_axis] = vertices[i][0];
|
|
|
|
vtx[y_axis] = vertices[i][1];
|
|
|
|
VS::get_singleton()->immediate_vertex(immediate, vtx);
|
|
|
|
if (i == 0) {
|
2017-06-06 18:33:51 +00:00
|
|
|
aabb.position = vtx;
|
2017-03-05 15:44:50 +00:00
|
|
|
aabb.size = Vector3();
|
2016-06-08 21:03:06 +00:00
|
|
|
} else {
|
|
|
|
aabb.expand_to(vtx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set_aabb(aabb);
|
|
|
|
VS::get_singleton()->immediate_end(immediate);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void AnimatedSprite3D::_validate_property(PropertyInfo &property) const {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
if (!frames.is_valid())
|
|
|
|
return;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (property.name == "animation") {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint = PROPERTY_HINT_ENUM;
|
2016-06-08 21:03:06 +00:00
|
|
|
List<StringName> names;
|
|
|
|
frames->get_animation_list(&names);
|
|
|
|
names.sort_custom<StringName::AlphCompare>();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool current_found = false;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
|
2016-06-08 21:03:06 +00:00
|
|
|
if (E->prev()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint_string += ",";
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint_string += String(E->get());
|
|
|
|
if (animation == E->get()) {
|
|
|
|
current_found = true;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!current_found) {
|
2017-03-05 15:44:50 +00:00
|
|
|
if (property.hint_string == String()) {
|
|
|
|
property.hint_string = String(animation);
|
2016-06-08 21:03:06 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint_string = String(animation) + "," + property.hint_string;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (property.name == "frame") {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint = PROPERTY_HINT_RANGE;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
if (frames->has_animation(animation)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint_string = "0," + itos(frames->get_frame_count(animation) - 1) + ",1";
|
2016-06-08 21:03:06 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
property.hint_string = "0,0,0";
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::_notification(int p_what) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
switch (p_what) {
|
2017-01-10 21:02:19 +00:00
|
|
|
case NOTIFICATION_INTERNAL_PROCESS: {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
if (frames.is_null())
|
|
|
|
return;
|
|
|
|
if (!frames->has_animation(animation))
|
|
|
|
return;
|
2017-03-05 15:44:50 +00:00
|
|
|
if (frame < 0)
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
float speed = frames->get_animation_speed(animation);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (speed == 0)
|
2016-06-08 21:03:06 +00:00
|
|
|
return; //do nothing
|
|
|
|
|
|
|
|
float remaining = get_process_delta_time();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (remaining) {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (timeout <= 0) {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
timeout = 1.0 / speed;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
int fc = frames->get_frame_count(animation);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (frame >= fc - 1) {
|
2016-06-08 21:03:06 +00:00
|
|
|
if (frames->get_animation_loop(animation)) {
|
2017-03-05 15:44:50 +00:00
|
|
|
frame = 0;
|
2016-06-08 21:03:06 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
frame = fc - 1;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
frame++;
|
|
|
|
}
|
|
|
|
|
|
|
|
_queue_update();
|
|
|
|
_change_notify("frame");
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
float to_process = MIN(timeout, remaining);
|
|
|
|
remaining -= to_process;
|
|
|
|
timeout -= to_process;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::set_sprite_frames(const Ref<SpriteFrames> &p_frames) {
|
|
|
|
|
|
|
|
if (frames.is_valid())
|
2017-03-05 15:44:50 +00:00
|
|
|
frames->disconnect("changed", this, "_res_changed");
|
|
|
|
frames = p_frames;
|
2016-06-08 21:03:06 +00:00
|
|
|
if (frames.is_valid())
|
2017-03-05 15:44:50 +00:00
|
|
|
frames->connect("changed", this, "_res_changed");
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
if (!frames.is_valid()) {
|
2017-03-05 15:44:50 +00:00
|
|
|
frame = 0;
|
2016-06-08 21:03:06 +00:00
|
|
|
} else {
|
|
|
|
set_frame(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
_change_notify();
|
|
|
|
_reset_timeout();
|
|
|
|
_queue_update();
|
|
|
|
update_configuration_warning();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<SpriteFrames> AnimatedSprite3D::get_sprite_frames() const {
|
|
|
|
|
|
|
|
return frames;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::set_frame(int p_frame) {
|
|
|
|
|
|
|
|
if (!frames.is_valid()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frames->has_animation(animation)) {
|
|
|
|
int limit = frames->get_frame_count(animation);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_frame >= limit)
|
|
|
|
p_frame = limit - 1;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (p_frame < 0)
|
|
|
|
p_frame = 0;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (frame == p_frame)
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
frame = p_frame;
|
2016-06-08 21:03:06 +00:00
|
|
|
_reset_timeout();
|
2017-01-14 17:03:38 +00:00
|
|
|
_queue_update();
|
2016-06-08 21:03:06 +00:00
|
|
|
_change_notify("frame");
|
|
|
|
emit_signal(SceneStringNames::get_singleton()->frame_changed);
|
|
|
|
}
|
|
|
|
int AnimatedSprite3D::get_frame() const {
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect2 AnimatedSprite3D::get_item_rect() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (!frames.is_valid() || !frames->has_animation(animation) || frame < 0 || frame >= frames->get_frame_count(animation)) {
|
|
|
|
return Rect2(0, 0, 1, 1);
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ref<Texture> t;
|
|
|
|
if (animation)
|
2017-03-05 15:44:50 +00:00
|
|
|
t = frames->get_frame(animation, frame);
|
2016-06-08 21:03:06 +00:00
|
|
|
if (t.is_null())
|
2017-03-05 15:44:50 +00:00
|
|
|
return Rect2(0, 0, 1, 1);
|
2016-06-08 21:03:06 +00:00
|
|
|
Size2i s = t->get_size();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Point2 ofs = offset;
|
2016-06-08 21:03:06 +00:00
|
|
|
if (centered)
|
2017-03-05 15:44:50 +00:00
|
|
|
ofs -= s / 2;
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (s == Size2(0, 0))
|
|
|
|
s = Size2(1, 1);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Rect2(ofs, s);
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::_res_changed() {
|
|
|
|
|
|
|
|
set_frame(frame);
|
|
|
|
_change_notify("frame");
|
|
|
|
_change_notify("animation");
|
|
|
|
_queue_update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::_set_playing(bool p_playing) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (playing == p_playing)
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
2017-03-05 15:44:50 +00:00
|
|
|
playing = p_playing;
|
2016-06-08 21:03:06 +00:00
|
|
|
_reset_timeout();
|
2017-01-10 21:02:19 +00:00
|
|
|
set_process_internal(playing);
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AnimatedSprite3D::_is_playing() const {
|
|
|
|
|
|
|
|
return playing;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void AnimatedSprite3D::play(const StringName &p_animation) {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
if (p_animation)
|
|
|
|
set_animation(p_animation);
|
|
|
|
_set_playing(true);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void AnimatedSprite3D::stop() {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
_set_playing(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AnimatedSprite3D::is_playing() const {
|
|
|
|
|
|
|
|
return is_processing();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::_reset_timeout() {
|
|
|
|
|
|
|
|
if (!playing)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (frames.is_valid() && frames->has_animation(animation)) {
|
|
|
|
float speed = frames->get_animation_speed(animation);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (speed > 0) {
|
|
|
|
timeout = 1.0 / speed;
|
2016-06-08 21:03:06 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
timeout = 0;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
timeout = 0;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void AnimatedSprite3D::set_animation(const StringName &p_animation) {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (animation == p_animation)
|
2016-06-08 21:03:06 +00:00
|
|
|
return;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
animation = p_animation;
|
2016-06-08 21:03:06 +00:00
|
|
|
_reset_timeout();
|
|
|
|
set_frame(0);
|
|
|
|
_change_notify();
|
2017-01-14 17:03:38 +00:00
|
|
|
_queue_update();
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
StringName AnimatedSprite3D::get_animation() const {
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
return animation;
|
|
|
|
}
|
|
|
|
|
|
|
|
String AnimatedSprite3D::get_configuration_warning() const {
|
|
|
|
|
|
|
|
if (frames.is_null()) {
|
|
|
|
return TTR("A SpriteFrames resource must be created or set in the 'Frames' property in order for AnimatedSprite3D to display frames.");
|
|
|
|
}
|
|
|
|
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimatedSprite3D::_bind_methods() {
|
|
|
|
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_sprite_frames", "sprite_frames"), &AnimatedSprite3D::set_sprite_frames);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_sprite_frames"), &AnimatedSprite3D::get_sprite_frames);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_animation", "animation"), &AnimatedSprite3D::set_animation);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_animation"), &AnimatedSprite3D::get_animation);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_set_playing", "playing"), &AnimatedSprite3D::_set_playing);
|
|
|
|
ClassDB::bind_method(D_METHOD("_is_playing"), &AnimatedSprite3D::_is_playing);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("play", "anim"), &AnimatedSprite3D::play, DEFVAL(StringName()));
|
|
|
|
ClassDB::bind_method(D_METHOD("stop"), &AnimatedSprite3D::stop);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_playing"), &AnimatedSprite3D::is_playing);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_frame", "frame"), &AnimatedSprite3D::set_frame);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_frame"), &AnimatedSprite3D::get_frame);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("_res_changed"), &AnimatedSprite3D::_res_changed);
|
2016-06-08 21:03:06 +00:00
|
|
|
|
|
|
|
ADD_SIGNAL(MethodInfo("frame_changed"));
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "frames", PROPERTY_HINT_RESOURCE_TYPE, "SpriteFrames"), "set_sprite_frames", "get_sprite_frames");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::STRING, "animation"), "set_animation", "get_animation");
|
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::INT, "frame", PROPERTY_HINT_SPRITE_FRAME), "set_frame", "get_frame");
|
|
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::BOOL, "playing"), "_set_playing", "_is_playing");
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AnimatedSprite3D::AnimatedSprite3D() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
frame = 0;
|
|
|
|
playing = false;
|
|
|
|
animation = "default";
|
|
|
|
timeout = 0;
|
2016-06-08 21:03:06 +00:00
|
|
|
}
|