Pixel-Composer/scripts/node_cache/node_cache.gml

59 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-03-02 07:59:14 +01:00
function Node_Cache(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Cache";
use_cache = true;
2023-07-30 13:56:22 +02:00
clearCacheOnChange = false;
2023-03-02 07:59:14 +01:00
inputs[| 0] = nodeValue("Surface in", self, JUNCTION_CONNECT.input, VALUE_TYPE.surface, 0);
outputs[| 0] = nodeValue("Cache surface", self, JUNCTION_CONNECT.output, VALUE_TYPE.surface, 0);
input_display_list = [
2023-05-03 21:42:17 +02:00
["Output", true], 0,
2023-03-02 07:59:14 +01:00
];
cache_loading = false;
cache_content = "";
cache_loading_progress = 0;
2023-03-08 07:35:51 +01:00
insp2UpdateTooltip = "Clear cache";
insp2UpdateIcon = [ THEME.cache, 0, COLORS._main_icon ];
static onInspector2Update = function() { clearCache(); }
2023-03-02 07:59:14 +01:00
static step = function() {
if(cache_loading) {
2023-07-17 19:58:33 +02:00
cached_output[cache_loading_progress] = __surface_array_deserialize(cache_content[cache_loading_progress]);
cache_result[cache_loading_progress] = true;
2023-03-02 07:59:14 +01:00
cache_loading_progress++;
2023-07-06 19:49:16 +02:00
if(cache_loading_progress == PROJECT.animator.frames_total) {
2023-03-02 07:59:14 +01:00
cache_loading = false;
update();
}
}
}
static update = function() {
2023-06-13 14:42:06 +02:00
if(recoverCache()) return;
2023-03-02 07:59:14 +01:00
if(!inputs[| 0].value_from) return;
var _surf = getInputData(0);
2023-03-02 07:59:14 +01:00
cacheCurrentFrame(_surf);
}
2023-03-05 07:16:44 +01:00
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
2023-03-02 07:59:14 +01:00
if(cache_loading)
draw_sprite_ui(THEME.loading, 0, xx + w * _s / 2, yy + h * _s / 2, _s, _s, current_time / 2, COLORS._main_icon, 1);
}
static doSerialize = function(_map) {
2023-07-17 19:58:33 +02:00
_map.cache = surface_array_serialize(cached_output);
2023-03-02 07:59:14 +01:00
}
static postDeserialize = function() {
2023-06-13 14:42:06 +02:00
if(!struct_has(load_map, "cache")) return;
2023-07-17 19:58:33 +02:00
cache_content = json_try_parse(load_map.cache);
2023-06-13 14:42:06 +02:00
cache_loading_progress = 0;
2023-03-02 07:59:14 +01:00
cache_loading = true;
}
}