graph_edit.cpp 44 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453
  1. /*************************************************************************/
  2. /* graph_edit.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_edit.h"
  31. #include "core/os/input.h"
  32. #include "core/os/keyboard.h"
  33. #include "scene/gui/box_container.h"
  34. #ifdef TOOLS_ENABLED
  35. #include "editor/editor_scale.h"
  36. #endif
  37. #define ZOOM_SCALE 1.2
  38. #define MIN_ZOOM (((1 / ZOOM_SCALE) / ZOOM_SCALE) / ZOOM_SCALE)
  39. #define MAX_ZOOM (1 * ZOOM_SCALE * ZOOM_SCALE * ZOOM_SCALE)
  40. bool GraphEditFilter::has_point(const Point2 &p_point) const {
  41. return ge->_filter_input(p_point);
  42. }
  43. GraphEditFilter::GraphEditFilter(GraphEdit *p_edit) {
  44. ge = p_edit;
  45. }
  46. Error GraphEdit::connect_node(const StringName &p_from, int p_from_port, const StringName &p_to, int p_to_port) {
  47. if (is_node_connected(p_from, p_from_port, p_to, p_to_port))
  48. return OK;
  49. Connection c;
  50. c.from = p_from;
  51. c.from_port = p_from_port;
  52. c.to = p_to;
  53. c.to_port = p_to_port;
  54. c.activity = 0;
  55. connections.push_back(c);
  56. top_layer->update();
  57. update();
  58. connections_layer->update();
  59. return OK;
  60. }
  61. bool GraphEdit::is_node_connected(const StringName &p_from, int p_from_port, const StringName &p_to, int p_to_port) {
  62. for (List<Connection>::Element *E = connections.front(); E; E = E->next()) {
  63. if (E->get().from == p_from && E->get().from_port == p_from_port && E->get().to == p_to && E->get().to_port == p_to_port)
  64. return true;
  65. }
  66. return false;
  67. }
  68. void GraphEdit::disconnect_node(const StringName &p_from, int p_from_port, const StringName &p_to, int p_to_port) {
  69. for (List<Connection>::Element *E = connections.front(); E; E = E->next()) {
  70. if (E->get().from == p_from && E->get().from_port == p_from_port && E->get().to == p_to && E->get().to_port == p_to_port) {
  71. connections.erase(E);
  72. top_layer->update();
  73. update();
  74. connections_layer->update();
  75. return;
  76. }
  77. }
  78. }
  79. bool GraphEdit::clips_input() const {
  80. return true;
  81. }
  82. void GraphEdit::get_connection_list(List<Connection> *r_connections) const {
  83. *r_connections = connections;
  84. }
  85. void GraphEdit::set_scroll_ofs(const Vector2 &p_ofs) {
  86. setting_scroll_ofs = true;
  87. h_scroll->set_value(p_ofs.x);
  88. v_scroll->set_value(p_ofs.y);
  89. _update_scroll();
  90. setting_scroll_ofs = false;
  91. }
  92. Vector2 GraphEdit::get_scroll_ofs() const {
  93. return Vector2(h_scroll->get_value(), v_scroll->get_value());
  94. }
  95. void GraphEdit::_scroll_moved(double) {
  96. if (!awaiting_scroll_offset_update) {
  97. call_deferred("_update_scroll_offset");
  98. awaiting_scroll_offset_update = true;
  99. }
  100. top_layer->update();
  101. update();
  102. if (!setting_scroll_ofs) { //in godot, signals on change value are avoided as a convention
  103. emit_signal("scroll_offset_changed", get_scroll_ofs());
  104. }
  105. }
  106. void GraphEdit::_update_scroll_offset() {
  107. set_block_minimum_size_adjust(true);
  108. for (int i = 0; i < get_child_count(); i++) {
  109. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  110. if (!gn)
  111. continue;
  112. Point2 pos = gn->get_offset() * zoom;
  113. pos -= Point2(h_scroll->get_value(), v_scroll->get_value());
  114. gn->set_position(pos);
  115. if (gn->get_scale() != Vector2(zoom, zoom)) {
  116. gn->set_scale(Vector2(zoom, zoom));
  117. }
  118. }
  119. connections_layer->set_position(-Point2(h_scroll->get_value(), v_scroll->get_value()));
  120. set_block_minimum_size_adjust(false);
  121. awaiting_scroll_offset_update = false;
  122. }
  123. void GraphEdit::_update_scroll() {
  124. if (updating)
  125. return;
  126. updating = true;
  127. set_block_minimum_size_adjust(true);
  128. Rect2 screen;
  129. for (int i = 0; i < get_child_count(); i++) {
  130. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  131. if (!gn)
  132. continue;
  133. Rect2 r;
  134. r.position = gn->get_offset() * zoom;
  135. r.size = gn->get_size() * zoom;
  136. screen = screen.merge(r);
  137. }
  138. screen.position -= get_size();
  139. screen.size += get_size() * 2.0;
  140. h_scroll->set_min(screen.position.x);
  141. h_scroll->set_max(screen.position.x + screen.size.x);
  142. h_scroll->set_page(get_size().x);
  143. if (h_scroll->get_max() - h_scroll->get_min() <= h_scroll->get_page())
  144. h_scroll->hide();
  145. else
  146. h_scroll->show();
  147. v_scroll->set_min(screen.position.y);
  148. v_scroll->set_max(screen.position.y + screen.size.y);
  149. v_scroll->set_page(get_size().y);
  150. if (v_scroll->get_max() - v_scroll->get_min() <= v_scroll->get_page())
  151. v_scroll->hide();
  152. else
  153. v_scroll->show();
  154. Size2 hmin = h_scroll->get_combined_minimum_size();
  155. Size2 vmin = v_scroll->get_combined_minimum_size();
  156. // Avoid scrollbar overlapping.
  157. h_scroll->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, v_scroll->is_visible() ? -vmin.width : 0);
  158. v_scroll->set_anchor_and_margin(MARGIN_BOTTOM, ANCHOR_END, h_scroll->is_visible() ? -hmin.height : 0);
  159. set_block_minimum_size_adjust(false);
  160. if (!awaiting_scroll_offset_update) {
  161. call_deferred("_update_scroll_offset");
  162. awaiting_scroll_offset_update = true;
  163. }
  164. updating = false;
  165. }
  166. void GraphEdit::_graph_node_raised(Node *p_gn) {
  167. GraphNode *gn = Object::cast_to<GraphNode>(p_gn);
  168. ERR_FAIL_COND(!gn);
  169. if (gn->is_comment()) {
  170. move_child(gn, 0);
  171. } else {
  172. gn->raise();
  173. }
  174. int first_not_comment = 0;
  175. for (int i = 0; i < get_child_count(); i++) {
  176. GraphNode *gn2 = Object::cast_to<GraphNode>(get_child(i));
  177. if (gn2 && !gn2->is_comment()) {
  178. first_not_comment = i;
  179. break;
  180. }
  181. }
  182. move_child(connections_layer, first_not_comment);
  183. top_layer->raise();
  184. emit_signal("node_selected", p_gn);
  185. }
  186. void GraphEdit::_graph_node_moved(Node *p_gn) {
  187. GraphNode *gn = Object::cast_to<GraphNode>(p_gn);
  188. ERR_FAIL_COND(!gn);
  189. top_layer->update();
  190. update();
  191. connections_layer->update();
  192. }
  193. void GraphEdit::add_child_notify(Node *p_child) {
  194. Control::add_child_notify(p_child);
  195. top_layer->call_deferred("raise"); //top layer always on top!
  196. GraphNode *gn = Object::cast_to<GraphNode>(p_child);
  197. if (gn) {
  198. gn->set_scale(Vector2(zoom, zoom));
  199. gn->connect("offset_changed", this, "_graph_node_moved", varray(gn));
  200. gn->connect("raise_request", this, "_graph_node_raised", varray(gn));
  201. gn->connect("item_rect_changed", connections_layer, "update");
  202. _graph_node_moved(gn);
  203. gn->set_mouse_filter(MOUSE_FILTER_PASS);
  204. }
  205. }
  206. void GraphEdit::remove_child_notify(Node *p_child) {
  207. Control::remove_child_notify(p_child);
  208. if (is_inside_tree()) {
  209. top_layer->call_deferred("raise"); //top layer always on top!
  210. }
  211. GraphNode *gn = Object::cast_to<GraphNode>(p_child);
  212. if (gn) {
  213. gn->disconnect("offset_changed", this, "_graph_node_moved");
  214. gn->disconnect("raise_request", this, "_graph_node_raised");
  215. gn->disconnect("item_rect_changed", connections_layer, "update");
  216. }
  217. }
  218. void GraphEdit::_notification(int p_what) {
  219. if (p_what == NOTIFICATION_ENTER_TREE || p_what == NOTIFICATION_THEME_CHANGED) {
  220. port_grab_distance_horizontal = get_constant("port_grab_distance_horizontal");
  221. port_grab_distance_vertical = get_constant("port_grab_distance_vertical");
  222. zoom_minus->set_icon(get_icon("minus"));
  223. zoom_reset->set_icon(get_icon("reset"));
  224. zoom_plus->set_icon(get_icon("more"));
  225. snap_button->set_icon(get_icon("snap"));
  226. }
  227. if (p_what == NOTIFICATION_READY) {
  228. Size2 hmin = h_scroll->get_combined_minimum_size();
  229. Size2 vmin = v_scroll->get_combined_minimum_size();
  230. h_scroll->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_BEGIN, 0);
  231. h_scroll->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, 0);
  232. h_scroll->set_anchor_and_margin(MARGIN_TOP, ANCHOR_END, -hmin.height);
  233. h_scroll->set_anchor_and_margin(MARGIN_BOTTOM, ANCHOR_END, 0);
  234. v_scroll->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_END, -vmin.width);
  235. v_scroll->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, 0);
  236. v_scroll->set_anchor_and_margin(MARGIN_TOP, ANCHOR_BEGIN, 0);
  237. v_scroll->set_anchor_and_margin(MARGIN_BOTTOM, ANCHOR_END, 0);
  238. }
  239. if (p_what == NOTIFICATION_DRAW) {
  240. draw_style_box(get_stylebox("bg"), Rect2(Point2(), get_size()));
  241. if (is_using_snap()) {
  242. //draw grid
  243. int snap = get_snap();
  244. Vector2 offset = get_scroll_ofs() / zoom;
  245. Size2 size = get_size() / zoom;
  246. Point2i from = (offset / float(snap)).floor();
  247. Point2i len = (size / float(snap)).floor() + Vector2(1, 1);
  248. Color grid_minor = get_color("grid_minor");
  249. Color grid_major = get_color("grid_major");
  250. for (int i = from.x; i < from.x + len.x; i++) {
  251. Color color;
  252. if (ABS(i) % 10 == 0)
  253. color = grid_major;
  254. else
  255. color = grid_minor;
  256. float base_ofs = i * snap * zoom - offset.x * zoom;
  257. draw_line(Vector2(base_ofs, 0), Vector2(base_ofs, get_size().height), color);
  258. }
  259. for (int i = from.y; i < from.y + len.y; i++) {
  260. Color color;
  261. if (ABS(i) % 10 == 0)
  262. color = grid_major;
  263. else
  264. color = grid_minor;
  265. float base_ofs = i * snap * zoom - offset.y * zoom;
  266. draw_line(Vector2(0, base_ofs), Vector2(get_size().width, base_ofs), color);
  267. }
  268. }
  269. }
  270. if (p_what == NOTIFICATION_RESIZED) {
  271. _update_scroll();
  272. top_layer->update();
  273. }
  274. }
  275. bool GraphEdit::_filter_input(const Point2 &p_point) {
  276. Ref<Texture> port = get_icon("port", "GraphNode");
  277. for (int i = get_child_count() - 1; i >= 0; i--) {
  278. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  279. if (!gn)
  280. continue;
  281. for (int j = 0; j < gn->get_connection_output_count(); j++) {
  282. Vector2 pos = gn->get_connection_output_position(j) + gn->get_position();
  283. if (is_in_hot_zone(pos, p_point))
  284. return true;
  285. }
  286. for (int j = 0; j < gn->get_connection_input_count(); j++) {
  287. Vector2 pos = gn->get_connection_input_position(j) + gn->get_position();
  288. if (is_in_hot_zone(pos, p_point)) {
  289. return true;
  290. }
  291. }
  292. }
  293. return false;
  294. }
  295. void GraphEdit::_top_layer_input(const Ref<InputEvent> &p_ev) {
  296. Ref<InputEventMouseButton> mb = p_ev;
  297. if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT && mb->is_pressed()) {
  298. Ref<Texture> port = get_icon("port", "GraphNode");
  299. Vector2 mpos(mb->get_position().x, mb->get_position().y);
  300. for (int i = get_child_count() - 1; i >= 0; i--) {
  301. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  302. if (!gn)
  303. continue;
  304. for (int j = 0; j < gn->get_connection_output_count(); j++) {
  305. Vector2 pos = gn->get_connection_output_position(j) + gn->get_position();
  306. if (is_in_hot_zone(pos, mpos)) {
  307. if (valid_left_disconnect_types.has(gn->get_connection_output_type(j))) {
  308. //check disconnect
  309. for (List<Connection>::Element *E = connections.front(); E; E = E->next()) {
  310. if (E->get().from == gn->get_name() && E->get().from_port == j) {
  311. Node *to = get_node(String(E->get().to));
  312. if (Object::cast_to<GraphNode>(to)) {
  313. connecting_from = E->get().to;
  314. connecting_index = E->get().to_port;
  315. connecting_out = false;
  316. connecting_type = Object::cast_to<GraphNode>(to)->get_connection_input_type(E->get().to_port);
  317. connecting_color = Object::cast_to<GraphNode>(to)->get_connection_input_color(E->get().to_port);
  318. connecting_target = false;
  319. connecting_to = pos;
  320. just_disconnected = true;
  321. emit_signal("disconnection_request", E->get().from, E->get().from_port, E->get().to, E->get().to_port);
  322. to = get_node(String(connecting_from)); //maybe it was erased
  323. if (Object::cast_to<GraphNode>(to)) {
  324. connecting = true;
  325. }
  326. return;
  327. }
  328. }
  329. }
  330. }
  331. connecting = true;
  332. connecting_from = gn->get_name();
  333. connecting_index = j;
  334. connecting_out = true;
  335. connecting_type = gn->get_connection_output_type(j);
  336. connecting_color = gn->get_connection_output_color(j);
  337. connecting_target = false;
  338. connecting_to = pos;
  339. just_disconnected = false;
  340. return;
  341. }
  342. }
  343. for (int j = 0; j < gn->get_connection_input_count(); j++) {
  344. Vector2 pos = gn->get_connection_input_position(j) + gn->get_position();
  345. if (is_in_hot_zone(pos, mpos)) {
  346. if (right_disconnects || valid_right_disconnect_types.has(gn->get_connection_input_type(j))) {
  347. //check disconnect
  348. for (List<Connection>::Element *E = connections.front(); E; E = E->next()) {
  349. if (E->get().to == gn->get_name() && E->get().to_port == j) {
  350. Node *fr = get_node(String(E->get().from));
  351. if (Object::cast_to<GraphNode>(fr)) {
  352. connecting_from = E->get().from;
  353. connecting_index = E->get().from_port;
  354. connecting_out = true;
  355. connecting_type = Object::cast_to<GraphNode>(fr)->get_connection_output_type(E->get().from_port);
  356. connecting_color = Object::cast_to<GraphNode>(fr)->get_connection_output_color(E->get().from_port);
  357. connecting_target = false;
  358. connecting_to = pos;
  359. just_disconnected = true;
  360. emit_signal("disconnection_request", E->get().from, E->get().from_port, E->get().to, E->get().to_port);
  361. fr = get_node(String(connecting_from)); //maybe it was erased
  362. if (Object::cast_to<GraphNode>(fr)) {
  363. connecting = true;
  364. }
  365. return;
  366. }
  367. }
  368. }
  369. }
  370. connecting = true;
  371. connecting_from = gn->get_name();
  372. connecting_index = j;
  373. connecting_out = false;
  374. connecting_type = gn->get_connection_input_type(j);
  375. connecting_color = gn->get_connection_input_color(j);
  376. connecting_target = false;
  377. connecting_to = pos;
  378. just_disconnected = false;
  379. return;
  380. }
  381. }
  382. }
  383. }
  384. Ref<InputEventMouseMotion> mm = p_ev;
  385. if (mm.is_valid() && connecting) {
  386. connecting_to = mm->get_position();
  387. connecting_target = false;
  388. top_layer->update();
  389. Ref<Texture> port = get_icon("port", "GraphNode");
  390. Vector2 mpos = mm->get_position();
  391. for (int i = get_child_count() - 1; i >= 0; i--) {
  392. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  393. if (!gn)
  394. continue;
  395. if (!connecting_out) {
  396. for (int j = 0; j < gn->get_connection_output_count(); j++) {
  397. Vector2 pos = gn->get_connection_output_position(j) + gn->get_position();
  398. int type = gn->get_connection_output_type(j);
  399. if ((type == connecting_type || valid_connection_types.has(ConnType(type, connecting_type))) && is_in_hot_zone(pos, mpos)) {
  400. connecting_target = true;
  401. connecting_to = pos;
  402. connecting_target_to = gn->get_name();
  403. connecting_target_index = j;
  404. return;
  405. }
  406. }
  407. } else {
  408. for (int j = 0; j < gn->get_connection_input_count(); j++) {
  409. Vector2 pos = gn->get_connection_input_position(j) + gn->get_position();
  410. int type = gn->get_connection_input_type(j);
  411. if ((type == connecting_type || valid_connection_types.has(ConnType(type, connecting_type))) && is_in_hot_zone(pos, mpos)) {
  412. connecting_target = true;
  413. connecting_to = pos;
  414. connecting_target_to = gn->get_name();
  415. connecting_target_index = j;
  416. return;
  417. }
  418. }
  419. }
  420. }
  421. }
  422. if (mb.is_valid() && mb->get_button_index() == BUTTON_LEFT && !mb->is_pressed()) {
  423. if (connecting && connecting_target) {
  424. String from = connecting_from;
  425. int from_slot = connecting_index;
  426. String to = connecting_target_to;
  427. int to_slot = connecting_target_index;
  428. if (!connecting_out) {
  429. SWAP(from, to);
  430. SWAP(from_slot, to_slot);
  431. }
  432. emit_signal("connection_request", from, from_slot, to, to_slot);
  433. } else if (!just_disconnected) {
  434. String from = connecting_from;
  435. int from_slot = connecting_index;
  436. Vector2 ofs = Vector2(mb->get_position().x, mb->get_position().y);
  437. if (!connecting_out) {
  438. emit_signal("connection_from_empty", from, from_slot, ofs);
  439. } else {
  440. emit_signal("connection_to_empty", from, from_slot, ofs);
  441. }
  442. }
  443. connecting = false;
  444. top_layer->update();
  445. update();
  446. connections_layer->update();
  447. }
  448. }
  449. bool GraphEdit::_check_clickable_control(Control *p_control, const Vector2 &pos) {
  450. if (p_control->is_set_as_toplevel() || !p_control->is_visible())
  451. return false;
  452. if (!p_control->has_point(pos) || p_control->get_mouse_filter() == MOUSE_FILTER_IGNORE) {
  453. //test children
  454. for (int i = 0; i < p_control->get_child_count(); i++) {
  455. Control *subchild = Object::cast_to<Control>(p_control->get_child(i));
  456. if (!subchild)
  457. continue;
  458. if (_check_clickable_control(subchild, pos - subchild->get_position())) {
  459. return true;
  460. }
  461. }
  462. return false;
  463. } else {
  464. return true;
  465. }
  466. }
  467. bool GraphEdit::is_in_hot_zone(const Vector2 &pos, const Vector2 &p_mouse_pos) {
  468. if (!Rect2(pos.x - port_grab_distance_horizontal, pos.y - port_grab_distance_vertical, port_grab_distance_horizontal * 2, port_grab_distance_vertical * 2).has_point(p_mouse_pos))
  469. return false;
  470. for (int i = 0; i < get_child_count(); i++) {
  471. Control *child = Object::cast_to<Control>(get_child(i));
  472. if (!child)
  473. continue;
  474. Rect2 rect = child->get_rect();
  475. if (rect.has_point(p_mouse_pos)) {
  476. //check sub-controls
  477. Vector2 subpos = p_mouse_pos - rect.position;
  478. for (int j = 0; j < child->get_child_count(); j++) {
  479. Control *subchild = Object::cast_to<Control>(child->get_child(j));
  480. if (!subchild)
  481. continue;
  482. if (_check_clickable_control(subchild, subpos - subchild->get_position())) {
  483. return false;
  484. }
  485. }
  486. }
  487. }
  488. return true;
  489. }
  490. template <class Vector2>
  491. static _FORCE_INLINE_ Vector2 _bezier_interp(real_t t, Vector2 start, Vector2 control_1, Vector2 control_2, Vector2 end) {
  492. /* Formula from Wikipedia article on Bezier curves. */
  493. real_t omt = (1.0 - t);
  494. real_t omt2 = omt * omt;
  495. real_t omt3 = omt2 * omt;
  496. real_t t2 = t * t;
  497. real_t t3 = t2 * t;
  498. return start * omt3 + control_1 * omt2 * t * 3.0 + control_2 * omt * t2 * 3.0 + end * t3;
  499. }
  500. void GraphEdit::_bake_segment2d(Vector<Vector2> &points, Vector<Color> &colors, float p_begin, float p_end, const Vector2 &p_a, const Vector2 &p_out, const Vector2 &p_b, const Vector2 &p_in, int p_depth, int p_min_depth, int p_max_depth, float p_tol, const Color &p_color, const Color &p_to_color, int &lines) const {
  501. float mp = p_begin + (p_end - p_begin) * 0.5;
  502. Vector2 beg = _bezier_interp(p_begin, p_a, p_a + p_out, p_b + p_in, p_b);
  503. Vector2 mid = _bezier_interp(mp, p_a, p_a + p_out, p_b + p_in, p_b);
  504. Vector2 end = _bezier_interp(p_end, p_a, p_a + p_out, p_b + p_in, p_b);
  505. Vector2 na = (mid - beg).normalized();
  506. Vector2 nb = (end - mid).normalized();
  507. float dp = Math::rad2deg(Math::acos(na.dot(nb)));
  508. if (p_depth >= p_min_depth && (dp < p_tol || p_depth >= p_max_depth)) {
  509. points.push_back((beg + end) * 0.5);
  510. colors.push_back(p_color.linear_interpolate(p_to_color, mp));
  511. lines++;
  512. } else {
  513. _bake_segment2d(points, colors, p_begin, mp, p_a, p_out, p_b, p_in, p_depth + 1, p_min_depth, p_max_depth, p_tol, p_color, p_to_color, lines);
  514. _bake_segment2d(points, colors, mp, p_end, p_a, p_out, p_b, p_in, p_depth + 1, p_min_depth, p_max_depth, p_tol, p_color, p_to_color, lines);
  515. }
  516. }
  517. void GraphEdit::_draw_cos_line(CanvasItem *p_where, const Vector2 &p_from, const Vector2 &p_to, const Color &p_color, const Color &p_to_color) {
  518. //cubic bezier code
  519. float diff = p_to.x - p_from.x;
  520. float cp_offset;
  521. int cp_len = get_constant("bezier_len_pos");
  522. int cp_neg_len = get_constant("bezier_len_neg");
  523. if (diff > 0) {
  524. cp_offset = MIN(cp_len, diff * 0.5);
  525. } else {
  526. cp_offset = MAX(MIN(cp_len - diff, cp_neg_len), -diff * 0.5);
  527. }
  528. Vector2 c1 = Vector2(cp_offset * zoom, 0);
  529. Vector2 c2 = Vector2(-cp_offset * zoom, 0);
  530. int lines = 0;
  531. Vector<Point2> points;
  532. Vector<Color> colors;
  533. points.push_back(p_from);
  534. colors.push_back(p_color);
  535. _bake_segment2d(points, colors, 0, 1, p_from, c1, p_to, c2, 0, 3, 9, 3, p_color, p_to_color, lines);
  536. points.push_back(p_to);
  537. colors.push_back(p_to_color);
  538. #ifdef TOOLS_ENABLED
  539. p_where->draw_polyline_colors(points, colors, Math::floor(2 * EDSCALE), true);
  540. #else
  541. p_where->draw_polyline_colors(points, colors, 2, true);
  542. #endif
  543. }
  544. void GraphEdit::_connections_layer_draw() {
  545. Color activity_color = get_color("activity");
  546. //draw connections
  547. List<List<Connection>::Element *> to_erase;
  548. for (List<Connection>::Element *E = connections.front(); E; E = E->next()) {
  549. NodePath fromnp(E->get().from);
  550. Node *from = get_node(fromnp);
  551. if (!from) {
  552. to_erase.push_back(E);
  553. continue;
  554. }
  555. GraphNode *gfrom = Object::cast_to<GraphNode>(from);
  556. if (!gfrom) {
  557. to_erase.push_back(E);
  558. continue;
  559. }
  560. NodePath tonp(E->get().to);
  561. Node *to = get_node(tonp);
  562. if (!to) {
  563. to_erase.push_back(E);
  564. continue;
  565. }
  566. GraphNode *gto = Object::cast_to<GraphNode>(to);
  567. if (!gto) {
  568. to_erase.push_back(E);
  569. continue;
  570. }
  571. Vector2 frompos = gfrom->get_connection_output_position(E->get().from_port) + gfrom->get_offset() * zoom;
  572. Color color = gfrom->get_connection_output_color(E->get().from_port);
  573. Vector2 topos = gto->get_connection_input_position(E->get().to_port) + gto->get_offset() * zoom;
  574. Color tocolor = gto->get_connection_input_color(E->get().to_port);
  575. if (E->get().activity > 0) {
  576. color = color.linear_interpolate(activity_color, E->get().activity);
  577. tocolor = tocolor.linear_interpolate(activity_color, E->get().activity);
  578. }
  579. _draw_cos_line(connections_layer, frompos, topos, color, tocolor);
  580. }
  581. while (to_erase.size()) {
  582. connections.erase(to_erase.front()->get());
  583. to_erase.pop_front();
  584. }
  585. }
  586. void GraphEdit::_top_layer_draw() {
  587. _update_scroll();
  588. if (connecting) {
  589. Node *fromn = get_node(connecting_from);
  590. ERR_FAIL_COND(!fromn);
  591. GraphNode *from = Object::cast_to<GraphNode>(fromn);
  592. ERR_FAIL_COND(!from);
  593. Vector2 pos;
  594. if (connecting_out)
  595. pos = from->get_connection_output_position(connecting_index);
  596. else
  597. pos = from->get_connection_input_position(connecting_index);
  598. pos += from->get_position();
  599. Vector2 topos;
  600. topos = connecting_to;
  601. Color col = connecting_color;
  602. if (connecting_target) {
  603. col.r += 0.4;
  604. col.g += 0.4;
  605. col.b += 0.4;
  606. }
  607. if (!connecting_out) {
  608. SWAP(pos, topos);
  609. }
  610. _draw_cos_line(top_layer, pos, topos, col, col);
  611. }
  612. if (box_selecting) {
  613. top_layer->draw_rect(box_selecting_rect, get_color("selection_fill"));
  614. top_layer->draw_rect(box_selecting_rect, get_color("selection_stroke"), false);
  615. }
  616. }
  617. void GraphEdit::set_selected(Node *p_child) {
  618. for (int i = get_child_count() - 1; i >= 0; i--) {
  619. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  620. if (!gn)
  621. continue;
  622. gn->set_selected(gn == p_child);
  623. }
  624. }
  625. void GraphEdit::_gui_input(const Ref<InputEvent> &p_ev) {
  626. Ref<InputEventMouseMotion> mm = p_ev;
  627. if (mm.is_valid() && (mm->get_button_mask() & BUTTON_MASK_MIDDLE || (mm->get_button_mask() & BUTTON_MASK_LEFT && Input::get_singleton()->is_key_pressed(KEY_SPACE)))) {
  628. h_scroll->set_value(h_scroll->get_value() - mm->get_relative().x);
  629. v_scroll->set_value(v_scroll->get_value() - mm->get_relative().y);
  630. }
  631. if (mm.is_valid() && dragging) {
  632. just_selected = true;
  633. drag_accum += mm->get_relative();
  634. for (int i = get_child_count() - 1; i >= 0; i--) {
  635. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  636. if (gn && gn->is_selected()) {
  637. Vector2 pos = (gn->get_drag_from() * zoom + drag_accum) / zoom;
  638. // Snapping can be toggled temporarily by holding down Ctrl.
  639. // This is done here as to not toggle the grid when holding down Ctrl.
  640. if (is_using_snap() ^ Input::get_singleton()->is_key_pressed(KEY_CONTROL)) {
  641. const int snap = get_snap();
  642. pos = pos.snapped(Vector2(snap, snap));
  643. }
  644. gn->set_offset(pos);
  645. }
  646. }
  647. }
  648. if (mm.is_valid() && box_selecting) {
  649. box_selecting_to = mm->get_position();
  650. box_selecting_rect = Rect2(MIN(box_selecting_from.x, box_selecting_to.x),
  651. MIN(box_selecting_from.y, box_selecting_to.y),
  652. ABS(box_selecting_from.x - box_selecting_to.x),
  653. ABS(box_selecting_from.y - box_selecting_to.y));
  654. for (int i = get_child_count() - 1; i >= 0; i--) {
  655. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  656. if (!gn)
  657. continue;
  658. Rect2 r = gn->get_rect();
  659. r.size *= zoom;
  660. bool in_box = r.intersects(box_selecting_rect);
  661. if (in_box) {
  662. if (!gn->is_selected() && box_selection_mode_additive) {
  663. emit_signal("node_selected", gn);
  664. } else if (gn->is_selected() && !box_selection_mode_additive) {
  665. emit_signal("node_unselected", gn);
  666. }
  667. gn->set_selected(box_selection_mode_additive);
  668. } else {
  669. bool select = (previus_selected.find(gn) != NULL);
  670. if (gn->is_selected() && !select) {
  671. emit_signal("node_unselected", gn);
  672. } else if (!gn->is_selected() && select) {
  673. emit_signal("node_selected", gn);
  674. }
  675. gn->set_selected(select);
  676. }
  677. }
  678. top_layer->update();
  679. }
  680. Ref<InputEventMouseButton> b = p_ev;
  681. if (b.is_valid()) {
  682. if (b->get_button_index() == BUTTON_RIGHT && b->is_pressed()) {
  683. if (box_selecting) {
  684. box_selecting = false;
  685. for (int i = get_child_count() - 1; i >= 0; i--) {
  686. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  687. if (!gn)
  688. continue;
  689. bool select = (previus_selected.find(gn) != NULL);
  690. if (gn->is_selected() && !select) {
  691. emit_signal("node_unselected", gn);
  692. } else if (!gn->is_selected() && select) {
  693. emit_signal("node_selected", gn);
  694. }
  695. gn->set_selected(select);
  696. }
  697. top_layer->update();
  698. } else {
  699. if (connecting) {
  700. connecting = false;
  701. top_layer->update();
  702. } else {
  703. emit_signal("popup_request", b->get_global_position());
  704. }
  705. }
  706. }
  707. if (b->get_button_index() == BUTTON_LEFT && !b->is_pressed() && dragging) {
  708. if (!just_selected && drag_accum == Vector2() && Input::get_singleton()->is_key_pressed(KEY_CONTROL)) {
  709. //deselect current node
  710. for (int i = get_child_count() - 1; i >= 0; i--) {
  711. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  712. if (gn) {
  713. Rect2 r = gn->get_rect();
  714. r.size *= zoom;
  715. if (r.has_point(b->get_position())) {
  716. emit_signal("node_unselected", gn);
  717. gn->set_selected(false);
  718. }
  719. }
  720. }
  721. }
  722. if (drag_accum != Vector2()) {
  723. emit_signal("_begin_node_move");
  724. for (int i = get_child_count() - 1; i >= 0; i--) {
  725. GraphNode *gn = Object::cast_to<GraphNode>(get_child(i));
  726. if (gn && gn->is_selected())
  727. gn->set_drag(false);
  728. }
  729. emit_signal("_end_node_move");
  730. }
  731. dragging = false;
  732. top_layer->update();
  733. update();
  734. connections_layer->update();
  735. }
  736. if (b->get_button_index() == BUTTON_LEFT && b->is_pressed()) {
  737. GraphNode *gn = NULL;
  738. for (int i = get_child_count() - 1; i >= 0; i--) {
  739. GraphNode *gn_selected = Object::cast_to<GraphNode>(get_child(i));
  740. if (gn_selected) {
  741. if (gn_selected->is_resizing())
  742. continue;
  743. if (gn_selected->has_point(b->get_position() - gn_selected->get_position())) {
  744. gn = gn_selected;
  745. break;
  746. }
  747. }
  748. }
  749. if (gn) {
  750. if (_filter_input(b->get_position()))
  751. return;
  752. dragging = true;
  753. drag_accum = Vector2();
  754. just_selected = !gn->is_selected();
  755. if (!gn->is_selected() && !Input::get_singleton()->is_key_pressed(KEY_CONTROL)) {
  756. for (int i = 0; i < get_child_count(); i++) {
  757. GraphNode *o_gn = Object::cast_to<GraphNode>(get_child(i));
  758. if (o_gn) {
  759. if (o_gn == gn) {
  760. o_gn->set_selected(true);
  761. } else {
  762. if (o_gn->is_selected()) {
  763. emit_signal("node_unselected", o_gn);
  764. }
  765. o_gn->set_selected(false);
  766. }
  767. }
  768. }
  769. }
  770. gn->set_selected(true);
  771. for (int i = 0; i < get_child_count(); i++) {
  772. GraphNode *o_gn = Object::cast_to<GraphNode>(get_child(i));
  773. if (!o_gn)
  774. continue;
  775. if (o_gn->is_selected())
  776. o_gn->set_drag(true);
  777. }
  778. } else {
  779. if (_filter_input(b->get_position()))
  780. return;
  781. if (Input::get_singleton()->is_key_pressed(KEY_SPACE))
  782. return;
  783. box_selecting = true;
  784. box_selecting_from = b->get_position();
  785. if (b->get_control()) {
  786. box_selection_mode_additive = true;
  787. previus_selected.clear();
  788. for (int i = get_child_count() - 1; i >= 0; i--) {
  789. GraphNode *gn2 = Object::cast_to<GraphNode>(get_child(i));
  790. if (!gn2 || !gn2->is_selected())
  791. continue;
  792. previus_selected.push_back(gn2);
  793. }
  794. } else if (b->get_shift()) {
  795. box_selection_mode_additive = false;
  796. previus_selected.clear();
  797. for (int i = get_child_count() - 1; i >= 0; i--) {
  798. GraphNode *gn2 = Object::cast_to<GraphNode>(get_child(i));
  799. if (!gn2 || !gn2->is_selected())
  800. continue;
  801. previus_selected.push_back(gn2);
  802. }
  803. } else {
  804. box_selection_mode_additive = true;
  805. previus_selected.clear();
  806. for (int i = get_child_count() - 1; i >= 0; i--) {
  807. GraphNode *gn2 = Object::cast_to<GraphNode>(get_child(i));
  808. if (!gn2)
  809. continue;
  810. if (gn2->is_selected()) {
  811. emit_signal("node_unselected", gn2);
  812. }
  813. gn2->set_selected(false);
  814. }
  815. }
  816. }
  817. }
  818. if (b->get_button_index() == BUTTON_LEFT && !b->is_pressed() && box_selecting) {
  819. box_selecting = false;
  820. previus_selected.clear();
  821. top_layer->update();
  822. }
  823. if (b->get_button_index() == BUTTON_WHEEL_UP && b->is_pressed()) {
  824. //too difficult to get right
  825. //set_zoom(zoom*ZOOM_SCALE);
  826. }
  827. if (b->get_button_index() == BUTTON_WHEEL_DOWN && b->is_pressed()) {
  828. //too difficult to get right
  829. //set_zoom(zoom/ZOOM_SCALE);
  830. }
  831. if (b->get_button_index() == BUTTON_WHEEL_UP && !Input::get_singleton()->is_key_pressed(KEY_SHIFT)) {
  832. v_scroll->set_value(v_scroll->get_value() - v_scroll->get_page() * b->get_factor() / 8);
  833. }
  834. if (b->get_button_index() == BUTTON_WHEEL_DOWN && !Input::get_singleton()->is_key_pressed(KEY_SHIFT)) {
  835. v_scroll->set_value(v_scroll->get_value() + v_scroll->get_page() * b->get_factor() / 8);
  836. }
  837. if (b->get_button_index() == BUTTON_WHEEL_RIGHT || (b->get_button_index() == BUTTON_WHEEL_DOWN && Input::get_singleton()->is_key_pressed(KEY_SHIFT))) {
  838. h_scroll->set_value(h_scroll->get_value() + h_scroll->get_page() * b->get_factor() / 8);
  839. }
  840. if (b->get_button_index() == BUTTON_WHEEL_LEFT || (b->get_button_index() == BUTTON_WHEEL_UP && Input::get_singleton()->is_key_pressed(KEY_SHIFT))) {
  841. h_scroll->set_value(h_scroll->get_value() - h_scroll->get_page() * b->get_factor() / 8);
  842. }
  843. }
  844. Ref<InputEventKey> k = p_ev;
  845. if (k.is_valid()) {
  846. if (k->get_scancode() == KEY_D && k->is_pressed() && k->get_command()) {
  847. emit_signal("duplicate_nodes_request");
  848. accept_event();
  849. }
  850. if (k->get_scancode() == KEY_C && k->is_pressed() && k->get_command()) {
  851. emit_signal("copy_nodes_request");
  852. accept_event();
  853. }
  854. if (k->get_scancode() == KEY_V && k->is_pressed() && k->get_command()) {
  855. emit_signal("paste_nodes_request");
  856. accept_event();
  857. }
  858. if (k->get_scancode() == KEY_DELETE && k->is_pressed()) {
  859. emit_signal("delete_nodes_request");
  860. accept_event();
  861. }
  862. }
  863. Ref<InputEventMagnifyGesture> magnify_gesture = p_ev;
  864. if (magnify_gesture.is_valid()) {
  865. set_zoom_custom(zoom * magnify_gesture->get_factor(), magnify_gesture->get_position());
  866. }
  867. Ref<InputEventPanGesture> pan_gesture = p_ev;
  868. if (pan_gesture.is_valid()) {
  869. h_scroll->set_value(h_scroll->get_value() + h_scroll->get_page() * pan_gesture->get_delta().x / 8);
  870. v_scroll->set_value(v_scroll->get_value() + v_scroll->get_page() * pan_gesture->get_delta().y / 8);
  871. }
  872. }
  873. void GraphEdit::set_connection_activity(const StringName &p_from, int p_from_port, const StringName &p_to, int p_to_port, float p_activity) {
  874. for (List<Connection>::Element *E = connections.front(); E; E = E->next()) {
  875. if (E->get().from == p_from && E->get().from_port == p_from_port && E->get().to == p_to && E->get().to_port == p_to_port) {
  876. if (Math::is_equal_approx(E->get().activity, p_activity)) {
  877. //update only if changed
  878. top_layer->update();
  879. connections_layer->update();
  880. }
  881. E->get().activity = p_activity;
  882. return;
  883. }
  884. }
  885. }
  886. void GraphEdit::clear_connections() {
  887. connections.clear();
  888. update();
  889. connections_layer->update();
  890. }
  891. void GraphEdit::set_zoom(float p_zoom) {
  892. set_zoom_custom(p_zoom, get_size() / 2);
  893. }
  894. void GraphEdit::set_zoom_custom(float p_zoom, const Vector2 &p_center) {
  895. p_zoom = CLAMP(p_zoom, MIN_ZOOM, MAX_ZOOM);
  896. if (zoom == p_zoom)
  897. return;
  898. zoom_minus->set_disabled(zoom == MIN_ZOOM);
  899. zoom_plus->set_disabled(zoom == MAX_ZOOM);
  900. Vector2 sbofs = (Vector2(h_scroll->get_value(), v_scroll->get_value()) + p_center) / zoom;
  901. zoom = p_zoom;
  902. top_layer->update();
  903. _update_scroll();
  904. connections_layer->update();
  905. if (is_visible_in_tree()) {
  906. Vector2 ofs = sbofs * zoom - p_center;
  907. h_scroll->set_value(ofs.x);
  908. v_scroll->set_value(ofs.y);
  909. }
  910. update();
  911. }
  912. float GraphEdit::get_zoom() const {
  913. return zoom;
  914. }
  915. void GraphEdit::set_right_disconnects(bool p_enable) {
  916. right_disconnects = p_enable;
  917. }
  918. bool GraphEdit::is_right_disconnects_enabled() const {
  919. return right_disconnects;
  920. }
  921. void GraphEdit::add_valid_right_disconnect_type(int p_type) {
  922. valid_right_disconnect_types.insert(p_type);
  923. }
  924. void GraphEdit::remove_valid_right_disconnect_type(int p_type) {
  925. valid_right_disconnect_types.erase(p_type);
  926. }
  927. void GraphEdit::add_valid_left_disconnect_type(int p_type) {
  928. valid_left_disconnect_types.insert(p_type);
  929. }
  930. void GraphEdit::remove_valid_left_disconnect_type(int p_type) {
  931. valid_left_disconnect_types.erase(p_type);
  932. }
  933. Array GraphEdit::_get_connection_list() const {
  934. List<Connection> conns;
  935. get_connection_list(&conns);
  936. Array arr;
  937. for (List<Connection>::Element *E = conns.front(); E; E = E->next()) {
  938. Dictionary d;
  939. d["from"] = E->get().from;
  940. d["from_port"] = E->get().from_port;
  941. d["to"] = E->get().to;
  942. d["to_port"] = E->get().to_port;
  943. arr.push_back(d);
  944. }
  945. return arr;
  946. }
  947. void GraphEdit::_zoom_minus() {
  948. set_zoom(zoom / ZOOM_SCALE);
  949. }
  950. void GraphEdit::_zoom_reset() {
  951. set_zoom(1);
  952. }
  953. void GraphEdit::_zoom_plus() {
  954. set_zoom(zoom * ZOOM_SCALE);
  955. }
  956. void GraphEdit::add_valid_connection_type(int p_type, int p_with_type) {
  957. ConnType ct;
  958. ct.type_a = p_type;
  959. ct.type_b = p_with_type;
  960. valid_connection_types.insert(ct);
  961. }
  962. void GraphEdit::remove_valid_connection_type(int p_type, int p_with_type) {
  963. ConnType ct;
  964. ct.type_a = p_type;
  965. ct.type_b = p_with_type;
  966. valid_connection_types.erase(ct);
  967. }
  968. bool GraphEdit::is_valid_connection_type(int p_type, int p_with_type) const {
  969. ConnType ct;
  970. ct.type_a = p_type;
  971. ct.type_b = p_with_type;
  972. return valid_connection_types.has(ct);
  973. }
  974. void GraphEdit::set_use_snap(bool p_enable) {
  975. snap_button->set_pressed(p_enable);
  976. update();
  977. }
  978. bool GraphEdit::is_using_snap() const {
  979. return snap_button->is_pressed();
  980. }
  981. int GraphEdit::get_snap() const {
  982. return snap_amount->get_value();
  983. }
  984. void GraphEdit::set_snap(int p_snap) {
  985. ERR_FAIL_COND(p_snap < 5);
  986. snap_amount->set_value(p_snap);
  987. update();
  988. }
  989. void GraphEdit::_snap_toggled() {
  990. update();
  991. }
  992. void GraphEdit::_snap_value_changed(double) {
  993. update();
  994. }
  995. HBoxContainer *GraphEdit::get_zoom_hbox() {
  996. return zoom_hb;
  997. }
  998. void GraphEdit::_bind_methods() {
  999. ClassDB::bind_method(D_METHOD("connect_node", "from", "from_port", "to", "to_port"), &GraphEdit::connect_node);
  1000. ClassDB::bind_method(D_METHOD("is_node_connected", "from", "from_port", "to", "to_port"), &GraphEdit::is_node_connected);
  1001. ClassDB::bind_method(D_METHOD("disconnect_node", "from", "from_port", "to", "to_port"), &GraphEdit::disconnect_node);
  1002. ClassDB::bind_method(D_METHOD("set_connection_activity", "from", "from_port", "to", "to_port", "amount"), &GraphEdit::set_connection_activity);
  1003. ClassDB::bind_method(D_METHOD("get_connection_list"), &GraphEdit::_get_connection_list);
  1004. ClassDB::bind_method(D_METHOD("clear_connections"), &GraphEdit::clear_connections);
  1005. ClassDB::bind_method(D_METHOD("get_scroll_ofs"), &GraphEdit::get_scroll_ofs);
  1006. ClassDB::bind_method(D_METHOD("set_scroll_ofs", "ofs"), &GraphEdit::set_scroll_ofs);
  1007. ClassDB::bind_method(D_METHOD("add_valid_right_disconnect_type", "type"), &GraphEdit::add_valid_right_disconnect_type);
  1008. ClassDB::bind_method(D_METHOD("remove_valid_right_disconnect_type", "type"), &GraphEdit::remove_valid_right_disconnect_type);
  1009. ClassDB::bind_method(D_METHOD("add_valid_left_disconnect_type", "type"), &GraphEdit::add_valid_left_disconnect_type);
  1010. ClassDB::bind_method(D_METHOD("remove_valid_left_disconnect_type", "type"), &GraphEdit::remove_valid_left_disconnect_type);
  1011. ClassDB::bind_method(D_METHOD("add_valid_connection_type", "from_type", "to_type"), &GraphEdit::add_valid_connection_type);
  1012. ClassDB::bind_method(D_METHOD("remove_valid_connection_type", "from_type", "to_type"), &GraphEdit::remove_valid_connection_type);
  1013. ClassDB::bind_method(D_METHOD("is_valid_connection_type", "from_type", "to_type"), &GraphEdit::is_valid_connection_type);
  1014. ClassDB::bind_method(D_METHOD("set_zoom", "p_zoom"), &GraphEdit::set_zoom);
  1015. ClassDB::bind_method(D_METHOD("get_zoom"), &GraphEdit::get_zoom);
  1016. ClassDB::bind_method(D_METHOD("set_snap", "pixels"), &GraphEdit::set_snap);
  1017. ClassDB::bind_method(D_METHOD("get_snap"), &GraphEdit::get_snap);
  1018. ClassDB::bind_method(D_METHOD("set_use_snap", "enable"), &GraphEdit::set_use_snap);
  1019. ClassDB::bind_method(D_METHOD("is_using_snap"), &GraphEdit::is_using_snap);
  1020. ClassDB::bind_method(D_METHOD("set_right_disconnects", "enable"), &GraphEdit::set_right_disconnects);
  1021. ClassDB::bind_method(D_METHOD("is_right_disconnects_enabled"), &GraphEdit::is_right_disconnects_enabled);
  1022. ClassDB::bind_method(D_METHOD("_graph_node_moved"), &GraphEdit::_graph_node_moved);
  1023. ClassDB::bind_method(D_METHOD("_graph_node_raised"), &GraphEdit::_graph_node_raised);
  1024. ClassDB::bind_method(D_METHOD("_top_layer_input"), &GraphEdit::_top_layer_input);
  1025. ClassDB::bind_method(D_METHOD("_top_layer_draw"), &GraphEdit::_top_layer_draw);
  1026. ClassDB::bind_method(D_METHOD("_scroll_moved"), &GraphEdit::_scroll_moved);
  1027. ClassDB::bind_method(D_METHOD("_zoom_minus"), &GraphEdit::_zoom_minus);
  1028. ClassDB::bind_method(D_METHOD("_zoom_reset"), &GraphEdit::_zoom_reset);
  1029. ClassDB::bind_method(D_METHOD("_zoom_plus"), &GraphEdit::_zoom_plus);
  1030. ClassDB::bind_method(D_METHOD("_snap_toggled"), &GraphEdit::_snap_toggled);
  1031. ClassDB::bind_method(D_METHOD("_snap_value_changed"), &GraphEdit::_snap_value_changed);
  1032. ClassDB::bind_method(D_METHOD("_gui_input"), &GraphEdit::_gui_input);
  1033. ClassDB::bind_method(D_METHOD("_update_scroll_offset"), &GraphEdit::_update_scroll_offset);
  1034. ClassDB::bind_method(D_METHOD("_connections_layer_draw"), &GraphEdit::_connections_layer_draw);
  1035. ClassDB::bind_method(D_METHOD("get_zoom_hbox"), &GraphEdit::get_zoom_hbox);
  1036. ClassDB::bind_method(D_METHOD("set_selected", "node"), &GraphEdit::set_selected);
  1037. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "right_disconnects"), "set_right_disconnects", "is_right_disconnects_enabled");
  1038. ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "scroll_offset"), "set_scroll_ofs", "get_scroll_ofs");
  1039. ADD_PROPERTY(PropertyInfo(Variant::INT, "snap_distance"), "set_snap", "get_snap");
  1040. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "use_snap"), "set_use_snap", "is_using_snap");
  1041. ADD_PROPERTY(PropertyInfo(Variant::REAL, "zoom"), "set_zoom", "get_zoom");
  1042. ADD_SIGNAL(MethodInfo("connection_request", PropertyInfo(Variant::STRING, "from"), PropertyInfo(Variant::INT, "from_slot"), PropertyInfo(Variant::STRING, "to"), PropertyInfo(Variant::INT, "to_slot")));
  1043. ADD_SIGNAL(MethodInfo("disconnection_request", PropertyInfo(Variant::STRING, "from"), PropertyInfo(Variant::INT, "from_slot"), PropertyInfo(Variant::STRING, "to"), PropertyInfo(Variant::INT, "to_slot")));
  1044. ADD_SIGNAL(MethodInfo("popup_request", PropertyInfo(Variant::VECTOR2, "position")));
  1045. ADD_SIGNAL(MethodInfo("duplicate_nodes_request"));
  1046. ADD_SIGNAL(MethodInfo("copy_nodes_request"));
  1047. ADD_SIGNAL(MethodInfo("paste_nodes_request"));
  1048. ADD_SIGNAL(MethodInfo("node_selected", PropertyInfo(Variant::OBJECT, "node", PROPERTY_HINT_RESOURCE_TYPE, "Node")));
  1049. ADD_SIGNAL(MethodInfo("node_unselected", PropertyInfo(Variant::OBJECT, "node", PROPERTY_HINT_RESOURCE_TYPE, "Node")));
  1050. ADD_SIGNAL(MethodInfo("connection_to_empty", PropertyInfo(Variant::STRING, "from"), PropertyInfo(Variant::INT, "from_slot"), PropertyInfo(Variant::VECTOR2, "release_position")));
  1051. ADD_SIGNAL(MethodInfo("connection_from_empty", PropertyInfo(Variant::STRING, "to"), PropertyInfo(Variant::INT, "to_slot"), PropertyInfo(Variant::VECTOR2, "release_position")));
  1052. ADD_SIGNAL(MethodInfo("delete_nodes_request"));
  1053. ADD_SIGNAL(MethodInfo("_begin_node_move"));
  1054. ADD_SIGNAL(MethodInfo("_end_node_move"));
  1055. ADD_SIGNAL(MethodInfo("scroll_offset_changed", PropertyInfo(Variant::VECTOR2, "ofs")));
  1056. }
  1057. GraphEdit::GraphEdit() {
  1058. set_focus_mode(FOCUS_ALL);
  1059. awaiting_scroll_offset_update = false;
  1060. top_layer = NULL;
  1061. top_layer = memnew(GraphEditFilter(this));
  1062. add_child(top_layer);
  1063. top_layer->set_mouse_filter(MOUSE_FILTER_PASS);
  1064. top_layer->set_anchors_and_margins_preset(Control::PRESET_WIDE);
  1065. top_layer->connect("draw", this, "_top_layer_draw");
  1066. top_layer->set_mouse_filter(MOUSE_FILTER_PASS);
  1067. top_layer->connect("gui_input", this, "_top_layer_input");
  1068. connections_layer = memnew(Control);
  1069. add_child(connections_layer);
  1070. connections_layer->connect("draw", this, "_connections_layer_draw");
  1071. connections_layer->set_name("CLAYER");
  1072. connections_layer->set_disable_visibility_clip(true); // so it can draw freely and be offset
  1073. connections_layer->set_mouse_filter(MOUSE_FILTER_IGNORE);
  1074. h_scroll = memnew(HScrollBar);
  1075. h_scroll->set_name("_h_scroll");
  1076. top_layer->add_child(h_scroll);
  1077. v_scroll = memnew(VScrollBar);
  1078. v_scroll->set_name("_v_scroll");
  1079. top_layer->add_child(v_scroll);
  1080. updating = false;
  1081. connecting = false;
  1082. right_disconnects = false;
  1083. box_selecting = false;
  1084. dragging = false;
  1085. //set large minmax so it can scroll even if not resized yet
  1086. h_scroll->set_min(-10000);
  1087. h_scroll->set_max(10000);
  1088. v_scroll->set_min(-10000);
  1089. v_scroll->set_max(10000);
  1090. h_scroll->connect("value_changed", this, "_scroll_moved");
  1091. v_scroll->connect("value_changed", this, "_scroll_moved");
  1092. zoom = 1;
  1093. zoom_hb = memnew(HBoxContainer);
  1094. top_layer->add_child(zoom_hb);
  1095. zoom_hb->set_position(Vector2(10, 10));
  1096. zoom_minus = memnew(ToolButton);
  1097. zoom_hb->add_child(zoom_minus);
  1098. zoom_minus->set_tooltip(RTR("Zoom Out"));
  1099. zoom_minus->connect("pressed", this, "_zoom_minus");
  1100. zoom_minus->set_focus_mode(FOCUS_NONE);
  1101. zoom_reset = memnew(ToolButton);
  1102. zoom_hb->add_child(zoom_reset);
  1103. zoom_reset->set_tooltip(RTR("Zoom Reset"));
  1104. zoom_reset->connect("pressed", this, "_zoom_reset");
  1105. zoom_reset->set_focus_mode(FOCUS_NONE);
  1106. zoom_plus = memnew(ToolButton);
  1107. zoom_hb->add_child(zoom_plus);
  1108. zoom_plus->set_tooltip(RTR("Zoom In"));
  1109. zoom_plus->connect("pressed", this, "_zoom_plus");
  1110. zoom_plus->set_focus_mode(FOCUS_NONE);
  1111. snap_button = memnew(ToolButton);
  1112. snap_button->set_toggle_mode(true);
  1113. snap_button->set_tooltip(RTR("Enable snap and show grid."));
  1114. snap_button->connect("pressed", this, "_snap_toggled");
  1115. snap_button->set_pressed(true);
  1116. snap_button->set_focus_mode(FOCUS_NONE);
  1117. zoom_hb->add_child(snap_button);
  1118. snap_amount = memnew(SpinBox);
  1119. snap_amount->set_min(5);
  1120. snap_amount->set_max(100);
  1121. snap_amount->set_step(1);
  1122. snap_amount->set_value(20);
  1123. snap_amount->connect("value_changed", this, "_snap_value_changed");
  1124. zoom_hb->add_child(snap_amount);
  1125. setting_scroll_ofs = false;
  1126. just_disconnected = false;
  1127. set_clip_contents(true);
  1128. }