Pixel-Composer/scripts/node_image/node_image.gml

162 lines
4.2 KiB
Plaintext
Raw Normal View History

function Node_create_Image(_x, _y, _group = noone) {
2022-01-13 05:24:03 +01:00
var path = "";
2024-05-03 13:40:46 +02:00
if(NODE_NEW_MANUAL) {
2024-05-16 15:28:45 +02:00
path = get_open_filename_pxc("image|*.png;*.jpg", "");
2023-02-28 09:43:01 +01:00
key_release();
2022-01-13 05:24:03 +01:00
if(path == "") return noone;
}
var node = new Node_Image(_x, _y, _group).skipDefault();
2024-08-08 06:57:51 +02:00
node.inputs[0].setValue(path);
2024-05-03 13:40:46 +02:00
if(NODE_NEW_MANUAL) node.doUpdate();
2022-01-13 05:24:03 +01:00
return node;
}
2022-01-13 05:24:03 +01:00
function Node_create_Image_path(_x, _y, path) {
2023-12-08 03:50:09 +01:00
if(!file_exists_empty(path)) return noone;
2022-01-13 05:24:03 +01:00
var node = new Node_Image(_x, _y, PANEL_GRAPH.getCurrentContext()).skipDefault();
2024-08-08 06:57:51 +02:00
node.inputs[0].setValue(path);
node.doUpdate();
2022-01-13 05:24:03 +01:00
return node;
}
2022-01-13 05:24:03 +01:00
2023-02-28 09:43:01 +01:00
function Node_Image(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-11-23 13:39:35 +01:00
name = "Image";
color = COLORS.node_blend_input;
2022-01-13 05:24:03 +01:00
2024-08-18 09:13:41 +02:00
newInput(0, nodeValue_Path("Path", self, ""))
2024-02-15 14:23:26 +01:00
.setDisplay(VALUE_DISPLAY.path_load, { filter: "image|*.png;*.jpg" });
2022-01-19 03:05:13 +01:00
2024-08-18 06:16:20 +02:00
newInput(1, nodeValue_Padding("Padding", self, [0, 0, 0, 0]));
2022-01-19 03:05:13 +01:00
2024-09-04 03:57:11 +02:00
newOutput(0, nodeValue_Output("Surface out", self, VALUE_TYPE.surface, noone));
newOutput(1, nodeValue_Output("Path", self, VALUE_TYPE.path, ""))
2022-01-13 05:24:03 +01:00
.setVisible(true, true);
2023-03-19 09:17:39 +01:00
attribute_surface_depth();
2024-05-16 10:37:44 +02:00
spr = noone;
edit_time = 0;
2022-01-13 05:24:03 +01:00
2024-05-16 10:37:44 +02:00
attributes.check_splice = true;
2024-03-14 14:35:19 +01:00
attributes.file_checker = true;
array_push(attributeEditors, [ "File Watcher", function() { return attributes.file_checker; },
new checkBox(function() { attributes.file_checker = !attributes.file_checker; }) ]);
2022-01-13 05:24:03 +01:00
2024-08-29 03:53:19 +02:00
static on_drop_file = function(path) {
2024-08-08 06:57:51 +02:00
inputs[0].setValue(path);
2023-09-28 13:15:29 +02:00
2024-08-29 03:53:19 +02:00
if(updatePaths(path)) { doUpdate(); return true; }
2022-01-13 05:24:03 +01:00
return false;
2024-08-27 13:42:29 +02:00
}
2022-01-13 05:24:03 +01:00
2024-08-29 03:53:19 +02:00
static createSprite = function(path) {
2024-05-16 10:37:44 +02:00
if(!file_exists(path))
return noone;
2022-01-13 05:24:03 +01:00
2024-02-15 14:23:26 +01:00
var ext = string_lower(filename_ext(path));
var _name = filename_name_only(path);
2022-01-13 05:24:03 +01:00
switch(ext) {
case ".png":
case ".jpg":
case ".jpeg":
case ".gif":
2023-04-15 14:48:29 +02:00
setDisplayName(_name);
2024-08-29 03:53:19 +02:00
var _real_path = sprite_path_check_depth(path);
var _spr = sprite_add(_real_path, 1, false, false, 0, 0);
2022-01-13 05:24:03 +01:00
2024-05-16 10:37:44 +02:00
if(_spr == -1) {
2024-06-26 06:38:57 +02:00
var _txt = $"Image node: File not a valid image.";
logNode(_txt); noti_warning(_txt);
2024-02-15 14:23:26 +01:00
break;
2023-12-09 10:49:02 +01:00
}
2024-05-16 10:37:44 +02:00
edit_time = file_get_modify_s(path);
return _spr;
2024-02-15 14:23:26 +01:00
}
return noone;
2024-08-27 13:42:29 +02:00
}
2024-02-15 14:23:26 +01:00
2024-08-29 03:53:19 +02:00
static updatePaths = function(path) {
if(sprite_exists(spr)) sprite_delete(spr);
2024-05-16 10:37:44 +02:00
spr = createSprite(path);
2024-08-27 13:42:29 +02:00
}
2022-01-13 05:24:03 +01:00
2023-06-05 18:27:53 +02:00
insp1UpdateTooltip = __txt("Refresh");
2024-03-31 05:36:11 +02:00
insp1UpdateIcon = [ THEME.refresh_icon, 1, COLORS._main_value_positive ];
2023-04-07 21:25:27 +02:00
2024-08-27 13:42:29 +02:00
static onInspector1Update = function() {
2024-03-14 14:35:19 +01:00
updatePaths(path_get(getInputData(0)));
triggerRender();
2024-08-27 13:42:29 +02:00
}
2024-03-14 14:35:19 +01:00
2024-08-27 13:42:29 +02:00
static step = function() {
2024-05-16 10:37:44 +02:00
var path = path_get(getInputData(0));
if(!file_exists_empty(path)) return;
if(attributes.file_checker && file_get_modify_s(path) > edit_time) {
updatePaths(path);
triggerRender();
2024-03-14 14:35:19 +01:00
}
2024-08-27 13:42:29 +02:00
}
2023-01-17 08:11:55 +01:00
2024-08-27 13:42:29 +02:00
static update = function(frame = CURRENT_FRAME) {
2024-05-16 10:37:44 +02:00
2024-03-14 14:35:19 +01:00
var path = path_get(getInputData(0));
var pad = getInputData(1);
2024-02-11 14:53:33 +01:00
2024-08-08 06:57:51 +02:00
outputs[1].setValue(path);
2024-05-16 10:37:44 +02:00
updatePaths(path);
2022-01-13 05:24:03 +01:00
2024-05-16 10:37:44 +02:00
if(!sprite_exists(spr)) return;
2022-01-13 05:24:03 +01:00
2024-08-08 06:57:51 +02:00
var _outsurf = outputs[0].getValue();
2022-01-13 05:24:03 +01:00
2024-05-16 10:37:44 +02:00
var ww = sprite_get_width(spr) + pad[0] + pad[2];
var hh = sprite_get_height(spr) + pad[1] + pad[3];
2024-02-15 14:23:26 +01:00
2024-05-16 10:37:44 +02:00
_outsurf = surface_verify(_outsurf, ww, hh, attrDepth());
surface_set_shader(_outsurf, noone);
draw_sprite(spr, 0, pad[2], pad[1]);
surface_reset_shader();
2024-02-15 14:23:26 +01:00
2024-08-08 06:57:51 +02:00
outputs[0].setValue(_outsurf);
2022-01-13 05:24:03 +01:00
2024-08-29 03:53:19 +02:00
if(!attributes.check_splice) return;
attributes.check_splice = false;
//////////////////////////////////////////////// SPLICE ////////////////////////////////////////////////
if(LOADING || APPENDING) return;
if(string_pos("strip", display_name) == 0) return;
var sep_pos = string_pos("strip", display_name) + 5;
var sep = string_copy(display_name, sep_pos, string_length(display_name) - sep_pos + 1);
var amo = toNumber(string_digits(sep));
if(amo == 0) return;
var ww = sprite_get_width(spr) / amo;
var hh = sprite_get_height(spr);
var _splice = nodeBuild("Node_Image_Sheet", x + w + 64, y);
_splice.inputs[0].setFrom(outputs[0], false);
_splice.inputs[1].setValue([ ww, hh ]);
_splice.inputs[2].setValue(amo);
_splice.inputs[3].setValue([ amo, 1 ]);
2024-08-27 13:42:29 +02:00
}
2024-07-03 05:16:46 +02:00
static dropPath = function(path) {
if(is_array(path)) path = array_safe_get(path, 0);
if(!file_exists_empty(path)) return;
2024-08-08 06:57:51 +02:00
inputs[0].setValue(path);
2024-07-03 05:16:46 +02:00
}
2022-01-13 05:24:03 +01:00
}