summaryrefslogtreecommitdiffstats
path: root/core/string/print_string.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2023-04-28 13:15:36 +0200
committerJuan Linietsky <reduzio@gmail.com>2023-05-08 11:57:54 +0200
commit273a6eeb66ed1ff2fcc1ee3a6eaae4eedf437875 (patch)
tree6c7531b5b1351a810c87d923fb7f04e1b6de25ca /core/string/print_string.h
parent352ebe97259622f20b47627b4bf747cdfc79304d (diff)
downloadredot-engine-273a6eeb66ed1ff2fcc1ee3a6eaae4eedf437875.tar.gz
Redo how the remote filesystem works
Instead of reading files over the network, the new version uses a local file cache and only updates files when it changes. The original remote filesystem was created 14 years ago, when ethernet was faster than hard drives or even flash. Also, mobile devices have a very small amount of storage. Nowadays, this is no longer the case so the approach is changed to using a persistent cache in the target device. Co-authored-by: m4gr3d
Diffstat (limited to 'core/string/print_string.h')
-rw-r--r--core/string/print_string.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/core/string/print_string.h b/core/string/print_string.h
index 6496384b3f..7656e9bfa1 100644
--- a/core/string/print_string.h
+++ b/core/string/print_string.h
@@ -59,7 +59,15 @@ void remove_print_handler(const PrintHandlerList *p_handler);
extern void __print_line(String p_string);
extern void __print_line_rich(String p_string);
extern void print_error(String p_string);
-extern void print_verbose(String p_string);
+extern bool is_print_verbose_enabled();
+
+// This version avoids processing the text to be printed until it actually has to be printed, saving some CPU usage.
+#define print_verbose(m_text) \
+ { \
+ if (is_print_verbose_enabled()) { \
+ print_line(m_text); \
+ } \
+ }
inline void print_line(Variant v) {
__print_line(stringify_variants(v));