mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
39 lines
786 B
Plaintext
39 lines
786 B
Plaintext
function json_encode_minify(map) {
|
|
return json_minify(json_encode(map));
|
|
}
|
|
|
|
function json_stringify_minify(map) {
|
|
return json_minify(json_stringify(map));
|
|
}
|
|
|
|
function json_load(path) {
|
|
if(!file_exists(path)) return noone;
|
|
|
|
var s = file_text_read_all(path);
|
|
var js = json_decode(s);
|
|
return js;
|
|
}
|
|
|
|
function json_save(path, map) {
|
|
var s = json_encode_minify(map);
|
|
|
|
var f = file_text_open_write(path);
|
|
file_text_write_string(f, s);
|
|
file_text_close(f);
|
|
}
|
|
|
|
function json_load_struct(path) {
|
|
if(!file_exists(path)) return noone;
|
|
|
|
var s = file_text_read_all(path);
|
|
var js = json_parse(s);
|
|
return js;
|
|
}
|
|
|
|
function json_save_struct(path, struct) {
|
|
var s = json_stringify_minify(struct);
|
|
|
|
var f = file_text_open_write(path);
|
|
file_text_write_string(f, s);
|
|
file_text_close(f);
|
|
} |