Pixel-Composer/scripts/node_path_reverse/node_path_reverse.gml

57 lines
1.7 KiB
Plaintext
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 {
2023-02-20 10:16:31 +01:00
name = "Reverse Path";
previewable = false;
w = 96;
inputs[| 0] = nodeValue("Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.pathnode, noone)
.setVisible(true, true);
outputs[| 0] = nodeValue("Path", self, JUNCTION_CONNECT.output, VALUE_TYPE.pathnode, self);
2023-03-07 14:29:47 +01:00
static getLineCount = function() {
var _path = getInputData(0);
2023-03-07 14:29:47 +01:00
return struct_has(_path, "getLineCount")? _path.getLineCount() : 1;
}
2023-08-02 19:11:57 +02:00
static getSegmentCount = function(ind = 0) {
var _path = getInputData(0);
2023-08-02 19:11:57 +02:00
return struct_has(_path, "getSegmentCount")? _path.getSegmentCount(ind) : 0;
2023-02-28 09:43:01 +01:00
}
2023-08-02 19:11:57 +02:00
static getLength = function(ind = 0) {
var _path = getInputData(0);
2023-08-02 19:11:57 +02:00
return struct_has(_path, "getLength")? _path.getLength(ind) : 0;
2023-03-19 09:17:39 +01:00
}
2023-04-09 21:24:16 +02:00
2023-08-02 19:11:57 +02:00
static getAccuLength = function(ind = 0) {
var _path = getInputData(0);
2023-08-02 19:11:57 +02:00
return struct_has(_path, "getAccuLength")? array_reverse(_path.getAccuLength(ind)) : [];
2023-03-19 09:17:39 +01:00
}
2023-08-02 19:11:57 +02:00
static getBoundary = function(ind = 0) {
var _path = getInputData(0);
2023-08-02 19:11:57 +02:00
return struct_has(_path, "getBoundary")? _path.getBoundary(ind) : new BoundingBox(0, 0, 1, 1);
2023-03-19 09:17:39 +01:00
}
2023-02-20 10:16:31 +01:00
2023-03-19 09:17:39 +01:00
static getPointRatio = function(_rat, ind = 0) {
var _path = getInputData(0);
2023-03-07 14:29:47 +01:00
2023-02-20 10:16:31 +01:00
if(!is_struct(_path) || !struct_has(_path, "getPointRatio"))
return new __vec2();
2023-03-19 09:17:39 +01:00
return _path.getPointRatio(1 - _rat, ind).clone();
}
static getPointDistance = function(_dist, ind = 0) {
return getPointRatio(_dist / getLength(), ind);
2023-02-20 10:16:31 +01:00
}
2023-09-26 14:35:25 +02:00
static update = function() {
2023-02-20 10:16:31 +01:00
outputs[| 0].setValue(self);
}
2023-03-05 07:16:44 +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);
}
}