Pixel-Composer/scripts/load_function/load_function.gml

250 lines
6.3 KiB
Plaintext
Raw Normal View History

2023-07-06 19:49:16 +02:00
function LOAD() {
2023-02-14 02:51:14 +01:00
if(DEMO) return false;
2023-07-06 19:49:16 +02:00
var path = get_open_filename("Pixel Composer PROJECT (.pxc)|*.pxc", "");
2023-02-28 09:43:01 +01:00
key_release();
2022-01-18 05:44:05 +01:00
if(path == "") return;
if(filename_ext(path) != ".json" && filename_ext(path) != ".pxc") return;
2022-11-01 03:06:03 +01:00
gc_collect();
2022-01-18 05:44:05 +01:00
LOAD_PATH(path);
}
2023-06-17 18:59:20 +02:00
function TEST_PATH(path) {
TESTING = true;
TEST_ERROR = true;
2023-07-23 20:21:35 +02:00
PROJECT.cleanup();
PROJECT = new Project();
PANEL_GRAPH.setProject(PROJECT);
2023-06-17 18:59:20 +02:00
__LOAD_PATH(path, false, false);
}
2023-02-14 02:51:14 +01:00
function LOAD_PATH(path, readonly = false, safe_mode = false) {
2023-07-25 20:12:40 +02:00
for( var i = 0, n = array_length(PROJECTS); i < n; i++ )
2023-07-23 20:21:35 +02:00
if(PROJECTS[i].path == path) return;
2023-07-06 19:49:16 +02:00
var _PROJECT = PROJECT;
PROJECT = new Project();
if(PANEL_GRAPH.project.path == "" && !PANEL_GRAPH.project.modified) {
2023-07-25 20:12:40 +02:00
var ind = array_find(PROJECTS, PANEL_GRAPH.project);
2023-07-30 13:56:22 +02:00
if(ind == -1) ind = 0;
2023-07-25 20:12:40 +02:00
PROJECTS[ind] = PROJECT;
2023-07-06 19:49:16 +02:00
PANEL_GRAPH.setProject(PROJECT);
} else {
var graph = new Panel_Graph(PROJECT);
PANEL_GRAPH.panel.setContent(graph, true);
PANEL_GRAPH = graph;
2023-07-25 20:12:40 +02:00
array_push(PROJECTS, PROJECT);
2023-07-06 19:49:16 +02:00
}
var res = __LOAD_PATH(path, readonly, safe_mode);
2023-07-23 20:21:35 +02:00
if(!res) return false;
2023-07-06 19:49:16 +02:00
PANEL_ANIMATION.updatePropertyList();
setFocus(PANEL_GRAPH.panel);
2023-07-23 20:21:35 +02:00
return PROJECT;
2023-02-23 07:02:19 +01:00
}
2023-07-06 19:49:16 +02:00
function __LOAD_PATH(path, readonly = false, safe_mode = false, override = false) {
2023-02-14 02:51:14 +01:00
SAFE_MODE = safe_mode;
if(DEMO) return false;
2022-01-18 05:44:05 +01:00
if(!file_exists(path)) {
2022-11-14 03:16:15 +01:00
log_warning("LOAD", "File not found");
2022-01-18 05:44:05 +01:00
return false;
}
if(filename_ext(path) != ".json" && filename_ext(path) != ".pxc") {
2023-07-06 19:49:16 +02:00
log_warning("LOAD", "File not a valid PROJECT");
2022-01-18 05:44:05 +01:00
return false;
}
2023-02-23 07:02:19 +01:00
LOADING = true;
2022-12-10 05:06:01 +01:00
2023-07-06 19:49:16 +02:00
if(override) {
nodeCleanUp();
clearPanel();
setPanel();
if(!TESTING)
instance_destroy(_p_dialog);
ds_list_clear(ERRORS);
}
var temp_path = DIRECTORY + "temp";
if(!directory_exists(temp_path))
directory_create(temp_path);
var temp_file_path = temp_path + "/" + string(UUID_generate(6));
if(file_exists(temp_file_path)) file_delete(temp_file_path);
file_copy(path, temp_file_path);
2022-01-18 05:44:05 +01:00
2023-07-06 19:49:16 +02:00
//ALWAYS_FULL = false;
PROJECT.readonly = readonly;
SET_PATH(PROJECT, path);
2022-01-18 05:44:05 +01:00
2023-07-06 19:49:16 +02:00
var _load_content = json_load_struct(temp_file_path);
2022-01-18 05:44:05 +01:00
2023-06-13 14:42:06 +02:00
if(struct_has(_load_content, "version")) {
var _v = _load_content.version;
2023-07-06 19:49:16 +02:00
PROJECT.version = _v;
if(_v != SAVE_VERSION) {
2023-08-02 19:11:57 +02:00
var warn = $"File version mismatch : loading file version {_v} to Pixel Composer {SAVE_VERSION}";
2022-11-14 03:16:15 +01:00
log_warning("LOAD", warn);
2022-01-18 05:44:05 +01:00
}
} else {
2023-07-25 20:12:40 +02:00
var warn = $"File version mismatch : loading old format to Pixel Composer {SAVE_VERSION}";
2022-11-14 03:16:15 +01:00
log_warning("LOAD", warn);
2022-01-18 05:44:05 +01:00
}
var create_list = ds_list_create();
2023-06-13 14:42:06 +02:00
if(struct_has(_load_content, "nodes")) {
try {
2023-06-13 14:42:06 +02:00
var _node_list = _load_content.nodes;
for(var i = 0; i < array_length(_node_list); i++) {
var _node = nodeLoad(_node_list[i]);
if(_node) ds_list_add(create_list, _node);
}
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD", exception_print(e));
2022-01-18 05:44:05 +01:00
}
}
try {
2023-06-13 14:42:06 +02:00
if(struct_has(_load_content, "animator")) {
2023-07-06 19:49:16 +02:00
var _anim_map = _load_content.animator;
PROJECT.animator.frames_total = _anim_map.frames_total;
PROJECT.animator.framerate = _anim_map.framerate;
}
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, animator", exception_print(e));
2022-01-18 05:44:05 +01:00
}
2023-08-01 19:21:51 +02:00
if(struct_has(_load_content, "onion_skin"))
2023-07-08 20:29:23 +02:00
PROJECT.onion_skin = _load_content.onion_skin;
2023-08-01 19:21:51 +02:00
if(struct_has(_load_content, "previewGrid"))
PROJECT.previewGrid = _load_content.previewGrid;
if(struct_has(_load_content, "graphGrid"))
PROJECT.graphGrid = _load_content.graphGrid;
2023-07-08 20:29:23 +02:00
2022-12-10 05:06:01 +01:00
try {
2023-06-13 14:42:06 +02:00
if(struct_has(_load_content, "metadata"))
METADATA.deserialize(_load_content.metadata);
2022-12-10 05:06:01 +01:00
} catch(e) {
2023-02-14 02:51:14 +01:00
log_warning("LOAD, metadata", exception_print(e));
2022-12-10 05:06:01 +01:00
}
2023-07-06 19:49:16 +02:00
PROJECT.globalNode = new Node_Global();
2023-03-07 14:29:47 +01:00
try {
2023-06-13 14:42:06 +02:00
if(struct_has(_load_content, "global"))
2023-07-06 19:49:16 +02:00
PROJECT.globalNode.deserialize(_load_content.global);
2023-07-05 15:09:52 +02:00
else if(struct_has(_load_content, "global_node"))
2023-07-06 19:49:16 +02:00
PROJECT.globalNode.deserialize(_load_content.global_node);
2023-03-07 14:29:47 +01:00
} catch(e) {
log_warning("LOAD, global", exception_print(e));
}
2023-05-16 21:28:16 +02:00
try {
2023-06-13 14:42:06 +02:00
if(struct_has(_load_content, "addon")) {
var _addon = _load_content.addon;
2023-07-06 19:49:16 +02:00
PROJECT.addons = _addon;
2023-06-17 14:30:49 +02:00
struct_foreach(_addon, function(_name, _value) { addonLoad(_name, false); });
} else
2023-07-06 19:49:16 +02:00
PROJECT.addons = {};
2023-05-16 21:28:16 +02:00
} catch(e) {
log_warning("LOAD, addon", exception_print(e));
}
2022-01-18 05:44:05 +01:00
ds_queue_clear(CONNECTION_CONFLICT);
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].loadGroup();
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, group", exception_print(e));
2023-07-21 12:40:20 +02:00
return false;
2022-01-18 05:44:05 +01:00
}
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].postDeserialize();
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, deserialize", exception_print(e));
2022-01-18 05:44:05 +01:00
}
2022-12-21 02:30:23 +01:00
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].applyDeserialize();
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, apply deserialize", exception_print(e));
2022-12-21 02:30:23 +01:00
}
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].preConnect();
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].connect();
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, connect", exception_print(e));
2022-01-18 05:44:05 +01:00
}
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].doUpdate();
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, update", exception_print(e));
2022-01-18 05:44:05 +01:00
}
2023-03-02 07:59:14 +01:00
Render(, true);
2022-01-18 05:44:05 +01:00
if(!ds_queue_empty(CONNECTION_CONFLICT)) {
var pass = 0;
try {
while(++pass < 4 && !ds_queue_empty(CONNECTION_CONFLICT)) {
var size = ds_queue_size(CONNECTION_CONFLICT);
2023-06-13 14:42:06 +02:00
log_message("LOAD", $"[Connect] {size} Connection conflict(s) detected (pass: {pass})");
2022-12-23 04:45:52 +01:00
repeat(size)
ds_queue_dequeue(CONNECTION_CONFLICT).connect();
2022-12-10 05:06:01 +01:00
Render();
2022-01-18 05:44:05 +01:00
}
2022-12-23 04:45:52 +01:00
if(!ds_queue_empty(CONNECTION_CONFLICT))
2022-11-14 03:16:15 +01:00
log_warning("LOAD", "Some connection(s) is unsolved. This may caused by render node not being update properly, or image path is broken.");
} catch(e) {
2022-12-22 03:09:55 +01:00
log_warning("LOAD, connect solver", exception_print(e));
}
2022-01-18 05:44:05 +01:00
}
2023-01-09 03:14:20 +01:00
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].postConnect();
} catch(e) {
log_warning("LOAD, connect", exception_print(e));
}
2023-07-25 20:12:40 +02:00
try {
for(var i = 0; i < ds_list_size(create_list); i++)
create_list[| i].clearInputCache();
} catch(e) {
log_warning("LOAD, connect", exception_print(e));
}
2023-06-17 14:30:49 +02:00
Render();
2022-12-27 13:30:02 +01:00
2022-01-18 05:44:05 +01:00
LOADING = false;
2023-07-06 19:49:16 +02:00
PROJECT.modified = false;
2022-01-18 05:44:05 +01:00
2022-11-18 03:20:31 +01:00
log_message("FILE", "load " + path, THEME.noti_icon_file_load);
2022-12-10 05:06:01 +01:00
PANEL_MENU.setNotiIcon(THEME.noti_icon_file_load);
2022-01-29 14:25:18 +01:00
2023-04-15 14:48:29 +02:00
refreshNodeMap();
2022-01-18 05:44:05 +01:00
return true;
2023-03-05 07:16:44 +01:00
}