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
previewable = false;
w = 96;
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,
];
function step() {
var mode = inputs[| 4].getValue();
inputs[| 1].type = mode? VALUE_TYPE.float : VALUE_TYPE.integer;
inputs[| 2].type = mode? VALUE_TYPE.float : VALUE_TYPE.integer;
}
2023-01-01 02:06:02 +01:00
function process_data(_output, _data, _index = 0) {
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();
var hed = inputs[| 1].getValue();
var tal = inputs[| 2].getValue();
2023-01-01 02:06:02 +01:00
if(is_array(str) && array_length(str))
str = str[0];
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
2023-01-04 02:30:04 +01:00
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-01-01 02:06:02 +01:00
}
}