Pixel-Composer/scripts/node_image/node_image.gml

139 lines
3.6 KiB
Plaintext
Raw Normal View History

2023-02-28 09:43:01 +01:00
function Node_create_Image(_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_filename(".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(_x, _y, _group);
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;
}
function Node_create_Image_path(_x, _y, path) {
if(!file_exists(path)) return noone;
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-02-28 09:43:01 +01:00
function Node_Image(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
2023-03-19 09:17:39 +01:00
name = "Image";
2022-11-18 03:20:31 +01:00
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, "")
.setDisplay(VALUE_DISPLAY.path_load, ["*.png", ""])
.rejectArray();
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();
2022-01-13 05:24:03 +01:00
spr = noone;
path_current = "";
first_update = false;
on_dragdrop_file = function(path) {
if(updatePaths(path)) {
doUpdate();
2022-01-13 05:24:03 +01:00
return true;
}
return false;
}
function updatePaths(path) {
path = try_get_path(path);
if(path == -1) return false;
2023-02-14 05:32:32 +01:00
var ext = string_lower(filename_ext(path));
2022-01-13 05:24:03 +01:00
var _name = string_replace(filename_name(path), filename_ext(path), "");
switch(ext) {
case ".png":
case ".jpg":
case ".jpeg":
case ".gif":
2023-04-15 14:48:29 +02:00
setDisplayName(_name);
2022-01-13 05:24:03 +01:00
outputs[| 1].setValue(path);
if(spr) sprite_delete(spr);
spr = sprite_add(path, 1, false, false, 0, 0);
if(path_current == "")
first_update = true;
2022-01-19 04:16:28 +01:00
path_current = path;
2022-01-13 05:24:03 +01:00
return true;
}
return false;
}
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 ];
2023-03-28 06:58:28 +02:00
static onInspector1Update = function() {
2023-01-17 08:11:55 +01:00
var path = inputs[| 0].getValue();
if(path == "") return;
updatePaths(path);
update();
}
2023-02-14 05:32:32 +01:00
static update = function(frame = ANIMATOR.current_frame) {
2022-01-13 05:24:03 +01:00
var path = inputs[| 0].getValue();
var pad = inputs[| 1].getValue();
if(path == "") return;
2023-01-17 08:11:55 +01:00
if(path_current != path) updatePaths(path);
2022-01-13 05:24:03 +01:00
if(!spr || !sprite_exists(spr)) return;
2023-03-26 07:13:36 +02:00
var ww = sprite_get_width(spr) + pad[0] + pad[2];
2022-01-13 05:24:03 +01:00
var hh = sprite_get_height(spr) + pad[1] + pad[3];
var _outsurf = outputs[| 0].getValue();
2023-03-19 09:17:39 +01:00
_outsurf = surface_verify(_outsurf, ww, hh, attrDepth());
2022-12-27 04:00:50 +01:00
outputs[| 0].setValue(_outsurf);
2022-01-13 05:24:03 +01:00
surface_set_target(_outsurf);
2023-03-19 09:17:39 +01:00
DRAW_CLEAR
2023-02-14 05:32:32 +01:00
BLEND_OVERRIDE;
2022-01-13 05:24:03 +01:00
draw_sprite(spr, 0, pad[2], pad[1]);
2023-02-14 05:32:32 +01:00
BLEND_NORMAL;
2022-01-13 05:24:03 +01:00
surface_reset_target();
2022-11-21 06:38:44 +01:00
if(!first_update) return;
first_update = false;
2023-06-04 12:38:40 +02:00
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));
2022-11-21 06:38:44 +01:00
if(amo) {
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);
_splice.inputs[| 1].setValue([ww, hh]);
_splice.inputs[| 2].setValue(amo);
2023-02-14 05:32:32 +01:00
_splice.inputs[| 3].setValue([ amo, 1 ]);
2023-03-28 06:58:28 +02:00
_splice.inspector1Update();
2022-09-27 06:37:28 +02:00
2022-11-21 06:38:44 +01:00
ds_list_add(PANEL_GRAPH.nodes_select_list, self);
ds_list_add(PANEL_GRAPH.nodes_select_list, _splice);
}
2022-01-13 05:24:03 +01:00
}
}