Pixel-Composer/scripts/node_path_reverse/node_path_reverse.gml

47 lines
1.9 KiB
Text
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Path_Reverse(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2024-01-22 14:23:35 +01:00
name = "Reverse Path";
2025-01-01 02:12:36 +01:00
setDimension(96, 48);
2023-02-20 10:16:31 +01:00
2024-08-18 09:13:41 +02:00
newInput(0, nodeValue_PathNode("Path", self, noone))
2023-02-20 10:16:31 +01:00
.setVisible(true, true);
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Path", self, VALUE_TYPE.pathnode, self));
2023-02-20 10:16:31 +01:00
cached_pos = ds_map_create();
2025-01-16 04:39:54 +01:00
curr_path = noone;
is_path = false;
2023-02-28 09:43:01 +01:00
2025-01-16 04:39:54 +01:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
if(curr_path && struct_has(curr_path, "drawOverlay"))
curr_path.drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny);
2025-01-15 07:55:00 +01:00
}
2023-03-19 09:17:39 +01:00
2025-01-16 04:39:54 +01:00
static getLineCount = function( ) /*=>*/ {return is_path? curr_path.getLineCount() : 1};
static getSegmentCount = function(ind = 0) /*=>*/ {return is_path? curr_path.getSegmentCount(ind) : 0};
static getLength = function(ind = 0) /*=>*/ {return is_path? curr_path.getLength(ind) : 0};
static getAccuLength = function(ind = 0) /*=>*/ {return is_path? array_reverse(curr_path.getAccuLength(ind)) : []};
static getBoundary = function(ind = 0) /*=>*/ {return is_path? curr_path.getBoundary(ind) : new BoundingBox(0, 0, 1, 1)};
2023-02-20 10:16:31 +01:00
2025-01-15 07:55:00 +01:00
static getPointRatio = function(_rat, ind = 0, out = undefined) {
if(out == undefined) out = new __vec2P(); else { out.x = 0; out.y = 0; }
2025-01-16 04:39:54 +01:00
if(!is_path) return out;
2023-03-07 14:29:47 +01:00
2025-01-16 04:39:54 +01:00
return curr_path.getPointRatio(1 - _rat, ind, out);
2025-01-15 07:55:00 +01:00
}
2023-03-19 09:17:39 +01:00
2023-10-29 06:29:10 +01:00
static getPointDistance = function(_dist, ind = 0, out = undefined) { return getPointRatio(_dist / getLength(), ind, out); }
2023-02-20 10:16:31 +01:00
2025-01-15 07:55:00 +01:00
static update = function() {
2025-01-16 04:39:54 +01:00
curr_path = getInputData(0);
is_path = curr_path != noone && struct_has(curr_path, "getPointRatio");
ds_map_clear(cached_pos);
2024-08-08 06:57:51 +02:00
outputs[0].setValue(self);
2025-01-15 07:55:00 +01:00
}
2023-02-20 10:16:31 +01:00
2025-01-15 07:55:00 +01:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2023-02-20 10:16:31 +01:00
var bbox = drawGetBbox(xx, yy, _s);
draw_sprite_fit(s_node_path_trim, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
2025-01-15 07:55:00 +01:00
}
2023-02-20 10:16:31 +01:00
}