Pixel-Composer/scripts/node_tunnel_out/node_tunnel_out.gml

94 lines
2.7 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Tunnel_Out(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-01-25 06:49:00 +01:00
name = "Tunnel Out";
previewable = false;
color = COLORS.node_blend_tunnel;
w = 96;
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Name", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "" )
.rejectArray();
2023-01-25 06:49:00 +01:00
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Value out", self, JUNCTION_CONNECT.output, VALUE_TYPE.any, noone );
2023-01-25 06:49:00 +01:00
2023-03-05 07:16:44 +01:00
insp2UpdateTooltip = "Goto tunnel in";
insp2UpdateIcon = [ THEME.tunnel, 1, c_white ];
static onInspector2Update = function() {
var _key = inputs[| 0].getValue();
if(!ds_map_exists(TUNNELS_IN, _key)) return;
var _node = TUNNELS_IN[? _key].node;
graphFocusNode(_node);
}
2023-03-26 07:13:36 +02:00
static isRenderable = function() {
2023-03-05 07:16:44 +01:00
var _key = inputs[| 0].getValue();
2023-04-04 13:44:37 +02:00
if(!ds_map_exists(TUNNELS_IN, _key)) return false;
return TUNNELS_IN[? _key].node.rendered;
2023-03-05 07:16:44 +01:00
}
2023-01-25 06:49:00 +01:00
static onDrawNodeBehind = function(_x, _y, _mx, _my, _s) {
var xx = _x + x * _s;
var yy = _y + y * _s;
2023-03-05 07:16:44 +01:00
var hover = PANEL_GRAPH.pHOVER && point_in_rectangle(_mx, _my, xx, yy, xx + w * _s, yy + h * _s);
2023-03-12 02:28:21 +01:00
var tun = findPanel("Panel_Tunnels");
hover |= tun && tun.tunnel_hover == self;
2023-01-25 06:49:00 +01:00
if(!hover) return;
var _key = inputs[| 0].getValue();
if(!ds_map_exists(TUNNELS_IN, _key)) return;
var node = TUNNELS_IN[? _key].node;
2023-02-14 05:32:32 +01:00
if(node.group != group) return;
2023-01-25 06:49:00 +01:00
draw_set_color(COLORS.node_blend_tunnel);
draw_set_alpha(0.35);
2023-03-02 07:59:14 +01:00
var frx = _x + (node.x + node.w / 2) * _s;
var fry = _y + (node.y + node.h / 2) * _s;
var tox = xx + w * _s / 2;
var toy = yy + h * _s / 2;
2023-03-05 07:16:44 +01:00
draw_line_dashed(frx, fry, tox, toy, 8 * _s, 16 * _s, current_time / 10);
2023-01-25 06:49:00 +01:00
draw_set_alpha(1);
}
static onClone = function() { onValueUpdate(); }
static onValueUpdate = function() {
var _key = inputs[| 0].getValue();
TUNNELS_OUT[? node_id] = _key;
2023-03-05 07:16:44 +01:00
UPDATE |= RENDER_TYPE.full;
2023-01-25 06:49:00 +01:00
}
static step = function() {
var _key = inputs[| 0].getValue();
if(ds_map_exists(TUNNELS_IN, _key)) {
outputs[| 0].type = TUNNELS_IN[? _key].type;
outputs[| 0].display_type = TUNNELS_IN[? _key].display_type;
} else {
outputs[| 0].type = VALUE_TYPE.any;
outputs[| 0].display_type = VALUE_DISPLAY._default;
}
}
2023-02-14 05:32:32 +01:00
static update = function(frame = ANIMATOR.current_frame) {
2023-01-25 06:49:00 +01:00
var _key = inputs[| 0].getValue();
if(ds_map_exists(TUNNELS_IN, _key))
outputs[| 0].setValue(TUNNELS_IN[? _key].getValue());
}
2023-03-05 07:16:44 +01:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2023-01-25 06:49:00 +01:00
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
var str = string(inputs[| 0].getValue());
var bbox = drawGetBbox(xx, yy, _s);
var ss = string_scale(str, bbox.w, bbox.h);
draw_text_transformed(bbox.xc, bbox.yc, str, ss, ss, 0);
}
2023-02-14 05:32:32 +01:00
static postConnect = function() { onValueUpdate(); }
2023-01-25 06:49:00 +01:00
}