Pixel-Composer/scripts/node_armature_sample/node_armature_sample.gml
2023-07-14 20:34:35 +02:00

66 lines
2.1 KiB
Plaintext

function Node_Armature_Sample(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Armature Sample";
previewable = false;
w = 96;
h = 72;
min_h = h;
inputs[| 0] = nodeValue("Armature", self, JUNCTION_CONNECT.input, VALUE_TYPE.armature, noone)
.setVisible(true, true)
.rejectArray();
inputs[| 1] = nodeValue("Bone name", self, JUNCTION_CONNECT.input, VALUE_TYPE.text, "");
inputs[| 2] = nodeValue("Sample point", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 0)
.setDisplay(VALUE_DISPLAY.slider, [ 0, 1, 0.01 ]);
outputs[| 0] = nodeValue("Position", self, JUNCTION_CONNECT.output, VALUE_TYPE.integer, [ 0, 0 ])
.setDisplay(VALUE_DISPLAY.vector);
attributes.display_name = true;
attributes.display_bone = 0;
array_push(attributeEditors, "Display");
array_push(attributeEditors, ["Display name", function() { return attributes.display_name; },
new checkBox(function() {
attributes.display_name = !attributes.display_name;
})]);
array_push(attributeEditors, ["Display bone", function() { return attributes.display_bone; },
new scrollBox(["Octahedral", "Stick"], function(ind) {
attributes.display_bone = ind;
})]);
static drawOverlay = function(active, _x, _y, _s, _mx, _my, _snx, _sny) {
var _b = inputs[| 0].getValue();
if(_b == noone) return;
_b.draw(attributes, false, _x, _y, _s, _mx, _my);
}
function update() {
var _bone = inputs[| 0].getValue();
var _name = inputs[| 1].getValue();
var _prog = inputs[| 2].getValue();
if(_bone == noone) return;
_name = string_trim(_name);
//print($"|{_name}|{string_length(_name)}");
//for( var i = 1; i <= string_length(_name); i++ )
// print($" {i}: |{string_char_at(_name, i)}|");
var _b = _bone.findBoneByName(_name);
if(_b == noone) {
outputs[| 0].setValue([0, 0]);
return;
}
var _p = _b.getPoint(_prog);
outputs[| 0].setValue([_p.x, _p.y]);
}
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
var bbox = drawGetBbox(xx, yy, _s);
draw_sprite_fit(s_node_armature_sample, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
}
}