Pixel-Composer/scripts/append_function/append_function.gml

122 lines
3.4 KiB
Plaintext
Raw Normal View History

2022-01-18 05:31:19 +01:00
function APPEND(_path) {
APPENDING = true;
if(_path == "") return;
var file = file_text_open_read(_path);
var load_str = "";
while(!file_text_eof(file)) {
load_str += file_text_readln(file);
}
var _map = json_decode(load_str);
if(ds_map_exists(_map, "version")) {
var _v = _map[? "version"];
if(_v != SAVEFILE_VERSION) {
var warn = "File version mismatch : loading file verion " + string(_v) + " to Pixel Composer " + string(SAVEFILE_VERSION);
log_warning("FILE", warn)
2022-11-03 11:44:49 +01:00
noti_warning(warn);
2022-01-18 05:31:19 +01:00
}
} else {
var warn = "File version mismatch : loading old format to Pixel Composer " + string(SAVEFILE_VERSION);
log_warning("FILE", warn)
2022-11-03 11:44:49 +01:00
noti_warning(warn);
2022-01-18 05:31:19 +01:00
}
var _node_list = _map[? "nodes"];
var appended_list = ds_list_create();
var node_create = ds_list_create();
ds_queue_clear(CONNECTION_CONFLICT);
2022-01-19 03:05:13 +01:00
ds_map_clear(APPEND_MAP);
2022-01-18 05:31:19 +01:00
for(var i = 0; i < ds_list_size(_node_list); i++) {
var _node = nodeLoad(_node_list[| i], true);
if(_node) ds_list_add(appended_list, _node);
}
file_text_close(file);
try {
for(var i = 0; i < ds_list_size(appended_list); i++) {
var _node = appended_list[| i];
_node.loadGroup();
2022-01-18 05:31:19 +01:00
if(_node.group == PANEL_GRAPH.getCurrentContext())
ds_list_add(node_create, _node);
}
} catch(e) {
2022-11-03 11:44:49 +01:00
noti_warning("Node load error : " + e.message);
log_warning("APPEND, node", e.longMessage);
2022-01-18 05:31:19 +01:00
}
try {
for(var i = 0; i < ds_list_size(appended_list); i++)
appended_list[| i].postDeserialize();
} catch(e) {
2022-11-03 11:44:49 +01:00
noti_warning("Deserialize error : " + e.message);
log_warning("APPEND, deserialize", e.longMessage);
2022-01-18 05:31:19 +01:00
}
try {
for(var i = 0; i < ds_list_size(appended_list); i++)
appended_list[| i].preConnect();
for(var i = 0; i < ds_list_size(appended_list); i++)
appended_list[| i].connect();
for(var i = 0; i < ds_list_size(appended_list); i++)
appended_list[| i].postConnect();
} catch(e) {
2022-11-03 11:44:49 +01:00
noti_warning("Connect error : " + e.message);
log_warning("APPEND, connect", e.longMessage);
2022-01-18 05:31:19 +01:00
}
try {
for(var i = 0; i < ds_list_size(appended_list); i++)
appended_list[| i].doUpdate();
} catch(e) {
2022-11-03 11:44:49 +01:00
noti_warning("Update error : " + e.message);
log_warning("APPEND, update", e.longMessage);
2022-01-23 04:08:16 +01:00
}
2022-01-18 05:31:19 +01:00
ds_list_destroy(appended_list);
2022-01-23 04:08:16 +01:00
renderAll();
2022-01-18 05:31:19 +01:00
2022-01-23 04:08:16 +01:00
if(!ds_queue_empty(CONNECTION_CONFLICT)) {
var pass = 0;
2022-01-18 05:31:19 +01:00
try {
2022-09-21 06:09:40 +02:00
while(++pass < 3 && !ds_queue_empty(CONNECTION_CONFLICT)) {
var size = ds_queue_size(CONNECTION_CONFLICT);
log_message("APPEND", "[Connect] " + string(size) + " Connection conflict(s) detected ( pass: " + string(pass) + " )");
repeat(size) {
2022-09-21 06:09:40 +02:00
var junc = ds_queue_dequeue(CONNECTION_CONFLICT);
var res = junc.connect(true);
log_message("APPEND", "[Connect] Reconnecting " + string(junc.name) + " " + (res? "SUCCESS" : "FAILED"));
}
renderAll();
2022-01-23 04:08:16 +01:00
}
2022-01-18 05:31:19 +01:00
if(!ds_queue_empty(CONNECTION_CONFLICT))
2022-11-03 11:44:49 +01:00
noti_warning("Some connection(s) is unsolved. This may caused by render node not being update properly, or image path is broken.");
} catch(e) {
2022-11-03 11:44:49 +01:00
noti_warning("Conflict solver error : " + e.message);
log_warning("APPEND, solver", e.longMessage);
}
2022-01-23 04:08:16 +01:00
}
2022-01-18 05:31:19 +01:00
APPENDING = false;
PANEL_ANIMATION.updatePropertyList();
log_message("FILE", "append file " + _path);
2022-11-03 11:44:49 +01:00
noti_status("Collection loaded", s_noti_icon_file_load);
2022-01-29 14:25:18 +01:00
ds_map_destroy(_map);
2022-01-18 05:31:19 +01:00
return node_create;
2022-01-19 03:05:13 +01:00
}
function GetAppendID(old_id) {
if(ds_map_exists(APPEND_MAP, old_id))
return APPEND_MAP[? old_id];
return -1;
2022-01-18 05:31:19 +01:00
}