Pixel-Composer/scripts/node_image_animated/node_image_animated.gml

210 lines
5.8 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_create_Image_Animated(_x, _y, _group = noone) {
2022-01-13 05:24:03 +01:00
var path = "";
2023-01-17 08:11:55 +01:00
if(!LOADING && !APPENDING && !CLONING) {
2022-01-13 05:24:03 +01:00
path = get_open_filenames(".png", "");
2023-02-28 09:43:01 +01:00
key_release();
2022-01-13 05:24:03 +01:00
if(path == "") return noone;
}
2022-12-13 09:20:36 +01:00
var node = new Node_Image_Animated(_x, _y, _group);
2022-01-13 05:24:03 +01:00
var paths = paths_to_array(path);
node.inputs[| 0].setValue(paths);
node.doUpdate();
2022-01-13 05:24:03 +01:00
2022-12-13 09:20:36 +01:00
//ds_list_add(PANEL_GRAPH.nodes_list, node);
2022-01-13 05:24:03 +01:00
return node;
}
function Node_create_Image_Animated_path(_x, _y, _path) {
2023-01-17 08:11:55 +01:00
var node = new Node_Image_Animated(_x, _y, PANEL_GRAPH.getCurrentContext());
2022-01-13 05:24:03 +01:00
node.inputs[| 0].setValue(_path);
node.doUpdate();
2022-01-13 05:24:03 +01:00
2022-12-13 09:20:36 +01:00
//ds_list_add(PANEL_GRAPH.nodes_list, node);
2022-01-13 05:24:03 +01:00
return node;
}
enum ANIMATION_END {
loop,
ping,
hold,
hide
}
2023-02-28 09:43:01 +01:00
function Node_Image_Animated(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-03-19 09:17:39 +01:00
name = "Animation";
2022-01-13 05:24:03 +01:00
spr = [];
2022-11-18 03:20:31 +01:00
color = COLORS.node_blend_input;
2022-01-13 05:24:03 +01:00
update_on_frame = true;
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.path, [])
2022-01-13 05:24:03 +01:00
.setDisplay(VALUE_DISPLAY.path_array, ["*.png", ""]);
2023-02-14 05:32:32 +01:00
inputs[| 1] = nodeValue("Padding", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, [0, 0, 0, 0])
.setDisplay(VALUE_DISPLAY.padding)
.rejectArray();
2022-01-19 03:05:13 +01:00
2023-05-16 21:28:16 +02:00
inputs[| 2] = nodeValue("Stretch frame", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false, "Stretch animation speed to match project length.")
2023-02-14 05:32:32 +01:00
.rejectArray();
2022-01-13 05:24:03 +01:00
inputs[| 3] = nodeValue("Animation speed", self, JUNCTION_CONNECT.input, VALUE_TYPE.float, 1)
2023-02-14 05:32:32 +01:00
.rejectArray();
2022-01-13 05:24:03 +01:00
inputs[| 4] = nodeValue("Loop modes", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0)
2023-02-14 05:32:32 +01:00
.setDisplay(VALUE_DISPLAY.enum_scroll, ["Loop", "Ping pong", "Hold last frame", "Hide"])
.rejectArray();
2023-03-28 06:58:28 +02:00
inputs[| 5] = nodeValue("Set animation length to match", self, JUNCTION_CONNECT.input, VALUE_TYPE.trigger, 0)
2022-01-13 05:24:03 +01:00
.setDisplay(VALUE_DISPLAY.button, [ function() {
if(array_length(spr) == 0) return;
2023-07-06 19:49:16 +02:00
PROJECT.animator.frames_total = array_length(spr);
2022-01-13 05:24:03 +01:00
}, "Match length"] );
inputs[| 6] = nodeValue("Custom frame order", self, JUNCTION_CONNECT.input, VALUE_TYPE.boolean, false);
inputs[| 7] = nodeValue("Frame", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, 0);
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
2022-01-13 05:24:03 +01:00
input_display_list = [
["Image", false], 0, 1,
["Animation", false], 5, 4, 6, 7, 2, 3,
2022-01-13 05:24:03 +01:00
];
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2022-01-13 05:24:03 +01:00
path_loaded = [];
on_drop_file = function(path) { #region
2022-01-13 05:24:03 +01:00
if(directory_exists(path)) {
with(dialogCall(o_dialog_drag_folder, WIN_W / 2, WIN_H / 2)) {
dir_paths = path;
target = other;
}
return true;
}
var paths = paths_to_array(path);
2023-09-28 13:15:29 +02:00
inputs[| 0].setValue(paths);
2022-01-13 05:24:03 +01:00
if(updatePaths(paths)) {
doUpdate();
2022-01-13 05:24:03 +01:00
return true;
}
return false;
} #endregion
2022-01-13 05:24:03 +01:00
function updatePaths(paths) { #region
2022-01-13 05:24:03 +01:00
if(!is_array(paths) && ds_exists(paths, ds_type_list))
paths = ds_list_to_array(paths);
for(var i = 0; i < array_length(spr); i++) {
if(spr[i] && sprite_exists(spr[i]))
sprite_delete(spr[i]);
}
spr = [];
path_loaded = array_create(array_length(paths));
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(paths); i < n; i++ ) {
2022-01-13 05:24:03 +01:00
path_loaded[i] = paths[i];
var path = try_get_path(paths[i]);
if(path == -1) continue;
2023-04-15 14:48:29 +02:00
setDisplayName(string_replace(filename_name(path), filename_ext(path), ""));
2023-03-19 09:17:39 +01:00
var ext = string_lower(filename_ext(path));
2022-01-13 05:24:03 +01:00
2023-03-19 09:17:39 +01:00
switch(ext) {
case ".png" :
case ".jpg" :
case ".jpeg" :
array_push(spr, sprite_add(path, 1, false, false, 0, 0));
break;
}
2022-01-13 05:24:03 +01:00
}
return true;
} #endregion
2022-01-13 05:24:03 +01:00
2023-06-05 18:27:53 +02:00
insp1UpdateTooltip = __txt("Refresh");
2023-04-07 21:25:27 +02:00
insp1UpdateIcon = [ THEME.refresh, 1, COLORS._main_value_positive ];
static onInspector1Update = function() { #region
2023-01-17 08:11:55 +01:00
var path = inputs[| 0].getValue();
if(path == "") return;
updatePaths(path);
update();
} #endregion
static step = function() { #region
var str = inputs[| 2].getValue();
var _cus = inputs[| 6].getValue();
inputs[| 7].setVisible( _cus);
inputs[| 2].setVisible(!_cus);
inputs[| 3].setVisible(!_cus && !str);
inputs[| 4].setVisible(!_cus && !str);
} #endregion
2023-01-17 08:11:55 +01:00
static update = function(frame = PROJECT.animator.current_frame) { #region
2022-01-13 05:24:03 +01:00
var path = inputs[| 0].getValue();
if(path == "") return;
if(is_array(path) && !array_equals(path, path_loaded))
updatePaths(path);
if(array_length(spr) == 0) return;
var _pad = inputs[| 1].getValue();
2022-01-19 06:11:17 +01:00
var _cus = inputs[| 6].getValue();
var _str = inputs[| 2].getValue();
2022-01-13 05:24:03 +01:00
var _end = inputs[| 4].getValue();
var _spd = _str? (PROJECT.animator.frames_total + 1) / array_length(spr) : 1 / inputs[| 3].getValue();
if(_spd == 0) _spd = 1;
var _frame = _cus? inputs[| 7].getValue() : floor(PROJECT.animator.current_frame / _spd);
var _len = array_length(spr);
var _drw = true;
2022-01-13 05:24:03 +01:00
var ww = sprite_get_width(spr[0]);
var hh = sprite_get_height(spr[0]);
ww += _pad[0] + _pad[2];
hh += _pad[1] + _pad[3];
2022-01-13 05:24:03 +01:00
var surfs = outputs[| 0].getValue();
2023-03-19 09:17:39 +01:00
surfs = surface_verify(surfs, ww, hh, attrDepth());
2022-12-27 04:00:50 +01:00
outputs[| 0].setValue(surfs);
2022-01-13 05:24:03 +01:00
switch(_end) {
case ANIMATION_END.loop :
_frame = safe_mod(_frame, _len);
2022-01-13 05:24:03 +01:00
break;
case ANIMATION_END.ping :
_frame = safe_mod(_frame, _len * 2 - 2);
if(_frame >= _len)
_frame = _len * 2 - 2 - _frame;
2022-01-13 05:24:03 +01:00
break;
case ANIMATION_END.hold :
_frame = min(_frame, _len - 1);
break;
case ANIMATION_END.hide :
if(_frame < 0 || _frame >= _len)
_drw = false;
2022-01-13 05:24:03 +01:00
break;
}
2023-04-10 20:02:59 +02:00
var _spr = array_safe_get(spr, _frame, noone);
if(_spr == noone) return;
2023-02-14 05:32:32 +01:00
var curr_w = sprite_get_width(spr[_frame]);
var curr_h = sprite_get_height(spr[_frame]);
var curr_x = _pad[2] + (ww - curr_w) / 2;
var curr_y = _pad[1] + (hh - curr_h) / 2;
surface_set_shader(surfs);
if(_drw) draw_sprite(spr[_frame], 0, curr_x, curr_y);
surface_reset_shader();
} #endregion
2022-01-13 05:24:03 +01:00
}