graph_node.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  1. /*************************************************************************/
  2. /* graph_node.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "graph_node.h"
  31. #include "core/method_bind_ext.gen.inc"
  32. bool GraphNode::_set(const StringName &p_name, const Variant &p_value) {
  33. if (!p_name.operator String().begins_with("slot/"))
  34. return false;
  35. int idx = p_name.operator String().get_slice("/", 1).to_int();
  36. String what = p_name.operator String().get_slice("/", 2);
  37. Slot si;
  38. if (slot_info.has(idx))
  39. si = slot_info[idx];
  40. if (what == "left_enabled")
  41. si.enable_left = p_value;
  42. else if (what == "left_type")
  43. si.type_left = p_value;
  44. else if (what == "left_color")
  45. si.color_left = p_value;
  46. else if (what == "right_enabled")
  47. si.enable_right = p_value;
  48. else if (what == "right_type")
  49. si.type_right = p_value;
  50. else if (what == "right_color")
  51. si.color_right = p_value;
  52. else
  53. return false;
  54. set_slot(idx, si.enable_left, si.type_left, si.color_left, si.enable_right, si.type_right, si.color_right);
  55. update();
  56. return true;
  57. }
  58. bool GraphNode::_get(const StringName &p_name, Variant &r_ret) const {
  59. if (!p_name.operator String().begins_with("slot/")) {
  60. return false;
  61. }
  62. int idx = p_name.operator String().get_slice("/", 1).to_int();
  63. String what = p_name.operator String().get_slice("/", 2);
  64. Slot si;
  65. if (slot_info.has(idx))
  66. si = slot_info[idx];
  67. if (what == "left_enabled")
  68. r_ret = si.enable_left;
  69. else if (what == "left_type")
  70. r_ret = si.type_left;
  71. else if (what == "left_color")
  72. r_ret = si.color_left;
  73. else if (what == "right_enabled")
  74. r_ret = si.enable_right;
  75. else if (what == "right_type")
  76. r_ret = si.type_right;
  77. else if (what == "right_color")
  78. r_ret = si.color_right;
  79. else
  80. return false;
  81. return true;
  82. }
  83. void GraphNode::_get_property_list(List<PropertyInfo> *p_list) const {
  84. int idx = 0;
  85. for (int i = 0; i < get_child_count(); i++) {
  86. Control *c = Object::cast_to<Control>(get_child(i));
  87. if (!c || c->is_set_as_toplevel())
  88. continue;
  89. String base = "slot/" + itos(idx) + "/";
  90. p_list->push_back(PropertyInfo(Variant::BOOL, base + "left_enabled"));
  91. p_list->push_back(PropertyInfo(Variant::INT, base + "left_type"));
  92. p_list->push_back(PropertyInfo(Variant::COLOR, base + "left_color"));
  93. p_list->push_back(PropertyInfo(Variant::BOOL, base + "right_enabled"));
  94. p_list->push_back(PropertyInfo(Variant::INT, base + "right_type"));
  95. p_list->push_back(PropertyInfo(Variant::COLOR, base + "right_color"));
  96. idx++;
  97. }
  98. }
  99. void GraphNode::_resort() {
  100. int sep = get_constant("separation");
  101. Ref<StyleBox> sb = get_stylebox("frame");
  102. bool first = true;
  103. Size2 minsize;
  104. for (int i = 0; i < get_child_count(); i++) {
  105. Control *c = Object::cast_to<Control>(get_child(i));
  106. if (!c)
  107. continue;
  108. if (c->is_set_as_toplevel())
  109. continue;
  110. Size2i size = c->get_combined_minimum_size();
  111. minsize.y += size.y;
  112. minsize.x = MAX(minsize.x, size.x);
  113. if (first)
  114. first = false;
  115. else
  116. minsize.y += sep;
  117. }
  118. int vofs = 0;
  119. int w = get_size().x - sb->get_minimum_size().x;
  120. cache_y.clear();
  121. for (int i = 0; i < get_child_count(); i++) {
  122. Control *c = Object::cast_to<Control>(get_child(i));
  123. if (!c)
  124. continue;
  125. if (c->is_set_as_toplevel())
  126. continue;
  127. Size2i size = c->get_combined_minimum_size();
  128. Rect2 r(sb->get_margin(MARGIN_LEFT), sb->get_margin(MARGIN_TOP) + vofs, w, size.y);
  129. fit_child_in_rect(c, r);
  130. cache_y.push_back(vofs + size.y * 0.5);
  131. vofs += size.y + sep;
  132. }
  133. update();
  134. connpos_dirty = true;
  135. }
  136. bool GraphNode::has_point(const Point2 &p_point) const {
  137. if (comment) {
  138. Ref<StyleBox> comment = get_stylebox("comment");
  139. Ref<Texture> resizer = get_icon("resizer");
  140. if (Rect2(get_size() - resizer->get_size(), resizer->get_size()).has_point(p_point)) {
  141. return true;
  142. }
  143. if (Rect2(0, 0, get_size().width, comment->get_margin(MARGIN_TOP)).has_point(p_point)) {
  144. return true;
  145. }
  146. return false;
  147. } else {
  148. return Control::has_point(p_point);
  149. }
  150. }
  151. void GraphNode::_notification(int p_what) {
  152. switch (p_what) {
  153. case NOTIFICATION_DRAW: {
  154. Ref<StyleBox> sb;
  155. if (comment) {
  156. sb = get_stylebox(selected ? "commentfocus" : "comment");
  157. } else {
  158. sb = get_stylebox(selected ? "selectedframe" : "frame");
  159. }
  160. //sb=sb->duplicate();
  161. //sb->call("set_modulate",modulate);
  162. Ref<Texture> port = get_icon("port");
  163. Ref<Texture> close = get_icon("close");
  164. Ref<Texture> resizer = get_icon("resizer");
  165. int close_offset = get_constant("close_offset");
  166. int close_h_offset = get_constant("close_h_offset");
  167. Color close_color = get_color("close_color");
  168. Color resizer_color = get_color("resizer_color");
  169. Ref<Font> title_font = get_font("title_font");
  170. int title_offset = get_constant("title_offset");
  171. int title_h_offset = get_constant("title_h_offset");
  172. Color title_color = get_color("title_color");
  173. Point2i icofs = -port->get_size() * 0.5;
  174. int edgeofs = get_constant("port_offset");
  175. icofs.y += sb->get_margin(MARGIN_TOP);
  176. draw_style_box(sb, Rect2(Point2(), get_size()));
  177. switch (overlay) {
  178. case OVERLAY_DISABLED: {
  179. } break;
  180. case OVERLAY_BREAKPOINT: {
  181. draw_style_box(get_stylebox("breakpoint"), Rect2(Point2(), get_size()));
  182. } break;
  183. case OVERLAY_POSITION: {
  184. draw_style_box(get_stylebox("position"), Rect2(Point2(), get_size()));
  185. } break;
  186. }
  187. int w = get_size().width - sb->get_minimum_size().x;
  188. if (show_close)
  189. w -= close->get_width();
  190. draw_string(title_font, Point2(sb->get_margin(MARGIN_LEFT) + title_h_offset, -title_font->get_height() + title_font->get_ascent() + title_offset), title, title_color, w);
  191. if (show_close) {
  192. Vector2 cpos = Point2(w + sb->get_margin(MARGIN_LEFT) + close_h_offset, -close->get_height() + close_offset);
  193. draw_texture(close, cpos, close_color);
  194. close_rect.position = cpos;
  195. close_rect.size = close->get_size();
  196. } else {
  197. close_rect = Rect2();
  198. }
  199. for (Map<int, Slot>::Element *E = slot_info.front(); E; E = E->next()) {
  200. if (E->key() < 0 || E->key() >= cache_y.size())
  201. continue;
  202. if (!slot_info.has(E->key()))
  203. continue;
  204. const Slot &s = slot_info[E->key()];
  205. //left
  206. if (s.enable_left) {
  207. Ref<Texture> p = port;
  208. if (s.custom_slot_left.is_valid()) {
  209. p = s.custom_slot_left;
  210. }
  211. p->draw(get_canvas_item(), icofs + Point2(edgeofs, cache_y[E->key()]), s.color_left);
  212. }
  213. if (s.enable_right) {
  214. Ref<Texture> p = port;
  215. if (s.custom_slot_right.is_valid()) {
  216. p = s.custom_slot_right;
  217. }
  218. p->draw(get_canvas_item(), icofs + Point2(get_size().x - edgeofs, cache_y[E->key()]), s.color_right);
  219. }
  220. }
  221. if (resizable) {
  222. draw_texture(resizer, get_size() - resizer->get_size(), resizer_color);
  223. }
  224. } break;
  225. case NOTIFICATION_SORT_CHILDREN: {
  226. _resort();
  227. } break;
  228. case NOTIFICATION_THEME_CHANGED: {
  229. minimum_size_changed();
  230. } break;
  231. }
  232. }
  233. 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) {
  234. ERR_FAIL_COND(p_idx < 0);
  235. 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)) {
  236. slot_info.erase(p_idx);
  237. return;
  238. }
  239. Slot s;
  240. s.enable_left = p_enable_left;
  241. s.type_left = p_type_left;
  242. s.color_left = p_color_left;
  243. s.enable_right = p_enable_right;
  244. s.type_right = p_type_right;
  245. s.color_right = p_color_right;
  246. s.custom_slot_left = p_custom_left;
  247. s.custom_slot_right = p_custom_right;
  248. slot_info[p_idx] = s;
  249. update();
  250. connpos_dirty = true;
  251. }
  252. void GraphNode::clear_slot(int p_idx) {
  253. slot_info.erase(p_idx);
  254. update();
  255. connpos_dirty = true;
  256. }
  257. void GraphNode::clear_all_slots() {
  258. slot_info.clear();
  259. update();
  260. connpos_dirty = true;
  261. }
  262. bool GraphNode::is_slot_enabled_left(int p_idx) const {
  263. if (!slot_info.has(p_idx))
  264. return false;
  265. return slot_info[p_idx].enable_left;
  266. }
  267. int GraphNode::get_slot_type_left(int p_idx) const {
  268. if (!slot_info.has(p_idx))
  269. return 0;
  270. return slot_info[p_idx].type_left;
  271. }
  272. Color GraphNode::get_slot_color_left(int p_idx) const {
  273. if (!slot_info.has(p_idx))
  274. return Color(1, 1, 1, 1);
  275. return slot_info[p_idx].color_left;
  276. }
  277. bool GraphNode::is_slot_enabled_right(int p_idx) const {
  278. if (!slot_info.has(p_idx))
  279. return false;
  280. return slot_info[p_idx].enable_right;
  281. }
  282. int GraphNode::get_slot_type_right(int p_idx) const {
  283. if (!slot_info.has(p_idx))
  284. return 0;
  285. return slot_info[p_idx].type_right;
  286. }
  287. Color GraphNode::get_slot_color_right(int p_idx) const {
  288. if (!slot_info.has(p_idx))
  289. return Color(1, 1, 1, 1);
  290. return slot_info[p_idx].color_right;
  291. }
  292. Size2 GraphNode::get_minimum_size() const {
  293. Ref<Font> title_font = get_font("title_font");
  294. int sep = get_constant("separation");
  295. Ref<StyleBox> sb = get_stylebox("frame");
  296. bool first = true;
  297. Size2 minsize;
  298. minsize.x = title_font->get_string_size(title).x;
  299. if (show_close) {
  300. Ref<Texture> close = get_icon("close");
  301. minsize.x += sep + close->get_width();
  302. }
  303. for (int i = 0; i < get_child_count(); i++) {
  304. Control *c = Object::cast_to<Control>(get_child(i));
  305. if (!c)
  306. continue;
  307. if (c->is_set_as_toplevel())
  308. continue;
  309. Size2i size = c->get_combined_minimum_size();
  310. minsize.y += size.y;
  311. minsize.x = MAX(minsize.x, size.x);
  312. if (first)
  313. first = false;
  314. else
  315. minsize.y += sep;
  316. }
  317. return minsize + sb->get_minimum_size();
  318. }
  319. void GraphNode::set_title(const String &p_title) {
  320. if (title == p_title)
  321. return;
  322. title = p_title;
  323. update();
  324. _change_notify("title");
  325. minimum_size_changed();
  326. }
  327. String GraphNode::get_title() const {
  328. return title;
  329. }
  330. void GraphNode::set_offset(const Vector2 &p_offset) {
  331. offset = p_offset;
  332. emit_signal("offset_changed");
  333. update();
  334. }
  335. Vector2 GraphNode::get_offset() const {
  336. return offset;
  337. }
  338. void GraphNode::set_selected(bool p_selected) {
  339. selected = p_selected;
  340. update();
  341. }
  342. bool GraphNode::is_selected() {
  343. return selected;
  344. }
  345. void GraphNode::set_drag(bool p_drag) {
  346. if (p_drag)
  347. drag_from = get_offset();
  348. else
  349. emit_signal("dragged", drag_from, get_offset()); //useful for undo/redo
  350. }
  351. Vector2 GraphNode::get_drag_from() {
  352. return drag_from;
  353. }
  354. void GraphNode::set_show_close_button(bool p_enable) {
  355. show_close = p_enable;
  356. update();
  357. }
  358. bool GraphNode::is_close_button_visible() const {
  359. return show_close;
  360. }
  361. void GraphNode::_connpos_update() {
  362. int edgeofs = get_constant("port_offset");
  363. int sep = get_constant("separation");
  364. Ref<StyleBox> sb = get_stylebox("frame");
  365. conn_input_cache.clear();
  366. conn_output_cache.clear();
  367. int vofs = 0;
  368. int idx = 0;
  369. for (int i = 0; i < get_child_count(); i++) {
  370. Control *c = Object::cast_to<Control>(get_child(i));
  371. if (!c)
  372. continue;
  373. if (c->is_set_as_toplevel())
  374. continue;
  375. Size2i size = c->get_combined_minimum_size();
  376. int y = sb->get_margin(MARGIN_TOP) + vofs;
  377. int h = size.y;
  378. if (slot_info.has(idx)) {
  379. if (slot_info[idx].enable_left) {
  380. ConnCache cc;
  381. cc.pos = Point2i(edgeofs, y + h / 2);
  382. cc.type = slot_info[idx].type_left;
  383. cc.color = slot_info[idx].color_left;
  384. conn_input_cache.push_back(cc);
  385. }
  386. if (slot_info[idx].enable_right) {
  387. ConnCache cc;
  388. cc.pos = Point2i(get_size().width - edgeofs, y + h / 2);
  389. cc.type = slot_info[idx].type_right;
  390. cc.color = slot_info[idx].color_right;
  391. conn_output_cache.push_back(cc);
  392. }
  393. }
  394. vofs += sep;
  395. vofs += size.y;
  396. idx++;
  397. }
  398. connpos_dirty = false;
  399. }
  400. int GraphNode::get_connection_input_count() {
  401. if (connpos_dirty)
  402. _connpos_update();
  403. return conn_input_cache.size();
  404. }
  405. int GraphNode::get_connection_output_count() {
  406. if (connpos_dirty)
  407. _connpos_update();
  408. return conn_output_cache.size();
  409. }
  410. Vector2 GraphNode::get_connection_input_position(int p_idx) {
  411. if (connpos_dirty)
  412. _connpos_update();
  413. ERR_FAIL_INDEX_V(p_idx, conn_input_cache.size(), Vector2());
  414. Vector2 pos = conn_input_cache[p_idx].pos;
  415. pos.x *= get_scale().x;
  416. pos.y *= get_scale().y;
  417. return pos;
  418. }
  419. int GraphNode::get_connection_input_type(int p_idx) {
  420. if (connpos_dirty)
  421. _connpos_update();
  422. ERR_FAIL_INDEX_V(p_idx, conn_input_cache.size(), 0);
  423. return conn_input_cache[p_idx].type;
  424. }
  425. Color GraphNode::get_connection_input_color(int p_idx) {
  426. if (connpos_dirty)
  427. _connpos_update();
  428. ERR_FAIL_INDEX_V(p_idx, conn_input_cache.size(), Color());
  429. return conn_input_cache[p_idx].color;
  430. }
  431. Vector2 GraphNode::get_connection_output_position(int p_idx) {
  432. if (connpos_dirty)
  433. _connpos_update();
  434. ERR_FAIL_INDEX_V(p_idx, conn_output_cache.size(), Vector2());
  435. Vector2 pos = conn_output_cache[p_idx].pos;
  436. pos.x *= get_scale().x;
  437. pos.y *= get_scale().y;
  438. return pos;
  439. }
  440. int GraphNode::get_connection_output_type(int p_idx) {
  441. if (connpos_dirty)
  442. _connpos_update();
  443. ERR_FAIL_INDEX_V(p_idx, conn_output_cache.size(), 0);
  444. return conn_output_cache[p_idx].type;
  445. }
  446. Color GraphNode::get_connection_output_color(int p_idx) {
  447. if (connpos_dirty)
  448. _connpos_update();
  449. ERR_FAIL_INDEX_V(p_idx, conn_output_cache.size(), Color());
  450. return conn_output_cache[p_idx].color;
  451. }
  452. void GraphNode::_gui_input(const Ref<InputEvent> &p_ev) {
  453. Ref<InputEventMouseButton> mb = p_ev;
  454. if (mb.is_valid()) {
  455. ERR_FAIL_COND_MSG(get_parent_control() == NULL, "GraphNode must be the child of a GraphEdit node.");
  456. if (mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
  457. Vector2 mpos = Vector2(mb->get_position().x, mb->get_position().y);
  458. if (close_rect.size != Size2() && close_rect.has_point(mpos)) {
  459. //send focus to parent
  460. get_parent_control()->grab_focus();
  461. emit_signal("close_request");
  462. accept_event();
  463. return;
  464. }
  465. Ref<Texture> resizer = get_icon("resizer");
  466. if (resizable && mpos.x > get_size().x - resizer->get_width() && mpos.y > get_size().y - resizer->get_height()) {
  467. resizing = true;
  468. resizing_from = mpos;
  469. resizing_from_size = get_size();
  470. accept_event();
  471. return;
  472. }
  473. emit_signal("raise_request");
  474. }
  475. if (!mb->is_pressed() && mb->get_button_index() == BUTTON_LEFT) {
  476. resizing = false;
  477. }
  478. }
  479. Ref<InputEventMouseMotion> mm = p_ev;
  480. if (resizing && mm.is_valid()) {
  481. Vector2 mpos = mm->get_position();
  482. Vector2 diff = mpos - resizing_from;
  483. emit_signal("resize_request", resizing_from_size + diff);
  484. }
  485. }
  486. void GraphNode::set_overlay(Overlay p_overlay) {
  487. overlay = p_overlay;
  488. update();
  489. }
  490. GraphNode::Overlay GraphNode::get_overlay() const {
  491. return overlay;
  492. }
  493. void GraphNode::set_comment(bool p_enable) {
  494. comment = p_enable;
  495. update();
  496. }
  497. bool GraphNode::is_comment() const {
  498. return comment;
  499. }
  500. void GraphNode::set_resizable(bool p_enable) {
  501. resizable = p_enable;
  502. update();
  503. }
  504. bool GraphNode::is_resizable() const {
  505. return resizable;
  506. }
  507. void GraphNode::_bind_methods() {
  508. ClassDB::bind_method(D_METHOD("set_title", "title"), &GraphNode::set_title);
  509. ClassDB::bind_method(D_METHOD("get_title"), &GraphNode::get_title);
  510. ClassDB::bind_method(D_METHOD("_gui_input"), &GraphNode::_gui_input);
  511. ClassDB::bind_method(D_METHOD("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>()));
  512. ClassDB::bind_method(D_METHOD("clear_slot", "idx"), &GraphNode::clear_slot);
  513. ClassDB::bind_method(D_METHOD("clear_all_slots"), &GraphNode::clear_all_slots);
  514. ClassDB::bind_method(D_METHOD("is_slot_enabled_left", "idx"), &GraphNode::is_slot_enabled_left);
  515. ClassDB::bind_method(D_METHOD("get_slot_type_left", "idx"), &GraphNode::get_slot_type_left);
  516. ClassDB::bind_method(D_METHOD("get_slot_color_left", "idx"), &GraphNode::get_slot_color_left);
  517. ClassDB::bind_method(D_METHOD("is_slot_enabled_right", "idx"), &GraphNode::is_slot_enabled_right);
  518. ClassDB::bind_method(D_METHOD("get_slot_type_right", "idx"), &GraphNode::get_slot_type_right);
  519. ClassDB::bind_method(D_METHOD("get_slot_color_right", "idx"), &GraphNode::get_slot_color_right);
  520. ClassDB::bind_method(D_METHOD("set_offset", "offset"), &GraphNode::set_offset);
  521. ClassDB::bind_method(D_METHOD("get_offset"), &GraphNode::get_offset);
  522. ClassDB::bind_method(D_METHOD("set_comment", "comment"), &GraphNode::set_comment);
  523. ClassDB::bind_method(D_METHOD("is_comment"), &GraphNode::is_comment);
  524. ClassDB::bind_method(D_METHOD("set_resizable", "resizable"), &GraphNode::set_resizable);
  525. ClassDB::bind_method(D_METHOD("is_resizable"), &GraphNode::is_resizable);
  526. ClassDB::bind_method(D_METHOD("set_selected", "selected"), &GraphNode::set_selected);
  527. ClassDB::bind_method(D_METHOD("is_selected"), &GraphNode::is_selected);
  528. ClassDB::bind_method(D_METHOD("get_connection_output_count"), &GraphNode::get_connection_output_count);
  529. ClassDB::bind_method(D_METHOD("get_connection_input_count"), &GraphNode::get_connection_input_count);
  530. ClassDB::bind_method(D_METHOD("get_connection_output_position", "idx"), &GraphNode::get_connection_output_position);
  531. ClassDB::bind_method(D_METHOD("get_connection_output_type", "idx"), &GraphNode::get_connection_output_type);
  532. ClassDB::bind_method(D_METHOD("get_connection_output_color", "idx"), &GraphNode::get_connection_output_color);
  533. ClassDB::bind_method(D_METHOD("get_connection_input_position", "idx"), &GraphNode::get_connection_input_position);
  534. ClassDB::bind_method(D_METHOD("get_connection_input_type", "idx"), &GraphNode::get_connection_input_type);
  535. ClassDB::bind_method(D_METHOD("get_connection_input_color", "idx"), &GraphNode::get_connection_input_color);
  536. ClassDB::bind_method(D_METHOD("set_show_close_button", "show"), &GraphNode::set_show_close_button);
  537. ClassDB::bind_method(D_METHOD("is_close_button_visible"), &GraphNode::is_close_button_visible);
  538. ClassDB::bind_method(D_METHOD("set_overlay", "overlay"), &GraphNode::set_overlay);
  539. ClassDB::bind_method(D_METHOD("get_overlay"), &GraphNode::get_overlay);
  540. ADD_PROPERTY(PropertyInfo(Variant::STRING, "title"), "set_title", "get_title");
  541. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "offset"), "set_offset", "get_offset");
  542. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "show_close"), "set_show_close_button", "is_close_button_visible");
  543. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "resizable"), "set_resizable", "is_resizable");
  544. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "selected"), "set_selected", "is_selected");
  545. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "comment"), "set_comment", "is_comment");
  546. ADD_PROPERTY(PropertyInfo(Variant::INT, "overlay", PROPERTY_HINT_ENUM, "Disabled,Breakpoint,Position"), "set_overlay", "get_overlay");
  547. ADD_SIGNAL(MethodInfo("offset_changed"));
  548. ADD_SIGNAL(MethodInfo("dragged", PropertyInfo(Variant::VECTOR2, "from"), PropertyInfo(Variant::VECTOR2, "to")));
  549. ADD_SIGNAL(MethodInfo("raise_request"));
  550. ADD_SIGNAL(MethodInfo("close_request"));
  551. ADD_SIGNAL(MethodInfo("resize_request", PropertyInfo(Variant::VECTOR2, "new_minsize")));
  552. BIND_ENUM_CONSTANT(OVERLAY_DISABLED);
  553. BIND_ENUM_CONSTANT(OVERLAY_BREAKPOINT);
  554. BIND_ENUM_CONSTANT(OVERLAY_POSITION);
  555. }
  556. GraphNode::GraphNode() {
  557. overlay = OVERLAY_DISABLED;
  558. show_close = false;
  559. connpos_dirty = true;
  560. set_mouse_filter(MOUSE_FILTER_STOP);
  561. comment = false;
  562. resizable = false;
  563. resizing = false;
  564. selected = false;
  565. }