X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Ftext.c;h=8f8bf8f6d9f4fbfbcaa2b4ad125298832bfc969a;hb=a7c06161253796a30a0237a7f5a044f459c8cf35;hp=dd926f62350be231f77e5640aea4d88d2b6b4dd5;hpb=4de46eb5a7645e7058bb09e1ff9b3f1e7be54b49;p=rocksndiamonds.git diff --git a/src/libgame/text.c b/src/libgame/text.c index dd926f62..8f8bf8f6 100644 --- a/src/libgame/text.c +++ b/src/libgame/text.c @@ -448,6 +448,44 @@ void DrawTextExt(DrawBuffer *dst_bitmap, int dst_x, int dst_y, char *text, #define MAX_LINES_FROM_FILE 1024 +#if 1 + +char *GetTextBufferFromFile(char *filename, int max_lines) +{ + File *file; + char *buffer; + int num_lines = 0; + + if (filename == NULL) + return NULL; + + if (!(file = openFile(filename, MODE_READ))) + return NULL; + + buffer = checked_calloc(1); /* start with valid, but empty text buffer */ + + while (!checkEndOfFile(file) && num_lines < max_lines) + { + char line[MAX_LINE_LEN]; + + /* read next line of input file */ + if (!getStringFromFile(file, line, MAX_LINE_LEN)) + break; + + buffer = checked_realloc(buffer, strlen(buffer) + strlen(line) + 1); + + strcat(buffer, line); + + num_lines++; + } + + closeFile(file); + + return buffer; +} + +#else + char *GetTextBufferFromFile(char *filename, int max_lines) { FILE *file; @@ -482,6 +520,8 @@ char *GetTextBufferFromFile(char *filename, int max_lines) return buffer; } +#endif + void DrawTextToTextArea_OLD(int x, int y, char *text, int font_nr, int line_length, int area_xsize, int area_ysize, int mask_mode) {