2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* sprite.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2014-02-10 02:10:30 +01: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "sprite.h"
|
|
|
|
#include "core/core_string_names.h"
|
|
|
|
#include "scene/scene_string_names.h"
|
2014-04-10 05:18:27 +02:00
|
|
|
#include "scene/main/viewport.h"
|
2015-10-13 20:53:34 +02:00
|
|
|
#include "os/os.h"
|
2014-04-10 05:18:27 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void Sprite::edit_set_pivot(const Point2& p_pivot) {
|
|
|
|
|
|
|
|
set_offset(p_pivot);
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Point2 Sprite::edit_get_pivot() const {
|
|
|
|
|
|
|
|
return get_offset();
|
|
|
|
}
|
|
|
|
bool Sprite::edit_has_pivot() const {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::_notification(int p_what) {
|
|
|
|
|
|
|
|
switch(p_what) {
|
|
|
|
|
|
|
|
case NOTIFICATION_DRAW: {
|
|
|
|
|
|
|
|
if (texture.is_null())
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RID ci = get_canvas_item();
|
|
|
|
|
|
|
|
/*
|
|
|
|
texture->draw(ci,Point2());
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
|
2014-10-10 04:34:27 +02:00
|
|
|
Size2 s;
|
|
|
|
Rect2 src_rect;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (region) {
|
|
|
|
|
|
|
|
s=region_rect.size;
|
|
|
|
src_rect=region_rect;
|
|
|
|
} else {
|
2014-10-10 04:34:27 +02:00
|
|
|
s = Size2(texture->get_size());
|
|
|
|
s=s/Size2(hframes,vframes);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
src_rect.size=s;
|
2014-10-10 04:34:27 +02:00
|
|
|
src_rect.pos.x+=float(frame%hframes)*s.x;
|
|
|
|
src_rect.pos.y+=float(frame/hframes)*s.y;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-06-12 18:53:18 +02:00
|
|
|
Point2 ofs=offset;
|
2014-02-10 02:10:30 +01:00
|
|
|
if (centered)
|
|
|
|
ofs-=s/2;
|
2017-01-13 16:51:14 +01:00
|
|
|
if (Engine::get_singleton()->get_use_pixel_snap()) {
|
2015-10-13 20:53:34 +02:00
|
|
|
ofs=ofs.floor();
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-10-10 04:34:27 +02:00
|
|
|
Rect2 dst_rect(ofs,s);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
if (hflip)
|
|
|
|
dst_rect.size.x=-dst_rect.size.x;
|
|
|
|
if (vflip)
|
|
|
|
dst_rect.size.y=-dst_rect.size.y;
|
|
|
|
|
2017-01-08 16:31:14 +01:00
|
|
|
texture->draw_rect_region(ci,dst_rect,src_rect);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_texture(const Ref<Texture>& p_texture) {
|
|
|
|
|
|
|
|
if (p_texture==texture)
|
|
|
|
return;
|
2015-06-29 05:29:49 +02:00
|
|
|
#ifdef DEBUG_ENABLED
|
2014-02-10 02:10:30 +01:00
|
|
|
if (texture.is_valid()) {
|
|
|
|
texture->disconnect(CoreStringNames::get_singleton()->changed,this,SceneStringNames::get_singleton()->update);
|
|
|
|
}
|
2015-06-29 05:29:49 +02:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
texture=p_texture;
|
2015-06-29 05:29:49 +02:00
|
|
|
#ifdef DEBUG_ENABLED
|
2014-02-10 02:10:30 +01:00
|
|
|
if (texture.is_valid()) {
|
2014-02-19 15:57:14 +01:00
|
|
|
texture->set_flags(texture->get_flags()); //remove repeat from texture, it looks bad in sprites
|
2014-02-10 02:10:30 +01:00
|
|
|
texture->connect(CoreStringNames::get_singleton()->changed,this,SceneStringNames::get_singleton()->update);
|
|
|
|
}
|
2015-06-29 05:29:49 +02:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
update();
|
2016-06-20 03:16:41 +02:00
|
|
|
emit_signal("texture_changed");
|
2014-02-10 02:10:30 +01:00
|
|
|
item_rect_changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<Texture> Sprite::get_texture() const {
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_centered(bool p_center) {
|
|
|
|
|
|
|
|
centered=p_center;
|
|
|
|
update();
|
|
|
|
item_rect_changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sprite::is_centered() const {
|
|
|
|
|
|
|
|
return centered;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_offset(const Point2& p_offset) {
|
|
|
|
|
|
|
|
offset=p_offset;
|
|
|
|
update();
|
|
|
|
item_rect_changed();
|
2014-12-07 06:04:20 +01:00
|
|
|
_change_notify("offset");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
Point2 Sprite::get_offset() const {
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_flip_h(bool p_flip) {
|
|
|
|
|
|
|
|
hflip=p_flip;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
bool Sprite::is_flipped_h() const {
|
|
|
|
|
|
|
|
return hflip;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_flip_v(bool p_flip) {
|
|
|
|
|
|
|
|
vflip=p_flip;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
bool Sprite::is_flipped_v() const {
|
|
|
|
|
|
|
|
return vflip;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_region(bool p_region) {
|
|
|
|
|
|
|
|
if (p_region==region)
|
|
|
|
return;
|
|
|
|
|
|
|
|
region=p_region;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sprite::is_region() const{
|
|
|
|
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_region_rect(const Rect2& p_region_rect) {
|
|
|
|
|
2016-03-05 16:30:09 +01:00
|
|
|
if (region_rect==p_region_rect)
|
|
|
|
return;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
region_rect=p_region_rect;
|
2016-03-05 16:30:09 +01:00
|
|
|
|
|
|
|
if (region)
|
2014-02-10 02:10:30 +01:00
|
|
|
item_rect_changed();
|
2016-03-05 16:30:09 +01:00
|
|
|
|
|
|
|
_change_notify("region_rect");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Rect2 Sprite::get_region_rect() const {
|
|
|
|
|
|
|
|
return region_rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_frame(int p_frame) {
|
|
|
|
|
|
|
|
ERR_FAIL_INDEX(p_frame,vframes*hframes);
|
|
|
|
|
|
|
|
if (frame != p_frame)
|
|
|
|
item_rect_changed();
|
|
|
|
|
|
|
|
frame=p_frame;
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2016-10-11 15:14:05 +02:00
|
|
|
_change_notify("frame");
|
2014-12-07 06:04:20 +01:00
|
|
|
emit_signal(SceneStringNames::get_singleton()->frame_changed);
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int Sprite::get_frame() const {
|
|
|
|
|
|
|
|
return frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_vframes(int p_amount) {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(p_amount<1);
|
|
|
|
vframes=p_amount;
|
|
|
|
update();
|
|
|
|
item_rect_changed();
|
|
|
|
_change_notify("frame");
|
|
|
|
}
|
|
|
|
int Sprite::get_vframes() const {
|
|
|
|
|
|
|
|
return vframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sprite::set_hframes(int p_amount) {
|
|
|
|
|
|
|
|
ERR_FAIL_COND(p_amount<1);
|
|
|
|
hframes=p_amount;
|
|
|
|
update();
|
|
|
|
item_rect_changed();
|
|
|
|
_change_notify("frame");
|
|
|
|
}
|
|
|
|
int Sprite::get_hframes() const {
|
|
|
|
|
|
|
|
return hframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Rect2 Sprite::get_item_rect() const {
|
|
|
|
|
|
|
|
if (texture.is_null())
|
|
|
|
return Rect2(0,0,1,1);
|
2017-01-14 12:26:56 +01:00
|
|
|
/*
|
|
|
|
if (texture.is_null())
|
|
|
|
return CanvasItem::get_item_rect();
|
|
|
|
*/
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Size2i s;
|
|
|
|
|
|
|
|
if (region) {
|
|
|
|
|
|
|
|
s=region_rect.size;
|
|
|
|
} else {
|
|
|
|
s = texture->get_size();
|
|
|
|
s=s/Point2(hframes,vframes);
|
|
|
|
}
|
|
|
|
|
2015-06-12 18:53:18 +02:00
|
|
|
Point2 ofs=offset;
|
2014-02-10 02:10:30 +01:00
|
|
|
if (centered)
|
|
|
|
ofs-=s/2;
|
|
|
|
|
|
|
|
if (s==Size2(0,0))
|
|
|
|
s=Size2(1,1);
|
|
|
|
|
|
|
|
return Rect2(ofs,s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-07-07 04:46:04 +02:00
|
|
|
|
|
|
|
void Sprite::_validate_property(PropertyInfo& property) const {
|
|
|
|
|
|
|
|
if (property.name=="frame") {
|
|
|
|
|
|
|
|
property.hint=PROPERTY_HINT_SPRITE_FRAME;
|
|
|
|
|
|
|
|
property.hint_string="0,"+itos(vframes*hframes-1)+",1";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void Sprite::_bind_methods() {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_texture","texture:Texture"),&Sprite::set_texture);
|
|
|
|
ClassDB::bind_method(_MD("get_texture:Texture"),&Sprite::get_texture);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_centered","centered"),&Sprite::set_centered);
|
|
|
|
ClassDB::bind_method(_MD("is_centered"),&Sprite::is_centered);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_offset","offset"),&Sprite::set_offset);
|
|
|
|
ClassDB::bind_method(_MD("get_offset"),&Sprite::get_offset);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_flip_h","flip_h"),&Sprite::set_flip_h);
|
|
|
|
ClassDB::bind_method(_MD("is_flipped_h"),&Sprite::is_flipped_h);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_flip_v","flip_v"),&Sprite::set_flip_v);
|
|
|
|
ClassDB::bind_method(_MD("is_flipped_v"),&Sprite::is_flipped_v);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_region","enabled"),&Sprite::set_region);
|
|
|
|
ClassDB::bind_method(_MD("is_region"),&Sprite::is_region);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_region_rect","rect"),&Sprite::set_region_rect);
|
|
|
|
ClassDB::bind_method(_MD("get_region_rect"),&Sprite::get_region_rect);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_frame","frame"),&Sprite::set_frame);
|
|
|
|
ClassDB::bind_method(_MD("get_frame"),&Sprite::get_frame);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_vframes","vframes"),&Sprite::set_vframes);
|
|
|
|
ClassDB::bind_method(_MD("get_vframes"),&Sprite::get_vframes);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_hframes","hframes"),&Sprite::set_hframes);
|
|
|
|
ClassDB::bind_method(_MD("get_hframes"),&Sprite::get_hframes);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-12-07 06:04:20 +01:00
|
|
|
ADD_SIGNAL(MethodInfo("frame_changed"));
|
2016-06-20 03:16:41 +02:00
|
|
|
ADD_SIGNAL(MethodInfo("texture_changed"));
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2017-02-12 01:11:37 +01:00
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::OBJECT, "texture", PROPERTY_HINT_RESOURCE_TYPE,"Texture"), "set_texture","get_texture");
|
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::BOOL, "centered"), "set_centered","is_centered");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::VECTOR2, "offset"), "set_offset","get_offset");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::BOOL, "flip_h"), "set_flip_h","is_flipped_h");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::BOOL, "flip_v"), "set_flip_v","is_flipped_v");
|
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::INT, "vframes",PROPERTY_HINT_RANGE,"1,16384,1"), "set_vframes","get_vframes");
|
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::INT, "hframes",PROPERTY_HINT_RANGE,"1,16384,1"), "set_hframes","get_hframes");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::INT, "frame",PROPERTY_HINT_SPRITE_FRAME), "set_frame","get_frame");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::BOOL, "region"), "set_region","is_region");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::RECT2, "region_rect"), "set_region_rect","get_region_rect");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Sprite::Sprite() {
|
|
|
|
|
|
|
|
centered=true;
|
|
|
|
hflip=false;
|
|
|
|
vflip=false;
|
|
|
|
region=false;
|
|
|
|
|
|
|
|
frame=0;
|
|
|
|
|
|
|
|
vframes=1;
|
|
|
|
hframes=1;
|
|
|
|
|
|
|
|
}
|
2014-04-10 05:18:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////// VPSPRITE
|
|
|
|
///
|
|
|
|
///
|
|
|
|
///
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
#if 0
|
2014-04-10 05:18:27 +02:00
|
|
|
void ViewportSprite::edit_set_pivot(const Point2& p_pivot) {
|
|
|
|
|
|
|
|
set_offset(p_pivot);
|
|
|
|
}
|
|
|
|
|
|
|
|
Point2 ViewportSprite::edit_get_pivot() const {
|
|
|
|
|
|
|
|
return get_offset();
|
|
|
|
}
|
|
|
|
bool ViewportSprite::edit_has_pivot() const {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewportSprite::_notification(int p_what) {
|
|
|
|
|
|
|
|
switch(p_what) {
|
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
case NOTIFICATION_ENTER_TREE: {
|
2014-04-10 05:18:27 +02:00
|
|
|
|
|
|
|
if (!viewport_path.is_empty()) {
|
|
|
|
|
|
|
|
Node *n = get_node(viewport_path);
|
|
|
|
ERR_FAIL_COND(!n);
|
|
|
|
Viewport *vp=n->cast_to<Viewport>();
|
|
|
|
ERR_FAIL_COND(!vp);
|
|
|
|
|
|
|
|
Ref<RenderTargetTexture> rtt = vp->get_render_target_texture();
|
|
|
|
texture=rtt;
|
|
|
|
texture->connect("changed",this,"update");
|
|
|
|
item_rect_changed();
|
|
|
|
}
|
|
|
|
} break;
|
2014-11-06 01:20:42 +01:00
|
|
|
case NOTIFICATION_EXIT_TREE: {
|
2014-04-10 05:18:27 +02:00
|
|
|
|
|
|
|
if (texture.is_valid()) {
|
|
|
|
|
|
|
|
texture->disconnect("changed",this,"update");
|
|
|
|
texture=Ref<Texture>();
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case NOTIFICATION_DRAW: {
|
|
|
|
|
|
|
|
if (texture.is_null())
|
|
|
|
return;
|
|
|
|
|
|
|
|
RID ci = get_canvas_item();
|
|
|
|
|
|
|
|
/*
|
|
|
|
texture->draw(ci,Point2());
|
|
|
|
break;
|
|
|
|
*/
|
|
|
|
|
|
|
|
Size2i s;
|
|
|
|
Rect2i src_rect;
|
|
|
|
|
|
|
|
s = texture->get_size();
|
|
|
|
|
|
|
|
src_rect.size=s;
|
|
|
|
|
2015-06-12 18:53:18 +02:00
|
|
|
Point2 ofs=offset;
|
2014-04-10 05:18:27 +02:00
|
|
|
if (centered)
|
|
|
|
ofs-=s/2;
|
|
|
|
|
2015-10-13 20:53:34 +02:00
|
|
|
if (OS::get_singleton()->get_use_pixel_snap()) {
|
|
|
|
ofs=ofs.floor();
|
|
|
|
}
|
2015-06-12 18:53:18 +02:00
|
|
|
Rect2 dst_rect(ofs,s);
|
2014-04-10 05:18:27 +02:00
|
|
|
texture->draw_rect_region(ci,dst_rect,src_rect,modulate);
|
|
|
|
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewportSprite::set_viewport_path(const NodePath& p_viewport) {
|
|
|
|
|
|
|
|
viewport_path=p_viewport;
|
|
|
|
update();
|
2014-11-06 01:20:42 +01:00
|
|
|
if (!is_inside_tree())
|
2014-04-10 05:18:27 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (texture.is_valid()) {
|
|
|
|
texture->disconnect("changed",this,"update");
|
|
|
|
texture=Ref<Texture>();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (viewport_path.is_empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
Node *n = get_node(viewport_path);
|
|
|
|
ERR_FAIL_COND(!n);
|
|
|
|
Viewport *vp=n->cast_to<Viewport>();
|
|
|
|
ERR_FAIL_COND(!vp);
|
|
|
|
|
|
|
|
Ref<RenderTargetTexture> rtt = vp->get_render_target_texture();
|
|
|
|
texture=rtt;
|
|
|
|
|
|
|
|
if (texture.is_valid()) {
|
|
|
|
texture->connect("changed",this,"update");
|
|
|
|
}
|
|
|
|
|
|
|
|
item_rect_changed();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
NodePath ViewportSprite::get_viewport_path() const {
|
|
|
|
|
|
|
|
return viewport_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewportSprite::set_centered(bool p_center) {
|
|
|
|
|
|
|
|
centered=p_center;
|
|
|
|
update();
|
|
|
|
item_rect_changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ViewportSprite::is_centered() const {
|
|
|
|
|
|
|
|
return centered;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ViewportSprite::set_offset(const Point2& p_offset) {
|
|
|
|
|
|
|
|
offset=p_offset;
|
|
|
|
update();
|
|
|
|
item_rect_changed();
|
|
|
|
}
|
|
|
|
Point2 ViewportSprite::get_offset() const {
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
void ViewportSprite::set_modulate(const Color& p_color) {
|
|
|
|
|
|
|
|
modulate=p_color;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
Color ViewportSprite::get_modulate() const{
|
|
|
|
|
|
|
|
return modulate;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Rect2 ViewportSprite::get_item_rect() const {
|
|
|
|
|
|
|
|
if (texture.is_null())
|
|
|
|
return Rect2(0,0,1,1);
|
2017-01-14 12:26:56 +01:00
|
|
|
/*
|
|
|
|
if (texture.is_null())
|
|
|
|
return CanvasItem::get_item_rect();
|
|
|
|
*/
|
2014-04-10 05:18:27 +02:00
|
|
|
|
|
|
|
Size2i s;
|
|
|
|
|
|
|
|
s = texture->get_size();
|
2015-06-12 18:53:18 +02:00
|
|
|
Point2 ofs=offset;
|
2014-04-10 05:18:27 +02:00
|
|
|
if (centered)
|
|
|
|
ofs-=s/2;
|
|
|
|
|
|
|
|
if (s==Size2(0,0))
|
|
|
|
s=Size2(1,1);
|
|
|
|
|
|
|
|
return Rect2(ofs,s);
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:27:15 +02:00
|
|
|
String ViewportSprite::get_configuration_warning() const {
|
|
|
|
|
|
|
|
if (!has_node(viewport_path) || !get_node(viewport_path) || !get_node(viewport_path)->cast_to<Viewport>()) {
|
|
|
|
return TTR("Path property must point to a valid Viewport node to work. Such Viewport must be set to 'render target' mode.");
|
|
|
|
} else {
|
|
|
|
|
|
|
|
Node *n = get_node(viewport_path);
|
|
|
|
if (n) {
|
|
|
|
Viewport *vp = n->cast_to<Viewport>();
|
|
|
|
if (!vp->is_set_as_render_target()) {
|
|
|
|
|
2016-05-19 00:08:12 +02:00
|
|
|
return TTR("The Viewport set in the path property must be set as 'render target' in order for this sprite to work.");
|
2016-05-17 23:27:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return String();
|
|
|
|
|
|
|
|
}
|
2014-04-10 05:18:27 +02:00
|
|
|
|
|
|
|
void ViewportSprite::_bind_methods() {
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_viewport_path","path"),&ViewportSprite::set_viewport_path);
|
|
|
|
ClassDB::bind_method(_MD("get_viewport_path"),&ViewportSprite::get_viewport_path);
|
2014-04-10 05:18:27 +02:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_centered","centered"),&ViewportSprite::set_centered);
|
|
|
|
ClassDB::bind_method(_MD("is_centered"),&ViewportSprite::is_centered);
|
2014-04-10 05:18:27 +02:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_offset","offset"),&ViewportSprite::set_offset);
|
|
|
|
ClassDB::bind_method(_MD("get_offset"),&ViewportSprite::get_offset);
|
2014-04-10 05:18:27 +02:00
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method(_MD("set_modulate","modulate"),&ViewportSprite::set_modulate);
|
|
|
|
ClassDB::bind_method(_MD("get_modulate"),&ViewportSprite::get_modulate);
|
2014-04-10 05:18:27 +02:00
|
|
|
|
2017-02-12 01:11:37 +01:00
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::NODE_PATH, "viewport"), "set_viewport_path","get_viewport_path");
|
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::BOOL, "centered"), "set_centered","is_centered");
|
|
|
|
ADD_PROPERTYNZ( PropertyInfo( Variant::VECTOR2, "offset"), "set_offset","get_offset");
|
|
|
|
ADD_PROPERTYNO( PropertyInfo( Variant::COLOR, "modulate"), "set_modulate","get_modulate");
|
2014-04-10 05:18:27 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ViewportSprite::ViewportSprite() {
|
|
|
|
|
|
|
|
centered=true;
|
|
|
|
modulate=Color(1,1,1,1);
|
|
|
|
}
|
2016-10-03 21:33:42 +02:00
|
|
|
#endif
|