-
Notifications
You must be signed in to change notification settings - Fork 10
/
term.sh
executable file
·304 lines (259 loc) · 5.92 KB
/
term.sh
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
#!/bin/bash
## version
VERSION="0.0.1"
## coords
(( _x=0 ))
(( _y=0 ))
## output error to stderr
error () {
printf >&2 "error: %s\n" "${@}"
}
## output usage
usage () {
echo "usage: term [-hV] <command> [args]"
}
## write code to terminal
term_write () {
local let c="${1}"
## ensure
if [ -z "${c}" ]; then
return 1
fi
echo -en "\e[${c}"
return 0
}
## cursor operations
term_cursor () {
local op="$1"
if [ -z "${op}" ]; then
return 1
fi
case "${op}" in
hide) term write "?25l" ;;
show) term write "?25h" ;;
*) return 1 ;;
esac
return 0
}
## move to (x, y)
term_move () {
local let x="${1}"
local let y="${2}"
## ensure
if [ -z "${x}" ] || [ -z "${y}" ]; then
return 1
fi
## set state
(( _x = x ))
(( _y = y ))
## write
printf "\e[%d;%d;f" "${y}" "${x}"
return 0
}
term_transition () {
local let x="${1}"
# shellcheck disable=SC2034
local let y="${2}"
if [ -z "${x}" ] || [ -z "${y}" ]; then
return 1
fi
(( x = x + _x ))
(( y = y + _y ))
term move "${x}" "${y}"
return 0
}
## set terminal color
term_color () {
local color="${1}"
if [ -z "${color}" ]; then
return 1
fi
case "${color}" in
black) printf "\e[30m" ;;
red) printf "\e[31m" ;;
green) printf "\e[32m" ;;
yellow) printf "\e[33m" ;;
blue) printf "\e[34m" ;;
magenta) printf "\e[35m" ;;
cyan) printf "\e[36m" ;;
white) printf "\e[37m" ;;
gray|grey) printf "\e[90m" ;;
*) return 1 ;;
esac
return 0
}
## set term background color
term_background () {
local color="${1}"
if [ -z "${color}" ]; then
return 1
fi
case "${color}" in
black) printf "\e[40m" ;;
red) printf "\e[41m" ;;
green) printf "\e[42m" ;;
yellow) printf "\e[43m" ;;
blue) printf "\e[44m" ;;
magenta) printf "\e[45m" ;;
cyan) printf "\e[46m" ;;
white) printf "\e[47m" ;;
*) return 1 ;;
esac
return 0
}
## reset terminal escape sequence
term_reset () {
term write "0m"
}
## make terminal bright
term_bright () {
term write "1m"
}
## make terminal dim
term_dim () {
term write "2m"
}
## make terminal underlined
term_underline () {
term write "4m"
}
## make terminal blink
term_blink () {
term write "5m"
}
## make terminal reverse
term_reverse () {
term write "7m"
}
## make terminal hidden
term_hidden () {
term write "8m"
}
## clear a terminal section by name
term_clear () {
local section="${1}"
if [ -z "${section}" ]; then
return 1
fi
case "${section}" in
start) printf "\e[1K";;
end) printf "\e[K";;
line) printf "\e[2K";;
screen|up) printf "\e[1J";;
down) printf "\e[J";;
*) return 1 ;;
esac
return 0
}
##
# Term functions
#
# usage: term [-hV] <command>
##
term () {
local arg="$1"
local cmd=""
shift
case "${arg}" in
## flags
-V|--version)
echo "${VERSION}"
return 0
;;
-h|--help)
usage
## commands
{
echo
echo "commands: "
echo
echo " write <code> Write a terminal escape code"
echo " cursor <op> Perform operation to cursor"
echo " color <color> Set terminal color by name (See colors)"
echo " background <color> Set terminal background by name (See colors)"
echo " move <x> <y> Move to (x, y)"
echo " transition <x> <y> Transition to (x, y)"
echo " clear <section> Clear terminal section by name (See sections)"
echo " reset Reset the terminal escape code sequence"
echo " bright Write bright escape code"
echo " dim Write dim escape code"
echo " underline Write underline escape code"
echo " blink Write blink escape code"
echo " reverse Write reverse escape code"
echo " hidden Write hidden escape code"
}
## colors
{
echo
echo "colors:"
echo
term color black
echo " black $ term color black"
term color red
echo " red $ term color red"
term color green
echo " green $ term color green"
term color yellow
echo " yellow $ term color yellow"
term color blue
echo " blue $ term color blue"
term color magenta
echo " magenta $ term color magenta"
term color cyan
echo " cyan $ term color cyan"
term color white
echo " white $ term color white"
term color gray
echo " gray|grey $ term color gray"
term reset
}
## sections
{
echo
echo "sections:"
echo
echo " start Start of line"
echo " end End of line"
echo " up Upper section"
echo " down Lower section"
echo " line Current line"
echo " screen Entire screen"
}
return 0
;;
*)
cmd="term_${arg}"
if type "${cmd}" > /dev/null 2>&1; then
"${cmd}" "${@}"
return $?
else
if [ -n "${arg}" ]; then
error "Unknown argument: \`${arg}'"
fi
usage
return 1
fi
;;
esac
}
## detect if being sourced and
## export if so else execute
## main function with args
if [[ ${BASH_SOURCE[0]} != "$0" ]]; then
export -f term
export -f term_dim
export -f term_move
export -f term_reset
export -f term_write
export -f term_clear
export -f term_color
export -f term_blink
export -f term_cursor
export -f term_bright
export -f term_reverse
export -f term_underline
export -f term_transition
export -f term_background
else
term "${@}"
fi