Pixel-Composer/scripts/node_vector3/node_vector3.gml

70 lines
2 KiB
Text
Raw Normal View History

2024-07-26 09:38:39 +02:00
function Node_Vector3(_x, _y, _group = noone) : Node_Processor(_x, _y, _group) constructor {
name = "Vector3";
color = COLORS.node_blend_number;
2024-03-28 14:18:02 +01:00
setDimension(96, 32 + 24 * 3);
2024-08-18 09:13:41 +02:00
newInput(0, nodeValue_Float("x", self, 0))
.setVisible(true, true);
2024-08-18 09:13:41 +02:00
newInput(1, nodeValue_Float("y", self, 0))
.setVisible(true, true);
2024-08-18 09:13:41 +02:00
newInput(2, nodeValue_Float("z", self, 0))
.setVisible(true, true);
2024-08-18 06:16:20 +02:00
newInput(3, nodeValue_Bool("Integer", self, false));
////////////////////////////////////////////////////////////////////////////////////////////////////
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Vector", self, VALUE_TYPE.float, [ 0, 0, 0 ]))
.setDisplay(VALUE_DISPLAY.vector);
newOutput(1, nodeValue_Output("x", self, VALUE_TYPE.float, 0))
newOutput(2, nodeValue_Output("y", self, VALUE_TYPE.float, 0))
newOutput(3, nodeValue_Output("z", self, VALUE_TYPE.float, 0))
input_display_list = [ 0, 1, 2, 3,
];
2024-07-26 09:38:39 +02:00
static step = function() {
var int = getInputData(3);
2024-07-26 09:38:39 +02:00
for( var i = 0; i < 3; i++ )
2024-08-08 06:57:51 +02:00
inputs[i].setType(int? VALUE_TYPE.integer : VALUE_TYPE.float);
2024-08-08 06:57:51 +02:00
outputs[0].setType(int? VALUE_TYPE.integer : VALUE_TYPE.float);
2024-07-26 09:38:39 +02:00
}
static processData = function(_outData, _data, _output_index, _array_index = 0) {
var _x = _data[0];
var _y = _data[1];
var _z = _data[2];
var _int = _data[3];
var vec = _outData[0];
vec[0] = _int? round(_x) : _x;
vec[1] = _int? round(_y) : _y;
vec[2] = _int? round(_z) : _z;
_outData[1] = vec[0];
_outData[2] = vec[1];
_outData[3] = vec[2];
return _outData;
2024-07-26 09:38:39 +02:00
}
2024-07-26 09:38:39 +02:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
draw_set_text(f_sdf, fa_center, fa_center, COLORS._main_text);
var vec = getSingleValue(0,, true);
2024-03-31 05:36:11 +02:00
var v0 = array_safe_get_fast(vec, 0);
var v1 = array_safe_get_fast(vec, 1);
var v2 = array_safe_get_fast(vec, 2);
var str = $"{v0}\n{v1}\n{v2}";
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);
2024-07-26 09:38:39 +02:00
}
}