godot/scene/gui/graph_node.cpp

783 lines
19 KiB
C++
Raw Normal View History

/*************************************************************************/
/* graph_node.cpp */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* http://www.godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
/* */
/* 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-12-20 16:32:14 +01:00
#include "graph_node.h"
#include "method_bind_ext.inc"
2014-12-20 16:32:14 +01:00
bool GraphNode::_set(const StringName& p_name, const Variant& p_value) {
2015-07-21 03:15:06 +02:00
if (!p_name.operator String().begins_with("slot/"))
return false;
2015-07-21 03:15:06 +02:00
int idx=p_name.operator String().get_slice("/",1).to_int();
String what = p_name.operator String().get_slice("/",2);
2015-07-21 03:15:06 +02:00
Slot si;
if (slot_info.has(idx))
si=slot_info[idx];
2015-07-21 03:15:06 +02:00
if (what=="left_enabled")
si.enable_left=p_value;
else if (what=="left_type")
si.type_left=p_value;
else if (what=="left_color")
si.color_left=p_value;
else if (what=="right_enabled")
si.enable_right=p_value;
else if (what=="right_type")
si.type_right=p_value;
else if (what=="right_color")
si.color_right=p_value;
else
return false;
2015-07-21 03:15:06 +02:00
set_slot(idx,si.enable_left,si.type_left,si.color_left,si.enable_right,si.type_right,si.color_right);
update();
return true;
}
bool GraphNode::_get(const StringName& p_name,Variant &r_ret) const{
2015-07-21 03:15:06 +02:00
if (!p_name.operator String().begins_with("slot/")) {
return false;
}
2015-07-21 03:15:06 +02:00
int idx=p_name.operator String().get_slice("/",1).to_int();
String what = p_name.operator String().get_slice("/",2);
2015-07-21 03:15:06 +02:00
Slot si;
if (slot_info.has(idx))
si=slot_info[idx];
2015-07-21 03:15:06 +02:00
if (what=="left_enabled")
r_ret=si.enable_left;
else if (what=="left_type")
r_ret=si.type_left;
else if (what=="left_color")
r_ret=si.color_left;
else if (what=="right_enabled")
r_ret=si.enable_right;
else if (what=="right_type")
r_ret=si.type_right;
else if (what=="right_color")
r_ret=si.color_right;
else
return false;
2015-07-21 03:15:06 +02:00
return true;
}
void GraphNode::_get_property_list( List<PropertyInfo> *p_list) const{
2015-07-21 03:15:06 +02:00
int idx=0;
for(int i=0;i<get_child_count();i++) {
Control *c=get_child(i)->cast_to<Control>();
if (!c || c->is_set_as_toplevel() )
continue;
2015-07-21 03:15:06 +02:00
String base="slot/"+itos(idx)+"/";
2015-07-21 03:15:06 +02:00
p_list->push_back(PropertyInfo(Variant::BOOL,base+"left_enabled"));
p_list->push_back(PropertyInfo(Variant::INT,base+"left_type"));
p_list->push_back(PropertyInfo(Variant::COLOR,base+"left_color"));
p_list->push_back(PropertyInfo(Variant::BOOL,base+"right_enabled"));
p_list->push_back(PropertyInfo(Variant::INT,base+"right_type"));
p_list->push_back(PropertyInfo(Variant::COLOR,base+"right_color"));
2015-07-21 03:15:06 +02:00
idx++;
}
}
2014-12-20 16:32:14 +01:00
void GraphNode::_resort() {
2015-07-21 03:15:06 +02:00
int sep=get_constant("separation");
Ref<StyleBox> sb=get_stylebox("frame");
bool first=true;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Size2 minsize;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
for(int i=0;i<get_child_count();i++) {
Control *c=get_child(i)->cast_to<Control>();
if (!c)
continue;
if (c->is_set_as_toplevel())
continue;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Size2i size=c->get_combined_minimum_size();
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
minsize.y+=size.y;
minsize.x=MAX(minsize.x,size.x);
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (first)
first=false;
else
minsize.y+=sep;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
}
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
int vofs=0;
int w = get_size().x - sb->get_minimum_size().x;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
cache_y.clear();
for(int i=0;i<get_child_count();i++) {
Control *c=get_child(i)->cast_to<Control>();
if (!c)
continue;
if (c->is_set_as_toplevel())
continue;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Size2i size=c->get_combined_minimum_size();
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Rect2 r(sb->get_margin(MARGIN_LEFT),sb->get_margin(MARGIN_TOP)+vofs,w,size.y);
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
fit_child_in_rect(c,r);
cache_y.push_back(vofs+size.y*0.5);
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (vofs>0)
vofs+=sep;
vofs+=size.y;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
}
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
_change_notify();
update();
connpos_dirty=true;
2014-12-20 16:32:14 +01:00
}
bool GraphNode::has_point(const Point2& p_point) const {
if (comment) {
Ref<StyleBox> comment = get_stylebox("comment");
Ref<Texture> resizer =get_icon("resizer");
if (Rect2(get_size()-resizer->get_size(), resizer->get_size()).has_point(p_point)) {
return true;
}
if (Rect2(0,0,get_size().width,comment->get_margin(MARGIN_TOP)).has_point(p_point)) {
return true;
}
return false;
} else {
return Control::has_point(p_point);
}
}
2014-12-20 16:32:14 +01:00
void GraphNode::_notification(int p_what) {
2015-07-21 03:15:06 +02:00
if (p_what==NOTIFICATION_DRAW) {
2014-12-20 16:32:14 +01:00
Ref<StyleBox> sb;
if (comment) {
sb = get_stylebox( selected? "commentfocus" : "comment");
} else {
sb = get_stylebox( selected ? "selectedframe" : "frame");
}
//sb=sb->duplicate();
//sb->call("set_modulate",modulate);
2015-07-21 03:15:06 +02:00
Ref<Texture> port =get_icon("port");
Ref<Texture> close =get_icon("close");
Ref<Texture> resizer =get_icon("resizer");
2015-07-21 03:15:06 +02:00
int close_offset = get_constant("close_offset");
Ref<Font> title_font = get_font("title_font");
int title_offset = get_constant("title_offset");
Color title_color = get_color("title_color");
Point2i icofs = -port->get_size()*0.5;
int edgeofs=get_constant("port_offset");
icofs.y+=sb->get_margin(MARGIN_TOP);
2015-07-21 03:15:06 +02:00
draw_style_box(sb,Rect2(Point2(),get_size()));
switch(overlay) {
case OVERLAY_DISABLED: {
} break;
case OVERLAY_BREAKPOINT: {
draw_style_box(get_stylebox("breakpoint"),Rect2(Point2(),get_size()));
} break;
case OVERLAY_POSITION: {
draw_style_box(get_stylebox("position"),Rect2(Point2(),get_size()));
} break;
}
2015-07-21 03:15:06 +02:00
int w = get_size().width-sb->get_minimum_size().x;
2015-07-21 03:15:06 +02:00
if (show_close)
w-=close->get_width();
2015-07-21 03:15:06 +02:00
draw_string(title_font,Point2(sb->get_margin(MARGIN_LEFT),-title_font->get_height()+title_font->get_ascent()+title_offset),title,title_color,w);
if (show_close) {
Vector2 cpos = Point2(w+sb->get_margin(MARGIN_LEFT),-close->get_height()+close_offset);
draw_texture(close,cpos);
close_rect.pos=cpos;
close_rect.size=close->get_size();
} else {
close_rect=Rect2();
}
2015-07-21 03:15:06 +02:00
for (Map<int,Slot>::Element *E=slot_info.front();E;E=E->next()) {
2015-07-21 03:15:06 +02:00
if (E->key() < 0 || E->key()>=cache_y.size())
continue;
if (!slot_info.has(E->key()))
continue;
const Slot &s=slot_info[E->key()];
//left
if (s.enable_left) {
Ref<Texture> p = port;
if (s.custom_slot_left.is_valid()) {
p=s.custom_slot_left;
}
p->draw(get_canvas_item(),icofs+Point2(edgeofs,cache_y[E->key()]),s.color_left);
}
if (s.enable_right) {
Ref<Texture> p = port;
if (s.custom_slot_right.is_valid()) {
p=s.custom_slot_right;
}
p->draw(get_canvas_item(),icofs+Point2(get_size().x-edgeofs,cache_y[E->key()]),s.color_right);
}
2015-07-21 03:15:06 +02:00
}
if (resizeable) {
draw_texture(resizer,get_size()-resizer->get_size());
}
2015-07-21 03:15:06 +02:00
}
2015-07-21 03:15:06 +02:00
if (p_what==NOTIFICATION_SORT_CHILDREN) {
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
_resort();
}
2014-12-20 16:32:14 +01:00
}
void GraphNode::set_slot(int p_idx,bool p_enable_left,int p_type_left,const Color& p_color_left, bool p_enable_right,int p_type_right,const Color& p_color_right,const Ref<Texture>& p_custom_left,const Ref<Texture>& p_custom_right) {
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
ERR_FAIL_COND(p_idx<0);
2015-07-21 03:15:06 +02:00
if (!p_enable_left && p_type_left==0 && p_color_left==Color(1,1,1,1) && !p_enable_right && p_type_right==0 && p_color_right==Color(1,1,1,1)) {
slot_info.erase(p_idx);
return;
}
2015-07-21 03:15:06 +02:00
Slot s;
s.enable_left=p_enable_left;
s.type_left=p_type_left;
s.color_left=p_color_left;
s.enable_right=p_enable_right;
s.type_right=p_type_right;
s.color_right=p_color_right;
s.custom_slot_left=p_custom_left;
s.custom_slot_right=p_custom_right;
2015-07-21 03:15:06 +02:00
slot_info[p_idx]=s;
update();
connpos_dirty=true;
2014-12-20 16:32:14 +01:00
}
void GraphNode::clear_slot(int p_idx){
2015-07-21 03:15:06 +02:00
slot_info.erase(p_idx);
update();
connpos_dirty=true;
2014-12-20 16:32:14 +01:00
}
void GraphNode::clear_all_slots(){
2015-07-21 03:15:06 +02:00
slot_info.clear();
update();
connpos_dirty=true;
2014-12-20 16:32:14 +01:00
}
bool GraphNode::is_slot_enabled_left(int p_idx) const{
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (!slot_info.has(p_idx))
return false;
return slot_info[p_idx].enable_left;
2014-12-20 16:32:14 +01:00
}
int GraphNode::get_slot_type_left(int p_idx) const{
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (!slot_info.has(p_idx))
return 0;
return slot_info[p_idx].type_left;
2014-12-20 16:32:14 +01:00
}
2014-12-20 16:32:14 +01:00
Color GraphNode::get_slot_color_left(int p_idx) const{
2015-07-21 03:15:06 +02:00
if (!slot_info.has(p_idx))
return Color(1,1,1,1);
return slot_info[p_idx].color_left;
2014-12-20 16:32:14 +01:00
}
bool GraphNode::is_slot_enabled_right(int p_idx) const{
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (!slot_info.has(p_idx))
return false;
return slot_info[p_idx].enable_right;
2014-12-20 16:32:14 +01:00
}
int GraphNode::get_slot_type_right(int p_idx) const{
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (!slot_info.has(p_idx))
return 0;
return slot_info[p_idx].type_right;
2014-12-20 16:32:14 +01:00
}
2014-12-20 16:32:14 +01:00
Color GraphNode::get_slot_color_right(int p_idx) const{
2015-07-21 03:15:06 +02:00
if (!slot_info.has(p_idx))
return Color(1,1,1,1);
return slot_info[p_idx].color_right;
2014-12-20 16:32:14 +01:00
}
Size2 GraphNode::get_minimum_size() const {
2015-07-21 03:15:06 +02:00
Ref<Font> title_font = get_font("title_font");
2015-07-21 03:15:06 +02:00
int sep=get_constant("separation");
Ref<StyleBox> sb=get_stylebox("frame");
bool first=true;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Size2 minsize;
minsize.x=title_font->get_string_size(title).x;
if (show_close) {
Ref<Texture> close =get_icon("close");
minsize.x+=sep+close->get_width();
}
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
for(int i=0;i<get_child_count();i++) {
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Control *c=get_child(i)->cast_to<Control>();
if (!c)
continue;
if (c->is_set_as_toplevel())
continue;
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
Size2i size=c->get_combined_minimum_size();
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
minsize.y+=size.y;
minsize.x=MAX(minsize.x,size.x);
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
if (first)
first=false;
else
minsize.y+=sep;
}
2014-12-20 16:32:14 +01:00
2015-07-21 03:15:06 +02:00
return minsize+sb->get_minimum_size();
2014-12-20 16:32:14 +01:00
}
void GraphNode::set_title(const String& p_title) {
2015-07-21 03:15:06 +02:00
title=p_title;
minimum_size_changed();
update();
}
String GraphNode::get_title() const{
2015-07-21 03:15:06 +02:00
return title;
}
void GraphNode::set_offset(const Vector2& p_offset) {
2015-07-21 03:15:06 +02:00
offset=p_offset;
emit_signal("offset_changed");
update();
}
Vector2 GraphNode::get_offset() const {
2015-07-21 03:15:06 +02:00
return offset;
}
2015-07-19 06:48:46 +02:00
void GraphNode::set_selected(bool p_selected)
{
2015-07-21 03:15:06 +02:00
selected = p_selected;
update();
2015-07-19 06:48:46 +02:00
}
bool GraphNode::is_selected()
{
2015-07-21 03:15:06 +02:00
return selected;
2015-07-19 06:48:46 +02:00
}
void GraphNode::set_drag(bool p_drag)
{
2015-07-21 03:15:06 +02:00
if (p_drag)
drag_from=get_offset();
else
emit_signal("dragged",drag_from,get_offset()); //useful for undo/redo
2015-07-19 06:48:46 +02:00
}
Vector2 GraphNode::get_drag_from()
{
2015-07-21 03:15:06 +02:00
return drag_from;
2015-07-19 06:48:46 +02:00
}
void GraphNode::set_show_close_button(bool p_enable){
2015-07-21 03:15:06 +02:00
show_close=p_enable;
update();
}
bool GraphNode::is_close_button_visible() const{
2015-07-21 03:15:06 +02:00
return show_close;
}
void GraphNode::_connpos_update() {
2015-07-21 03:15:06 +02:00
int edgeofs=get_constant("port_offset");
int sep=get_constant("separation");
2015-07-21 03:15:06 +02:00
Ref<StyleBox> sb=get_stylebox("frame");
conn_input_cache.clear();
conn_output_cache.clear();
int vofs=0;
2015-07-21 03:15:06 +02:00
int idx=0;
2015-07-21 03:15:06 +02:00
for(int i=0;i<get_child_count();i++) {
Control *c=get_child(i)->cast_to<Control>();
if (!c)
continue;
if (c->is_set_as_toplevel())
continue;
2015-07-21 03:15:06 +02:00
Size2i size=c->get_combined_minimum_size();
2015-07-21 03:15:06 +02:00
int y = sb->get_margin(MARGIN_TOP)+vofs;
int h = size.y;
2015-07-21 03:15:06 +02:00
if (slot_info.has(idx)) {
2015-07-21 03:15:06 +02:00
if (slot_info[idx].enable_left) {
ConnCache cc;
cc.pos=Point2i(edgeofs,y+h/2);
cc.type=slot_info[idx].type_left;
cc.color=slot_info[idx].color_left;
conn_input_cache.push_back(cc);
}
if (slot_info[idx].enable_right) {
ConnCache cc;
cc.pos=Point2i(get_size().width-edgeofs,y+h/2);
cc.type=slot_info[idx].type_right;
cc.color=slot_info[idx].color_right;
conn_output_cache.push_back(cc);
}
}
2015-07-21 03:15:06 +02:00
if (vofs>0)
vofs+=sep;
vofs+=size.y;
idx++;
2015-07-21 03:15:06 +02:00
}
2015-07-21 03:15:06 +02:00
connpos_dirty=false;
}
int GraphNode::get_connection_input_count() {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
return conn_input_cache.size();
}
int GraphNode::get_connection_output_count() {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
return conn_output_cache.size();
}
Vector2 GraphNode::get_connection_input_pos(int p_idx) {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
ERR_FAIL_INDEX_V(p_idx,conn_input_cache.size(),Vector2());
Vector2 pos = conn_input_cache[p_idx].pos;
pos.x *= get_scale().x;
pos.y *= get_scale().y;
return pos;
}
int GraphNode::get_connection_input_type(int p_idx) {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
ERR_FAIL_INDEX_V(p_idx,conn_input_cache.size(),0);
return conn_input_cache[p_idx].type;
}
Color GraphNode::get_connection_input_color(int p_idx) {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
ERR_FAIL_INDEX_V(p_idx,conn_input_cache.size(),Color());
return conn_input_cache[p_idx].color;
}
Vector2 GraphNode::get_connection_output_pos(int p_idx){
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
ERR_FAIL_INDEX_V(p_idx,conn_output_cache.size(),Vector2());
Vector2 pos = conn_output_cache[p_idx].pos;
pos.x *= get_scale().x;
pos.y *= get_scale().y;
return pos;
}
int GraphNode::get_connection_output_type(int p_idx) {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
ERR_FAIL_INDEX_V(p_idx,conn_output_cache.size(),0);
return conn_output_cache[p_idx].type;
}
Color GraphNode::get_connection_output_color(int p_idx) {
2015-07-21 03:15:06 +02:00
if (connpos_dirty)
_connpos_update();
2015-07-21 03:15:06 +02:00
ERR_FAIL_INDEX_V(p_idx,conn_output_cache.size(),Color());
return conn_output_cache[p_idx].color;
}
void GraphNode::_gui_input(const InputEvent& p_ev) {
2015-07-26 02:16:07 +02:00
if (p_ev.type==InputEvent::MOUSE_BUTTON) {
ERR_EXPLAIN("GraphNode must be the child of a GraphEdit node.");
ERR_FAIL_COND(get_parent_control() == NULL);
print_line("INPUT EVENT BUTTON");
2015-07-26 02:16:07 +02:00
if(p_ev.mouse_button.pressed && p_ev.mouse_button.button_index==BUTTON_LEFT) {
Vector2 mpos = Vector2(p_ev.mouse_button.x,p_ev.mouse_button.y);
if (close_rect.size!=Size2() && close_rect.has_point(mpos)) {
emit_signal("close_request");
accept_event();
return;
}
Ref<Texture> resizer =get_icon("resizer");
if (resizeable && mpos.x > get_size().x-resizer->get_width() && mpos.y > get_size().y-resizer->get_height()) {
resizing=true;
resizing_from=mpos;
resizing_from_size=get_size();
accept_event();
2015-07-26 02:16:07 +02:00
return;
}
//send focus to parent
2015-07-26 02:16:07 +02:00
emit_signal("raise_request");
get_parent_control()->grab_focus();
2015-07-21 03:15:06 +02:00
}
if(!p_ev.mouse_button.pressed && p_ev.mouse_button.button_index==BUTTON_LEFT) {
resizing=false;
}
}
if (resizing && p_ev.type==InputEvent::MOUSE_MOTION) {
Vector2 mpos = Vector2(p_ev.mouse_motion.x,p_ev.mouse_motion.y);
Vector2 diff = mpos - resizing_from;
emit_signal("resize_request",resizing_from_size+diff);
2015-07-21 03:15:06 +02:00
}
}
void GraphNode::set_overlay(Overlay p_overlay) {
overlay=p_overlay;
update();
}
GraphNode::Overlay GraphNode::get_overlay() const{
return overlay;
}
2014-12-20 16:32:14 +01:00
void GraphNode::set_comment(bool p_enable) {
comment=p_enable;
update();
}
bool GraphNode::is_comment() const{
return comment;
}
void GraphNode::set_resizeable(bool p_enable) {
resizeable=p_enable;
update();
}
bool GraphNode::is_resizeable() const{
return resizeable;
}
2014-12-20 16:32:14 +01:00
void GraphNode::_bind_methods() {
ClassDB::bind_method(_MD("set_title","title"),&GraphNode::set_title);
ClassDB::bind_method(_MD("get_title"),&GraphNode::get_title);
ClassDB::bind_method(_MD("_gui_input"),&GraphNode::_gui_input);
ClassDB::bind_method(_MD("set_slot","idx","enable_left","type_left","color_left","enable_right","type_right","color_right","custom_left","custom_right"),&GraphNode::set_slot,DEFVAL(Ref<Texture>()),DEFVAL(Ref<Texture>()));
ClassDB::bind_method(_MD("clear_slot","idx"),&GraphNode::clear_slot);
ClassDB::bind_method(_MD("clear_all_slots","idx"),&GraphNode::clear_all_slots);
ClassDB::bind_method(_MD("is_slot_enabled_left","idx"),&GraphNode::is_slot_enabled_left);
ClassDB::bind_method(_MD("get_slot_type_left","idx"),&GraphNode::get_slot_type_left);
ClassDB::bind_method(_MD("get_slot_color_left","idx"),&GraphNode::get_slot_color_left);
ClassDB::bind_method(_MD("is_slot_enabled_right","idx"),&GraphNode::is_slot_enabled_right);
ClassDB::bind_method(_MD("get_slot_type_right","idx"),&GraphNode::get_slot_type_right);
ClassDB::bind_method(_MD("get_slot_color_right","idx"),&GraphNode::get_slot_color_right);
ClassDB::bind_method(_MD("set_offset","offset"),&GraphNode::set_offset);
ClassDB::bind_method(_MD("get_offset"),&GraphNode::get_offset);
ClassDB::bind_method(_MD("set_comment","comment"),&GraphNode::set_comment);
ClassDB::bind_method(_MD("is_comment"),&GraphNode::is_comment);
ClassDB::bind_method(_MD("set_resizeable","resizeable"),&GraphNode::set_resizeable);
ClassDB::bind_method(_MD("is_resizeable"),&GraphNode::is_resizeable);
ClassDB::bind_method(_MD("set_selected","selected"),&GraphNode::set_selected);
ClassDB::bind_method(_MD("is_selected"),&GraphNode::is_selected);
ClassDB::bind_method(_MD("get_connection_output_count"),&GraphNode::get_connection_output_count);
ClassDB::bind_method(_MD("get_connection_input_count"),&GraphNode::get_connection_input_count);
ClassDB::bind_method(_MD("get_connection_output_pos","idx"),&GraphNode::get_connection_output_pos);
ClassDB::bind_method(_MD("get_connection_output_type","idx"),&GraphNode::get_connection_output_type);
ClassDB::bind_method(_MD("get_connection_output_color","idx"),&GraphNode::get_connection_output_color);
ClassDB::bind_method(_MD("get_connection_input_pos","idx"),&GraphNode::get_connection_input_pos);
ClassDB::bind_method(_MD("get_connection_input_type","idx"),&GraphNode::get_connection_input_type);
ClassDB::bind_method(_MD("get_connection_input_color","idx"),&GraphNode::get_connection_input_color);
ClassDB::bind_method(_MD("set_show_close_button","show"),&GraphNode::set_show_close_button);
ClassDB::bind_method(_MD("is_close_button_visible"),&GraphNode::is_close_button_visible);
ClassDB::bind_method(_MD("set_overlay","overlay"),&GraphNode::set_overlay);
ClassDB::bind_method(_MD("get_overlay"),&GraphNode::get_overlay);
ADD_PROPERTY( PropertyInfo(Variant::STRING,"title"),"set_title","get_title");
ADD_PROPERTY( PropertyInfo(Variant::BOOL,"show_close"),"set_show_close_button","is_close_button_visible");
ADD_PROPERTY( PropertyInfo(Variant::BOOL,"resizeable"),"set_resizeable","is_resizeable");
2015-07-21 03:15:06 +02:00
ADD_SIGNAL(MethodInfo("offset_changed"));
ADD_SIGNAL(MethodInfo("dragged",PropertyInfo(Variant::VECTOR2,"from"),PropertyInfo(Variant::VECTOR2,"to")));
ADD_SIGNAL(MethodInfo("raise_request"));
ADD_SIGNAL(MethodInfo("close_request"));
ADD_SIGNAL(MethodInfo("resize_request",PropertyInfo(Variant::VECTOR2,"new_minsize")));
BIND_CONSTANT( OVERLAY_DISABLED );
BIND_CONSTANT( OVERLAY_BREAKPOINT );
BIND_CONSTANT( OVERLAY_POSITION );
2014-12-20 16:32:14 +01:00
}
GraphNode::GraphNode() {
overlay=OVERLAY_DISABLED;
2015-07-21 03:15:06 +02:00
show_close=false;
connpos_dirty=true;
set_mouse_filter(MOUSE_FILTER_PASS);
comment=false;
resizeable=false;
resizing=false;
selected=false;
2014-12-20 16:32:14 +01:00
}