Pixel-Composer/objects/o_main/Other_62.gml

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-01-25 06:49:00 +01:00
/// @description network
2024-05-29 04:41:08 +02:00
var _id = async_load[? "id"];
2023-01-25 06:49:00 +01:00
if(ds_map_exists(global.FILE_LOAD_ASYNC, async_load[? "id"])) {
var cb = global.FILE_LOAD_ASYNC[? async_load[? "id"]];
var callback = cb[0];
var arguments = cb[1];
callback(arguments);
2023-06-04 12:38:40 +02:00
}
2024-05-29 04:41:08 +02:00
if(PALETTE_LOSPEC && _id == PALETTE_LOSPEC) {
PALETTE_LOSPEC = 0;
if (async_load[? "status"] != 0) exit;
var res = ds_map_find_value(async_load, "result");
var resJson = json_try_parse(res, -1);
if(resJson == -1) exit;
if(!is_struct(resJson)) exit;
if(!struct_has(resJson, "colors")) exit;
var _name = resJson.name;
var _auth = resJson.author;
var _colr = resJson.colors;
if(!is_array(_colr)) exit;
_name = string_replace_all(_name, "-", " ");
var _path = $"{DIRECTORY}Palettes/{_name}.hex"
var _f = file_text_open_write(_path);
for (var i = 0, n = array_length(_colr); i < n; i++)
file_text_write_string(_f, $"{_colr[i]}\n");
file_text_close(_f);
__initPalette();
noti_status($"Loaded palette: {_name} by {_auth} completed.", noone, true);
}
2023-06-04 12:38:40 +02:00
asyncLoad(async_load);