2023-02-14 02:51:14 +01:00
|
|
|
#region counter
|
|
|
|
globalvar DEBUG_COUNTER;
|
|
|
|
DEBUG_COUNTER = ds_map_create();
|
|
|
|
|
|
|
|
function __count(key) {
|
|
|
|
if(ds_map_exists(DEBUG_COUNTER, key))
|
|
|
|
DEBUG_COUNTER[? key]++;
|
|
|
|
else
|
|
|
|
DEBUG_COUNTER[? key] = 1;
|
|
|
|
print(key + ": " + string(DEBUG_COUNTER[? key]));
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
2022-01-25 04:05:30 +01:00
|
|
|
function _log_template() {
|
|
|
|
return string(current_year) + "/" + string(current_month) + "/" + string(current_day)
|
2022-01-13 05:24:03 +01:00
|
|
|
+ " " + string(current_hour) + ":" + string(current_minute) + ":" + string(current_second)
|
|
|
|
+ " > ";
|
2022-01-25 04:05:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function __log(title, str, fname = "log.txt") {
|
|
|
|
var path = DIRECTORY + fname;
|
|
|
|
var f = file_text_open_append(path);
|
|
|
|
var t = _log_template();
|
2022-01-13 05:24:03 +01:00
|
|
|
file_text_write_string(f, string(title) + t + string(str) + "\n");
|
|
|
|
file_text_close(f);
|
|
|
|
}
|
|
|
|
|
2023-01-17 08:11:55 +01:00
|
|
|
function log_message(title, str, icon = noone, flash = false) {
|
2022-11-14 03:16:15 +01:00
|
|
|
__log("[MESSAGE] ", string(title) + ": " + string(str));
|
|
|
|
|
2023-01-17 08:11:55 +01:00
|
|
|
return noti_status(string(title) + ": " + string(str), icon, flash);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
function log_warning(title, str, ref = noone) {
|
2022-11-14 03:16:15 +01:00
|
|
|
__log("[WARNING] ", string(title) + ": " + string(str));
|
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
return noti_warning(string(title) + ": " + string(str),, ref);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function log_crash(str) {
|
|
|
|
__log("[ERROR] ", string(str));
|
2022-11-14 03:16:15 +01:00
|
|
|
|
2022-12-22 03:09:55 +01:00
|
|
|
return noti_error(string(str));
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function log_newline() {
|
|
|
|
var path = DIRECTORY + "log.txt";
|
|
|
|
var f = file_text_open_append(path);
|
|
|
|
file_text_writeln(f);
|
|
|
|
file_text_close(f);
|
|
|
|
}
|
|
|
|
|
2022-01-25 04:05:30 +01:00
|
|
|
function log_clear() {
|
|
|
|
var path = DIRECTORY + "log.txt";
|
|
|
|
if(file_exists(path))
|
|
|
|
file_delete(path);
|
|
|
|
}
|
2022-12-22 03:09:55 +01:00
|
|
|
|
|
|
|
function exception_print(e) {
|
2023-01-01 02:06:02 +01:00
|
|
|
var str = "\n\n========== Crash log ==========\n\n" + e.longMessage;
|
|
|
|
str += "\n\n========== Stack trace ==========\n\n";
|
2022-12-22 03:09:55 +01:00
|
|
|
|
2023-02-14 02:51:14 +01:00
|
|
|
for( var i = 0; i < array_length(e.stacktrace); i++ )
|
2022-12-22 03:09:55 +01:00
|
|
|
str += e.stacktrace[i] + "\n"
|
|
|
|
|
2023-01-01 02:06:02 +01:00
|
|
|
str += "\n\n========= Crash log end =========\n";
|
|
|
|
|
2022-12-22 03:09:55 +01:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
exception_unhandled_handler(function(ex) {
|
2023-02-14 02:51:14 +01:00
|
|
|
var path = string(DIRECTORY) + "prev_crash.pxc";
|
|
|
|
SAVE_AT(path);
|
|
|
|
|
2022-01-16 05:17:35 +01:00
|
|
|
var tt = "\n-------------------------- OH NO --------------------------\n\n";
|
2023-02-14 02:51:14 +01:00
|
|
|
tt += "\n" + ex.longMessage;
|
|
|
|
tt += "\n" + ex.script;
|
2022-01-18 05:31:19 +01:00
|
|
|
tt += "\n-------------------------- STACK TRACE --------------------------\n\n";
|
2022-01-17 08:52:51 +01:00
|
|
|
for( var i = 0; i < array_length(ex.stacktrace); i++ ) {
|
|
|
|
tt += ex.stacktrace[i] + "\n";
|
|
|
|
}
|
|
|
|
tt += "\n---------------------------- :( ----------------------------\n";
|
2023-02-14 02:51:14 +01:00
|
|
|
|
|
|
|
var path = string(DIRECTORY) + "crash_log.txt";
|
|
|
|
file_text_write_all(path, tt);
|
|
|
|
clipboard_set_text(tt);
|
|
|
|
show_debug_message(tt);
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2022-01-17 08:52:51 +01:00
|
|
|
var tt = "\n-------------------------- OH NO --------------------------\n\n";
|
|
|
|
tt += ex.longMessage;
|
|
|
|
tt += "\n---------------------------- :( ----------------------------\n";
|
2023-02-14 02:51:14 +01:00
|
|
|
|
|
|
|
tt += "\n\nCrash log stored in clipboard and saved at " + path;
|
|
|
|
tt += "\n\nRelaunch the program?";
|
|
|
|
|
|
|
|
widget_set_caption("Pixel Composer crashed");
|
|
|
|
widget_set_icon(DIRECTORY + "icon.png");
|
|
|
|
|
|
|
|
if(show_question(tt)) {
|
|
|
|
var path = executable_get_pathname();
|
|
|
|
execute_shell(path, "--crashed");
|
|
|
|
}
|
2022-01-13 05:24:03 +01:00
|
|
|
return 0;
|
|
|
|
});
|