2023-02-28 09:43:01 +01:00
function Node_String_Trim(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2023-01-25 06:49:00 +01:00
name = "Trim Text";
2023-01-01 02:06:02 +01:00
2024-05-02 11:05:02 +02:00
setDimension(96, 48);
2023-01-17 08:11:55 +01:00
2023-01-01 02:06:02 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Text", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "")
2023-01-01 02:06:02 +01:00
.setVisible(true, true);
2023-03-13 10:45:56 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 1] = nodeValue("Head", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0);
2023-03-13 10:45:56 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 2] = nodeValue("Tail", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0);
2023-01-01 02:06:02 +01:00
2023-03-13 10:45:56 +01:00
inputs[| 3] = nodeValue("Trim", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
.setDisplay(VALUE_DISPLAY.enum_scroll, ["Character", "Word"]);
inputs[| 4] = nodeValue("Mode", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0, "Set to progress to use ratio, where 0 means no change and 1 means the entire length of the text.")
.setDisplay(VALUE_DISPLAY.enum_scroll, ["Counter", "Progress"]);
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Text", self, JUNCTION_CONNECT.output, VALUE_TYPE.text, "");
2023-01-01 02:06:02 +01:00
2023-03-13 10:45:56 +01:00
input_display_list = [
["Text", false], 0,
["Trim", false], 3, 4, 1, 2,
];
2023-09-26 14:35:25 +02:00
static step = function() {
2023-10-02 08:57:44 +02:00
var mode = getInputData(4);
2023-03-13 10:45:56 +01:00
2023-10-07 16:23:40 +02:00
inputs[| 1].setType(mode? VALUE_TYPE.float : VALUE_TYPE.integer);
inputs[| 2].setType(mode? VALUE_TYPE.float : VALUE_TYPE.integer);
2023-03-13 10:45:56 +01:00
}
2023-08-17 16:56:54 +02:00
static processData = function(_output, _data, _index = 0) {
2023-01-01 02:06:02 +01:00
var str = _data[0];
2023-03-13 10:45:56 +01:00
var hed = max(0, _data[1]);
var tal = max(0, _data[2]);
var trim = _data[3];
var mode = _data[4];
2023-01-01 02:06:02 +01:00
2023-03-13 10:45:56 +01:00
var _str = str;
if(trim == 0) {
if(mode == 0)
_str = string_copy(str, 1 + hed, string_length(str) - hed - tal);
else if(mode == 1) {
var h = hed * string_length(str);
var t = tal * string_length(str);
_str = string_copy(str, 1 + h, string_length(str) - hed - t);
}
} else if(trim == 1) {
var w = string_splice(str, " ");
_str = "";
if(mode == 1) {
hed *= array_length(w);
tal *= array_length(w);
}
for( var i = hed; i < array_length(w) - tal; i++ )
_str += (i == hed? "" : " ") + w[i];
}
return _str;
2023-01-01 02:06:02 +01:00
}
2023-03-05 07:16:44 +01:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2023-03-13 10:45:56 +01:00
var str = outputs[| 0].getValue();
2023-03-24 10:12:44 +01:00
var bbox = drawGetBbox(xx, yy, _s);
2023-01-01 02:06:02 +01:00
2023-11-23 08:28:04 +01:00
draw_set_text(f_sdf, fa_center, fa_center, COLORS._main_text);
2023-03-24 10:12:44 +01:00
draw_text_bbox(bbox, str);
2023-01-01 02:06:02 +01:00
}
}