Pixel-Composer/scripts/node_string_split/node_string_split.gml

46 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_String_Split(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
2023-01-25 06:49:00 +01:00
name = "Split Text";
2022-12-16 09:18:09 +01:00
previewable = false;
w = 96;
2023-01-17 08:11:55 +01:00
2022-12-16 09:18:09 +01:00
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Text", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "")
2022-12-16 09:18:09 +01:00
.setVisible(true, true);
2023-02-14 05:32:32 +01:00
inputs[| 1] = nodeValue("Delimiter", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, " ", "Character that used to split text,\nleave blank to create character array.");
2022-12-16 09:18:09 +01:00
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Text", self, JUNCTION_CONNECT.output, VALUE_TYPE.text, "");
2022-12-16 09:18:09 +01:00
2022-12-27 04:00:50 +01:00
function process_data(_output, _data, _index = 0) {
2022-12-21 02:30:23 +01:00
if(_data[1] == "")
return string_to_array(_data[0]);
2022-12-22 03:09:55 +01:00
var delim = _data[1];
delim = string_replace_all(delim, "\\n", "\n");
delim = string_replace_all(delim, "\\t", "\t");
return string_splice(_data[0], delim);
2022-12-16 09:18:09 +01:00
}
2023-03-05 07:16:44 +01:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2022-12-21 02:30:23 +01:00
var str = inputs[| 1].getValue();
2023-01-04 02:30:04 +01:00
var bbox = drawGetBbox(xx, yy, _s);
var cx = bbox.xc;
var cy = bbox.yc;
2022-12-21 02:30:23 +01:00
if(string_length(str) == 0) {
draw_set_text(f_p0b, fa_center, fa_center, COLORS._main_text_sub);
draw_text_cut(cx, cy, "None", w - ui(6), _s);
return;
}
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
2023-01-04 02:30:04 +01:00
draw_text_cut(cx, cy, str, bbox.w, _s);
2022-12-21 02:30:23 +01:00
var ww = (string_width(str) / 2) * _s;
draw_set_text(f_h5, fa_right, fa_center, COLORS._main_text_sub);
draw_text_transformed(cx - ww, cy, "|", _s, _s, 0);
draw_set_halign(fa_left);
draw_text_transformed(cx + ww, cy, "|", _s, _s, 0);
2022-12-16 09:18:09 +01:00
}
}