summaryrefslogtreecommitdiffstats
path: root/RichString.c
blob: 3bdc82b46189a2c0ccfba5dbb4640e379d071b78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67

#include "RichString.h"

#include <stdlib.h>
#include <string.h>
#include <curses.h>

#include "debug.h"
#include <assert.h>

#define RICHSTRING_MAXLEN 300

/*{

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

typedef struct RichString_ {
   int len;
   chtype chstr[RICHSTRING_MAXLEN+1];
} RichString;

}*/

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

void RichString_write(RichString* this, int attrs, char* data) {
   RichString_init(this);
   RichString_append(this, attrs, data);
}

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

inline void RichString_appendn(RichString* this, int attrs, char* data, 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[j] | attrs;
   this->chstr[last] = 0;
   this->len = last;
}

void RichString_setAttr(RichString *this, int attrs) {
   chtype* ch = this->chstr;
   for (int i = 0; i < this->len; i++) {
      *ch = (*ch & 0xff) | attrs;
      ch++;
   }
}

void RichString_applyAttr(RichString *this, int attrs) {
   chtype* ch = this->chstr;
   for (int i = 0; i < this->len; i++) {
      *ch |= attrs;
      ch++;
   }
}

RichString RichString_quickString(int attrs, char* data) {
   RichString str;
   RichString_initVal(str);
   RichString_write(&str, attrs, data);
   return str;
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy