-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample
executable file
·402 lines (376 loc) · 10.2 KB
/
example
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
#!/bin/bash
source buffermaker
## Example of buffermaker tui program
add-mode testui
:: '[left]' format-left
:: '[up]' format-up
:: '[right]' format-right
:: '[down]' format-down
:: RET link-enter
:: C-c die
:: "$(kbd k)" previous-line
:: "$(kbd j)" next-line
:: "$(kbd l)" forward-char
:: "$(kbd h)" backward-char
mode-options
:: else :
declare-buffer counter
bf_d+=(
[line]=5
[column]=0
[info]="Testui"
[mode]=testui
[filetype]='format'
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
function inc {
((incnum++))
make-render-line 3
redraw
}
function dec {
((incnum--))
make-render-line 3
redraw
}
function show-more {
buffer[7]="${buffer[6]}"
buffer[6]='More: '\
'<o> id: setnum select: set-number redraw right: obj menu left: : up: show-less down: show-less '\
'text: <f> link Set number </f> '\
'</o> '\
'<o> id: menu select: menu zero right: obj close left: obj setnum up: show-less down: show-less '\
'text: <f> menu menu </f> '\
'</o> '\
'<o> id: close select: show-less left: obj menu right: : up: show-less down: show-less '\
'text: <f> light-red x </f> '\
'</o>'
make-render-area 6 7
redraw
obj close
}
function show-less {
buffer[6]="${buffer[7]}"
unset buffer[7]
make-render-area 6 7
redraw
obj more
}
incnum=0
zero=(
text: Menu
face: menu-highlight
text: Zero
cmd: number-set 0
text: One
cmd: number-set 1
text: Ten
cmd: number-set 10
text: Hundred
cmd: number-set 100
text: Thousand
cmd: number-set 1000
text: Million
cmd: number-set 1000000
face: menu-divider
text: Close
cmd: menu.exit
text: Quit
cmd: die
)
menu.add zero
function number-set {
menu.exit
incnum="$1"
make-render-line 3
redraw
}
buffer=(
''
'<f> divider <lp> &line x/2-s/2 <h> Super number counter </h> </lp> <> <lp> &line x/2-s[-2]/2 </lp> </f>'
''
'<-> <f> highlight &bold-line <v> incnum &bold-line </f>'
''
# controls
'<o> id: inc select: inc redraw right: obj dec left: : up: : down: obj quit '\
'text: <f> link Increase </f> '\
'</o> '\
'<o> id: dec select: dec left: obj inc right: obj more up: : down: obj next '\
'text: <f> link Decrease </f> '\
'</o> '\
'<o> id: more select: show-more left: obj dec right: : up: : down: obj next '\
'text: <f> title ... </f> '\
'</o>'
# quit button
'<o> id: quit select: switch-buffer main right: obj next left: : down: : up: obj inc text: <f> red Quit </f> </o> '\
'<o> id: next select: next-test right: : left: obj quit down: : up: obj dec text: <f> link Next </f> </o>'
)
################################################################################
# Format section #
################################################################################
version_lenght=${#buffermaker_version}
function next-test {
set-buffer formats
redraw
}
declare-buffer formats
bf_d+=(
[line]=1
[column]=0
[mode]=testui
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
buffer=(
''
'<lp> - 0 '\
'<o> id: previous select: previous-test text: <f> link Previous </f> </o> </lp> <> '\
'<f> divider <lp> &line x/2-s/2-s[-2] <h> Formating </h> </lp> <> '\
'<lp> &line x/2-s[-2]/2-version_lenght+2 </lp> <> '\
'<f> hint <v> buffermaker_version </f> </f> '
'<o> id: next select: next-multi text: <f> link Next test </f> </o>'
"<-> This is a showcase of Buffermaker's integrated formating language."
''
'<-> <\> <lp> (left-pad), <\> <f> (face), <\> <h> (header), <\> <> (delete-last), <\> (escape) showcase:'
''
'<f> divider &angle-down-right <> <lp> &line 16*6 </lp> <> &angle-down-left </f>'
'<f> divider &column </f> <lp> &space 0 <h> pseudo-Table </h> </lp> <> '\
'<lp> &space 16*6-s[-2] <f> divider &column </f> </lp>'
'<f> divider &column <> <lp> &space 16*6 &column </lp> </f>'
'<f> divider &column </f> <f> title '\
'<lp> &space 0 id </lp> '\
'<lp> &space 16-s[-2] number </lp> '\
'<lp> &space 16-s[-2] amount </lp> '\
'<lp> &space 16-s[-2] cost </lp> '\
'<lp> &space 16-s[-2] date </lp> '\
'<> <lp> &space 32-s[-2] <f> divider &column </f> </lp> '\
'</f>'
)
for i in {0..16}; do
buffer+=(
"<f> divider &column </f> <lp> &space 0 $RANDOM <f> dim random </f> </lp> "\
"<lp> &space 16-s[-2] $RANDOM </lp> "\
"<lp> &space 16-s[-2] ${RANDOM}% </lp> "\
"<lp> &space 16-s[-2] \$$RANDOM </lp> "\
"<lp> &space 16-s[-2] $RANDOM/$RANDOM/$RANDOM </lp> "\
'<> <lp> &space 32-s[-2] <f> divider &column </f> </lp>'
)
done
buffer+=(
'<f> divider &angle-up-right <> <lp> &line 16*6 &angle-up-left </lp> </f>'
''
'<hr>'
'<h> Unordered list </h> <indent> &tab'
'<f> red <li> Red </f>'
'<f> yellow <li> Yellow </f>'
'<f> green <li> Green </f>'
'<f> cyan <li> Cyan </f>'
'<f> blue <li> Blue </f>'
'<f> magenta <li> Magenta </f>'
'<f> light-red <li> </f> '\
'<f> light-yellow L </f> <> <f> light-green i </f> <> <f> light-cyan g </f> <> <f> light-blue h </f> <> <f> light-magenta t </f> '\
'<f> light-red r </f> <> <f> light-yellow a </f> <> <f> light-green i </f> <> <f> light-cyan n </f> <> '\
'<f> light-blue b </f> <> <f> light-magenta o </f> <> <f> light-red w </f>'
'</indent>'
''
'<h> Ordered list </h> <indent> &tab <ol>'
'<li> Potatoes'
'<li> Beef'
'<li> Pork'
'<li> Vodka'
'<li> Salad'
'<li> Milk'
'<li> Ice cream'
'</ol> </indent> <> <hr>'
'<f> red <lp> &space x/6 </lp> <> &bold-angle-down-right <> <lp> &bold-line x/3*2 </lp> <> &bold-angle-down-left </f>'
'<f> red <lp> &space x/6 </lp> <> &bold-column </f> <lp> &space 0 <h> Boxes </h> </lp> <> '\
'<lp> &space x/3*2-s[-2] <f> red &bold-column </lp> </f>'
'<f> red <lp> &space x/6 </lp> <> &bold-column </f> <lp> &space 0 * Text1 </lp> <> '\
'<lp> &space x/3*2-s[-2] <f> red &bold-column </lp> </f>'
'<f> red <lp> &space x/6 </lp> <> &bold-column </f> <lp> &space 0 * Text2 </lp> <> '\
'<lp> &space x/3*2-s[-2] <f> red &bold-column </lp> </f>'
'<f> red <lp> &space x/6 </lp> <> &bold-column </f> <lp> &space 0 * Text3 </lp> <> '\
'<lp> &space x/3*2-s[-2] <f> red &bold-column </lp> </f>'
'<f> red <lp> &space x/6 </lp> <> &bold-angle-up-right <> <lp> &bold-line x/3*2 </lp> <> &bold-angle-up-left </f>'
''
'<hr>'
'<h> Links </h>'
''
'<tab> <link> die : Quit </link> (using <\> <link>)'
'<tab> <a> die : <f> hint Quit </f> </a> (using <\> <a>)'
'<tab> <o> id: testlink select: die text: <f> highlight Quit </f> </o> (using <\> <o>)'
'<f> divider <hr> </f>'
'<h> Basic format </h>'
'<indent> &tab'
'<b> bold </b>'
'<strong> strong </strong>'
'<i> italic </strong> </indent>'
''
'<hr>'
'<h> Checkboxes </h>'
''
'<-> <ch> test0 </ch> name0 (variable: <v> test0 <> )'
'<-> <ch> test1 </ch> name1 (variable: <v> test1 <> )'
'<-> <ch> test2 </ch> name2 (variable: <v> test2 <> )'
'<-> <ch> test3 </ch> name3 (variable: <v> test3 <> )'
'<-> <ch> test4 </ch> name4 (variable: <v> test4 <> )'
'<-> <ch> test5 </ch> name5 (variable: <v> test5 <> )'
'<-> <ch> test6 </ch> name6 (variable: <v> test6 <> )'
'<-> <ch> test7 </ch> name7 (variable: <v> test7 <> )'
'<-> <ch> test8 </ch> name8 (variable: <v> test8 <> )'
'<-> <ch> test9 </ch> name9 (variable: <v> test9 <> )'
''
)
function previous-test {
set-buffer counter
redraw
}
################################################################################
declare-buffer builtin
bf_d+=(
[line]=1
[column]=0
[mode]=testui
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
buffer=(
''
'<h1> Builtin Buffers </h1>'
''
'<o> id: msgbox select: msgbox-test text: <f> button Msgbox </f> </o>'
'<o> id: dialogbox select: dialogbox-test text: <f> button Dialogbox </f> </o>'
'<-> <f> hint dialogbox-output </f>'
)
function msgbox-test {
local -a test_msgbox
local test_msgbox_title
test_msgbox_title='Title'
test_msgbox=(
'<f> red A very serious error!!! </f>'
'<f> yellow But it might be just fine </f>'
"don't worry"
)
msgbox test_msgbox
}
function dialogbox-test {
local test_dialogbox_title='Question?'
local -a test_dialogbox=(
'<f> blue Would you like to buffer? </f>'
"<f> hint it's fine to buffer </f>"
'and now choose...'
)
dialogbox test_dialogbox
}
function test_dialogbox.yes {
box.close
buffer[5]='<-> <f> highlight YES </f>'
make-render-line 5
redraw
}
function test_dialogbox.no {
box.close
buffer[5]='<-> <f> highlight NO </f>'
make-render-line 5
redraw
}
################################################################################
# Multi buffer example #
################################################################################
function next-multi {
set-buffer mbackground
redraw
set-buffer mlist_title
redraw
set-buffer mlist
redraw
}
declare-buffer mbackground
bf_d+=(
[line]=1
[column]=0
[mode]=testui
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
buffer=(
''
'<f> hint <lp> &space x/2-s/2 Multi buffer test </lp> </f>'
)
declare-buffer mlist_title
bf_d+=(
[loc-y]=4
[loc-x]=4
[size-x]=$((COLUMNS/2-8))
[size-y]=$((LINES/2-8))
[line]=1
[column]=0
[mode]=testui
[background]=background-highlight
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
buffer=(
''
'<f> <v> bf_d[background] <lp> &space x/2-s/2 Multi buffer test </lp> </f>'
)
declare-buffer mlist
bf_d+=(
[loc-y]=5
[loc-x]=4
[size-x]=$((COLUMNS/2-8))
[size-y]=$((LINES/2-9))
[line]=1
[column]=0
[mode]=testui
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
buffer=(
''
''
'item1'
'item2'
'item3'
)
################################################################################
# Final rendering #
################################################################################
declare-buffer main
bf_d+=(
[line]=4
[column]=6
[mode]=testui
[syntax]=syntax-format
[syntax-exec]=1
[render-type]=per-char
)
mapfile -t -O 1 buffer <<'EOF'
<h1> Buffermaker </h1>
<subh1> Program example && reference </subh1>
<h> Demos </h>
<-> <li> <link> switch-buffer counter : Test program </link>
<-> <li> <link> switch-buffer formats : Format </link>
<-> <li> <link> switch-buffer builtin : Builtin buffers </link>
<-> <li> <link> next-multi : Multi buffer </link>
<h> More Ebashs programs </h>
<-> <li> <link> xdg-open https://github.com/aeknt/bffm : Bffm </link>
<-> <li> <link> xdg-open https://github.com/aeknt/ebashs : Ebashs </link> (will probably be outdated)
<h> More </h>
<-> <li> <link> buffermaker : About BufferMaker </link>
EOF
stty -echo
hooks[die]='stty echo'
set-buffer main
load-default-config
init-var
redraw
obj next
input-loop