1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
#include <stdio.h>
#include <stdarg.h>
#ifdef ALLEGRO_ANDROID
#include "allegro5/allegro_android.h"
#endif
void init_platform_specific(void);
void abort_example(char const *format, ...);
void open_log(void);
void open_log_monospace(void);
void close_log(bool wait_for_user);
void log_printf(char const *format, ...);
void init_platform_specific(void)
{
#ifdef ALLEGRO_ANDROID
al_install_touch_input();
al_android_set_apk_file_interface();
#endif
}
#ifdef ALLEGRO_POPUP_EXAMPLES
#include "allegro5/allegro_native_dialog.h"
ALLEGRO_TEXTLOG *textlog = NULL;
void abort_example(char const *format, ...)
{
char str[1024];
va_list args;
ALLEGRO_DISPLAY *display;
va_start(args, format);
vsnprintf(str, sizeof str, format, args);
va_end(args);
if (al_init_native_dialog_addon()) {
display = al_is_system_installed() ? al_get_current_display() : NULL;
al_show_native_message_box(display, "Error", "Cannot run example", str, NULL, 0);
}
else {
fprintf(stderr, "%s", str);
}
exit(1);
}
void open_log(void)
{
if (al_init_native_dialog_addon()) {
textlog = al_open_native_text_log("Log", 0);
}
}
void open_log_monospace(void)
{
if (al_init_native_dialog_addon()) {
textlog = al_open_native_text_log("Log", ALLEGRO_TEXTLOG_MONOSPACE);
}
}
void close_log(bool wait_for_user)
{
if (textlog && wait_for_user) {
ALLEGRO_EVENT_QUEUE *queue = al_create_event_queue();
al_register_event_source(queue, al_get_native_text_log_event_source(
textlog));
al_wait_for_event(queue, NULL);
al_destroy_event_queue(queue);
}
al_close_native_text_log(textlog);
textlog = NULL;
}
void log_printf(char const *format, ...)
{
char str[1024];
va_list args;
va_start(args, format);
vsnprintf(str, sizeof str, format, args);
va_end(args);
al_append_native_text_log(textlog, "%s", str);
}
#else
void abort_example(char const *format, ...)
{
va_list args;
va_start(args, format);
vfprintf(stderr, format, args);
va_end(args);
exit(1);
}
void open_log(void)
{
}
void open_log_monospace(void)
{
}
void close_log(bool wait_for_user)
{
(void)wait_for_user;
}
void log_printf(char const *format, ...)
{
va_list args;
va_start(args, format);
#ifdef ALLEGRO_ANDROID
char x[1024];
vsnprintf(x, sizeof x, format, args);
ALLEGRO_TRACE_CHANNEL_LEVEL("log", 1)("%s", x);
#else
vprintf(format, args);
#endif
va_end(args);
}
#endif
/* vim: set sts=3 sw=3 et: */
|