source: fmtext.c @ c93b8b5

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