Pixel-Composer/scripts/node_path_shift/node_path_shift.gml

112 lines
3.1 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_Path_Shift(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Shift Path";
2024-05-02 12:13:35 +02:00
setDimension(96, 48);;
2023-02-14 02:48:33 +01:00
2024-08-18 09:13:41 +02:00
newInput(0, nodeValue_PathNode("Path", self, noone))
2023-02-14 02:48:33 +01:00
.setVisible(true, true);
2024-08-18 06:16:20 +02:00
newInput(1, nodeValue_Float("Distance", self, 0));
2023-02-14 02:48:33 +01:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Path", self, VALUE_TYPE.pathnode, self));
2023-02-14 02:48:33 +01:00
cached_pos = ds_map_create();
2024-08-13 13:17:45 +02:00
static drawOverlay = function(hover, active, _x, _y, _s, _mx, _my, _snx, _sny) {
2024-01-22 14:23:35 +01:00
var _path = getInputData(0);
2024-03-26 11:48:41 +01:00
if(_path && struct_has(_path, "drawOverlay")) _path.drawOverlay(hover, active, _x, _y, _s, _mx, _my, _snx, _sny);
2024-01-22 14:23:35 +01:00
draw_set_color(COLORS._main_icon);
var _amo = getLineCount();
for( var i = 0; i < _amo; i++ ) {
var _len = getLength(_amo);
var _stp = 1 / clamp(_len * _s, 1, 64);
var ox, oy, nx, ny;
var _p = new __vec2();
for( var j = 0; j < 1; j += _stp ) {
_p = getPointRatio(j, i, _p);
nx = _x + _p.x * _s;
ny = _y + _p.y * _s;
if(j > 0) draw_line_width(ox, oy, nx, ny, 3);
ox = nx;
oy = ny;
}
}
2024-08-13 13:17:45 +02:00
}
2024-01-22 14:23:35 +01:00
2024-08-13 13:17:45 +02:00
static getLineCount = function() {
var _path = getInputData(0);
2023-03-07 14:29:47 +01:00
return struct_has(_path, "getLineCount")? _path.getLineCount() : 1;
2024-08-13 13:17:45 +02:00
}
2023-03-07 14:29:47 +01:00
2024-08-13 13:17:45 +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;
2024-08-13 13:17:45 +02:00
}
2023-02-28 09:43:01 +01:00
2024-08-13 13:17:45 +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;
2024-08-13 13:17:45 +02:00
}
2023-03-19 09:17:39 +01:00
2024-08-13 13:17:45 +02:00
static getAccuLength = function(ind = 0) {
var _path = getInputData(0);
2023-08-02 19:11:57 +02:00
return struct_has(_path, "getAccuLength")? _path.getAccuLength(ind) : [];
2024-08-13 13:17:45 +02:00
}
2023-03-19 09:17:39 +01:00
2024-08-13 13:17:45 +02:00
static getPointRatio = function(_rat, ind = 0, out = undefined) {
2023-10-29 06:29:10 +01:00
if(out == undefined) out = new __vec2(); else { out.x = 0; out.y = 0; }
var _cKey = $"{_rat},{ind}";
if(ds_map_exists(cached_pos, _cKey)) {
var _p = cached_pos[? _cKey];
out.x = _p.x;
out.y = _p.y;
return out;
}
var _path = getInputData(0);
var _shf = getInputData(1);
2023-02-14 02:48:33 +01:00
2023-03-07 14:29:47 +01:00
if(is_array(_path)) {
2024-03-31 05:36:11 +02:00
_path = array_safe_get_fast(_path, ind);
2023-03-07 14:29:47 +01:00
ind = 0;
}
2023-02-14 02:48:33 +01:00
if(!is_struct(_path) || !struct_has(_path, "getPointRatio"))
2023-10-29 06:29:10 +01:00
return out;
2023-02-14 02:48:33 +01:00
2023-03-07 14:29:47 +01:00
var _p0 = _path.getPointRatio(clamp(_rat - 0.001, 0, 0.999999), ind);
2023-10-29 06:29:10 +01:00
var _p = _path.getPointRatio(_rat, ind);
2023-03-07 14:29:47 +01:00
var _p1 = _path.getPointRatio(clamp(_rat + 0.001, 0, 0.999999), ind);
2023-02-14 02:48:33 +01:00
2023-03-19 09:17:39 +01:00
var dir = point_direction(_p0.x, _p0.y, _p1.x, _p1.y) + 90;
2023-02-14 02:48:33 +01:00
2023-10-29 06:29:10 +01:00
out.x += _p.x + lengthdir_x(_shf, dir);
out.y += _p.y + lengthdir_y(_shf, dir);
2023-02-14 02:48:33 +01:00
cached_pos[? _cKey] = out.clone();
2023-10-29 06:29:10 +01:00
return out;
2024-08-13 13:17:45 +02:00
}
2023-02-14 02:48:33 +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-03-19 09:17:39 +01:00
2024-08-13 13:17:45 +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 );
2024-08-13 13:17:45 +02:00
}
2023-08-02 19:11:57 +02:00
2024-08-13 13:17:45 +02:00
static update = function() {
ds_map_clear(cached_pos);
2024-08-08 06:57:51 +02:00
outputs[0].setValue(self);
2024-08-13 13:17:45 +02:00
}
2023-02-14 02:48:33 +01:00
2024-08-13 13:17:45 +02:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2023-02-14 02:48:33 +01:00
var bbox = drawGetBbox(xx, yy, _s);
2023-02-14 11:40:24 +01:00
draw_sprite_fit(s_node_path_shift, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
2024-08-13 13:17:45 +02:00
}
2023-02-14 02:48:33 +01:00
}