source: fmtext.c @ 7b4d90e

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 7b4d90e was 7b4d90e, checked in by David Benjamin <davidben@mit.edu>, 15 years ago
Handle missing newline in owl_fmtext_truncate_cols Fixes #51. Also document some behavior of the function and add a test. Signed-off-by: David Benjamin <davidben@mit.edu>
  • Property mode set to 100644
File size: 26.0 KB
Line 
1#include "owl.h"
2#include <stdlib.h>
3#include <string.h>
4
5/* initialize an fmtext with no data */
6void owl_fmtext_init_null(owl_fmtext *f)
7{
8  f->textlen = 0;
9  f->bufflen = 5;
10  f->textbuff = owl_malloc(5);
11  f->textbuff[0] = 0;
12  f->default_attrs = OWL_FMTEXT_ATTR_NONE;
13  f->default_fgcolor = OWL_COLOR_DEFAULT;
14  f->default_bgcolor = OWL_COLOR_DEFAULT;
15}
16
17/* Clear the data from an fmtext, but don't deallocate memory. This
18   fmtext can then be appended to again. */
19void owl_fmtext_clear(owl_fmtext *f)
20{
21  f->textlen = 0;
22  f->textbuff[0] = 0;
23  f->default_attrs = OWL_FMTEXT_ATTR_NONE;
24  f->default_fgcolor = OWL_COLOR_DEFAULT;
25  f->default_bgcolor = OWL_COLOR_DEFAULT;
26}
27
28void _owl_fmtext_realloc(owl_fmtext *f, int newlen) /*noproto*/
29{
30    if(newlen + 1 > f->bufflen) {
31      f->textbuff = owl_realloc(f->textbuff, newlen + 1);
32      f->bufflen = newlen+1;
33  }
34}
35
36int owl_fmtext_is_format_char(gunichar c)
37{
38  if ((c & ~OWL_FMTEXT_UC_ATTR_MASK) == OWL_FMTEXT_UC_ATTR) return 1;
39  if ((c & ~(OWL_FMTEXT_UC_ALLCOLOR_MASK)) == OWL_FMTEXT_UC_COLOR_BASE) return 1;
40  return 0;
41}
42/* append text to the end of 'f' with attribute 'attr' and color
43 * 'color'
44 */
45void owl_fmtext_append_attr(owl_fmtext *f, const char *text, char attr, short fgcolor, short bgcolor)
46{
47  char attrbuff[6];
48  int newlen, a = 0, fg = 0, bg = 0;
49 
50  if (attr != OWL_FMTEXT_ATTR_NONE) a=1;
51  if (fgcolor != OWL_COLOR_DEFAULT) fg=1;
52  if (bgcolor != OWL_COLOR_DEFAULT) bg=1;
53
54  /* Plane-16 characters in UTF-8 are 4 bytes long. */
55  newlen = strlen(f->textbuff) + strlen(text) + (8 * (a + fg + bg));
56  _owl_fmtext_realloc(f, newlen);
57
58  /* Set attributes */
59  if (a) {
60    memset(attrbuff,0,6);
61    g_unichar_to_utf8(OWL_FMTEXT_UC_ATTR | attr, attrbuff);
62    strcat(f->textbuff, attrbuff);     
63  }
64  if (fg) {
65    memset(attrbuff,0,6);
66    g_unichar_to_utf8(OWL_FMTEXT_UC_FGCOLOR | fgcolor, attrbuff);
67    strcat(f->textbuff, attrbuff);     
68  }
69  if (bg) {
70    memset(attrbuff,0,6);
71    g_unichar_to_utf8(OWL_FMTEXT_UC_BGCOLOR | bgcolor, attrbuff);
72    strcat(f->textbuff, attrbuff);     
73  }
74 
75  strcat(f->textbuff, text);
76
77  /* Reset attributes */
78  if (bg) strcat(f->textbuff, OWL_FMTEXT_UTF8_BGDEFAULT);
79  if (fg) strcat(f->textbuff, OWL_FMTEXT_UTF8_FGDEFAULT);
80  if (a)  strcat(f->textbuff, OWL_FMTEXT_UTF8_ATTR_NONE);
81  f->textlen=newlen;
82}
83
84/* Append normal, uncolored text 'text' to 'f' */
85void owl_fmtext_append_normal(owl_fmtext *f, const char *text)
86{
87  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_NONE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
88}
89
90/* Append normal, uncolored text specified by format string to 'f' */
91void owl_fmtext_appendf_normal(owl_fmtext *f, const char *fmt, ...)
92{
93  va_list ap;
94  char *buff;
95
96  va_start(ap, fmt);
97  buff = g_strdup_vprintf(fmt, ap);
98  va_end(ap);
99  if (!buff)
100    return;
101  owl_fmtext_append_attr(f, buff, OWL_FMTEXT_ATTR_NONE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
102}
103
104/* Append normal text 'text' to 'f' with color 'color' */
105void owl_fmtext_append_normal_color(owl_fmtext *f, const char *text, int fgcolor, int bgcolor)
106{
107  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_NONE, fgcolor, bgcolor);
108}
109
110/* Append bold text 'text' to 'f' */
111void owl_fmtext_append_bold(owl_fmtext *f, const char *text)
112{
113  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_BOLD, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
114}
115
116/* Append reverse video text 'text' to 'f' */
117void owl_fmtext_append_reverse(owl_fmtext *f, const char *text)
118{
119  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_REVERSE, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
120}
121
122/* Append reversed and bold, uncolored text 'text' to 'f' */
123void owl_fmtext_append_reversebold(owl_fmtext *f, const char *text)
124{
125  owl_fmtext_append_attr(f, text, OWL_FMTEXT_ATTR_REVERSE | OWL_FMTEXT_ATTR_BOLD, OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT);
126}
127
128/* Add the attribute 'attr' to the default atts for the text in 'f' */
129void owl_fmtext_addattr(owl_fmtext *f, char attr)
130{
131  /* add the attribute to all text */
132  f->default_attrs |= attr;
133}
134
135/* Set the default foreground color for this fmtext to 'color'.
136 * Only affects text that is colored default.
137 */
138void owl_fmtext_colorize(owl_fmtext *f, int color)
139{
140  f->default_fgcolor = color;
141}
142
143/* Set the default foreground color for this fmtext to 'color'.
144 * Only affects text that is colored default.
145 */
146void owl_fmtext_colorizebg(owl_fmtext *f, int color)
147{
148  f->default_bgcolor = color;
149}
150
151/* Internal function. Parse attrbute character. */
152void _owl_fmtext_update_attributes(gunichar c, char *attr, short *fgcolor, short *bgcolor) /*noproto*/
153{
154  if ((c & OWL_FMTEXT_UC_ATTR) == OWL_FMTEXT_UC_ATTR) {
155    *attr = c & OWL_FMTEXT_UC_ATTR_MASK;
156  }
157  else if ((c & OWL_FMTEXT_UC_COLOR_BASE) == OWL_FMTEXT_UC_COLOR_BASE) {
158    if ((c & OWL_FMTEXT_UC_BGCOLOR) == OWL_FMTEXT_UC_BGCOLOR) {
159      *bgcolor = (c == OWL_FMTEXT_UC_BGDEFAULT
160                  ? OWL_COLOR_DEFAULT
161                  : c & OWL_FMTEXT_UC_COLOR_MASK);
162    }
163    else if ((c & OWL_FMTEXT_UC_FGCOLOR) == OWL_FMTEXT_UC_FGCOLOR) {
164      *fgcolor = (c == OWL_FMTEXT_UC_FGDEFAULT
165                  ? OWL_COLOR_DEFAULT
166                  : c & OWL_FMTEXT_UC_COLOR_MASK);
167    }
168  }
169}
170
171/* Internal function. Scan for attribute characters. */
172void _owl_fmtext_scan_attributes(const owl_fmtext *f, int start, char *attr, short *fgcolor, short *bgcolor) /*noproto*/
173{
174  const char *p;
175  p = strchr(f->textbuff, OWL_FMTEXT_UC_STARTBYTE_UTF8);
176  while (p && p < f->textbuff + start) {
177    _owl_fmtext_update_attributes(g_utf8_get_char(p), attr, fgcolor, bgcolor);
178    p = strchr(p+1, OWL_FMTEXT_UC_STARTBYTE_UTF8);
179  }
180} 
181
182/* Internal function.  Append text from 'in' between index 'start' and
183 * 'stop', inclusive, to the end of 'f'. This function works with
184 * bytes.
185 */
186void _owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in, int start, int stop) /*noproto*/
187{
188  char attrbuff[6];
189  int newlen, a = 0, fg = 0, bg = 0;
190  char attr = 0;
191  short fgcolor = OWL_COLOR_DEFAULT;
192  short bgcolor = OWL_COLOR_DEFAULT;
193
194  _owl_fmtext_scan_attributes(in, start, &attr, &fgcolor, &bgcolor);
195  if (attr != OWL_FMTEXT_ATTR_NONE) a=1;
196  if (fgcolor != OWL_COLOR_DEFAULT) fg=1;
197  if (bgcolor != OWL_COLOR_DEFAULT) bg=1;
198
199  /* We will reset to defaults after appending the text. We may need
200     to set initial attributes. */
201  newlen=strlen(f->textbuff)+(stop-start+1) + (4 * (a + fg + bg)) + 12;
202  _owl_fmtext_realloc(f, newlen);
203
204  if (a) {
205    memset(attrbuff,0,6);
206    g_unichar_to_utf8(OWL_FMTEXT_UC_ATTR | attr, attrbuff);
207    strcat(f->textbuff, attrbuff);     
208  }
209  if (fg) {
210    memset(attrbuff,0,6);
211    g_unichar_to_utf8(OWL_FMTEXT_UC_FGCOLOR | fgcolor, attrbuff);
212    strcat(f->textbuff, attrbuff);     
213  }
214  if (bg) {
215    memset(attrbuff,0,6);
216    g_unichar_to_utf8(OWL_FMTEXT_UC_BGCOLOR | bgcolor, attrbuff);
217    strcat(f->textbuff, attrbuff);     
218  }
219
220  strncat(f->textbuff, in->textbuff+start, stop-start+1);
221
222  /* Reset attributes */
223  strcat(f->textbuff, OWL_FMTEXT_UTF8_BGDEFAULT);
224  strcat(f->textbuff, OWL_FMTEXT_UTF8_FGDEFAULT);
225  strcat(f->textbuff, OWL_FMTEXT_UTF8_ATTR_NONE);
226
227  f->textbuff[newlen]='\0';
228  f->textlen=newlen;
229}
230
231/* append fmtext 'in' to 'f' */
232void owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in)
233{
234  _owl_fmtext_append_fmtext(f, in, 0, in->textlen);
235
236}
237
238/* Append 'nspaces' number of spaces to the end of 'f' */
239void owl_fmtext_append_spaces(owl_fmtext *f, int nspaces)
240{
241  int i;
242  for (i=0; i<nspaces; i++) {
243    owl_fmtext_append_normal(f, " ");
244  }
245}
246
247/* Return a plain version of the fmtext.  Caller is responsible for
248 * freeing the return
249 */
250char *owl_fmtext_print_plain(const owl_fmtext *f)
251{
252  return owl_strip_format_chars(f->textbuff);
253}
254
255void _owl_fmtext_wattrset(WINDOW *w, int attrs) /*noproto*/
256{
257  wattrset(w, A_NORMAL);
258  if (attrs & OWL_FMTEXT_ATTR_BOLD) wattron(w, A_BOLD);
259  if (attrs & OWL_FMTEXT_ATTR_REVERSE) wattron(w, A_REVERSE);
260  if (attrs & OWL_FMTEXT_ATTR_UNDERLINE) wattron(w, A_UNDERLINE);
261}
262
263void _owl_fmtext_update_colorpair(short fg, short bg, short *pair) /*noproto*/
264{
265  if (owl_global_get_hascolors(&g)) {
266    *pair = owl_fmtext_get_colorpair(fg, bg);
267  }
268}
269
270void _owl_fmtext_wcolor_set(WINDOW *w, short pair) /*noproto*/
271{
272  if (owl_global_get_hascolors(&g)) {
273      wcolor_set(w,pair,NULL);
274  }
275}
276
277/* add the formatted text to the curses window 'w'.  The window 'w'
278 * must already be initiatlized with curses
279 */
280void _owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w, int do_search) /*noproto*/
281{
282  /* char *tmpbuff; */
283  /* int position, trans1, trans2, trans3, len, lastsame; */
284  char *s, *p;
285  char attr;
286  short fg, bg, pair;
287 
288  if (w==NULL) {
289    owl_function_debugmsg("Hit a null window in owl_fmtext_curs_waddstr.");
290    return;
291  }
292
293  s = f->textbuff;
294  /* Set default attributes. */
295  attr = f->default_attrs;
296  fg = f->default_fgcolor;
297  bg = f->default_bgcolor;
298  _owl_fmtext_wattrset(w, attr);
299  _owl_fmtext_update_colorpair(fg, bg, &pair);
300  _owl_fmtext_wcolor_set(w, pair);
301
302  /* Find next possible format character. */
303  p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
304  while(p) {
305    if (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
306      /* Deal with all text from last insert to here. */
307      char tmp;
308   
309      tmp = p[0];
310      p[0] = '\0';
311      if (owl_global_is_search_active(&g)) {
312        /* Search is active, so highlight search results. */
313        char tmp2;
314        int start, end;
315        while (owl_regex_compare(owl_global_get_search_re(&g), s, &start, &end) == 0) {
316          /* Found search string, highlight it. */
317
318          tmp2 = s[start];
319          s[start] = '\0';
320          waddstr(w, s);
321          s[start] = tmp2;
322
323          _owl_fmtext_wattrset(w, attr ^ OWL_FMTEXT_ATTR_REVERSE);
324          _owl_fmtext_wcolor_set(w, pair);
325         
326          tmp2 = s[end];
327          s[end] = '\0';
328          waddstr(w, s + start);
329          s[end] = tmp2;
330
331          _owl_fmtext_wattrset(w, attr);
332          _owl_fmtext_wcolor_set(w, pair);
333
334          s += end;
335        }
336      }
337      /* Deal with remaining part of string. */
338      waddstr(w, s);
339      p[0] = tmp;
340
341      /* Deal with new attributes. Initialize to defaults, then
342         process all consecutive formatting characters. */
343      attr = f->default_attrs;
344      fg = f->default_fgcolor;
345      bg = f->default_bgcolor;
346      while (p && owl_fmtext_is_format_char(g_utf8_get_char(p))) {
347        _owl_fmtext_update_attributes(g_utf8_get_char(p), &attr, &fg, &bg);
348        p = g_utf8_next_char(p);
349      }
350      _owl_fmtext_wattrset(w, attr | f->default_attrs);
351      if (fg == OWL_COLOR_DEFAULT) fg = f->default_fgcolor;
352      if (bg == OWL_COLOR_DEFAULT) bg = f->default_bgcolor;
353      _owl_fmtext_update_colorpair(fg, bg, &pair);
354      _owl_fmtext_wcolor_set(w, pair);
355
356      /* Advance to next non-formatting character. */
357      s = p;
358      p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
359    }
360    else {
361      p = strchr(p+1, OWL_FMTEXT_UC_STARTBYTE_UTF8);
362    }
363  }
364  if (s) {
365    waddstr(w, s);
366  }
367}
368
369void owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w)
370{
371  _owl_fmtext_curs_waddstr(f, w, owl_global_is_search_active(&g));
372}
373
374void owl_fmtext_curs_waddstr_without_search(const owl_fmtext *f, WINDOW *w)
375{
376  _owl_fmtext_curs_waddstr(f, w, 0);
377}
378
379/* start with line 'aline' (where the first line is 0) and print
380 * 'lines' number of lines into 'out'
381 */
382int owl_fmtext_truncate_lines(const owl_fmtext *in, int aline, int lines, owl_fmtext *out)
383{
384  const char *ptr1, *ptr2;
385  int i, offset;
386 
387  /* find the starting line */
388  ptr1 = in->textbuff;
389  for (i = 0; i < aline; i++) {
390    ptr1 = strchr(ptr1, '\n');
391    if (!ptr1) return(-1);
392    ptr1++;
393  }
394 
395  /* ptr1 now holds the starting point */
396
397  /* copy the default attributes */
398  out->default_attrs = in->default_attrs;
399  out->default_fgcolor = in->default_fgcolor;
400  out->default_bgcolor = in->default_bgcolor;
401   
402  /* copy in the next 'lines' lines */
403  if (lines < 1) return(-1);
404
405  for (i = 0; i < lines; i++) {
406    offset = ptr1 - in->textbuff;
407    ptr2 = strchr(ptr1, '\n');
408    if (!ptr2) {
409      _owl_fmtext_append_fmtext(out, in, offset, (in->textlen) - 1);
410      return(-1);
411    }
412    _owl_fmtext_append_fmtext(out, in, offset, (ptr2 - ptr1) + offset);
413    ptr1 = ptr2 + 1;
414  }
415  return(0);
416}
417
418/* Truncate the message so that each line begins at column 'acol' and
419 * ends at 'bcol' or sooner.  The first column is number 0.  The new
420 * message is placed in 'out'.
421 *
422 * NOTE: This needs to be modified to deal with backing up if we find
423 * a SPACING * COMBINING MARK at the end of a line. If that happens,
424 * we should back up to * the last non-mark character and stop there.
425 *
426 * NOTE: If a line ends at bcol, we omit the newline. This is so printing
427 * to ncurses works.
428 */
429void owl_fmtext_truncate_cols(const owl_fmtext *in, int acol, int bcol, owl_fmtext *out)
430{
431  const char *ptr_s, *ptr_e, *ptr_c, *last;
432  int col, st, padding, chwidth;
433
434  /* copy the default attributes */
435  out->default_attrs = in->default_attrs;
436  out->default_fgcolor = in->default_fgcolor;
437  out->default_bgcolor = in->default_bgcolor;
438
439  last=in->textbuff+in->textlen-1;
440  ptr_s=in->textbuff;
441  while (ptr_s <= last) {
442    ptr_e=strchr(ptr_s, '\n');
443    if (!ptr_e) {
444      /* set it to the NULL at the end of the string, to handle a line that is
445       * not newline-terminated */
446      ptr_e = last+1;
447    }
448   
449    if (ptr_e == ptr_s) {
450      owl_fmtext_append_normal(out, "\n");
451      ++ptr_s;
452      continue;
453    }
454
455    col = 0;
456    st = 0;
457    padding = 0;
458    chwidth = 0;
459    ptr_c = ptr_s;
460    while(ptr_c < ptr_e) {
461      gunichar c = g_utf8_get_char(ptr_c);
462      if (!owl_fmtext_is_format_char(c)) {
463        chwidth = mk_wcwidth(c);
464        if (col + chwidth > bcol) break;
465       
466        if (col >= acol) {
467          if (st == 0) {
468            ptr_s = ptr_c;
469            padding = col - acol;
470            ++st;
471          }
472        }
473        col += chwidth;
474        chwidth = 0;
475      }
476      ptr_c = g_utf8_next_char(ptr_c);
477    }
478    if (st) {
479      /* lead padding */
480      owl_fmtext_append_spaces(out, padding);
481      if (ptr_c == ptr_e) {
482        /* We made it to the newline. */
483        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
484      }
485      else if (chwidth > 1) {
486        /* Last char is wide, truncate. */
487        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff - 1);
488        owl_fmtext_append_normal(out, "\n");
489      }
490      else {
491        /* Last char fits perfectly, We skip to the next char and back
492         * up a byte to make sure we get it all.
493         */
494        ptr_c = g_utf8_next_char(ptr_c);
495        _owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff - 1);
496      }
497    }
498    else {
499      owl_fmtext_append_normal(out, "\n");
500    }
501    /* Be careful if ptr_e is pointing to the NULL if we do not end with a
502     * newline. We don't really need this check, but pointing ptr_s past the
503     * NULL byte is just asking for problems later.
504     */
505    ptr_s = (ptr_e <= last) ? g_utf8_next_char(ptr_e) : ptr_e;
506  }
507}
508
509/* Return the number of lines in 'f' */
510int owl_fmtext_num_lines(const owl_fmtext *f)
511{
512  int lines, i;
513
514  if (f->textlen==0) return(0);
515 
516  lines=0;
517  for (i=0; i<f->textlen; i++) {
518    if (f->textbuff[i]=='\n') lines++;
519  }
520
521  /* if the last char wasn't a \n there's one more line */
522  if (f->textbuff[i-1]!='\n') lines++;
523
524  return(lines);
525}
526
527const char *owl_fmtext_get_text(const owl_fmtext *f)
528{
529  return(f->textbuff);
530}
531
532/* set the charater at 'index' to be 'char'.  If index is out of
533 * bounds don't do anything. If c or char at index is not ASCII, don't
534 * do anything because it's not UTF-8 safe. */
535void owl_fmtext_set_char(owl_fmtext *f, int index, char ch)
536{
537  if ((index < 0) || (index > f->textlen-1)) return;
538  /* NOT ASCII*/
539  if (f->textbuff[index] & 0x80 || ch & 0x80) return; 
540  f->textbuff[index]=ch;
541}
542
543/* Make a copy of the fmtext 'src' into 'dst' */
544void owl_fmtext_copy(owl_fmtext *dst, const owl_fmtext *src)
545{
546  int mallocsize;
547
548  if (src->textlen==0) {
549    mallocsize=5;
550  } else {
551    mallocsize=src->textlen+2;
552  }
553  dst->textlen=src->textlen;
554  dst->bufflen=mallocsize;
555  dst->textbuff=owl_malloc(mallocsize);
556  memcpy(dst->textbuff, src->textbuff, src->textlen+1);
557  dst->default_attrs = src->default_attrs;
558  dst->default_fgcolor = src->default_fgcolor;
559  dst->default_bgcolor = src->default_bgcolor;
560}
561
562/* return 1 if the string is found, 0 if not.  This is a case
563 *  insensitive search.
564 */
565int owl_fmtext_search(const owl_fmtext *f, const owl_regex *re)
566{
567  if (owl_regex_compare(re, f->textbuff, NULL, NULL) == 0) return(1);
568  return(0);
569}
570
571
572/* Append the text 'text' to 'f' and interpret the zephyr style
573 * formatting syntax to set appropriate attributes.
574 */
575void owl_fmtext_append_ztext(owl_fmtext *f, const char *text)
576{
577  int stacksize, curattrs, curcolor;
578  const char *ptr, *txtptr, *tmpptr;
579  char *buff;
580  int attrstack[32], chrstack[32], colorstack[32];
581
582  curattrs=OWL_FMTEXT_ATTR_NONE;
583  curcolor=OWL_COLOR_DEFAULT;
584  stacksize=0;
585  txtptr=text;
586  while (1) {
587    ptr=strpbrk(txtptr, "@{[<()>]}");
588    if (!ptr) {
589      /* add all the rest of the text and exit */
590      owl_fmtext_append_attr(f, txtptr, curattrs, curcolor, OWL_COLOR_DEFAULT);
591      return;
592    } else if (ptr[0]=='@') {
593      /* add the text up to this point then deal with the stack */
594      buff=owl_malloc(ptr-txtptr+20);
595      strncpy(buff, txtptr, ptr-txtptr);
596      buff[ptr-txtptr]='\0';
597      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
598      owl_free(buff);
599
600      /* update pointer to point at the @ */
601      txtptr=ptr;
602
603      /* now the stack */
604
605      /* if we've hit our max stack depth, print the @ and move on */
606      if (stacksize==32) {
607        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
608        txtptr++;
609        continue;
610      }
611
612      /* if it's an @@, print an @ and continue */
613      if (txtptr[1]=='@') {
614        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
615        txtptr+=2;
616        continue;
617      }
618       
619      /* if there's no opener, print the @ and continue */
620      tmpptr=strpbrk(txtptr, "(<[{ ");
621      if (!tmpptr || tmpptr[0]==' ') {
622        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
623        txtptr++;
624        continue;
625      }
626
627      /* check what command we've got, push it on the stack, start
628         using it, and continue ... unless it's a color command */
629      buff=owl_malloc(tmpptr-ptr+20);
630      strncpy(buff, ptr, tmpptr-ptr);
631      buff[tmpptr-ptr]='\0';
632      if (!strcasecmp(buff, "@bold")) {
633        attrstack[stacksize]=OWL_FMTEXT_ATTR_BOLD;
634        chrstack[stacksize]=tmpptr[0];
635        colorstack[stacksize]=curcolor;
636        stacksize++;
637        curattrs|=OWL_FMTEXT_ATTR_BOLD;
638        txtptr+=6;
639        owl_free(buff);
640        continue;
641      } else if (!strcasecmp(buff, "@b")) {
642        attrstack[stacksize]=OWL_FMTEXT_ATTR_BOLD;
643        chrstack[stacksize]=tmpptr[0];
644        colorstack[stacksize]=curcolor;
645        stacksize++;
646        curattrs|=OWL_FMTEXT_ATTR_BOLD;
647        txtptr+=3;
648        owl_free(buff);
649        continue;
650      } else if (!strcasecmp(buff, "@i")) {
651        attrstack[stacksize]=OWL_FMTEXT_ATTR_UNDERLINE;
652        chrstack[stacksize]=tmpptr[0];
653        colorstack[stacksize]=curcolor;
654        stacksize++;
655        curattrs|=OWL_FMTEXT_ATTR_UNDERLINE;
656        txtptr+=3;
657        owl_free(buff);
658        continue;
659      } else if (!strcasecmp(buff, "@italic")) {
660        attrstack[stacksize]=OWL_FMTEXT_ATTR_UNDERLINE;
661        chrstack[stacksize]=tmpptr[0];
662        colorstack[stacksize]=curcolor;
663        stacksize++;
664        curattrs|=OWL_FMTEXT_ATTR_UNDERLINE;
665        txtptr+=8;
666        owl_free(buff);
667        continue;
668      } else if (!strcasecmp(buff, "@")) {
669        attrstack[stacksize]=OWL_FMTEXT_ATTR_NONE;
670        chrstack[stacksize]=tmpptr[0];
671        colorstack[stacksize]=curcolor;
672        stacksize++;
673        txtptr+=2;
674        owl_free(buff);
675        continue;
676
677        /* if it's a color read the color, set the current color and
678           continue */
679      } else if (!strcasecmp(buff, "@color") 
680                 && owl_global_get_hascolors(&g)
681                 && owl_global_is_colorztext(&g)) {
682        owl_free(buff);
683        txtptr+=7;
684        tmpptr=strpbrk(txtptr, "@{[<()>]}");
685        if (tmpptr &&
686            ((txtptr[-1]=='(' && tmpptr[0]==')') ||
687             (txtptr[-1]=='<' && tmpptr[0]=='>') ||
688             (txtptr[-1]=='[' && tmpptr[0]==']') ||
689             (txtptr[-1]=='{' && tmpptr[0]=='}'))) {
690
691          /* grab the color name */
692          buff=owl_malloc(tmpptr-txtptr+20);
693          strncpy(buff, txtptr, tmpptr-txtptr);
694          buff[tmpptr-txtptr]='\0';
695
696          /* set it as the current color */
697          curcolor=owl_util_string_to_color(buff);
698          if (curcolor==-1) curcolor=OWL_COLOR_DEFAULT;
699          owl_free(buff);
700          txtptr=tmpptr+1;
701          continue;
702
703        } else {
704
705        }
706
707      } else {
708        /* if we didn't understand it, we'll print it.  This is different from zwgc
709         * but zwgc seems to be smarter about some screw cases than I am
710         */
711        owl_fmtext_append_attr(f, "@", curattrs, curcolor, OWL_COLOR_DEFAULT);
712        txtptr++;
713        continue;
714      }
715
716    } else if (ptr[0]=='}' || ptr[0]==']' || ptr[0]==')' || ptr[0]=='>') {
717      /* add the text up to this point first */
718      buff=owl_malloc(ptr-txtptr+20);
719      strncpy(buff, txtptr, ptr-txtptr);
720      buff[ptr-txtptr]='\0';
721      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
722      owl_free(buff);
723
724      /* now deal with the closer */
725      txtptr=ptr;
726
727      /* first, if the stack is empty we must bail (just print and go) */
728      if (stacksize==0) {
729        buff=owl_malloc(5);
730        buff[0]=ptr[0];
731        buff[1]='\0';
732        owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
733        owl_free(buff);
734        txtptr++;
735        continue;
736      }
737
738      /* if the closing char is what's on the stack, turn off the
739         attribue and pop the stack */
740      if ((ptr[0]==')' && chrstack[stacksize-1]=='(') ||
741          (ptr[0]=='>' && chrstack[stacksize-1]=='<') ||
742          (ptr[0]==']' && chrstack[stacksize-1]=='[') ||
743          (ptr[0]=='}' && chrstack[stacksize-1]=='{')) {
744        int i;
745        stacksize--;
746        curattrs=OWL_FMTEXT_ATTR_NONE;
747        curcolor = colorstack[stacksize];
748        for (i=0; i<stacksize; i++) {
749          curattrs|=attrstack[i];
750        }
751        txtptr+=1;
752        continue;
753      } else {
754        /* otherwise print and continue */
755        buff=owl_malloc(5);
756        buff[0]=ptr[0];
757        buff[1]='\0';
758        owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
759        owl_free(buff);
760        txtptr++;
761        continue;
762      }
763    } else {
764      /* we've found an unattached opener, print everything and move on */
765      buff=owl_malloc(ptr-txtptr+20);
766      strncpy(buff, txtptr, ptr-txtptr+1);
767      buff[ptr-txtptr+1]='\0';
768      owl_fmtext_append_attr(f, buff, curattrs, curcolor, OWL_COLOR_DEFAULT);
769      owl_free(buff);
770      txtptr=ptr+1;
771      continue;
772    }
773  }
774}
775
776/* requires that the list values are strings or NULL.
777 * joins the elements together with join_with.
778 * If format_fn is specified, passes it the list element value
779 * and it will return a string which this needs to free. */
780void owl_fmtext_append_list(owl_fmtext *f, const owl_list *l, const char *join_with, char *(format_fn)(const char *))
781{
782  int i, size;
783  const char *elem;
784  char *text;
785
786  size = owl_list_get_size(l);
787  for (i=0; i<size; i++) {
788    elem = owl_list_get_element(l,i);
789    if (elem && format_fn) {
790      text = format_fn(elem);
791      if (text) {
792        owl_fmtext_append_normal(f, text);
793        owl_free(text);
794      }
795    } else if (elem) {
796      owl_fmtext_append_normal(f, elem);
797    }
798    if ((i < size-1) && join_with) {
799      owl_fmtext_append_normal(f, join_with);
800    }
801  }
802}
803
804/* Free all memory allocated by the object */
805void owl_fmtext_free(owl_fmtext *f)
806{
807  if (f->textbuff) owl_free(f->textbuff);
808}
809
810/*** Color Pair manager ***/
811void owl_fmtext_init_colorpair_mgr(owl_colorpair_mgr *cpmgr)
812{
813  /* This could be a bitarray if we wanted to save memory. */
814  short i, j;
815  cpmgr->next = 8;
816 
817  /* The test is <= because we allocate COLORS+1 entries. */
818  cpmgr->pairs = owl_malloc((COLORS+1) * sizeof(short*));
819  for(i = 0; i <= COLORS; i++) {
820    cpmgr->pairs[i] = owl_malloc((COLORS+1) * sizeof(short));
821    for(j = 0; j <= COLORS; j++) {
822      cpmgr->pairs[i][j] = -1;
823    }
824  }
825  if (owl_global_get_hascolors(&g)) {
826    for(i = 0; i < 8; i++) {
827      short fg, bg;
828      if (i >= COLORS) continue;
829      pair_content(i, &fg, &bg);
830      cpmgr->pairs[fg+1][bg+1] = i;
831    }
832  }
833}
834
835/* Reset used list */
836void owl_fmtext_reset_colorpairs()
837{
838  if (owl_global_get_hascolors(&g)) {
839    short i, j;
840    owl_colorpair_mgr *cpmgr = owl_global_get_colorpair_mgr(&g);
841    cpmgr->next = 8;
842   
843    /* The test is <= because we allocated COLORS+1 entries. */
844    for(i = 0; i <= COLORS; i++) {
845      for(j = 0; j <= COLORS; j++) {
846        cpmgr->pairs[i][j] = -1;
847      }
848    }
849    for(i = 0; i < 8; i++) {
850      short fg, bg;
851      if (i >= COLORS) continue;
852      pair_content(i, &fg, &bg);
853      cpmgr->pairs[fg+1][bg+1] = i;
854    }
855  }
856}
857
858/* Assign pairs by request */
859short owl_fmtext_get_colorpair(int fg, int bg)
860{
861  owl_colorpair_mgr *cpmgr;
862  short pair, default_bg;
863
864  /* Sanity (Bounds) Check */
865  if (fg > COLORS || fg < OWL_COLOR_DEFAULT) fg = OWL_COLOR_DEFAULT;
866  if (bg > COLORS || bg < OWL_COLOR_DEFAULT) bg = OWL_COLOR_DEFAULT;
867           
868#ifdef HAVE_USE_DEFAULT_COLORS
869  if (fg == OWL_COLOR_DEFAULT) fg = -1;
870  default_bg = OWL_COLOR_DEFAULT;
871#else
872  if (fg == OWL_COLOR_DEFAULT) fg = 0;
873  if (bg == OWL_COLOR_DEFAULT) bg = 0;
874  default_bg = COLOR_BLACK;
875#endif
876
877  /* looking for a pair we already set up for this draw. */
878  cpmgr = owl_global_get_colorpair_mgr(&g);
879  pair = cpmgr->pairs[fg+1][bg+1];
880  if (!(pair != -1 && pair < cpmgr->next)) {
881    /* If we didn't find a pair, search for a free one to assign. */
882    pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1;
883    if (pair != -1) {
884      /* We found a free pair, initialize it. */
885      init_pair(pair, fg, bg);
886      cpmgr->pairs[fg+1][bg+1] = pair;
887      cpmgr->next++;
888    }
889    else if (bg != OWL_COLOR_DEFAULT) {
890      /* We still don't have a pair, drop the background color. Too bad. */
891      owl_function_debugmsg("colorpairs: color shortage - dropping background color.");
892      pair = owl_fmtext_get_colorpair(fg, OWL_COLOR_DEFAULT);
893    }
894    else {
895      /* We still don't have a pair, defaults all around. */
896      owl_function_debugmsg("colorpairs: color shortage - dropping foreground and background color.");
897      pair = 0;
898    }
899  }
900  return pair;
901}
Note: See TracBrowser for help on using the repository browser.