2023-03-13 16:45:56 +07:00
|
|
|
function Node_String_Length(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
|
|
|
|
name = "Text Length";
|
|
|
|
|
2024-05-02 16:05:02 +07:00
|
|
|
setDimension(96, 48);
|
2023-03-13 16:45:56 +07:00
|
|
|
|
2024-08-18 14:13:41 +07:00
|
|
|
newInput(0, nodeValue_Text("Text", self, ""))
|
2023-03-13 16:45:56 +07:00
|
|
|
.setVisible(true, true);
|
|
|
|
|
2024-08-18 11:16:20 +07:00
|
|
|
newInput(1, nodeValue_Enum_Scroll("Mode", self, 0, ["Character", "Word"]));
|
2023-03-13 16:45:56 +07:00
|
|
|
|
2024-09-04 08:57:11 +07:00
|
|
|
newOutput(0, nodeValue_Output("Text", self, VALUE_TYPE.text, ""));
|
2023-03-13 16:45:56 +07:00
|
|
|
|
2023-08-17 16:56:54 +02:00
|
|
|
static processData = function(_output, _data, _index = 0) {
|
2024-10-06 16:23:58 +07:00
|
|
|
if(_data[1] == 0) return string_length(_data[0]);
|
|
|
|
else return array_length(string_splice(_data[0], " "));
|
2023-03-13 16:45:56 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
|
2024-08-08 11:57:51 +07:00
|
|
|
var str = outputs[0].getValue();
|
2023-03-13 16:45:56 +07:00
|
|
|
var bbox = drawGetBbox(xx, yy, _s);
|
2023-03-24 16:12:44 +07:00
|
|
|
|
2023-11-23 14:28:04 +07:00
|
|
|
draw_set_text(f_sdf, fa_center, fa_center, COLORS._main_text);
|
2023-03-24 16:12:44 +07:00
|
|
|
draw_text_bbox(bbox, str);
|
2023-03-13 16:45:56 +07:00
|
|
|
}
|
|
|
|
}
|