123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- #include "print_string.h"
- #include "core/os/os.h"
- #include <stdio.h>
- static PrintHandlerList *print_handler_list = NULL;
- bool _print_line_enabled = true;
- bool _print_error_enabled = true;
- void add_print_handler(PrintHandlerList *p_handler) {
- _global_lock();
- p_handler->next = print_handler_list;
- print_handler_list = p_handler;
- _global_unlock();
- }
- void remove_print_handler(PrintHandlerList *p_handler) {
- _global_lock();
- PrintHandlerList *prev = NULL;
- PrintHandlerList *l = print_handler_list;
- while (l) {
- if (l == p_handler) {
- if (prev)
- prev->next = l->next;
- else
- print_handler_list = l->next;
- break;
- }
- prev = l;
- l = l->next;
- }
-
- ERR_FAIL_COND(l == NULL);
- _global_unlock();
- }
- void print_line(String p_string) {
- if (!_print_line_enabled)
- return;
- OS::get_singleton()->print("%s\n", p_string.utf8().get_data());
- _global_lock();
- PrintHandlerList *l = print_handler_list;
- while (l) {
- l->printfunc(l->userdata, p_string, false);
- l = l->next;
- }
- _global_unlock();
- }
- void print_error(String p_string) {
- if (!_print_error_enabled)
- return;
- OS::get_singleton()->printerr("%s\n", p_string.utf8().get_data());
- _global_lock();
- PrintHandlerList *l = print_handler_list;
- while (l) {
- l->printfunc(l->userdata, p_string, true);
- l = l->next;
- }
- _global_unlock();
- }
- void print_verbose(String p_string) {
- if (OS::get_singleton()->is_stdout_verbose()) {
- print_line(p_string);
- }
- }
|