Pixel-Composer/scripts/panel_inspector/panel_inspector.gml

1284 lines
61 KiB
Plaintext
Raw Normal View History

2024-02-06 13:53:08 +01:00
#region funtion calls
2024-08-10 15:32:50 +02:00
function panel_inspector_copy_prop() { CALL("inspector_copy_property"); PANEL_INSPECTOR.propSelectCopy(); }
function panel_inspector_paste_prop() { CALL("inspector_paste_property"); PANEL_INSPECTOR.propSelectPaste(); }
function panel_inspector_toggle_animation() { CALL("inspector_toggle_animation"); PANEL_INSPECTOR.anim_toggling = true; }
function panel_inspector_color_pick() { CALL("color_picker"); if(!PREFERENCES.alt_picker&& !MOUSE_BLOCK) return; PANEL_INSPECTOR.color_picking = true; }
function panel_inspector_section_expand_all() { CALL("inspector_section_expand_all"); PANEL_INSPECTOR.section_expand_all(); }
function panel_inspector_section_collapse_all() { CALL("inspector_section_collapse_all"); PANEL_INSPECTOR.section_collapse_all(); }
function panel_inspector_reset() { CALL("inspector_reset"); PANEL_INSPECTOR.junction_reset(); }
function panel_inspector_add() { CALL("inspector_add"); PANEL_INSPECTOR.junction_add(); }
function panel_inspector_remove() { CALL("inspector_remove"); PANEL_INSPECTOR.junction_remove(); }
function panel_inspector_axis_combine() { CALL("inspector_axis_combine"); PANEL_INSPECTOR.junction_axis_combine(); }
function panel_inspector_axis_separate() { CALL("inspector_axis_separate"); PANEL_INSPECTOR.junction_axis_separate(); }
function panel_inspector_use_expression() { CALL("inspector_use_expression"); PANEL_INSPECTOR.junction_use_expression(); }
function panel_inspector_disable_expression() { CALL("inspector_disable_expression"); PANEL_INSPECTOR.junction_disable_expression(); }
function panel_inspector_extract_single() { CALL("inspector_extract_single"); PANEL_INSPECTOR.junction_extract_single(); }
2024-08-14 09:55:53 +02:00
function panel_inspector_junction_bypass_toggle() { CALL("inspector_extract_single"); PANEL_INSPECTOR.junction_bypass_toggle(); }
2024-08-10 15:32:50 +02:00
2024-08-10 07:30:41 +02:00
function __fnInit_Inspector() {
2024-08-14 09:55:53 +02:00
registerFunction("", "Color Picker", "", MOD_KEY.alt, panel_inspector_color_pick ).setMenu("color_picker")
2024-08-10 07:30:41 +02:00
2024-08-14 09:55:53 +02:00
registerFunction("Inspector", "Copy Value", "C", MOD_KEY.ctrl, panel_inspector_copy_prop ).setMenu("inspector_copy_property", THEME.copy)
registerFunction("Inspector", "Paste Value", "V", MOD_KEY.ctrl, panel_inspector_paste_prop ).setMenu("inspector_paste_property", THEME.paste)
registerFunction("Inspector", "Toggle Animation", "I", MOD_KEY.none, panel_inspector_toggle_animation ).setMenu("inspector_toggle_animation")
2024-08-10 07:30:41 +02:00
registerFunction("Inspector", "Expand All Sections", "", MOD_KEY.none, panel_inspector_section_expand_all ).setMenu("inspector_expand_all_sections")
registerFunction("Inspector", "Collapse All Sections", "", MOD_KEY.none, panel_inspector_section_collapse_all ).setMenu("inspector_collapse_all_sections")
2024-08-14 09:55:53 +02:00
registerFunction("Inspector", "Reset", "", MOD_KEY.none, panel_inspector_reset ).setMenu("inspector_reset")
registerFunction("Inspector", "Animate", "", MOD_KEY.none, panel_inspector_add ).setMenu("inspector_animate")
registerFunction("Inspector", "Reset Animation", "", MOD_KEY.none, panel_inspector_remove ).setMenu("inspector_remove_animate")
registerFunction("Inspector", "Combine Axis", "", MOD_KEY.none, panel_inspector_axis_combine ).setMenu("inspector_combine_axis")
registerFunction("Inspector", "Separate Axis", "", MOD_KEY.none, panel_inspector_axis_separate ).setMenu("inspector_separate_axis")
registerFunction("Inspector", "Use Expression", "", MOD_KEY.none, panel_inspector_use_expression ).setMenu("inspector_use_expression")
registerFunction("Inspector", "Disable Expression", "", MOD_KEY.none, panel_inspector_disable_expression ).setMenu("inspector_disable_expression")
registerFunction("Inspector", "Extract Value", "", MOD_KEY.none, panel_inspector_extract_single ).setMenu("inspector_extract_value")
registerFunction("Inspector", "Toggle Bypass", "", MOD_KEY.none, panel_inspector_junction_bypass_toggle ).setMenu("inspector_bypass_toggle")
2024-08-10 15:32:50 +02:00
__fnGroupInit_Inspector();
2024-08-10 07:30:41 +02:00
}
2024-08-10 15:32:50 +02:00
function __fnGroupInit_Inspector() {
var _clrs = COLORS.labels;
var _item = array_create(array_length(_clrs));
2024-08-10 07:30:41 +02:00
2024-08-10 15:32:50 +02:00
for( var i = 0, n = array_length(_clrs); i < n; i++ ) {
_item[i] = [
[ THEME.timeline_color, i > 0, _clrs[i] ],
function(_data) { PANEL_INSPECTOR.setSelectingItemColor(_data.color); }, "", { color: i == 0? -1 : _clrs[i] }
];
}
array_push(_item, [
[ THEME.timeline_color, 2 ],
function(_data) { colorSelectorCall(PANEL_INSPECTOR.__dialog_junction? PANEL_INSPECTOR.__dialog_junction.color : c_white, PANEL_INSPECTOR.setSelectingItemColor); }
]);
MENU_ITEMS.inspector_group_set_color = menuItemGroup(__txt("Color"), _item, ["Inspector", "Set Color"]).setSpacing(ui(24));
registerFunction("Inspector", "Set Color", "", MOD_KEY.none, function() /*=>*/ { menuCall("", [ MENU_ITEMS.inspector_group_set_color ]); });
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
}
2024-02-06 13:53:08 +01:00
#endregion
function Inspector_Custom_Renderer(drawFn, registerFn = noone) : widget() constructor {
2024-08-10 07:30:41 +02:00
self.draw = drawFn;
node = noone;
panel = noone;
h = 64;
2024-08-10 07:30:41 +02:00
if(registerFn != noone) register = registerFn;
else {
register = function(parent = noone) {
if(!interactable) return;
self.parent = parent;
}
}
static setNode = function(node) { self.node = node; return self; }
static toString = function() { return $"Custon renderer"; }
}
2022-09-23 13:28:42 +02:00
2024-10-03 05:00:55 +02:00
function Inspector_Sprite(spr) constructor { self.spr = spr; }
function Inspector_Label( text, font = f_p3) constructor {
self.text = text;
self.font = font;
}
function Inspector_Spacer(height, line = false, coll = true) constructor {
self.h = height;
self.line = line;
self.coll = coll;
}
2024-04-03 09:40:37 +02:00
2022-11-14 03:16:15 +01:00
function Panel_Inspector() : PanelContent() constructor {
2024-08-10 07:30:41 +02:00
#region ---- main ----
context_str = "Inspector";
2024-08-10 15:32:50 +02:00
title = __txt("Inspector");
icon = THEME.panel_inspector_icon;
2024-08-10 07:30:41 +02:00
w = ui(400);
h = ui(640);
min_w = ui(160);
2024-08-10 15:32:50 +02:00
locked = false;
2024-08-10 07:30:41 +02:00
focusable = true;
2024-08-10 15:32:50 +02:00
inspecting = noone;
2024-08-10 07:30:41 +02:00
inspectings = [];
inspectGroup = false;
2024-08-10 15:32:50 +02:00
top_bar_h = ui(100);
2024-08-10 07:30:41 +02:00
static initSize = function() {
content_w = w - ui(32);
content_h = h - top_bar_h - ui(12);
}
initSize();
view_mode_tooltip = new tooltipSelector("View", [ "Compact", "Spacious" ])
#endregion
#region ---- properties ----
2024-08-10 15:32:50 +02:00
prop_hover = noone;
2024-08-10 07:30:41 +02:00
prop_selecting = noone;
prop_highlight = noone;
prop_highlight_time = 0;
2024-08-10 15:32:50 +02:00
prop_dragging = noone;
prop_sel_drag_x = 0;
prop_sel_drag_y = 0;
2024-08-10 07:30:41 +02:00
2024-08-10 15:32:50 +02:00
color_picking = false;
2024-08-10 07:30:41 +02:00
picker_index = 0;
picker_change = false;
attribute_hovering = noone;
#endregion
globalvar_viewer_init();
drawWidgetInit();
#region ---- header labels ----
2024-08-10 15:32:50 +02:00
tb_node_name = new textBox(TEXTBOX_INPUT.text, function(txt) /*=>*/ { if(inspecting) inspecting.setDisplayName(txt); });
tb_prop_filter = new textBox(TEXTBOX_INPUT.text, function(txt) /*=>*/ { filter_text = txt; });
tb_prop_filter.no_empty = false;
tb_prop_filter.auto_update = true;
tb_prop_filter.font = f_p0;
tb_prop_filter.color = COLORS._main_text_sub;
tb_prop_filter.align = fa_center;
tb_prop_filter.hide = true;
2024-08-10 07:30:41 +02:00
filter_text = "";
2024-08-10 15:32:50 +02:00
prop_page_button = new buttonGroup([ "Properties", "Settings", THEME.message_16 ], function(val) /*=>*/ { prop_page = val; });
prop_page_button.buttonSpr = [ THEME.button_hide_left, THEME.button_hide_middle, THEME.button_hide_right ];
2024-08-10 07:30:41 +02:00
prop_page_button.font = f_p2;
2024-08-10 15:32:50 +02:00
prop_page_button.fColor = COLORS._main_text_sub;
2024-08-10 07:30:41 +02:00
prop_page = 0;
#endregion
#region ---- metadata ----
current_meta = -1;
2024-08-12 13:42:05 +02:00
meta_tb[0] = new textArea(TEXTBOX_INPUT.text, function(str) { current_meta.description = str; });
meta_tb[1] = new textArea(TEXTBOX_INPUT.text, function(str) { current_meta.author = str; });
meta_tb[2] = new textArea(TEXTBOX_INPUT.text, function(str) { current_meta.contact = str; });
meta_tb[3] = new textArea(TEXTBOX_INPUT.text, function(str) { current_meta.alias = str; });
2024-08-10 07:30:41 +02:00
meta_tb[4] = new textArrayBox(noone, META_TAGS);
for( var i = 0, n = array_length(meta_tb); i < n; i++ )
meta_tb[i].hide = true;
2024-08-12 13:42:05 +02:00
2024-08-10 07:30:41 +02:00
meta_display = [
2024-08-12 13:42:05 +02:00
[ __txt("Project Settings"), false ],
[ __txt("Metadata"), true ],
[ __txtx("panel_globalvar", "Global variables"), true ],
[ __txt("Group Properties"), true ],
2024-08-10 07:30:41 +02:00
];
meta_steam_avatar = new checkBox(function() { STEAM_UGC_ITEM_AVATAR = !STEAM_UGC_ITEM_AVATAR; });
2024-08-12 13:42:05 +02:00
global_buttons = [
// button(() => { panelAdd("Panel_Globalvar", true); } ).setIcon(THEME.node_goto, 0, COLORS._main_icon_light),
button(function() /*=>*/ { meta_display[2][1] = false; var_editing = !var_editing; } ).setIcon(THEME.gear_16, 0, COLORS._main_icon_light),
button(function() /*=>*/ { meta_display[2][1] = false; PROJECT.globalNode.createValue(); } ).setIcon(THEME.add_16, 0, COLORS._main_value_positive),
];
2024-08-10 07:30:41 +02:00
#endregion
#region ---- workshop ----
workshop_uploading = false;
#endregion
#region ++++ menus ++++
static nodeExpandAll = function(node) {
if(node.input_display_list == -1) return;
var dlist = node.input_display_list;
for( var i = 0, n = array_length(dlist); i < n; i++ ) {
if(!is_array(dlist[i])) continue;
dlist[i][@ 1] = false;
}
}
static nodeCollapseAll = function(node) {
if(node.input_display_list == -1) return;
var dlist = node.input_display_list;
for( var i = 0, n = array_length(dlist); i < n; i++ ) {
if(!is_array(dlist[i])) continue;
dlist[i][@ 1] = true;
}
}
function section_expand_all() {
if(inspecting != noone) nodeExpandAll(inspecting);
for( var i = 0, n = array_length(inspectings); i < n; i++ )
nodeExpandAll(inspectings[i]);
}
function section_collapse_all() {
if(inspecting != noone) nodeCollapseAll(inspecting);
for( var i = 0, n = array_length(inspectings); i < n; i++ )
nodeCollapseAll(inspectings[i]);
}
2024-09-03 11:49:51 +02:00
function junction_reset() { if(__dialog_junction == noone) return; __dialog_junction.resetValue(); }
function junction_add() { if(__dialog_junction == noone) return; __dialog_junction.setAnim(true, true); }
function junction_remove() { if(__dialog_junction == noone) return; __dialog_junction.setAnim(false, true); }
function junction_axis_combine() { if(__dialog_junction == noone) return; __dialog_junction.sep_axis = false; }
function junction_axis_separate() { if(__dialog_junction == noone) return; __dialog_junction.sep_axis = true; }
function junction_use_expression() { if(__dialog_junction == noone) return; __dialog_junction.expUse = true; }
function junction_disable_expression() { if(__dialog_junction == noone) return; __dialog_junction.expUse = false; }
function junction_extract_single() { if(__dialog_junction == noone) return; __dialog_junction.extractNode(); }
2024-08-14 09:55:53 +02:00
function junction_bypass_toggle() {
if(__dialog_junction == noone || __dialog_junction.bypass_junc == noone) return;
__dialog_junction.bypass_junc.visible = !__dialog_junction.bypass_junc.visible;
__dialog_junction.node.setHeight();
}
2024-08-10 07:30:41 +02:00
group_menu = [
MENU_ITEMS.inspector_expand_all_sections,
MENU_ITEMS.inspector_collapse_all_sections,
]
__dialog_junction = noone;
menu_junc_reset_value = MENU_ITEMS.inspector_reset;
2024-08-12 13:42:05 +02:00
menu_junc_add_anim = MENU_ITEMS.inspector_animate;
menu_junc_rem_anim = MENU_ITEMS.inspector_remove_animate;
2024-08-10 07:30:41 +02:00
menu_junc_combine_axis = MENU_ITEMS.inspector_combine_axis;
menu_junc_separate_axis = MENU_ITEMS.inspector_separate_axis;
menu_junc_expression_ena = MENU_ITEMS.inspector_use_expression;
menu_junc_expression_dis = MENU_ITEMS.inspector_disable_expression;
menu_junc_extract = MENU_ITEMS.inspector_extract_value;
2024-08-14 09:55:53 +02:00
menu_junc_bypass_toggle = MENU_ITEMS.inspector_bypass_toggle;
2024-08-10 07:30:41 +02:00
menu_junc_copy = MENU_ITEMS.inspector_copy_property;
menu_junc_paste = MENU_ITEMS.inspector_paste_property;
function setSelectingItemColor(color) {
if(__dialog_junction == noone) return;
__dialog_junction.setColor(color);
var _val_to = __dialog_junction.getJunctionTo();
for( var i = 0, n = array_length(_val_to); i < n; i++ )
_val_to[i].setColor(color);
}
2024-08-10 15:32:50 +02:00
menu_junc_color = MENU_ITEMS.inspector_group_set_color;
2024-08-10 07:30:41 +02:00
#endregion
function setInspecting(inspecting, _lock = false, _focus = true) {
if(locked) return;
self.inspecting = inspecting;
if(_lock) locked = true;
focusable = _focus;
if(inspecting != noone)
inspecting.onInspect();
contentPane.scroll_y = 0;
contentPane.scroll_y_to = 0;
picker_index = 0;
}
function getInspecting() {
if(inspecting == noone) return noone;
return inspecting.active? inspecting : noone;
}
function onFocusBegin() { if(!focusable) return; PANEL_INSPECTOR = self; }
function onResize() {
initSize();
contentPane.resize(content_w, content_h);
}
static drawMeta = function(_y, _m) {
var con_w = contentPane.surface_w - ui(4);
var _hover = pHOVER && contentPane.hover;
2024-08-10 07:30:41 +02:00
var context = PANEL_GRAPH.getCurrentContext();
var meta = context == noone? PROJECT.meta : context.metadata;
if(meta == noone) return 0;
current_meta = meta;
var hh = ui(8);
var yy = _y + ui(8);
var rx = x + ui(16);
var ry = y + top_bar_h;
var lbh = viewMode? ui(32) : ui(26);
attribute_hovering = noone;
for( var i = 0, n = array_length(meta_display); i < n; i++ ) {
if(i == 3 && PANEL_GRAPH.getCurrentContext() == noone) continue;
var _meta = meta_display[i];
var _txt = array_safe_get_fast(_meta, 0);
2024-08-12 13:42:05 +02:00
switch(i) {
case 2 :
var _bw = ui(28);
var _bh = lbh - ui(4);
var _x1 = con_w;
var _y1 = yy + ui(2);
var _amo = array_length(global_buttons);
var _tw = (_bw + ui(4)) * _amo;
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, con_w - _tw, yy, _tw, lbh, COLORS.panel_inspector_group_bg, 1);
global_buttons[0].icon = var_editing? THEME.accept_16 : THEME.gear_16;
global_buttons[0].icon_blend = var_editing? COLORS._main_value_positive : COLORS._main_icon_light;
for (var j = 0, m = array_length(global_buttons); j < m; j++) {
_x1 -= _bw + ui(4);
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
var _b = global_buttons[j];
_b.setFocusHover(pFOCUS, _hover);
_b.draw(_x1 + ui(2), _y1, _bw, _bh, _m, THEME.button_hide_fill);
if(_b.inBBOX(_m)) contentPane.hover_content = true;
}
_x1 -= ui(4);
if(_hover && point_in_rectangle(_m[0], _m[1], 0, yy, _x1, yy + lbh)) {
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy, _x1, lbh, COLORS.panel_inspector_group_hover, 1);
if(mouse_press(mb_left, pFOCUS)) _meta[1] = !_meta[1];
} else
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy, _x1, lbh, COLORS.panel_inspector_group_bg, 1);
break;
default :
var _x1 = con_w;
if(_hover && point_in_rectangle(_m[0], _m[1], 0, yy, _x1, yy + lbh)) {
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy, con_w, lbh, COLORS.panel_inspector_group_hover, 1);
if(mouse_press(mb_left, pFOCUS)) _meta[1] = !_meta[1];
} else
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy, con_w, lbh, COLORS.panel_inspector_group_bg, 1);
2024-08-10 07:30:41 +02:00
}
2024-08-12 13:42:05 +02:00
draw_sprite_ui(THEME.arrow, _meta[1]? 0 : 3, ui(16), yy + lbh / 2, 1, 1, 0, COLORS.panel_inspector_group_bg, 1);
2024-08-10 07:30:41 +02:00
draw_set_text(viewMode? f_p0 : f_p1, fa_left, fa_center, COLORS._main_text_inner);
draw_text_add(ui(32), yy + lbh / 2, _txt);
yy += lbh + ui(viewMode? 8 : 6);
hh += lbh + ui(viewMode? 8 : 6);
2024-08-12 13:42:05 +02:00
if(_meta[1]) continue;
2024-08-10 07:30:41 +02:00
2024-09-10 11:48:51 +02:00
var _font = viewMode == INSP_VIEW_MODE.spacious? f_p1 : f_p2;
2024-08-10 07:30:41 +02:00
switch(i) {
case 0 :
var _edt = PROJECT.attributeEditor;
var _lh, wh;
for( var j = 0; j < array_length(_edt); j++ ) {
var title = _edt[j][0];
var param = _edt[j][1];
var editW = _edt[j][2];
var drpFn = _edt[j][3];
var widx = ui(8);
var widy = yy;
draw_set_text(_font, fa_left, fa_top, COLORS._main_text_inner);
draw_text_over(ui(16), viewMode == INSP_VIEW_MODE.spacious? yy : yy + ui(3), __txt(title));
if(viewMode == INSP_VIEW_MODE.spacious) {
_lh = line_get_height();
yy += _lh + ui(6);
hh += _lh + ui(6);
} else if(viewMode == INSP_VIEW_MODE.compact) {
_lh = line_get_height() + ui(6);
}
editW.setFocusHover(pFOCUS, _hover);
if(pFOCUS) editW.register(contentPane);
var wh = 0;
var _data = PROJECT.attributes[$ param];
var _wdx = viewMode == INSP_VIEW_MODE.spacious? ui(16) : ui(140);
var _wdy = yy;
var _wdw = w - ui(48) - _wdx;
var _wdh = viewMode == INSP_VIEW_MODE.spacious? TEXTBOX_HEIGHT : _lh;
var _param = new widgetParam(_wdx, _wdy, _wdw, _wdh, _data, {}, _m, rx, ry);
_param.font = _font;
wh = editW.drawParam(_param);
if(editW.inBBOX(_m)) contentPane.hover_content = true;
var jun = PANEL_GRAPH.value_dragging;
var widw = con_w - ui(16);
var widh = viewMode == INSP_VIEW_MODE.spacious? _lh + ui(6) + wh + ui(4) : max(wh, _lh);
if(jun != noone && _hover && point_in_rectangle(_m[0], _m[1], widx, widy, widx + widw, widy + widh)) {
draw_sprite_stretched_ext(THEME.ui_panel, 1, widx, widy, widw, widh, COLORS._main_value_positive, 1);
attribute_hovering = drpFn;
}
if(viewMode == INSP_VIEW_MODE.spacious) {
yy += wh + ui(8);
hh += wh + ui(8);
} else if(viewMode == INSP_VIEW_MODE.compact) {
yy += max(wh, _lh) + ui(6);
hh += max(wh, _lh) + ui(6);
}
}
break;
case 1 :
var _wdx = viewMode == INSP_VIEW_MODE.spacious? ui(16) : ui(140);
var _wdw = w - ui(48) - _wdx;
var _whh = line_get_height(_font);
2024-09-12 12:42:35 +02:00
var _edt = PROJECT.meta.steam == FILE_STEAM_TYPE.local || PROJECT.meta.author_steam_id == STEAM_USER_ID;
2024-08-10 07:30:41 +02:00
for( var j = 0; j < array_length(meta.displays); j++ ) {
var display = meta.displays[j];
var _wdgt = meta_tb[j];
2024-08-10 07:30:41 +02:00
draw_set_text(_font, fa_left, fa_top, COLORS._main_text_inner);
draw_text_over(ui(16), viewMode == INSP_VIEW_MODE.spacious? yy : yy + ui(3), __txt(display[0]));
if(viewMode == INSP_VIEW_MODE.spacious) {
_lh = line_get_height();
yy += _lh + ui(6);
hh += _lh + ui(6);
} else if(viewMode == INSP_VIEW_MODE.compact) {
_lh = line_get_height() + ui(6);
}
_wdgt.setFocusHover(pFOCUS, _hover);
_wdgt.setInteract(_edt);
if(pFOCUS) _wdgt.register(contentPane);
2024-08-10 07:30:41 +02:00
var _dataFunc = display[1];
var _data = _dataFunc(meta);
var _wdy = yy;
var _wdh = _whh * display[2];
2024-08-10 07:30:41 +02:00
var _param = new widgetParam(_wdx, _wdy, _wdw, _wdh, _data, {}, _m, rx, ry);
_param.font = _font;
switch(instanceof(_wdgt)) {
case "textArrayBox" : _wdgt.arraySet = current_meta.tags; break;
2024-08-10 07:30:41 +02:00
}
wh = _wdgt.drawParam(_param);
if(_wdgt.inBBOX(_m)) contentPane.hover_content = true;
2024-08-10 07:30:41 +02:00
if(viewMode == INSP_VIEW_MODE.spacious) {
yy += wh + ui(8);
hh += wh + ui(8);
} else if(viewMode == INSP_VIEW_MODE.compact) {
yy += max(wh, _lh) + ui(6);
hh += max(wh, _lh) + ui(6);
}
}
if(STEAM_ENABLED && _edt) {
2024-08-10 07:30:41 +02:00
meta_steam_avatar.setFocusHover(pFOCUS, _hover);
if(pFOCUS) meta_steam_avatar.register(contentPane);
draw_set_text(_font, fa_left, fa_top, COLORS._main_text_inner);
draw_text_over(ui(16), viewMode == INSP_VIEW_MODE.spacious? yy : yy + ui(3), __txt("Show Avatar"));
if(viewMode == INSP_VIEW_MODE.spacious) {
_lh = line_get_height();
yy += _lh + ui(6);
hh += _lh + ui(6);
}
var _param = new widgetParam(_wdx, yy, _wdw, TEXTBOX_HEIGHT, STEAM_UGC_ITEM_AVATAR, {}, _m, rx, ry);
_param.font = _font;
wh = meta_steam_avatar.drawParam(_param);
if(meta_steam_avatar.inBBOX(_m)) contentPane.hover_content = true;
yy += wh + ui(6); hh += wh + ui(6);
if(viewMode == INSP_VIEW_MODE.spacious) { yy += ui(2); hh += ui(2); }
}
break;
case 2 :
if(findPanel("Panel_Globalvar")) {
yy += ui(4);
hh += ui(4);
continue;
}
if(_m[1] > yy) contentPane.hover_content = true;
var glPar = globalvar_viewer_draw(ui(16), yy, contentPane.surface_w - ui(24), _m, pFOCUS, _hover, contentPane, ui(16) + x, top_bar_h + y);
2024-08-12 13:42:05 +02:00
var gvh = glPar[0];
2024-08-10 07:30:41 +02:00
yy += gvh + ui(8);
hh += gvh + ui(8);
2024-08-12 13:42:05 +02:00
// var bh = ui(36);
// var bx = ui(16);
// var by = yy;
// var bbw = contentPane.surface_w - ui(24);
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// if(var_editing) {
// var bw = bbw / 2 - ui(4);
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// if(buttonInstant(THEME.button_hide, bx, by, bw, bh, _m, pFOCUS, _hover) == 2)
// var_editing = !var_editing;
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// var txt = __txt("Apply");
// var icon = THEME.accept;
// var colr = COLORS._main_value_positive;
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// draw_set_text(f_p0b, fa_left, fa_center, COLORS._main_icon)
// var bxc = bx + bw / 2 - (string_width(txt) + ui(48)) / 2;
// var byc = by + bh / 2;
// draw_sprite_ui(icon, 0, bxc + ui(24), byc,,,, colr);
// draw_text_over(bxc + ui(48), byc, txt);
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// bx += bw + ui(4);
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// if(buttonInstant(THEME.button_hide, bx, by, bw, bh, _m, pFOCUS, _hover) == 2)
// PROJECT.globalNode.createValue();
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// var txt = __txt("Add");
// var icon = THEME.add;
2024-08-10 07:30:41 +02:00
2024-08-12 13:42:05 +02:00
// draw_set_text(f_p0b, fa_left, fa_center, COLORS._main_icon)
// var bxc = bx + bw / 2 - (string_width(txt) + ui(48)) / 2;
// var byc = by + bh / 2;
// draw_sprite_ui(icon, 0, bxc + ui(24), byc,,,, colr);
// draw_text_over(bxc + ui(48), byc, txt);
// } else {
// var bw = bbw;
// if(buttonInstant(THEME.button_hide, bx, by, bw, bh, _m, pFOCUS, _hover) == 2)
// var_editing = !var_editing;
// var txt = __txt("Edit");
// var icon = THEME.gear;
// var colr = COLORS._main_icon;
// draw_set_text(f_p0b, fa_left, fa_center, colr)
// var bxc = bx + bw / 2 - (string_width(txt) + ui(48)) / 2;
// var byc = by + bh / 2;
// draw_sprite_ui(icon, 0, bxc + ui(24), byc,,,, colr);
// draw_text_over(bxc + ui(48), byc, txt);
// }
2024-08-10 07:30:41 +02:00
break;
case 3 :
var context = PANEL_GRAPH.getCurrentContext();
var _h = drawNodeProperties(yy, _m, context);
yy += _h;
hh += _h;
break;
}
yy += ui(viewMode? 4 : 2);
hh += ui(viewMode? 4 : 2);
}
return hh;
}
static highlightProp = function(prop) {
prop_highlight = prop;
prop_highlight_time = 60;
}
static drawNodeProperties = function(_y, _m, _inspecting = inspecting) {
var con_w = contentPane.surface_w - ui(4);
var _hover = pHOVER && contentPane.hover;
_inspecting.inspecting = true;
//tb_prop_filter.register(contentPane);
//tb_prop_filter.setFocusHover(pHOVER, pFOCUS);
//tb_prop_filter.draw(ui(32), _y + ui(4), con_w - ui(64), ui(28), filter_text, _m);
//draw_sprite_ui(THEME.search, 0, ui(32 + 16), _y + ui(4 + 14), 1, 1, 0, COLORS._main_icon, 1);
2024-08-14 09:55:53 +02:00
var hh = 0;
2024-08-10 07:30:41 +02:00
var xc = con_w / 2;
if(prop_page == 1) { // attribute/settings editor
hh += ui(8);
var hg = ui(32);
var yy = _y + hh;
var wx1 = con_w - ui(8);
var ww = max(ui(180), con_w / 3);
var wx0 = wx1 - ww;
for( var i = 0, n = array_length(_inspecting.attributeEditors); i < n; i++ ) {
var edt = _inspecting.attributeEditors[i];
if(is_string(edt)) {
var lby = yy + ui(12);
draw_set_alpha(0.5);
draw_set_text(f_p1, fa_center, fa_center, COLORS._main_text_sub);
draw_text_add(xc, lby, edt);
2024-08-10 07:30:41 +02:00
var lbw = string_width(edt) / 2;
draw_set_color(COLORS._main_text_sub);
draw_line_round(xc + lbw + ui(16), lby, wx1, lby, 2);
draw_line_round(xc - lbw - ui(16), lby, ui(8), lby, 2);
draw_set_alpha(1.0);
yy += ui(32);
hh += ui(32);
continue;
}
var val = edt[1]();
edt[2].setFocusHover(pFOCUS, pHOVER);
if(instanceof(edt[2]) == "buttonClass") {
edt[2].text = edt[0];
edt[2].draw(ui(8), yy, con_w - ui(16), hg, _m);
if(edt[2].inBBOX(_m)) contentPane.hover_content = true;
yy += hg + ui(8);
hh += hg + ui(8);
continue;
}
2024-09-10 11:48:51 +02:00
draw_set_text(f_p1, fa_left, fa_center, COLORS._main_text);
draw_text_add(ui(8), yy + hg / 2, edt[0]);
2024-08-10 07:30:41 +02:00
var _param = new widgetParam(wx0, yy, ww, hg, val, {}, _m, x + contentPane.x, y + contentPane.y);
_param.s = hg;
var _wh = edt[2].drawParam(_param);
var _hg = max(hg, _wh);
if(edt[2].inBBOX(_m)) contentPane.hover_content = true;
yy += _hg + ui(8);
hh += _hg + ui(8);
}
return hh;
2024-08-14 09:55:53 +02:00
}
if(prop_page == 2) {
2024-08-10 07:30:41 +02:00
var _logs = _inspecting.messages;
_inspecting.messages_bub = false;
var _tmw = ui(64);
var yy = _y;
var hh = ui(64);
var con_w = contentPane.surface_w;
var con_h = contentPane.surface_h - yy;
draw_sprite_stretched_ext(THEME.ui_panel_bg, 1, 0, yy, con_w, con_h, merge_color(CDEF.main_ltgrey, CDEF.main_white, 0.5));
yy += ui(8);
for (var i = array_length(_logs) - 1; i >= 0; i--) {
var _log = _logs[i];
var _time = _log[0];
var _text = _log[1];
draw_set_text(f_p3, fa_left, fa_top, COLORS._main_text_sub);
var _hg = string_height_ext(_text, -1, con_w - _tmw - ui(10 + 8)) + ui(4);
if(i % 2) draw_sprite_stretched_ext(THEME.ui_panel_bg, 4, ui(4), yy, con_w - ui(8), _hg, CDEF.main_dkblack, 0.25);
draw_text_add(ui(10), yy + ui(2), _time);
draw_set_color(COLORS._main_text);
draw_text_ext_add(_tmw + ui(10), yy + ui(2), _text, -1, con_w - _tmw - ui(10 + 8));
yy += _hg;
hh += _hg;
}
return hh;
}
2024-08-14 09:55:53 +02:00
prop_hover = noone;
var jun = noone;
var amoIn = is_array(_inspecting.input_display_list)? array_length(_inspecting.input_display_list) : array_length(_inspecting.inputs);
var amoOut = is_array(_inspecting.output_display_list)? array_length(_inspecting.output_display_list) : array_length(_inspecting.outputs);
var amo = inspectGroup == 0? amoIn + 1 + amoOut : amoIn;
var color_picker_index = 0;
var pickers = [];
var _colsp = false;
2024-08-10 07:30:41 +02:00
for(var i = 0; i < amo; i++) {
var yy = hh + _y;
if(i < amoIn) { // inputs
var _dsl = _inspecting.input_display_list;
var _dsp = array_safe_get_fast(_dsl, i);
if(!is_array(_dsl)) jun = array_safe_get_fast(_inspecting.inputs, i);
else if(is_real(_dsp)) jun = array_safe_get_fast(_inspecting.inputs, _dsp);
else jun = _dsp;
2024-08-10 07:30:41 +02:00
} else if(i == amoIn) { // output label
hh += ui(8 + 32 + 8);
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy + ui(8), con_w, ui(32), COLORS.panel_inspector_output_label, 0.8);
draw_set_text(f_p0b, fa_center, fa_center, COLORS._main_text_sub);
draw_text_add(xc, yy + ui(8 + 16), __txt("Outputs"));
continue;
} else { // outputs
var _oi = i - amoIn - 1;
var _dsl = _inspecting.output_display_list;
var _dsp = array_safe_get_fast(_dsl, _oi);
2024-08-10 07:30:41 +02:00
if(!is_array(_dsl)) jun = array_safe_get_fast(_inspecting.outputs, _oi);
else if(is_real(_dsp)) jun = array_safe_get_fast(_inspecting.outputs, _dsp);
else jun = _dsp;
2024-08-10 07:30:41 +02:00
}
2024-08-18 13:13:40 +02:00
if(is_instanceof(jun, Inspector_Spacer)) { // SPACER
var _hh = ui(jun.h);
var _yy = yy + _hh / 2 - ui(2);
if(jun.line) {
draw_set_color(COLORS.panel_inspector_key_separator);
draw_line(ui(8), _yy, con_w - ui(8), _yy);
}
hh += _hh;
continue;
} else if(is_instanceof(jun, Inspector_Sprite)) { // SPRITE
var _spr = jun.spr;
var _sh = sprite_get_height(_spr);
draw_sprite(_spr, 0, xc, yy);
hh += _sh + ui(8);
continue;
} else if(is_instanceof(jun, Inspector_Label)) { // TEXT
var _txt = jun.text;
draw_set_text(jun.font, fa_left, fa_top, COLORS._main_text_sub);
var _sh = string_height_ext(_txt, -1, con_w - ui(16)) + ui(16);
draw_sprite_stretched_ext(THEME.ui_panel_bg, 1, 0, yy, con_w, _sh, COLORS._main_icon_light);
draw_text_ext_add(ui(8), yy + ui(8), _txt, -1, con_w - ui(16));
hh += _sh + ui(8);
continue;
} else if(is_instanceof(jun, Inspector_Custom_Renderer)) {
jun.register(contentPane);
jun.panel = self;
2024-08-18 13:13:40 +02:00
jun.rx = ui(16) + x;
jun.ry = top_bar_h + y;
var _wdh = jun.draw(ui(6), yy, con_w - ui(12), _m, _hover, pFOCUS, self) + ui(8);
2024-08-18 13:13:40 +02:00
if(!is_undefined(_wdh)) hh += _wdh;
continue;
} else if(is_array(jun)) { // LABEL
var pad = i && _colsp == false? ui(4) : 0
_colsp = false;
yy += pad;
var txt = __txt(jun[0]);
var coll = jun[1] && filter_text == "";
var lbh = viewMode? ui(32) : ui(26);
var togl = array_safe_get_fast(jun, 2, noone);
if(togl != noone) var toging = _inspecting.getInputData(togl);
var lbx = (togl != noone) * ui(40);
var lbw = con_w - lbx;
var ltx = lbx + ui(32);
if(_hover && point_in_rectangle(_m[0], _m[1], lbx, yy, con_w, yy + lbh)) {
contentPane.hover_content = true;
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, lbx, yy, lbw, lbh, COLORS.panel_inspector_group_hover, 1);
if(mouse_press(mb_left, pFOCUS))
jun[@ 1] = !coll;
2024-10-03 05:00:55 +02:00
2024-08-18 13:13:40 +02:00
if(mouse_press(mb_right, pFOCUS))
2024-09-12 05:08:48 +02:00
menuCall("inspector_group_menu", group_menu, 0, 0, fa_left);
2024-08-18 13:13:40 +02:00
} else
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, lbx, yy, lbw, lbh, COLORS.panel_inspector_group_bg, 1);
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
if(filter_text == "")
draw_sprite_ui(THEME.arrow, 0, lbx + ui(16), yy + lbh / 2, 1, 1, -90 + coll * 90, COLORS.panel_inspector_group_bg, 1);
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
var cc, aa = 1;
if(togl != noone) {
if(_hover && point_in_rectangle(_m[0], _m[1], 0, yy, ui(32), yy + lbh)) {
contentPane.hover_content = true;
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy, ui(32), lbh, COLORS.panel_inspector_group_hover, 1);
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
if(mouse_press(mb_left, pFOCUS))
_inspecting.inputs[togl].setValue(!toging);
} else
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, yy, ui(32), lbh, COLORS.panel_inspector_group_bg, 1);
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
cc = toging? COLORS._main_accent : COLORS.panel_inspector_group_bg;
aa = 0.5 + toging * 0.5;
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
draw_sprite_ui(THEME.inspector_checkbox, 0, ui(16), yy + lbh / 2, 1, 1, 0, cc, 1);
if(toging)
draw_sprite_ui(THEME.inspector_checkbox, 1, ui(16), yy + lbh / 2, 1, 1, 0, cc, 1);
}
draw_set_text(viewMode? f_p0 : f_p1, fa_left, fa_center, COLORS._main_text, aa);
draw_text_add(ltx, yy + lbh / 2, txt);
draw_set_alpha(1);
hh += lbh + ui(viewMode? 8 : 6) + pad;
if(coll) { // skip
_colsp = true;
var j = i + 1;
var _len = array_length(_inspecting.input_display_list);
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
while(j < _len) {
var j_jun = _inspecting.input_display_list[j];
2024-10-03 05:00:55 +02:00
if(is_array(j_jun)) break;
2024-10-03 12:20:00 +02:00
if(is(j_jun, Inspector_Spacer) && !j_jun.coll) break;
2024-10-03 05:00:55 +02:00
2024-08-18 13:13:40 +02:00
j++;
2024-08-10 07:30:41 +02:00
}
2024-08-18 13:13:40 +02:00
i = j - 1;
2024-08-10 07:30:41 +02:00
}
2024-08-18 13:13:40 +02:00
continue;
}
2024-08-10 07:30:41 +02:00
if(!is_instanceof(jun, NodeValue)) continue;
if(!jun.show_in_inspector || jun.type == VALUE_TYPE.object) continue;
if(filter_text != "") {
var pos = string_pos(filter_text, string_lower(jun.getName()));
if(pos == 0) continue;
}
#region ++++ draw widget ++++
2024-09-10 11:48:51 +02:00
var _font = viewMode == INSP_VIEW_MODE.spacious? f_p1 : f_p2;
2024-08-10 07:30:41 +02:00
var lb_h = line_get_height(_font) + ui(8);
var lb_w = line_get_width(jun.getName(), _font) + ui(16);
var lb_x = ui(48) + (ui(24) * (jun.color != -1));
var padd = ui(8);
var _selY = yy;
var lbHov = point_in_rectangle(_m[0], _m[1], lb_x, _selY + ui(2), lb_x + lb_w, _selY + lb_h - ui(4));
if(lbHov) {
contentPane.hover_content = true;
2024-10-03 08:09:27 +02:00
draw_sprite_stretched_ext(THEME.s_box_r2_clr, 0, lb_x, _selY + ui(2), lb_w, lb_h - ui(4), c_white, 1);
2024-08-10 07:30:41 +02:00
}
2024-10-03 08:09:27 +02:00
var widg = drawWidget(ui(16), yy, contentPane.surface_w - ui(24), _m, jun, false, pHOVER && contentPane.hover, pFOCUS, contentPane, ui(16) + x, top_bar_h + y);
var widH = widg[0];
var mbRight = widg[1];
var widHov = widg[2];
2024-08-10 07:30:41 +02:00
if(widHov) contentPane.hover_content = true;
hh += lb_h + widH + padd;
var _selY1 = yy + lb_h + widH + ui(2);
var _selH = _selY1 - _selY + (viewMode * ui(4));
if(jun == prop_highlight && prop_highlight_time) {
if(prop_highlight_time == 60)
contentPane.setScroll(_y - yy);
var aa = min(1, prop_highlight_time / 30);
draw_sprite_stretched_ext(THEME.ui_panel, 1, ui(4), yy, contentPane.surface_w - ui(4), _selH, COLORS._main_accent, aa);
}
if(_hover && lbHov && prop_dragging == noone && mouse_press(mb_left, pFOCUS)) {
prop_dragging = jun;
prop_sel_drag_x = mouse_mx;
prop_sel_drag_y = mouse_my;
}
#endregion
2024-08-20 10:15:53 +02:00
if(jun.connect_type == CONNECT_TYPE.input && jun.type == VALUE_TYPE.color && jun.display_type == VALUE_DISPLAY._default) { // color picker
2024-08-10 07:30:41 +02:00
pickers[color_picker_index] = jun;
color_picker_index++;
}
if(_hover && point_in_rectangle(_m[0], _m[1], ui(4), _selY, contentPane.surface_w - ui(4), _selY + _selH)) { // mouse in widget
_HOVERING_ELEMENT = jun;
var hov = PANEL_GRAPH.value_dragging != noone || (NODE_DROPPER_TARGET != noone && NODE_DROPPER_TARGET != jun);
if(hov) {
draw_sprite_stretched_ext(THEME.ui_panel, 1, ui(4), _selY, contentPane.surface_w - ui(8), _selH, COLORS._main_value_positive, 1);
if(mouse_press(mb_left, NODE_DROPPER_TARGET_CAN)) {
2024-08-20 10:15:53 +02:00
NODE_DROPPER_TARGET.expression += $"{jun.node.internalName}.{jun.connect_type == CONNECT_TYPE.input? "inputs" : "outputs"}.{jun.internalName}";
2024-08-10 07:30:41 +02:00
NODE_DROPPER_TARGET.expressionUpdate();
}
} else
draw_sprite_stretched_ext(THEME.prop_selecting, 0, ui(4), _selY, contentPane.surface_w - ui(8), _selH, COLORS._main_accent, 1);
if(anim_toggling) {
2024-09-03 11:49:51 +02:00
jun.setAnim(!jun.is_anim, true);
2024-08-10 07:30:41 +02:00
anim_toggling = false;
}
prop_hover = jun;
if(mouse_press(mb_left, pFOCUS))
prop_selecting = jun;
2024-08-18 13:13:40 +02:00
if(mouse_press(mb_right, pFOCUS && mbRight)) { // right click menu
2024-08-14 09:55:53 +02:00
prop_selecting = jun;
2024-08-10 07:30:41 +02:00
var _menuItem = [ menu_junc_color, -1 ];
2024-08-20 10:15:53 +02:00
var _inp = jun.connect_type == CONNECT_TYPE.input;
2024-08-10 07:30:41 +02:00
if(i < amoIn) {
array_push(_menuItem, menu_junc_reset_value, jun.is_anim? menu_junc_rem_anim : menu_junc_add_anim);
if(jun.sepable) array_push(_menuItem, jun.sep_axis? menu_junc_combine_axis : menu_junc_separate_axis);
array_push(_menuItem, -1);
}
2024-08-14 09:55:53 +02:00
array_push(_menuItem, jun.expUse? menu_junc_expression_dis : menu_junc_expression_ena);
if(_inp) array_push(_menuItem, menu_junc_bypass_toggle);
array_push(_menuItem, -1, menu_junc_copy);
if(_inp) array_push(_menuItem, menu_junc_paste);
2024-08-10 07:30:41 +02:00
2024-08-14 09:55:53 +02:00
if(_inp && jun.extract_node != "") {
2024-08-10 07:30:41 +02:00
if(is_array(jun.extract_node)) {
2024-08-18 13:13:40 +02:00
var ext = menuItemShelf(__txtx("panel_inspector_extract_multiple", "Extract to..."), function(_dat) {
2024-08-10 07:30:41 +02:00
var arr = [];
for(var i = 0; i < array_length(__dialog_junction.extract_node); i++) {
var _rec = __dialog_junction.extract_node[i];
2024-08-18 13:13:40 +02:00
array_push(arr, menuItem(_rec, function(_dat) { __dialog_junction.extractNode(_dat.name); }, noone, noone, noone, { name : _rec }));
2024-08-10 07:30:41 +02:00
}
return submenuCall(_dat, arr);
2024-08-18 13:13:40 +02:00
});
2024-08-10 07:30:41 +02:00
array_push(_menuItem, ext);
} else
array_push(_menuItem, menu_junc_extract);
}
2024-08-12 13:42:05 +02:00
var dia = menuCall("inspector_value_menu", _menuItem);
2024-08-10 07:30:41 +02:00
__dialog_junction = jun;
2024-08-18 13:13:40 +02:00
}
2024-08-10 07:30:41 +02:00
}
}
2024-08-18 13:13:40 +02:00
if(MESSAGE != noone && MESSAGE.type == "Color") {
var inp = array_safe_get_fast(pickers, picker_index, 0);
if(is_struct(inp)) {
inp.setValue(MESSAGE.data);
MESSAGE = noone;
2024-08-10 07:30:41 +02:00
}
2024-08-18 13:13:40 +02:00
}
2024-08-10 07:30:41 +02:00
2024-08-18 13:13:40 +02:00
color_picking = false;
if(prop_dragging) { //drag
if(DRAGGING == noone && point_distance(prop_sel_drag_x, prop_sel_drag_y, mouse_mx, mouse_my) > 16) {
prop_dragging.dragValue();
prop_dragging = noone;
2024-08-10 07:30:41 +02:00
}
2024-08-18 13:13:40 +02:00
if(mouse_release(mb_left))
prop_dragging = noone;
}
2024-08-10 07:30:41 +02:00
if(prop_highlight_time) {
prop_highlight_time--;
if(prop_highlight_time == 0)
prop_highlight = noone;
}
return hh;
}
contentPane = new scrollPane(content_w, content_h, function(_y, _m) {
var con_w = contentPane.surface_w - ui(4);
2024-09-13 09:43:09 +02:00
draw_clear_alpha(COLORS.panel_bg_clear_inner, 1);
2024-08-10 07:30:41 +02:00
if(point_in_rectangle(_m[0], _m[1], 0, 0, con_w, content_h) && mouse_press(mb_left, pFOCUS))
prop_selecting = noone;
if(inspecting == noone) return drawMeta(_y, _m);
prop_page_button.data[2] = inspecting.messages_bub? THEME.message_16_grey_bubble : THEME.message_16_grey;
prop_page_button.setFocusHover(pFOCUS, pHOVER);
prop_page_button.draw(ui(32), _y + ui(4), contentPane.w - ui(76), ui(24), prop_page, _m, x + contentPane.x, y + contentPane.y);
var _hh = ui(40);
_y += _hh;
if(is_instanceof(inspecting, Node_Canvas) && inspecting.nodeTool != noone && is_instanceof(inspecting.nodeTool.nodeObject, Node))
2024-08-18 13:13:40 +02:00
return _hh + drawNodeProperties(_y, _m, inspecting.nodeTool.nodeObject);
2024-08-10 07:30:41 +02:00
if(inspectGroup >= 0)
2024-08-18 13:13:40 +02:00
return _hh + drawNodeProperties(_y, _m, inspecting);
2024-08-10 07:30:41 +02:00
if(is_instanceof(inspecting, Node_Frame))
2024-08-18 13:13:40 +02:00
return _hh + drawNodeProperties(_y, _m, inspecting);
2024-08-10 07:30:41 +02:00
for( var i = 0, n = min(10, array_length(inspectings)); i < n; i++ ) {
if(i) {
_y += ui(8);
_hh += ui(8);
}
if(n > 1) {
draw_sprite_stretched_ext(THEME.s_box_r5_clr, 0, 0, _y, con_w, ui(32), COLORS.panel_inspector_output_label, 0.9);
draw_set_text(f_p0b, fa_center, fa_center, COLORS._main_text_sub);
var _tx = inspectings[i].getFullName();
draw_text_add(con_w / 2, _y + ui(16), _tx);
_y += ui(32 + 8);
_hh += ui(32 + 8);
}
var _h = drawNodeProperties(_y, _m, inspectings[i]);
_y += _h;
_hh += _h;
}
return _hh + ui(64);
});
2024-08-14 09:55:53 +02:00
function propSelectCopy() { if(!prop_selecting) return; clipboard_set_text(prop_selecting.getString()); }
function propSelectPaste() { if(!prop_selecting) return; prop_selecting.setString(clipboard_get_text()); }
2024-08-10 07:30:41 +02:00
function drawInspectingNode() {
tb_node_name.font = f_h5;
tb_node_name.hide = true;
tb_node_name.align = fa_center;
tb_node_name.format = TEXT_AREA_FORMAT.node_title;
tb_node_name.setFocusHover(pFOCUS, pHOVER);
var txt = inspecting.renamed? inspecting.display_name : inspecting.name;
if(inspectGroup == 1) txt = $"[{array_length(PANEL_GRAPH.nodes_selecting)}] {txt}";
2024-08-10 07:30:41 +02:00
else if(inspectGroup == -1) txt = $"[{array_length(PANEL_GRAPH.nodes_selecting)}] Multiple nodes";
tb_node_name.draw(ui(64), ui(14), w - ui(128), ui(32), txt, [ mx, my ]);
if(inspectGroup >= 0) {
draw_set_text(f_p1, fa_center, fa_center, COLORS._main_text_sub);
draw_text_add(w / 2 + ui(8), ui(56), inspecting.name);
draw_set_text(f_p3, fa_center, fa_center, COLORS._main_text_sub);
draw_set_alpha(0.65);
draw_text_add(w / 2, ui(76), inspecting.internalName);
draw_set_alpha(1);
}
var bx = ui(8);
var by = ui(12);
if(inspectGroup == 0) {
draw_set_font(f_p1);
var lx = w / 2 - string_width(inspecting.name) / 2 - ui(10);
var ly = ui(56 - 8);
if(buttonInstant(THEME.button_hide, lx, ly, ui(16), ui(16), [mx, my], pFOCUS, pHOVER, __txt("Lock"), THEME.lock_12, !locked, locked? COLORS._main_icon_light : COLORS._main_icon) == 2)
locked = !locked;
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txt("Presets"), THEME.preset, 1) == 2)
dialogPanelCall(new Panel_Presets(inspecting), x + bx, y + by + ui(36));
} else {
draw_sprite_ui_uniform(THEME.preset, 1, bx + ui(32) / 2, by + ui(32) / 2, 1, COLORS._main_icon_dark);
}
//////////////////////////////////////////////////////////////////// INSPECTOR ACTIONS ////////////////////////////////////////////////////////////////////
var bx = w - ui(44);
var by = ui(12);
if(inspecting.hasInspector1Update(true)) {
var icon = inspecting.insp1UpdateIcon;
var ac = inspecting.insp1UpdateActive;
var cc = ac? icon[2] : COLORS._main_icon_dark;
var tt = inspecting.insp1UpdateTooltip;
if(inspectGroup) tt += " [All]";
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS && ac, pHOVER && ac, tt, icon[0], icon[1], cc) == 2) {
if(inspectGroup == 1) {
for( var i = 0, n = array_length(inspectings); i < n; i++ ) inspectings[i].inspector1Update();
} else
inspecting.inspector1Update();
}
} else
draw_sprite_ui(THEME.sequence_control, 1, bx + ui(16), by + ui(16),,,, COLORS._main_icon_dark);
if(inspecting.hasInspector2Update()) {
by += ui(36);
var icon = inspecting.insp2UpdateIcon;
var ac = inspecting.insp2UpdateActive;
var cc = ac? icon[2] : COLORS._main_icon_dark;
var tt = inspecting.insp2UpdateTooltip;
if(inspectGroup) tt += " [All]";
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS && ac, pHOVER && ac, tt, icon[0], icon[1], cc) = 2) {
if(inspectGroup) {
for( var i = 0, n = array_length(inspectings); i < n; i++ ) inspectings[i].inspector2Update();
} else
inspecting.inspector2Update();
}
}
}
function drawContent(panel) { // >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> MAIN DRAW <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2024-09-14 12:00:22 +02:00
draw_clear_alpha(COLORS.panel_bg_clear, 1);
2024-08-10 07:30:41 +02:00
draw_sprite_stretched(THEME.ui_panel_bg, 1, ui(8), top_bar_h - ui(8), w - ui(16), h - top_bar_h);
if(inspecting && !inspecting.active) inspecting = noone;
view_mode_tooltip.index = viewMode;
if(buttonInstant(THEME.button_hide, ui(8), ui(48), ui(32), ui(32), [mx, my], pFOCUS, pHOVER, view_mode_tooltip, THEME.inspector_view, viewMode) == 2) {
viewMode = !viewMode;
PREFERENCES.inspector_view_default = viewMode;
}
if(inspecting) {
var _nodes = PANEL_GRAPH.nodes_selecting;
inspectGroup = array_length(_nodes) > 1;
inspectings = array_empty(_nodes)? [ inspecting ] : _nodes;
for( var i = 1, n = array_length(_nodes); i < n; i++ ) {
if(instanceof(_nodes[i]) != instanceof(_nodes[0])) {
inspectGroup = -1;
break;
}
}
if(is_instanceof(inspecting, Node_Frame)) inspectGroup = 0;
title = inspecting.renamed? inspecting.display_name : inspecting.name;
inspecting.inspectorStep();
drawInspectingNode();
} else {
title = __txt("Inspector");
var txt = "Untitled";
var context = PANEL_GRAPH.getCurrentContext();
if(context == noone && file_exists_empty(PROJECT.path))
txt = string_replace(filename_name(PROJECT.path), filename_ext(PROJECT.path), "");
else if(context != noone)
txt = context.name;
draw_set_text(f_h5, fa_center, fa_center, COLORS._main_text);
draw_text_add(w / 2, ui(30), txt);
if(PROJECT.meta.steam == FILE_STEAM_TYPE.steamOpen) {
var _tw = string_width(txt) / 2;
BLEND_ADD
draw_sprite_ui(THEME.steam, 0, w / 2 - _tw - ui(16), ui(29), 1, 1, 0, COLORS._main_icon);
BLEND_NORMAL
}
var bx = w - ui(44);
var by = ui(12);
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txtx("panel_inspector_set_default", "Set Metadata as default"), THEME.save, 0, COLORS._main_icon) == 2)
json_save_struct(DIRECTORY + "meta.json", PROJECT.meta.serialize());
by += ui(36);
if(STEAM_ENABLED && !workshop_uploading) {
if(PROJECT.path == "") {
buttonInstant(noone, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txtx("panel_inspector_workshop_save", "Save file before upload"), THEME.workshop_upload, 0, COLORS._main_icon, 0.5);
} else {
if(PROJECT.meta.steam == FILE_STEAM_TYPE.local) { //project made locally
if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txtx("panel_inspector_workshop_upload", "Upload to Steam Workshop"), THEME.workshop_upload, 0, COLORS._main_icon) == 2) {
var s = PANEL_PREVIEW.getNodePreviewSurface();
if(is_surface(s)) {
PROJECT.meta.author_steam_id = STEAM_USER_ID;
PROJECT.meta.steam = FILE_STEAM_TYPE.steamUpload;
SAVE_AT(PROJECT, PROJECT.path);
steam_ugc_create_project();
workshop_uploading = true;
} else
noti_warning("Please send any node to preview panel to use as a thumbnail.")
}
}
if(PROJECT.meta.steam && PROJECT.meta.author_steam_id == STEAM_USER_ID) {
if(PROJECT.meta.steam == FILE_STEAM_TYPE.steamUpload) {
buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], false, pHOVER, __txtx("panel_inspector_workshop_restart", "Open project from the workshop tab to update."), THEME.workshop_update, 0, COLORS._main_icon);
} else if(buttonInstant(THEME.button_hide, bx, by, ui(32), ui(32), [mx, my], pFOCUS, pHOVER, __txtx("panel_inspector_workshop_update", "Update Steam Workshop content"), THEME.workshop_update, 0, COLORS._main_icon) == 2) {
SAVE_AT(PROJECT, PROJECT.path);
steam_ugc_update_project();
workshop_uploading = true;
}
}
}
}
if(workshop_uploading) {
draw_sprite_ui(THEME.loading_s, 0, bx + ui(16), by + ui(16),,, current_time / 5, COLORS._main_icon);
if(STEAM_UGC_ITEM_UPLOADING == false)
workshop_uploading = false;
}
}
contentPane.setFocusHover(pFOCUS, pHOVER);
contentPane.draw(ui(16), top_bar_h, mx - ui(16), my - top_bar_h);
if(!locked && PANEL_GRAPH.getFocusingNode() && inspecting != PANEL_GRAPH.getFocusingNode())
setInspecting(PANEL_GRAPH.getFocusingNode());
}
//// =========== Serialize ===========
static serialize = function() {
return {
name: instanceof(self),
inspecting : node_get_id(inspecting),
inspectings : array_map(inspectings, function(n) { return node_get_id(n) }),
locked,
};
}
static deserialize = function(data) {
inspecting = node_from_id(data.inspecting);
inspectings = array_map(data.inspectings, function(n) { return node_from_id(n); });
locked = struct_try_get(data, "locked", locked);
return self;
}
2022-01-13 05:24:03 +01:00
}