X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftext.c;h=f41635ae3f4863b659f9283a7238bcb761cda5d3;hb=39af00f43cf5c4cea174d0e90633877df08a2f7c;hp=a4b60302110914df7d3b35640470c9b9ddbc95e3;hpb=945d51a5966241e4964a2b72058b6295cbc4a688;p=rocksndiamonds.git diff --git a/src/libgame/text.c b/src/libgame/text.c index a4b60302..f41635ae 100644 --- a/src/libgame/text.c +++ b/src/libgame/text.c @@ -259,6 +259,9 @@ void DrawTextExt(DrawBuffer *dst_bitmap, int dst_x, int dst_y, char *text, { char c = *text_ptr++; + if (c == '\n') + c = ' '; /* print space instaed of newline */ + getFontCharSource(font_nr, c, &src_bitmap, &src_x, &src_y); if (mask_mode == BLIT_INVERSE) /* special mode for text gadgets */ @@ -322,3 +325,31 @@ void DrawTextExt(DrawBuffer *dst_bitmap, int dst_x, int dst_y, char *text, dst_x += font_width; } } + +void DrawTextToTextArea(int x, int y, char *text, int font_nr, int line_length, + int area_xsize, int area_ysize, int mask_mode) +{ + int area_line = 0; + int font_height = getFontHeight(font_nr); + + if (text == NULL) + return; + + while (*text && area_line < area_ysize) + { + char buffer[MAX_OUTPUT_LINESIZE + 1]; + int i; + + for (i=0; i < line_length && *text; i++) + if ((buffer[i] = *text++) == '\n') + break; + buffer[MIN(i, area_xsize)] = '\0'; + + DrawTextExt(drawto, x, y + area_line * font_height, buffer, font_nr, + mask_mode); + + area_line++; + } + + redraw_mask |= REDRAW_FIELD; +}