Pixel-Composer/scripts/node_image/node_image.gml

162 lines
4.2 KiB
Plaintext
Raw Normal View History

2023-12-09 10:49:02 +01:00
function Node_create_Image(_x, _y, _group = noone) { #region
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;
}
2022-12-13 09:20:36 +01:00
var node = new Node_Image(_x, _y, _group);
2022-01-13 05:24:03 +01: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;
2023-12-09 10:49:02 +01:00
} #endregion
2022-01-13 05:24:03 +01:00
2023-12-09 10:49:02 +01:00
function Node_create_Image_path(_x, _y, path) { #region
2023-12-08 03:50:09 +01:00
if(!file_exists_empty(path)) return noone;
2022-01-13 05:24:03 +01:00
2023-01-17 08:11:55 +01:00
var node = new Node_Image(_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
return node;
2023-12-09 10:49:02 +01:00
} #endregion
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
2023-02-14 05:32:32 +01:00
inputs[| 0] = nodeValue("Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.path, "")
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
2023-02-14 05:32:32 +01:00
inputs[| 1] = nodeValue("Padding", self, JUNCTION_CONNECT.input, VALUE_TYPE.integer, [0, 0, 0, 0])
2022-01-13 05:24:03 +01:00
.setDisplay(VALUE_DISPLAY.padding);
2022-01-19 03:05:13 +01:00
2023-02-14 05:32:32 +01:00
outputs[| 0] = nodeValue("Surface out", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, noone);
outputs[| 1] = nodeValue("Path", self, JUNCTION_CONNECT.output, 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
2023-12-09 10:49:02 +01:00
on_drop_file = function(path) { #region
2023-09-28 13:15:29 +02:00
inputs[| 0].setValue(path);
2022-01-13 05:24:03 +01:00
if(updatePaths(path)) {
doUpdate();
2022-01-13 05:24:03 +01:00
return true;
}
return false;
2023-12-09 10:49:02 +01:00
} #endregion
2022-01-13 05:24:03 +01:00
2024-02-15 14:23:26 +01:00
function createSprite(path) { #region
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-05-16 10:37:44 +02:00
var _spr = sprite_add(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;
} #endregion
2024-05-16 10:37:44 +02:00
function updatePaths(path) { #region
2024-02-15 14:23:26 +01:00
2024-05-16 10:37:44 +02:00
if(sprite_exists(spr))
sprite_delete(spr);
2024-03-14 14:35:19 +01:00
2024-05-16 10:37:44 +02:00
spr = createSprite(path);
2023-12-09 10:49:02 +01:00
} #endregion
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
2023-12-09 10:49:02 +01:00
static onInspector1Update = function() { #region
2024-03-14 14:35:19 +01:00
updatePaths(path_get(getInputData(0)));
triggerRender();
} #endregion
static step = function() { #region
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
}
2023-12-09 10:49:02 +01:00
} #endregion
2023-01-17 08:11:55 +01:00
2023-12-09 10:49:02 +01:00
static update = function(frame = CURRENT_FRAME) { #region
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-02-15 14:23:26 +01: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-02-11 14:53:33 +01: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-05-16 10:37:44 +02:00
outputs[| 0].setValue(_outsurf);
2022-01-13 05:24:03 +01:00
2024-02-15 14:23:26 +01:00
#region splice
2024-05-16 10:37:44 +02:00
if(!attributes.check_splice) return;
attributes.check_splice = false;
2022-11-21 06:38:44 +01:00
2024-02-15 14:23:26 +01:00
if(LOADING || APPENDING) return;
if(string_pos("strip", display_name) == 0) return;
2023-06-04 12:38:40 +02:00
2024-02-15 14:23:26 +01:00
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));
2022-11-21 06:38:44 +01:00
2024-02-15 14:23:26 +01:00
if(amo == 0) return;
2024-05-16 10:37:44 +02:00
var ww = sprite_get_width(spr) / amo;
var hh = sprite_get_height(spr);
2022-01-13 05:24:03 +01:00
2022-12-13 09:20:36 +01:00
var _splice = nodeBuild("Node_Image_Sheet", x + w + 64, y);
2022-11-21 06:38:44 +01:00
_splice.inputs[| 0].setFrom(outputs[| 0], false);
2024-02-15 14:23:26 +01:00
_splice.inputs[| 1].setValue([ ww, hh ]);
2022-11-21 06:38:44 +01:00
_splice.inputs[| 2].setValue(amo);
2023-02-14 05:32:32 +01:00
_splice.inputs[| 3].setValue([ amo, 1 ]);
2024-02-15 14:23:26 +01:00
#endregion
2023-12-09 10:49:02 +01:00
} #endregion
2022-01-13 05:24:03 +01:00
}