-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmt.h
More file actions
166 lines (150 loc) · 4.92 KB
/
Copy pathtmt.h
File metadata and controls
166 lines (150 loc) · 4.92 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* Copyright (c) 2017 Rob King
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the copyright holder nor the
* names of contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS,
* COPYRIGHT HOLDERS, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef TMT_H
#define TMT_H
#include <stdbool.h>
#include <stddef.h>
#include "wchar.h"
/**** INVALID WIDE CHARACTER */
#define TMT_INVALID_CHAR ((wchar_t)0x007f) /* use DEL box glyph for smaller fonts */
#ifndef TMT_INVALID_CHAR
#define TMT_INVALID_CHAR ((wchar_t)0xfffd)
#endif
/**** INPUT SEQUENCES */
#define TMT_KEY_UP "\033[A"
#define TMT_KEY_DOWN "\033[B"
#define TMT_KEY_RIGHT "\033[C"
#define TMT_KEY_LEFT "\033[D"
#define TMT_KEY_HOME "\033[1~"
#define TMT_KEY_END "\033[4~"
#define TMT_KEY_INSERT "\033[L"
#define TMT_KEY_BACKSPACE "\x7f"
#define TMT_KEY_DELETE "\033[3~"
#define TMT_KEY_ESCAPE "\x1b"
#define TMT_KEY_BACK_TAB "\033\x09"
#define TMT_KEY_PAGE_UP "\033[5~"
#define TMT_KEY_PAGE_DOWN "\033[6~"
#define TMT_KEY_F1 "\033[[A"
#define TMT_KEY_F2 "\033[[B"
#define TMT_KEY_F3 "\033[[C"
#define TMT_KEY_F4 "\033[[D"
#define TMT_KEY_F5 "\033[[E"
#define TMT_KEY_F6 "\033[17~"
#define TMT_KEY_F7 "\033[18~"
#define TMT_KEY_F8 "\033[19~"
#define TMT_KEY_F9 "\033[20~"
#define TMT_KEY_F10 "\033[21~"
#define TMT_KEY_F11 "\033[23~"
#define TMT_KEY_F12 "\033[24~"
/**** BASIC DATA STRUCTURES */
typedef struct TMT TMT;
/* colors arranged in CGA/EGA palette order */
typedef enum{
TMT_COLOR_BLACK = 0,
TMT_COLOR_BLUE,
TMT_COLOR_GREEN,
TMT_COLOR_CYAN,
TMT_COLOR_RED,
TMT_COLOR_MAGENTA,
TMT_COLOR_BROWN,
TMT_COLOR_LTGRAY,
TMT_COLOR_GRAY,
TMT_COLOR_LTBLUE,
TMT_COLOR_LTGREEN,
TMT_COLOR_LTCYAN,
TMT_COLOR_LTRED,
TMT_COLOR_LTMAGENTA,
TMT_COLOR_YELLOW,
TMT_COLOR_WHITE,
TMT_COLOR_DEFAULT
} tmt_color_t;
typedef struct TMTATTRS TMTATTRS;
struct TMTATTRS{
bool bold:1;
bool dim:1;
bool underline:1;
bool blink:1;
bool reverse:1;
bool invisible:1;
tmt_color_t fg:5;
tmt_color_t bg:5;
} __attribute__((packed));
typedef struct TMTCHAR TMTCHAR;
struct TMTCHAR{
wchar_t c;
TMTATTRS a;
} __attribute__((packed));
typedef struct TMTCURSOR TMTCURSOR;
struct TMTCURSOR{
size_t r;
size_t c;
bool hidden;
};
typedef struct TMTUPDATE TMTUPDATE;
struct TMTUPDATE{
size_t x, y;
size_t w, h;
bool dirty;
};
typedef struct TMTLINE TMTLINE;
struct TMTLINE{
int reserved;
TMTCHAR chars[];
};
typedef struct TMTSCREEN TMTSCREEN;
struct TMTSCREEN{
size_t nline;
size_t ncol;
TMTUPDATE update;
TMTLINE **lines;
};
/**** CALLBACK SUPPORT */
typedef enum{
TMT_MSG_MOVED,
TMT_MSG_UPDATE,
TMT_MSG_ANSWER,
TMT_MSG_TITLE,
TMT_MSG_BELL,
TMT_MSG_CURSOR,
TMT_MSG_SETMODE,
TMT_MSG_UNSETMODE,
TMT_MSG_SCROLL,
} tmt_msg_t;
#define TMT_HAS_MSG_SCROLL 1
typedef void (*TMTCALLBACK)(tmt_msg_t m, struct TMT *v, const void *r, void *p);
/**** PUBLIC FUNCTIONS */
TMT *tmt_open(size_t nline, size_t ncol, TMTCALLBACK cb, void *p, const wchar_t *acs);
bool tmt_unicode_to_acs(TMT *vt, bool v);
void tmt_close(TMT *vt);
bool tmt_resize(TMT *vt, size_t nline, size_t ncol);
void tmt_write(TMT *vt, const char *s, size_t n);
const TMTSCREEN *tmt_screen(const TMT *vt);
const TMTCURSOR *tmt_cursor(const TMT *vt);
void tmt_clean(TMT *vt);
void tmt_dirty(TMT *vt, size_t x, size_t y, size_t w, size_t h);
void tmt_reset(TMT *vt);
#endif