123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- #include "monolog.h"
- #include "zori.h"
- #include "zori_longtext.h"
- #define ZORI_LONGTEXT_LINE_POS_MAX 99999
- struct zori_longtext * zori_widget_to_longtext(struct zori_widget * widget) {
- return ZORI_CONTAINER_OF(widget, struct zori_longtext, widget);
- }
- struct zori_longtext *
- zori_longtext_set(struct zori_longtext * longtext, const zori_string * text) {
- if (longtext) {
- if (longtext->text) {
- ustr_free(longtext->text);
- longtext->text = NULL;
- }
- if (text) {
- longtext->text = ustr_dup(text);
- if (!longtext->text) {
- LOG_ERROR("Out of memory in longtext setup.");
- }
- }
- }
- return longtext;
- }
- struct zori_longtext *
- zori_longtext_set_cstr(struct zori_longtext * longtext, const char * cstr) {
- const USTR * ustr;
- USTR_INFO info;
- ustr = ustr_refcstr(&info, cstr);
- return zori_longtext_set(longtext, ustr);
- }
- struct zori_longtext *
- zori_longtext_init_cstr(struct zori_longtext * longtext, const char * cstr) {
- longtext->text = NULL;
- return zori_longtext_set_cstr(longtext, cstr);
- }
- void zori_longtext_done(struct zori_longtext * longtext) {
- zori_longtext_set(longtext, NULL);
- }
- /** Gets the current text page for a longtext. */
- int zori_longtext_page(struct zori_longtext * longtext) {
- if (!longtext) return -2;
- return longtext->line_start / longtext->page_lines;
- }
- /** Gets the last page number for a longtext or negative on error. */
- int zori_longtext_last_page(struct zori_longtext * longtext) {
- if (!longtext) return -2;
- return longtext->line_max / longtext->page_lines;
- }
- /** Advances long text to the given page. Automatically unpauses as well. */
- int zori_longtext_page_(struct zori_longtext * longtext, int page) {
- if (!longtext) return -2;
- if (page < 0) return -3;
- int line = page * longtext->page_lines;
- /* Check for page overflow. */
- if (line >= longtext->line_max) {
- return -5;
- }
-
- longtext->paused = false;
- longtext->line_start = line;
- /* Negative delay is instant display. */
- if (longtext->delay < 0) {
- longtext->line_stop = longtext->line_start + longtext->page_lines;
- longtext->line_pos = ZORI_LONGTEXT_LINE_POS_MAX;
- } else {
- longtext->line_stop = longtext->line_start + 1;
- longtext->line_pos = 0;
- }
- return page;
- }
- /* Returns TRUE if the longtext node is at the end of the text to display,
- * false if not (more text to display) */
- int zori_longtext_at_end(struct zori_longtext * longtext) {
- if (!longtext) return FALSE;
- return ((longtext->line_stop >= longtext->line_max) &&
- (longtext->line_pos >= ZORI_LONGTEXT_LINE_POS_MAX));
- }
- /* This function is the helper callback that implements
- * updating scrolled/partial text for Longtexts.
- */
- static bool
- zori_longtext_update_custom_partial_text(int line_num, const char *line, int size, void * extra) {
- struct zori_longtext * longtext = extra;
- longtext->line_max = line_num;
- /* Don't draw lines before start but keep on drawing (for later lines) */
- if (line_num < longtext->line_start) return true;
- /* Don't draw lines after stop, but keep calculating to get correct amount of lines */
- if (line_num >= longtext->line_stop) return true;
- /* Reveal letter by letter on last line */
- if (line_num == (longtext->line_stop - 1)) {
- /* Advance the position automatically if not paused. */
- if (!longtext->paused) {
- longtext->line_pos++;
- }
- /* Reached eol, advance to next line. */
- if (longtext->line_pos >= size) {
- /* Is if the text window is full, pause, otherwise show the next line. */
- if ((longtext->line_stop - longtext->line_start) >= longtext->page_lines) {
- longtext->paused = true;
- } else {
- longtext->line_stop++;
- longtext->line_pos = 0;
- }
- }
- }
- (void) line;
- return true;
- }
- /* Updates the longtext, enables scrolling and per character display. */
- void zori_longtext_update_longtext(struct zori_longtext * longtext, double dt) {
- float width = longtext->widget.inner.size.x;
- zori_text * text = longtext->text;
-
- if (!text) {
- LOG_WARNING("Attempted to update a NULL longtext.");
- return;
- }
- /* Delay advance of characters somewhat. */
- longtext->delay_total += dt;
- if (longtext->delay_total < longtext->delay) return;
- longtext->delay_total = 0;
-
- longtext->line_max = 0;
- al_do_multiline_text(zori_widget_font(&longtext->widget), width,
- (const char *) text, zori_longtext_update_custom_partial_text, longtext);
- longtext->line_max++;
-
- /* pause if the last line is reached, and prevent overflow. */
- if (longtext->line_stop > longtext->line_max) {
- longtext->paused = true;
- longtext->line_pos = ZORI_LONGTEXT_LINE_POS_MAX;
- longtext->line_stop = longtext->line_max;
- }
- }
- /* Returns TRUE if the longtext node is at the end of the text to display,
- * false if not (more text to display) */
- int zori_longtext_longtext_at_end(struct zori_longtext * longtext) {
- return ((longtext->line_stop >= longtext->line_max) &&
- (longtext->line_pos >= ZORI_LONGTEXT_LINE_POS_MAX));
- }
- /* Calculates the x and y position where to draw text, taking alignment and
- * margin into consideration. */
- static BeVec
- zori_longtext_calculate_text_position(struct zori_longtext * longtext) {
- BeVec result;
- int flags = longtext->widget.style.text.font_flags;
- result.x = longtext->widget.inner.at.x;
- result.y = longtext->widget.inner.at.y;
- if (flags & ALLEGRO_ALIGN_CENTER) {
- result.x += longtext->widget.inner.size.x / 2;
- } else if (flags & ALLEGRO_ALIGN_RIGHT) {
- result.x += longtext->widget.inner.size.x;
- }
- return result;
- }
- void zori_longtext_draw_text(struct zori_longtext * longtext) {
- zori_font * font;
- int flags;
- BeVec pos = zori_longtext_calculate_text_position(longtext);
- font = zori_widget_font(&longtext->widget);
- flags = longtext->widget.style.text.font_flags | ALLEGRO_ALIGN_INTEGER;
- zori_color shadow = longtext->widget.style.back.color;
- zori_color fore = longtext->widget.style.text.color;
-
- /* Draw the text twice, once offset in bg color to produce a shadow,
- and once normally with foreground color. */
- al_draw_ustr(font, shadow, pos.x + 1, pos.y + 1,
- flags, longtext->text);
- al_draw_ustr(font, fore, pos.x, pos.y,
- flags, longtext->text);
- }
- /* This function is the helper callback that implements the actual drawing
- * for zori_longtext_draw_partial_text.
- */
- static bool zori_longtext_draw_custom_partial_text(int line_num, const char *line,
- int size, void *extra) {
- float x, y;
- struct zori_longtext * longtext = extra;
- ALLEGRO_USTR_INFO info;
- int real_size, flags;
- double width;
- ALLEGRO_FONT * font;
- BeVec pos;
-
- font = zori_widget_font(&longtext->widget);
- flags = longtext->widget.style.text.font_flags | ALLEGRO_ALIGN_INTEGER;
- pos = zori_longtext_calculate_text_position(longtext);
-
-
- /* Don't draw lines before start but keep on drawing (for later lines) */
- if (line_num < longtext->line_start) return true;
- /* Don't draw lines after stop, drawing is done */
- if (line_num >= longtext->line_stop) return false;
- real_size = size;
- /* calculate position */
- x = pos.x;
- y = pos.y + (longtext->line_height * (line_num - longtext->line_start));
- /* Reveal letter by letter on last line */
- if (line_num == (longtext->line_stop - 1)) {
- real_size = (longtext->line_pos < size) ? longtext->line_pos : size;
- /* Draw continuation marker if paused. XXX... this needs to be done
- * better... Maybe a bitmap member or so? */
- if (longtext->paused) {
- float x1, y1, x2, y2, x3, y3;
- y2 = y + 8;
- x2 = x + longtext->widget.inner.size.x;
- x1 = x2 - 8;
- y1 = y2;
- x3 = x2 - 4;
- y3 = y2 + 8;
- al_draw_filled_triangle(x1, y1, x2, y2, x3, y3, longtext->widget.style.text.color);
- }
- }
-
- zori_color shadow = longtext->widget.style.back.color;
- zori_color fore = longtext->widget.style.text.color;
-
- al_draw_ustr(font, shadow,
- x + 1, y + 1, flags, al_ref_buffer(&info, line, real_size));
- al_draw_ustr(font, fore,
- x, y, flags, al_ref_buffer(&info, line, real_size));
-
- return true;
- }
- /* Allows to draw a multi line text partially, from line_start up to
- * line_stop. Draws scrolling text from a prefilled struct. */
- void zori_longtext_draw_partial_text(struct zori_longtext * longtext) {
- float width = longtext->widget.inner.size.x;
- zori_font * font = zori_widget_font(&longtext->widget);
-
- if (!longtext->text) {
- LOG_WARNING("Trying to draw a NULL longtext.");
- return;
- }
-
- const char * text = ustr_c(longtext->text);
-
- /* It's a bit of a hack that this ends up here... */
- if (longtext->line_height < 1.0) {
- longtext->line_height = al_get_font_line_height(font);
- }
-
- al_do_multiline_text(font, width,
- (const char *) text, zori_longtext_draw_custom_partial_text, longtext);
- }
- void zori_draw_longtext(struct zori_longtext * longtext) {
- zori_longtext_draw_partial_text(longtext);
- }
- /** Sets the last line to display for a long text */
- zori_id zori_set_line_stop(zori_id index, int stop) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- longtext->line_stop = stop;
- return index;
- }
- /** Sets the first line to display for a long text */
- zori_id zori_line_start_(zori_id index, int start) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- longtext->line_start = start;
- return index;
- }
- /** Sets display delay between individual characters for a long text */
- int zori_delay_(zori_id index, double delay) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- longtext->delay = delay;
- return index;
- }
- /** Gets the last line to display for a long text or negative on error*/
- int zori_line_stop(int index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return longtext->line_stop;
- }
- /** Gets the first line to display for a long text */
- int zori_line_start(int index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return longtext->line_start;
- }
- /** Gets display delay between individual characters for a long text */
- double zori_delay(int index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return longtext->delay;
- }
- /** Sets amount of shown lines for a long text */
- int zori_page_lines_(zori_id index, int lines) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- longtext->page_lines = lines;
- return index;
- }
- /** Gets amount of lines for a "page" of long text */
- int zori_page_lines(int index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return longtext->page_lines;
- }
- /** Sets paused state of long text */
- int zori_paused_(zori_id index, int paused) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- longtext->paused = paused;
- return index;
- }
- /** Gets paused state of long text */
- int zori_paused(zori_id index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return 0;
- return longtext->paused;
- }
- /** Gets the current text page for a longtext. */
- int zori_page(zori_id index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return zori_longtext_page(longtext);
- }
- /** Gets the number of the last text page for a longtext. */
- int zori_last_page(zori_id index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return zori_longtext_last_page(longtext);
- }
- /** Returns nonzero if the long text is at the end of it's display. */
- int zori_at_end(zori_id index) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- if (!longtext) return ZORI_ID_EINVAL;
- return zori_longtext_at_end(longtext);
- }
- /** Advances long text to the given page. Automatically unpauses as well. */
- int zori_page_(zori_id index, int page) {
- struct zori_widget * widget = zori_get_widget(index);
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- return zori_longtext_page_(longtext, page);
- }
- /** Advances long text to the next page. Automatically unpauses as well. */
- int zori_next_page(zori_id index) {
- int page = zori_page(index);
- if (page < 0) return page;
- return zori_page_(index, page + 1);
- }
- /** Advances long text to the previous page. Automatically unpauses as well. */
- int zori_previous_page(int index) {
- int page = zori_page(index);
- if (page < 0) return page;
- return zori_page_(index, page - 1);
- }
- /** Handles a mouse axis event and pass it on. */
- int zori_longtext_on_mouse_axes(union zori_event * event) {
- struct zori_widget * widget = event->any.widget;
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- float x = event->sys.ev->mouse.x;
- float y = event->sys.ev->mouse.y;
- if (zori_xy_inside_widget_p(widget, x, y)) {
- zori_widget_hover_(widget, TRUE);
- } else {
- zori_widget_hover_(widget, FALSE);
- }
-
- return ZORI_HANDLE_PASS;
- }
- /** Handles a mouse click event and pass it on. */
- int zori_longtext_on_mouse_click(union zori_event * event) {
- struct zori_widget * widget = event->any.widget;
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- float x = event->sys.ev->mouse.x;
- float y = event->sys.ev->mouse.y;
- if (zori_xy_inside_widget_p(widget, x, y)) {
- widget->result = widget->id;
- LOG_NOTE("Longtext %d clicked: %d, result %d.\n", widget->id, widget->result);
- return zori_widget_raise_action_event(widget);
- }
- return ZORI_HANDLE_PASS;
- }
- int zori_longtext_on_draw(union zori_event * event) {
- struct zori_widget * widget = event->any.widget;
- struct zori_longtext * longtext = zori_widget_to_longtext(widget);
- zori_draw_longtext(longtext);
- return ZORI_HANDLE_PASS;
- }
- struct zori_handler zori_longtext_handlers[] = {
- { ZORI_SYSTEM_EVENT_MOUSE_BUTTON_DOWN , zori_longtext_on_mouse_click , NULL },
- { ZORI_SYSTEM_EVENT_MOUSE_AXES , zori_longtext_on_mouse_axes , NULL },
- { ZORI_EVENT_DRAW , zori_longtext_on_draw , NULL },
- { -1, NULL, NULL }
- };
- struct zori_longtext *
- zori_longtext_init(struct zori_longtext * longtext, const char * text) {
- if (longtext) {
- zori_longtext_set_cstr(longtext, text);
- }
- return longtext;
- }
- struct zori_longtext * zori_longtext_new(zori_id id, zori_id parent_id,
- zori_box * box, const char * text) {
- struct zori_longtext * longtext = NULL;
- longtext = calloc(1, sizeof(*longtext));
- if (!longtext) return NULL;
- zori_widget_initall(&longtext->widget, ZORI_WIDGET_TYPE_LONGTEXT, id, zori_get_widget(parent_id),
- box, NULL, ZORI_ARRAY_AND_AMOUNT(zori_longtext_handlers));
- if (!zori_longtext_init(longtext, text)) {
- free(longtext);
- longtext = NULL;
- }
- zori_widget_hover_(&longtext->widget, 0);
-
- return longtext;
- }
- zori_id zori_new_longtext(zori_id id, zori_id parent, zori_box * box, const char * text) {
- struct zori_longtext * longtext = zori_longtext_new(id, parent, box, text);
- if (!longtext) return ZORI_ID_ENOMEM;
- return longtext->widget.id;
- }
|