Pixel-Composer/scripts/meta_data/meta_data.gml
2023-12-08 09:50:09 +07:00

242 lines
6.7 KiB
Plaintext

#region tags
globalvar META_TAGS;
META_TAGS = [ "3D", "Disappear", "Effect", "Filter", "Generator", "Transform", "Transition", "Utility" ];
enum FILE_TYPE {
project,
collection,
assets
}
enum FILE_STEAM_TYPE {
local,
steamUpload,
steamOpen
}
#endregion
function MetaDataManager() constructor {
name = "";
description = "";
author = "";
contact = "";
alias = "";
type = FILE_TYPE.collection;
author_steam_id = 0;
file_id = 0;
tags = [];
version = SAVE_VERSION;
steam = FILE_STEAM_TYPE.local;
static displays = [
[ "Description", function(meta) { return meta.description; } , line_get_height() * 5],
[ "Author", function(meta) { return meta.author; } , line_get_height() ],
[ "Contact info", function(meta) { return meta.contact; } , line_get_height() ],
[ "Alias", function(meta) { return meta.alias; } , line_get_height() ],
[ "Tags", function(meta) { return meta.tags; } , line_get_height() ],
];
static serialize = function() {
var m = {};
m.description = description;
m.author = author;
m.contact = contact;
m.alias = alias;
m.aut_id = author_steam_id;
m.file_id = file_id;
m.tags = tags;
m.version = version;
return m;
}
static deserialize = function(m, readonly = false) {
description = struct_try_get(m, "description", description);
author = struct_try_get(m, "author", author);
contact = struct_try_get(m, "contact", contact);
alias = struct_try_get(m, "alias", alias);
author_steam_id = struct_try_get(m, "aut_id", author_steam_id);
file_id = struct_try_get(m, "file_id", file_id);
tags = struct_try_get(m, "tags", tags);
version = struct_try_get(m, "version", version);
return self;
}
static clone = function() {
var m = new MetaDataManager();
m.description = description;
m.author = author;
m.contact = contact;
m.alias = alias;
return m;
}
static drawTooltip = function() {
var _pd = ui(10);
var ww = ui(320), _w = 0;
var _h = 0;
if(type == FILE_TYPE.assets) {
draw_set_font(f_p1);
_h = string_height(name);
_w = string_width(name);
var mx = min(mouse_mx + _pd * 2, WIN_W - (_w + _pd * 2));
var my = min(mouse_my + _pd * 2, WIN_H - (_h + _pd * 2));
draw_sprite_stretched(THEME.textbox, 3, mx, my, _w + _pd * 2, _h + _pd * 2);
draw_sprite_stretched(THEME.textbox, 0, mx, my, _w + _pd * 2, _h + _pd * 2);
draw_set_text(f_p1, fa_left, fa_top, COLORS._main_text);
draw_text(mx + _pd, my + _pd, name);
return;
}
var _own = author_steam_id == STEAM_USER_ID;
var _ont = "Your creation";
var _aut = $"{__txt("By")} {author}";
var _ver = floor(version) < floor(SAVE_VERSION)? __txtx("meta_old_version", "Created on an older version") : __txtx("meta_new_version", "Created on a newer version");
draw_set_font(f_h5);
_h += string_height_ext(name, -1, ww) - ui(4);
_w = max(_w, string_width_ext(name, -1, ww));
draw_set_font(f_p1);
_h += string_height_ext(_aut, -1, ww);
_w = max(_w, string_width_ext(_aut, -1, ww) + _own * (ui(24) + string_width(_ont)));
if(contact != "") {
draw_set_font(f_p2);
_h += string_height_ext(contact, -1, ww);
_w = max(_w, string_width_ext(contact, -1, ww));
}
draw_set_font(f_p1);
_h += ui(8);
_h += string_height_ext(description, -1, ww);
_w = max(_w, string_width_ext(description, -1, ww));
if(alias != "") {
_h += ui(16);
draw_set_font(f_p2);
_h += string_height_ext(alias, -1, ww);
_w = max(_w, string_width_ext(alias, -1, ww));
}
if(floor(version) != floor(SAVE_VERSION)) {
draw_set_font(f_p2);
_h += ui(8);
_h += string_height_ext(_ver, -1, ww);
_w = max(_w, string_width_ext(_ver, -1, ww));
}
if(array_length(tags)) {
draw_set_font(f_p1);
_h += ui(8);
var tx = 0;
var hh = line_get_height(f_p1, ui(4));
var th = hh;
for( var i = 0, n = array_length(tags); i < n; i++ ) {
var ww = string_width(tags[i]) + ui(16);
if(tx + ww + ui(2) > _w - ui(16)) {
tx = 0;
th += hh + ui(2);
}
tx += ww + ui(2);
}
_h += th;
}
var mx = min(mouse_mx + _pd * 2, WIN_W - (_w + _pd * 2));
var my = min(mouse_my + _pd * 2, WIN_H - (_h + _pd * 2));
////////////////////////////////////////////////////////////////////////////////////////////////////
draw_sprite_stretched(THEME.textbox, 3, mx, my, _w + _pd * 2, _h + _pd * 2);
draw_sprite_stretched(THEME.textbox, 0, mx, my, _w + _pd * 2, _h + _pd * 2);
var ty = my + ui(8);
draw_set_text(f_h5, fa_left, fa_top, COLORS._main_text);
draw_text_line(mx + _pd, ty, name, -1, _w);
ty += string_height_ext(name, -1, _w) - ui(4);
draw_set_text(f_p1, fa_left, fa_top, COLORS._main_text_sub);
draw_text_line(mx + _pd, ty, _aut, -1, _w);
if(_own) {
var _owX = mx + _pd + string_width_ext(_aut, -1, _w) + ui(12);
draw_set_font(f_p2);
var _owW = string_width( _ont);
var _owH = string_height(_ont);
draw_sprite_stretched_ext(THEME.menu_button_mask, 0, _owX - ui(4), ty + ui(1) - ui(2), _owW + ui(8), _owH + ui(4), COLORS._main_icon_dark, 1);
draw_set_color(COLORS._main_text_accent);
draw_text_line(_owX, ty + ui(1), _ont, -1, _w);
}
ty += string_height_ext(_aut, -1, _w);
if(contact != "") {
draw_set_text(f_p2, fa_left, fa_top, COLORS._main_text_sub);
draw_text_line(mx + _pd, ty, contact, -1, _w);
ty += string_height_ext(contact, -1, _w);
}
ty += ui(8);
draw_set_text(f_p1, fa_left, fa_top, COLORS._main_text);
draw_text_line(mx + _pd, ty, description, -1, _w);
ty += string_height_ext(description, -1, _w);
if(alias != "") {
ty += ui(16);
draw_set_text(f_p2, fa_left, fa_top, COLORS._main_text_sub);
draw_text_line(mx + _pd, ty, alias, -1, _w);
ty += string_height_ext(alias, -1, _w);
}
if(floor(version) != floor(SAVE_VERSION)) {
ty += ui(8);
draw_set_text(f_p2, fa_left, fa_top, COLORS._main_accent);
draw_text_line(mx + _pd, ty, _ver, -1, _w);
ty += string_height_ext(_ver, -1, _w);
}
if(array_length(tags)) {
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
ty += ui(8);
var tx = 0;
var hh = line_get_height(f_p1, ui(4));
for( var i = 0, n = array_length(tags); i < n; i++ ) {
var ww = string_width(tags[i]) + ui(16);
if(tx + ww + ui(2) > _w - ui(16)) {
tx = 0;
ty += hh + ui(2);
}
draw_sprite_stretched_ext(THEME.group_label, 0, mx + ui(8) + tx, ty, ww, hh, COLORS._main_icon, 1);
draw_text(mx + ui(8) + tx + ui(8), ty + hh / 2, tags[i]);
tx += ww + ui(2);
}
}
}
}
#region
function __getdefaultMetaData() {
var meta = new MetaDataManager();
var path = DIRECTORY + "meta.json";
if(!file_exists_empty(path)) return meta;
var over = json_load_struct(path);
return meta.deserialize(over);
}
#endregion