RichString.c 3.3 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
3

#include "RichString.h"

4
5
6
7
8
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
9
10
11
12
13
14
#include <stdlib.h>
#include <string.h>
#include <curses.h>

#include "debug.h"
#include <assert.h>
15
16
17
#ifdef HAVE_LIBNCURSESW
#include <wchar.h>
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
18
19
20
21
22

#define RICHSTRING_MAXLEN 300

/*{

23
24
25
#define RichString_init(this) (this)->len = 0
#define RichString_initVal(this) (this).len = 0

26
27
28
29
30
31
32
33
34
35
#ifdef HAVE_LIBNCURSESW
#define RichString_printVal(this, y, x) mvadd_wchstr(y, x, this.chstr)
#define RichString_printoffnVal(this, y, x, off, n) mvadd_wchnstr(y, x, this.chstr + off, n)
#define RichString_getCharVal(this, i) (this.chstr[i].chars[0] & 255)
#else
#define RichString_printVal(this, y, x) mvaddchstr(y, x, this.chstr)
#define RichString_printoffnVal(this, y, x, off, n) mvaddchnstr(y, x, this.chstr + off, n)
#define RichString_getCharVal(this, i) (this.chstr[i])
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
36
37
typedef struct RichString_ {
   int len;
38
39
40
#ifdef HAVE_LIBNCURSESW
   cchar_t chstr[RICHSTRING_MAXLEN+1];
#else
Hisham Muhammad's avatar
Hisham Muhammad committed
41
   chtype chstr[RICHSTRING_MAXLEN+1];
42
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
43
44
45
46
47
48
49
50
} RichString;

}*/

#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif

51
52
53
54
55
56
57
#ifdef HAVE_LIBNCURSESW

inline void RichString_appendn(RichString* this, int attrs, char* data_c, int len) {
   wchar_t data[RICHSTRING_MAXLEN];
   len = mbstowcs(data, data_c, RICHSTRING_MAXLEN);
   if (len<0)
      return;
58
   int last = MIN(RICHSTRING_MAXLEN - 1, len + this->len);
59
60
61
62
63
64
   for (int i = this->len, j = 0; i < last; i++, j++) {
      memset(&this->chstr[i], 0, sizeof(this->chstr[i]));
      this->chstr[i].chars[0] = data[j];
      this->chstr[i].attr = attrs;
   }
   this->chstr[last].chars[0] = 0;
65
   this->len = last;
Hisham Muhammad's avatar
Hisham Muhammad committed
66
67
}

68
69
70
71
72
73
inline void RichString_setAttrn(RichString *this, int attrs, int start, int finish) {
   cchar_t* ch = this->chstr + start;
   for (int i = start; i <= finish; i++) {
      ch->attr = attrs;
      ch++;
   }
74
75
}

76
77
78
79
80
81
82
83
84
int RichString_findChar(RichString *this, char c, int start) {
   wchar_t wc = btowc(c);
   cchar_t* ch = this->chstr + start;
   for (int i = start; i < this->len; i++) {
      if (ch->chars[0] == wc)
         return i;
      ch++;
   }
   return -1;
85
86
}

87
88
89
90
91
92
93
94
95
96
97
98
99
#else

inline void RichString_appendn(RichString* this, int attrs, char* data_c, int len) {
   int last = MIN(RICHSTRING_MAXLEN - 1, len + this->len);
   for (int i = this->len, j = 0; i < last; i++, j++)
      this->chstr[i] = data_c[j] | attrs;
   this->chstr[last] = 0;
   this->len = last;
}

void RichString_setAttrn(RichString *this, int attrs, int start, int finish) {
   chtype* ch = this->chstr + start;
   for (int i = start; i <= finish; i++) {
100
101
      *ch = (*ch & 0xff) | attrs;
      ch++;
Hisham Muhammad's avatar
Hisham Muhammad committed
102
103
104
   }
}

105
106
107
108
109
int RichString_findChar(RichString *this, char c, int start) {
   chtype* ch = this->chstr + start;
   for (int i = start; i < this->len; i++) {
      if ((*ch & 0xff) == c)
         return i;
110
      ch++;
Hisham Muhammad's avatar
Hisham Muhammad committed
111
   }
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
   return -1;
}

#endif

void RichString_setAttr(RichString *this, int attrs) {
   RichString_setAttrn(this, attrs, 0, this->len - 1);
}

inline void RichString_append(RichString* this, int attrs, char* data) {
   RichString_appendn(this, attrs, data, strlen(data));
}

void RichString_write(RichString* this, int attrs, char* data) {
   RichString_init(this);
   RichString_append(this, attrs, data);
Hisham Muhammad's avatar
Hisham Muhammad committed
128
129
130
}

RichString RichString_quickString(int attrs, char* data) {
131
132
   RichString str;
   RichString_initVal(str);
Hisham Muhammad's avatar
Hisham Muhammad committed
133
134
135
   RichString_write(&str, attrs, data);
   return str;
}