Pixel-Composer/scripts/panel_console/panel_console.gml

169 lines
4.6 KiB
Plaintext
Raw Normal View History

2024-02-04 07:33:42 +01:00
#region
#macro cmdLine new __cmdLine
#macro cmdLineIn new __cmdLineIn
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
function __cmdLine(txt, color) constructor {
self.txt = txt;
self.color = color;
}
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
function __cmdLineIn(txt, color = COLORS._main_text) : __cmdLine(txt, color) constructor {}
#endregion
function Panel_Console() : PanelContent() constructor {
title = __txtx("panel_debug_console", "Console");
w = ui(640);
h = ui(320);
auto_pin = true;
command = "";
2023-05-08 19:14:30 +02:00
cmd_index = 0;
2024-02-04 07:33:42 +01:00
scroll_y = 0;
prevFocus = false;
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
static submit_command = function() { #region
2023-05-08 19:14:30 +02:00
if(command == "") return;
2024-02-04 07:33:42 +01:00
array_push(CMD, cmdLineIn(command));
array_push(CMDIN, command);
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
var cmd = string_splice(command, " ", false, false);
2023-05-08 19:14:30 +02:00
switch(cmd[0]) {
case "flag":
2024-02-04 07:33:42 +01:00
if(array_length(cmd) < 2) {
array_push(CMD, cmdLine($"Error: \"{cmd[0]}\" not enough argument.", COLORS._main_value_negative) );
break;
}
var flg = cmd[1];
2023-05-22 20:31:55 +02:00
global.FLAG[$ flg] = !global.FLAG[$ flg];
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
array_push(CMD, cmdLine($"Toggled debug flag: {flg} = {global.FLAG[$ flg]? "True" : "False"}", COLORS._main_value_positive) );
break;
default:
if(struct_has(FUNCTIONS, cmd[0])) {
var _f = FUNCTIONS[$ cmd[0]];
var _vars = string_splice(array_safe_get(cmd, 1, ""), ",");
var _args = [];
for( var i = 0, n = array_length(_f.args); i < n; i++ ) {
var _arg = _f.args[i];
var _def = _arg.fn? _arg.def() : _arg.def;
if(i < array_length(_vars) && _vars[i] != "") {
if(is_real(_def)) _args[i] = toNumber(_vars[i]);
else _args[i] = _vars[i];
} else
_args[i] = _def;
}
callFunction(cmd[0], _args);
} else
array_push(CMD, cmdLine($"Error: \"{cmd[0]}\" command not found.", COLORS._main_value_negative) );
2023-05-08 19:14:30 +02:00
break;
}
command = "";
2024-02-04 07:33:42 +01:00
keyboard_string = "";
} #endregion
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
function drawHistory(_y) { #region
var _x = ui(32 + 8);
var _w = w - ui(16 + 32);
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
draw_set_text(f_code, fa_left, fa_bottom, COLORS._main_text_sub);
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
for( var i = array_length(CMD) - 1 - scroll_y; i >= 0; i-- ) {
var his = CMD[i];
if(is_instanceof(his, __cmdLine)) {
var txt = his.txt;
draw_set_color(his.color);
if(is_instanceof(his, __cmdLineIn)) {
draw_sprite_ext(THEME.icon_cmd_enter, 0, _x + ui(8), _y - line_get_height() / 2, 1, 1, 0, his.color, 1);
draw_text_line(_x + ui(20), _y, txt, -1, _w);
} else
draw_text_line(_x, _y, txt, -1, _w);
_y -= string_height_ext(txt, -1, _w);
} else if(is_instanceof(his, notification)) {
var txt = his.txt;
draw_set_color(his.txtclr);
draw_text_line(_x, _y, txt, -1, _w);
_y -= string_height_ext(txt, -1, _w);
} else {
draw_set_color(COLORS._main_text_sub);
draw_text_line(_x, _y, his, -1, _w);
_y -= string_height_ext(his, -1, _w);
}
draw_set_color(CDEF.main_dkgrey);
draw_set_halign(fa_right);
draw_text(_x - ui(12), _y + line_get_height(), i);
draw_set_halign(fa_left);
_y -= ui(2);
if(_y <= 0) break;
}
if(pHOVER) {
if(mouse_wheel_up()) scroll_y = clamp(scroll_y + 1, 0, array_length(CMD) - 1);
if(mouse_wheel_down()) scroll_y = clamp(scroll_y - 1, 0, array_length(CMD) - 1);
}
} #endregion
function drawContent(panel) { #region
if(pFOCUS) {
if(prevFocus == false)
keyboard_string = command;
HOTKEY_BLOCK = true;
command = keyboard_string;
}
prevFocus = pFOCUS;
draw_clear(merge_color(c_black, CDEF.main_dkblack, 0.75));
draw_set_color(merge_color(c_black, CDEF.main_dkblack, 0.60));
draw_rectangle(0, 0, ui(32), h, false);
draw_set_color(merge_color(c_black, CDEF.main_dkblack, 0.25));
2023-05-08 19:14:30 +02:00
draw_rectangle(0, h - ui(28), w, h, false);
2024-02-04 07:33:42 +01:00
var hy = h - ui(32);
drawHistory(hy);
draw_set_text(f_code, fa_right, fa_bottom, CDEF.main_dkgrey);
draw_text(ui(32 - 4), h - ui(4), ">");
2023-05-08 19:14:30 +02:00
draw_set_text(f_code, fa_left, fa_bottom, COLORS._main_text);
2024-02-04 07:33:42 +01:00
draw_text(ui(32 + 8), h - ui(4), command);
2023-05-08 19:14:30 +02:00
draw_set_color(COLORS._main_text_sub);
2024-02-04 07:33:42 +01:00
draw_text(ui(32 + 8) + string_width(command), h - ui(4), "_");
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
if(pFOCUS) {
if(keyboard_check_pressed(vk_enter)) {
submit_command();
} else if(keyboard_check_pressed(vk_up)) {
cmd_index = max(0, cmd_index - 1);
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
var his = array_safe_get(CMDIN, cmd_index, "");
command = is_instanceof(his, __cmdLine)? his.txt : his;
keyboard_string = command;
2023-05-08 19:14:30 +02:00
2024-02-04 07:33:42 +01:00
} else if(keyboard_check_pressed(vk_escape)) {
command = "";
keyboard_string = "";
} else if(keyboard_check_pressed(vk_anykey)) {
cmd_index = array_length(CMDIN);
}
2023-05-08 19:14:30 +02:00
}
2024-02-04 07:33:42 +01:00
} #endregion
2023-05-08 19:14:30 +02:00
}