2023-06-17 14:30:49 +02:00
|
|
|
function Node_Armature(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|
|
|
name = "Armature Create";
|
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
w = 96;
|
|
|
|
h = 72;
|
|
|
|
min_h = h;
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
//inputs[| 0] = nodeValue("Axis", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0);
|
|
|
|
|
2023-06-21 20:36:53 +02:00
|
|
|
bone_renderer = new Inspector_Custom_Renderer(function(_x, _y, _w, _m, _hover, _focus) {
|
|
|
|
var _b = attributes.bones;
|
2023-06-25 20:12:17 +02:00
|
|
|
if(_b == noone) return 0;
|
2023-06-21 20:36:53 +02:00
|
|
|
var amo = _b.childCount();
|
2023-06-25 20:12:17 +02:00
|
|
|
var _hh = ui(28);
|
|
|
|
var bh = ui(32 + 16) + amo * _hh;
|
|
|
|
var ty = _y;
|
|
|
|
|
2023-06-21 20:36:53 +02:00
|
|
|
draw_set_text(f_p0, fa_left, fa_top, COLORS._main_text);
|
2023-06-25 20:12:17 +02:00
|
|
|
draw_text_add(_x + ui(16), ty + ui(4), "Bones");
|
|
|
|
|
|
|
|
ty += ui(32);
|
2023-06-21 20:36:53 +02:00
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
draw_sprite_stretched_ext(THEME.ui_panel_bg, 1, _x, ty, _w, bh - ui(32), COLORS.node_composite_bg_blend, 1);
|
2023-06-21 20:36:53 +02:00
|
|
|
draw_set_color(COLORS.node_composite_separator);
|
2023-06-25 20:12:17 +02:00
|
|
|
draw_line(_x + 16, ty + ui(8), _x + _w - 16, ty + ui(8));
|
2023-06-21 20:36:53 +02:00
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
ty += ui(8);
|
2023-06-21 20:36:53 +02:00
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
var hovering = noone;
|
|
|
|
var _bst = ds_stack_create();
|
|
|
|
ds_stack_push(_bst, [ _b, _x, _w ]);
|
|
|
|
|
|
|
|
while(!ds_stack_empty(_bst)) {
|
|
|
|
var _st = ds_stack_pop(_bst);
|
|
|
|
var bone = _st[0];
|
|
|
|
var __x = _st[1];
|
|
|
|
var __w = _st[2];
|
|
|
|
|
|
|
|
if(!bone.is_main) {
|
|
|
|
if(bone.parent_anchor)
|
|
|
|
draw_sprite_ui(THEME.bone, 1, __x + 12, ty + 12,,,, COLORS._main_icon);
|
|
|
|
else {
|
|
|
|
if(_hover && point_in_circle(_m[0], _m[1], __x + 12, ty + 12, 12)) {
|
|
|
|
draw_sprite_ui(THEME.bone, 0, __x + 12, ty + 12,,,, COLORS._main_icon_light);
|
|
|
|
if(mouse_press(mb_left, _focus))
|
|
|
|
bone_dragging = bone;
|
|
|
|
} else
|
|
|
|
draw_sprite_ui(THEME.bone, 0, __x + 12, ty + 12,,,, COLORS._main_icon);
|
|
|
|
}
|
|
|
|
draw_set_text(f_p2, fa_left, fa_center, COLORS._main_text);
|
|
|
|
draw_text(__x + 24, ty + 12, bone.name);
|
|
|
|
|
|
|
|
//if(bone_dragging != noone && point_in_rectangle(_m[0], _m[1], _x, ty, _x + _w, ty + _hh - 1)) {
|
|
|
|
// draw_sprite_stretched_ext(THEME.ui_panel_active, 0, _x, ty, _w, _hh, COLORS._main_accent, 1);
|
|
|
|
// hovering = bone;
|
|
|
|
//}
|
|
|
|
|
|
|
|
ty += _hh;
|
|
|
|
|
|
|
|
draw_set_color(COLORS.node_composite_separator);
|
|
|
|
draw_line(_x + 16, ty, _x + _w - 16, ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(bone.childs); i++ )
|
|
|
|
ds_stack_push(_bst, [ bone.childs[i], __x + 16, __w - 16 ]);
|
2023-06-21 20:36:53 +02:00
|
|
|
}
|
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
ds_stack_destroy(_bst);
|
|
|
|
|
|
|
|
if(bone_dragging && mouse_release(mb_left))
|
|
|
|
bone_dragging = noone;
|
|
|
|
|
|
|
|
return bh;
|
2023-06-21 20:36:53 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
input_display_list = [
|
|
|
|
bone_renderer,
|
|
|
|
];
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
input_fix_len = ds_list_size(inputs);
|
|
|
|
data_length = 1;
|
|
|
|
|
|
|
|
static createBone = function(parent, distance, direction) {
|
2023-06-25 20:12:17 +02:00
|
|
|
var bone = new __Bone(parent, distance, direction,,, attributes, self);
|
2023-06-17 14:30:49 +02:00
|
|
|
parent.addChild(bone);
|
|
|
|
|
|
|
|
if(parent == attributes.bones)
|
|
|
|
bone.parent_anchor = false;
|
|
|
|
return bone;
|
|
|
|
}
|
|
|
|
|
2023-06-20 19:43:19 +02:00
|
|
|
outputs[| 0] = nodeValue("Armature", self, JUNCTION_CONNECT.output, VALUE_TYPE.armature, noone);
|
2023-06-17 14:30:49 +02:00
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
attributes.bones = new __Bone(,,,,, attributes, self);
|
2023-06-21 20:36:53 +02:00
|
|
|
attributes.bones.name = "Main";
|
2023-06-17 14:30:49 +02:00
|
|
|
attributes.bones.is_main = true;
|
2023-06-25 20:12:17 +02:00
|
|
|
attributes.bones.node = self;
|
2023-06-21 20:36:53 +02:00
|
|
|
|
|
|
|
attributes.display_name = true;
|
|
|
|
array_push(attributeEditors, ["Display name", "display_name",
|
|
|
|
new checkBox(function() {
|
|
|
|
attributes.display_name = !attributes.display_name;
|
|
|
|
})]);
|
2023-06-17 14:30:49 +02:00
|
|
|
|
|
|
|
tools = [
|
2023-06-23 15:39:24 +02:00
|
|
|
new NodeTool( "Transform", THEME.bone_tool_transform ),
|
|
|
|
new NodeTool( "Add bones", THEME.bone_tool_add ),
|
|
|
|
new NodeTool( "Remove bones", THEME.bone_tool_remove ),
|
|
|
|
new NodeTool( "Detach bones", THEME.bone_tool_detach ),
|
2023-06-25 20:12:17 +02:00
|
|
|
new NodeTool( "IK", THEME.bone_tool_detach ),
|
2023-06-17 14:30:49 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
anchor_selecting = noone;
|
|
|
|
builder_bone = noone;
|
|
|
|
builder_type = 0;
|
|
|
|
builder_sx = 0;
|
|
|
|
builder_sy = 0;
|
|
|
|
builder_mx = 0;
|
|
|
|
builder_my = 0;
|
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
bone_dragging = noone;
|
|
|
|
|
2023-06-23 15:39:24 +02:00
|
|
|
moving = false;
|
|
|
|
scaling = false;
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
static drawOverlay = function(active, _x, _y, _s, _mx, _my, _snx, _sny) {
|
|
|
|
var mx = (_mx - _x) / _s;
|
|
|
|
var my = (_my - _y) / _s;
|
|
|
|
|
2023-06-23 15:39:24 +02:00
|
|
|
var _b = attributes.bones;
|
|
|
|
|
|
|
|
if(isUsingTool(0)) { //transform
|
2023-06-25 20:12:17 +02:00
|
|
|
attributes.bones.draw(false, _x, _y, _s, _mx, _my);
|
2023-06-23 15:39:24 +02:00
|
|
|
|
|
|
|
var _bst = ds_stack_create();
|
|
|
|
ds_stack_push(_bst, _b);
|
|
|
|
|
|
|
|
var minx = 999999;
|
|
|
|
var miny = 999999;
|
|
|
|
var maxx = -999999;
|
|
|
|
var maxy = -999999;
|
|
|
|
|
|
|
|
while(!ds_stack_empty(_bst)) {
|
|
|
|
var __b = ds_stack_pop(_bst);
|
|
|
|
|
|
|
|
if(!__b.is_main) {
|
2023-06-25 20:12:17 +02:00
|
|
|
var p0 = __b.getPoint(0);
|
|
|
|
var p1 = __b.getPoint(1);
|
2023-06-23 15:39:24 +02:00
|
|
|
|
|
|
|
minx = min(minx, p0.x);
|
|
|
|
miny = min(miny, p0.y);
|
|
|
|
maxx = max(maxx, p0.x);
|
|
|
|
maxy = max(maxy, p0.y);
|
|
|
|
|
|
|
|
minx = min(minx, p1.x);
|
|
|
|
miny = min(miny, p1.y);
|
|
|
|
maxx = max(maxx, p1.x);
|
|
|
|
maxy = max(maxy, p1.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(__b.childs); i++ )
|
|
|
|
ds_stack_push(_bst, __b.childs[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ds_stack_destroy(_bst);
|
|
|
|
|
|
|
|
|
|
|
|
var hvSc = false;
|
|
|
|
var hvMv = false;
|
|
|
|
|
|
|
|
if(moving) {
|
|
|
|
var dx = mx - builder_mx;
|
|
|
|
var dy = my - builder_my;
|
|
|
|
|
|
|
|
builder_mx = mx;
|
|
|
|
builder_my = my;
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(_b.childs); i++ ) {
|
|
|
|
var bone = _b.childs[i];
|
|
|
|
|
2023-06-24 22:12:35 +02:00
|
|
|
var _bx = lengthdir_x(bone.distance, bone.direction) + dx;
|
|
|
|
var _by = lengthdir_y(bone.distance, bone.direction) + dy;
|
2023-06-23 15:39:24 +02:00
|
|
|
|
2023-06-24 22:12:35 +02:00
|
|
|
bone.distance = point_distance(0, 0, _bx, _by);
|
|
|
|
bone.direction = point_direction(0, 0, _bx, _by);
|
2023-06-23 15:39:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(mouse_release(mb_left))
|
|
|
|
moving = false;
|
|
|
|
} else if(scaling) {
|
|
|
|
var dir = point_direction(minx, miny, maxx, maxy);
|
|
|
|
var ss = 1 + dot_product(lengthdir_x(1, dir), lengthdir_y(1, dir), mx - builder_mx, my - builder_my);
|
|
|
|
|
|
|
|
var _bst = ds_stack_create();
|
|
|
|
ds_stack_push(_bst, _b);
|
|
|
|
|
|
|
|
while(!ds_stack_empty(_bst)) {
|
|
|
|
var __b = ds_stack_pop(_bst);
|
|
|
|
|
|
|
|
if(!__b.is_main) {
|
|
|
|
__b.distance = __b.freeze_data.distance * ss;
|
|
|
|
__b.length = __b.freeze_data.length * ss;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(__b.childs); i++ )
|
|
|
|
ds_stack_push(_bst, __b.childs[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ds_stack_destroy(_bst);
|
|
|
|
|
|
|
|
if(mouse_release(mb_left))
|
|
|
|
scaling = false;
|
|
|
|
} else {
|
|
|
|
if(point_in_circle(_mx, _my, maxx, maxy, 16)) {
|
|
|
|
hvSc = true;
|
|
|
|
|
|
|
|
if(mouse_press(mb_left)) {
|
|
|
|
attributes.bones.freeze();
|
|
|
|
|
|
|
|
builder_mx = mx;
|
|
|
|
builder_my = my;
|
|
|
|
scaling = true;
|
|
|
|
}
|
|
|
|
} else if(point_in_circle(_mx, _my, maxx, maxy, 16)) {
|
|
|
|
hvMv = true;
|
|
|
|
|
|
|
|
if(mouse_press(mb_left)) {
|
|
|
|
builder_mx = mx;
|
|
|
|
builder_my = my;
|
|
|
|
moving = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
draw_sprite_colored(THEME.anchor_scale, hvSc, maxx, maxy);
|
|
|
|
|
|
|
|
draw_set_color(COLORS._main_accent);
|
|
|
|
draw_rectangle_border(minx, miny, maxx, maxy, hvMv);
|
2023-06-25 20:12:17 +02:00
|
|
|
|
|
|
|
triggerRender();
|
2023-06-23 15:39:24 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
anchor_selecting = attributes.bones.draw(active, _x, _y, _s, _mx, _my, true, anchor_selecting);
|
|
|
|
//if(is_array(anchor_selecting)) print(anchor_selecting[1])
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
if(builder_bone != noone) {
|
2023-06-19 20:28:30 +02:00
|
|
|
//draw_set_color(COLORS._main_accent);
|
|
|
|
//draw_circle(_x + builder_sx * _s, _y + builder_sy * _s, 8, false);
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
var dir = point_direction(builder_sx, builder_sy, mx, my);
|
|
|
|
var dis = point_distance(builder_sx, builder_sy, mx, my);
|
|
|
|
|
2023-06-19 20:28:30 +02:00
|
|
|
if(builder_type == 2) {
|
2023-06-25 20:12:17 +02:00
|
|
|
var bx = builder_sx + (mx - builder_mx);
|
|
|
|
var by = builder_sy + (my - builder_my);
|
2023-06-19 20:28:30 +02:00
|
|
|
|
|
|
|
if(!builder_bone.parent_anchor) {
|
|
|
|
builder_bone.direction = point_direction(0, 0, bx, by);
|
|
|
|
builder_bone.distance = point_distance( 0, 0, bx, by);
|
|
|
|
}
|
|
|
|
} else if(key_mod_press(ALT)) {
|
2023-06-17 14:30:49 +02:00
|
|
|
if(builder_type == 0) {
|
2023-06-25 20:12:17 +02:00
|
|
|
var bo = builder_bone.getPoint(1);
|
2023-06-17 14:30:49 +02:00
|
|
|
|
|
|
|
builder_bone.direction = dir;
|
|
|
|
builder_bone.distance = dis;
|
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
var bn = builder_bone.getPoint(0);
|
2023-06-17 14:30:49 +02:00
|
|
|
|
2023-06-19 20:28:30 +02:00
|
|
|
builder_bone.angle = point_direction(bn.x, bn.y, bo.x, bo.y);
|
|
|
|
builder_bone.length = point_distance( bn.x, bn.y, bo.x, bo.y);
|
2023-06-17 14:30:49 +02:00
|
|
|
} else if(builder_type == 1) {
|
|
|
|
var chs = [];
|
|
|
|
for( var i = 0; i < array_length(builder_bone.childs); i++ ) {
|
|
|
|
var ch = builder_bone.childs[i];
|
2023-06-25 20:12:17 +02:00
|
|
|
chs[i] = ch.getPoint(1);
|
2023-06-17 14:30:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
builder_bone.angle = dir;
|
|
|
|
builder_bone.length = dis;
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(builder_bone.childs); i++ ) {
|
|
|
|
var ch = builder_bone.childs[i];
|
2023-06-25 20:12:17 +02:00
|
|
|
var c0 = ch.getPoint(0);
|
2023-06-17 14:30:49 +02:00
|
|
|
|
|
|
|
ch.angle = point_direction(c0.x, c0.y, chs[i].x, chs[i].y);
|
|
|
|
ch.length = point_distance( c0.x, c0.y, chs[i].x, chs[i].y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(builder_type == 0) {
|
|
|
|
builder_bone.direction = dir;
|
|
|
|
builder_bone.distance = dis;
|
2023-06-25 20:12:17 +02:00
|
|
|
|
|
|
|
if(builder_bone.parent) {
|
|
|
|
var par_anc = builder_bone.parent.getPoint(1);
|
|
|
|
par_anc.x = _x + par_anc.x * _s;
|
|
|
|
par_anc.y = _y + par_anc.y * _s;
|
|
|
|
|
|
|
|
if(!builder_bone.parent.is_main && point_in_circle(_mx, _my, par_anc.x, par_anc.y, 16) && mouse_release(mb_left))
|
|
|
|
builder_bone.parent_anchor = true;
|
|
|
|
}
|
2023-06-17 14:30:49 +02:00
|
|
|
} else if(builder_type == 1) {
|
|
|
|
builder_bone.angle = dir;
|
|
|
|
builder_bone.length = dis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 20:36:53 +02:00
|
|
|
if(mouse_release(mb_left)) {
|
2023-06-17 14:30:49 +02:00
|
|
|
builder_bone = noone;
|
2023-06-21 20:36:53 +02:00
|
|
|
UNDO_HOLDING = false;
|
|
|
|
}
|
2023-06-25 20:12:17 +02:00
|
|
|
|
|
|
|
triggerRender();
|
2023-06-17 14:30:49 +02:00
|
|
|
}
|
|
|
|
|
2023-06-23 15:39:24 +02:00
|
|
|
if(isUsingTool(1)) { // builder
|
2023-06-17 14:30:49 +02:00
|
|
|
if(mouse_press(mb_left, active)) {
|
|
|
|
if(anchor_selecting == noone) {
|
|
|
|
builder_bone = createBone(attributes.bones, point_distance(0, 0, mx, my), point_direction(0, 0, mx, my));
|
|
|
|
builder_type = 1;
|
|
|
|
builder_sx = mx;
|
|
|
|
builder_sy = my;
|
2023-06-21 20:36:53 +02:00
|
|
|
UNDO_HOLDING = true;
|
2023-06-17 14:30:49 +02:00
|
|
|
} else if(anchor_selecting[1] == 1) {
|
|
|
|
builder_bone = createBone(anchor_selecting[0], 0, 0);
|
|
|
|
builder_type = 1;
|
|
|
|
builder_sx = mx;
|
|
|
|
builder_sy = my;
|
2023-06-21 20:36:53 +02:00
|
|
|
UNDO_HOLDING = true;
|
2023-06-19 20:28:30 +02:00
|
|
|
} else if(anchor_selecting[1] == 2) {
|
|
|
|
var _pr = anchor_selecting[0];
|
2023-06-25 20:12:17 +02:00
|
|
|
var _md = new __Bone(noone, 0, 0, _pr.angle, _pr.length / 2, attributes, self);
|
2023-06-19 20:28:30 +02:00
|
|
|
_pr.length = _md.length;
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(_pr.childs); i++ )
|
|
|
|
_md.addChild(_pr.childs[i]);
|
|
|
|
|
|
|
|
_pr.childs = [];
|
|
|
|
_pr.addChild(_md);
|
2023-06-21 20:36:53 +02:00
|
|
|
|
|
|
|
UNDO_HOLDING = true;
|
2023-06-17 14:30:49 +02:00
|
|
|
}
|
|
|
|
}
|
2023-06-25 20:12:17 +02:00
|
|
|
|
|
|
|
if(anchor_selecting == noone)
|
|
|
|
draw_sprite_ext(THEME.bone_tool_add, 1, _mx + 24, _my + 24, 1, 1, 0, c_white, 1);
|
|
|
|
else if(anchor_selecting[1] == 1) {
|
|
|
|
draw_sprite_ext(THEME.bone_tool_add, 0, _mx + 24, _my + 24, 1, 1, 0, c_white, 1);
|
|
|
|
draw_sprite_ext(THEME.bone_tool_add, 1, _mx + 24, _my + 24, 1, 1, 0, c_white, 1);
|
|
|
|
} else if(anchor_selecting[1] == 2)
|
|
|
|
draw_sprite_ext(THEME.bone_tool_add, 0, _mx + 24, _my + 24, 1, 1, 0, c_white, 1);
|
2023-06-23 15:39:24 +02:00
|
|
|
} else if(isUsingTool(2)) { //remover
|
2023-06-19 20:28:30 +02:00
|
|
|
if(anchor_selecting != noone && anchor_selecting[0].parent != noone && mouse_press(mb_left, active)) {
|
|
|
|
var _bone = anchor_selecting[0];
|
|
|
|
var _par = _bone.parent;
|
|
|
|
|
|
|
|
if(anchor_selecting[1] == 2) {
|
|
|
|
array_remove(_par.childs, _bone);
|
|
|
|
|
|
|
|
for( var i = 0; i < array_length(_bone.childs); i++ ) {
|
|
|
|
var _ch = _bone.childs[i];
|
|
|
|
_par.addChild(_ch);
|
2023-06-25 20:12:17 +02:00
|
|
|
|
|
|
|
_ch.parent_anchor = _bone.parent_anchor;
|
2023-06-19 20:28:30 +02:00
|
|
|
}
|
2023-06-21 20:36:53 +02:00
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
triggerRender();
|
2023-06-19 20:28:30 +02:00
|
|
|
}
|
|
|
|
}
|
2023-06-25 20:12:17 +02:00
|
|
|
|
|
|
|
if(anchor_selecting != noone)
|
|
|
|
draw_sprite_ext(THEME.bone_tool_remove, 1, _mx + 24, _my + 24, 1, 1, 0, c_white, 1);
|
|
|
|
} else if(isUsingTool(3)) { //detach
|
|
|
|
if(anchor_selecting != noone && anchor_selecting[1] == 2 && mouse_press(mb_left, active)) {
|
2023-06-19 20:28:30 +02:00
|
|
|
builder_bone = anchor_selecting[0];
|
|
|
|
builder_type = anchor_selecting[1];
|
|
|
|
|
|
|
|
var par = builder_bone.parent;
|
2023-06-25 20:12:17 +02:00
|
|
|
if(builder_bone.parent_anchor) {
|
|
|
|
builder_bone.distance = par.length;
|
|
|
|
builder_bone.direction = par.angle;
|
|
|
|
}
|
2023-06-19 20:28:30 +02:00
|
|
|
builder_bone.parent_anchor = false;
|
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
builder_sx = lengthdir_x(builder_bone.distance, builder_bone.direction);
|
|
|
|
builder_sy = lengthdir_y(builder_bone.distance, builder_bone.direction);
|
2023-06-19 20:28:30 +02:00
|
|
|
builder_mx = mx;
|
|
|
|
builder_my = my;
|
2023-06-21 20:36:53 +02:00
|
|
|
UNDO_HOLDING = true;
|
2023-06-19 20:28:30 +02:00
|
|
|
}
|
2023-06-25 20:12:17 +02:00
|
|
|
} else if(isUsingTool(4)) { //IK
|
|
|
|
|
|
|
|
} else if(isNotUsingTool()) { //mover
|
2023-06-17 14:30:49 +02:00
|
|
|
if(anchor_selecting != noone && mouse_press(mb_left, active)) {
|
|
|
|
builder_bone = anchor_selecting[0];
|
|
|
|
builder_type = anchor_selecting[1];
|
|
|
|
|
|
|
|
if(builder_type == 0) {
|
2023-06-25 20:12:17 +02:00
|
|
|
var orig = builder_bone.parent.getPoint(0);
|
2023-06-17 14:30:49 +02:00
|
|
|
builder_sx = orig.x;
|
|
|
|
builder_sy = orig.y;
|
|
|
|
} else if(builder_type == 1) {
|
2023-06-25 20:12:17 +02:00
|
|
|
var orig = builder_bone.getPoint(0);
|
2023-06-17 14:30:49 +02:00
|
|
|
builder_sx = orig.x;
|
|
|
|
builder_sy = orig.y;
|
|
|
|
} else if(builder_type == 2) {
|
2023-06-19 20:28:30 +02:00
|
|
|
if(builder_bone.parent_anchor) {
|
|
|
|
builder_bone = noone;
|
|
|
|
} else {
|
|
|
|
var par = builder_bone.parent;
|
|
|
|
builder_sx = lengthdir_x(builder_bone.distance, builder_bone.direction);
|
|
|
|
builder_sy = lengthdir_y(builder_bone.distance, builder_bone.direction);
|
|
|
|
builder_mx = mx;
|
|
|
|
builder_my = my;
|
|
|
|
}
|
2023-06-17 14:30:49 +02:00
|
|
|
}
|
2023-06-21 20:36:53 +02:00
|
|
|
|
|
|
|
UNDO_HOLDING = true;
|
2023-06-17 14:30:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-21 20:36:53 +02:00
|
|
|
static step = function() {
|
2023-06-23 15:39:24 +02:00
|
|
|
|
2023-06-21 20:36:53 +02:00
|
|
|
}
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
static update = function(frame = ANIMATOR.current_frame) {
|
|
|
|
outputs[| 0].setValue(attributes.bones);
|
|
|
|
}
|
|
|
|
|
2023-06-25 20:12:17 +02:00
|
|
|
static attributeSerialize = function() { return {}; }
|
|
|
|
static attributeDeserialize = function(attr) {}
|
|
|
|
|
2023-06-20 19:43:19 +02:00
|
|
|
static doSerialize = function(_map) {
|
2023-06-23 15:39:24 +02:00
|
|
|
_map.bones = attributes.bones.serialize();
|
2023-06-20 19:43:19 +02:00
|
|
|
}
|
|
|
|
|
2023-06-17 14:30:49 +02:00
|
|
|
static postDeserialize = function() {
|
2023-06-23 15:39:24 +02:00
|
|
|
if(!struct_has(load_map, "bones")) return;
|
2023-06-25 20:12:17 +02:00
|
|
|
attributes.bones = new __Bone(,,,,, attributes, self);
|
|
|
|
attributes.bones.deserialize(load_map.bones, attributes, self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
|
|
|
|
var bbox = drawGetBbox(xx, yy, _s);
|
|
|
|
draw_sprite_fit(s_node_armature_create, 0, bbox.xc, bbox.yc, bbox.w, bbox.h);
|
2023-06-17 14:30:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|