-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathterminal.c
136 lines (105 loc) · 2.99 KB
/
terminal.c
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
#include <stdlib.h>
#include <string.h>
#include "terminal.h"
terminal_t *newTerminal(int w, int h,
void (*render)(struct terminal* term),
void (*render_cursor)(struct terminal* term)) {
terminal_t *term = malloc(sizeof(terminal_t));
term->w = w;
term->h = h;
term->render = render;
term->render_cursor = render_cursor;
terminalClearScreen(term);
return term;
}
int terminalRows(terminal_t *term) {
return term->h;
}
int terminalColumns(terminal_t *term) {
return term->w;
}
void terminalSetCursor(terminal_t *term, int row, int column) {
term->row = row;
term->column = column;
}
void terminalSetRow(terminal_t *term, int row) {
term->row = row;
}
void terminalSetColumn(terminal_t *term, int column) {
term->column = column;
}
int terminalRow(terminal_t *term) {
return term->row;
}
int terminalColumn(terminal_t *term) {
return term->column;
}
void terminalMoveRight(terminal_t *term) {
term->column++;
if (term->column == term->w) {
term->column = 0;
term->row++;
}
}
void terminalMoveLeft(terminal_t *term) {
term->column++;
if (term->column == -1) {
term->column = term->w - 1;
term->row--;
}
}
void terminalPutChar(terminal_t *term, char c) {
term->buffer[term->row * term->w + term->column] = c;
terminalMoveRight(term);
}
void terminalPutString(terminal_t *term, char *str) {
int x = term->column,
y = term->row;
terminalClearScreen(term);
for (int i = 0; ; ++i) {
// exit when the string is finished
if (!str[i]) break;
if (str[i] == '\n' /* || x == term->w */) {
x = 0;
++y;
}
else if (x < term->w && y < term->h) {
term->buffer[y*term->w + x] = str[i];
++x;
}
}
}
void terminalCLEOL(terminal_t *term);
void terminalCLEOS(terminal_t *term);
void terminalClearLine(terminal_t *term);
void terminalClearScreen(terminal_t *term) {
memset(term->buffer, ' ', MAX_TERMINAL_BUFFER);
term->buffer[MAX_TERMINAL_BUFFER] = '\0';
term->row = 0;
term->column = 0;
}
void terminalDisplayCursor(terminal_t *T) {
// plug something here, the terminal is abstract
}
/* void terminalPutString2(terminal_t *term, char *string) { */
/* // do no wrapping, but clip chars instead */
/* int x = 0, y = 0; */
/* terminalClearScreen(term); */
/* for (int i = 0; ; ++i) { */
/* // exit when the string is finished */
/* if (!string[i]) break; */
/* if (string[i] == '\n' /\* || x == term->w *\/) { */
/* x = 0; */
/* ++y; */
/* } */
/* else if (x < term->w && y < term->h) { */
/* term->buffer[y*term->w + x] = string[i]; */
/* ++x; */
/* } */
/* } */
/* } */
char *terminalRender(terminal_t *term) {
// hmm......
// could used a plugged function to render?
return term->buffer;
}