Pixel-Composer/scripts/node_pin/node_pin.gml

105 lines
2.6 KiB
Text
Raw Normal View History

2023-02-28 15:43:01 +07:00
function Node_Pin(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-02-14 11:32:32 +07:00
name = "Pin";
w = 32;
2022-01-13 11:24:03 +07:00
h = 32;
2023-01-17 14:11:55 +07:00
2023-10-27 18:55:31 +07:00
auto_height = false;
2022-01-13 11:24:03 +07:00
junction_shift_y = 16;
2022-01-26 12:57:34 +07:00
2023-10-27 18:55:31 +07:00
isHovering = false;
hover_scale = 0;
hover_scale_to = 0;
2023-10-27 18:55:31 +07:00
hover_alpha = 0;
2023-03-05 13:16:44 +07:00
2023-10-27 18:55:31 +07:00
bg_spr = THEME.node_pin_bg;
2022-11-18 09:20:31 +07:00
bg_sel_spr = THEME.node_pin_bg_active;
2022-01-13 11:24:03 +07:00
2023-02-14 11:32:32 +07:00
inputs[| 0] = nodeValue("In", self, JUNCTION_CONNECT.input, VALUE_TYPE.any, 0 )
2022-01-13 11:24:03 +07:00
.setVisible(true, true);
2023-02-14 11:32:32 +07:00
outputs[| 0] = nodeValue("Out", self, JUNCTION_CONNECT.output, VALUE_TYPE.any, 0);
2022-01-13 11:24:03 +07:00
2023-10-27 18:55:31 +07:00
static step = function() { #region
if(inputs[| 0].isLeaf()) return;
inputs[| 0].setType(inputs[| 0].value_from.type);
outputs[| 0].setType(inputs[| 0].value_from.type);
inputs[| 0].color_display = inputs[| 0].value_from.color_display;
outputs[| 0].color_display = inputs[| 0].color_display;
2023-10-27 18:55:31 +07:00
} #endregion
2022-01-25 20:13:47 +07:00
2023-10-27 18:55:31 +07:00
static update = function() { #region
var _val = getInputData(0);
outputs[| 0].setValue(_val);
} #endregion
static pointIn = function(_x, _y, _mx, _my, _s) { #region
2022-11-01 09:06:03 +07:00
var xx = x * _s + _x;
var yy = y * _s + _y;
2023-03-13 16:45:56 +07:00
return point_in_circle(_mx, _my, xx, yy, _s * 24);
2023-10-27 18:55:31 +07:00
} #endregion
2022-01-26 12:57:34 +07:00
2023-10-27 18:55:31 +07:00
static preDraw = function(_x, _y, _s) { #region
2022-01-26 12:57:34 +07:00
var xx = x * _s + _x;
var yy = y * _s + _y;
inputs[| 0].x = xx;
2022-01-26 12:57:34 +07:00
inputs[| 0].y = yy;
outputs[| 0].x = xx;
2022-01-26 12:57:34 +07:00
outputs[| 0].y = yy;
2023-10-27 18:55:31 +07:00
} #endregion
2022-01-26 12:57:34 +07:00
static drawJunctionNames = function(_x, _y, _mx, _my, _s) {}
2023-10-27 18:55:31 +07:00
static drawJunctions = function(_x, _y, _mx, _my, _s) { #region
2023-03-05 13:16:44 +07:00
isHovering = false;
2022-01-26 12:57:34 +07:00
var hover = noone;
2023-03-05 13:16:44 +07:00
var xx = x * _s + _x;
var yy = y * _s + _y;
var hov = PANEL_GRAPH.value_dragging;
if(hov == noone && point_in_circle(_mx, _my, xx, yy, _s * 24)) {
2023-03-05 13:16:44 +07:00
isHovering = true;
hover_scale_to = 1;
2023-03-05 13:16:44 +07:00
}
2022-01-26 12:57:34 +07:00
if(outputs[| 0].drawJunction(_s, _mx, _my))
hover = outputs[| 0];
2022-01-26 12:57:34 +07:00
return hover;
2023-10-27 18:55:31 +07:00
} #endregion
2022-01-26 12:57:34 +07:00
2023-10-27 18:55:31 +07:00
static drawNode = function(_x, _y, _mx, _my, _s) { #region
2022-01-26 12:57:34 +07:00
if(group != PANEL_GRAPH.getCurrentContext()) return;
var xx = x * _s + _x;
var yy = y * _s + _y;
hover_alpha = 0.5;
2022-01-26 12:57:34 +07:00
if(active_draw_index > -1) {
hover_alpha = 1;
hover_scale_to = 1;
active_draw_index = -1;
2022-01-25 20:13:47 +07:00
}
2022-01-26 12:57:34 +07:00
if(hover_scale > 0) {
draw_set_color(COLORS._main_accent);
draw_set_alpha(hover_alpha);
draw_circle_border(xx, yy, _s * hover_scale * 20, 2);
draw_set_alpha(1);
}
hover_scale = lerp_float(hover_scale, hover_scale_to, 3);
hover_scale_to = 0;
2023-10-01 11:17:39 +07:00
if(renamed && display_name != "" && display_name != "Pin") {
2023-01-25 12:49:00 +07:00
draw_set_text(f_p0, fa_center, fa_bottom, COLORS._main_text);
2023-02-14 11:32:32 +07:00
draw_text_transformed(xx, yy - 12, display_name, _s, _s, 0);
2023-01-25 12:49:00 +07:00
}
2022-01-26 12:57:34 +07:00
return drawJunctions(_x, _y, _mx, _my, _s);
2023-10-27 18:55:31 +07:00
} #endregion
2022-01-13 11:24:03 +07:00
}