-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.r3
449 lines (376 loc) · 7.05 KB
/
main.r3
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
| main filesystem
| PHREDA 2019
|------------------------
^r3/lib/gui.r3
^r3/lib/input.r3
^r3/lib/mem.r3
^r3/lib/str.r3
^r3/lib/trace.r3
^r3/lib/fontm.r3
^media/fntm/droidsans13.fnt
#reset 0
#path * 1024
#name * 1024
#nfiles
#files * 8192
#files> 'files
#files< 'files
#filen * $3fff
#filen> 'filen
#nivel
#pagina
#actual
#linesv 15
|--------------------------------
:FNAME | adr -- adrname
|WIN| 44 +
|LIN| 19 +
|RPI| 11 +
|MAC| 21 + | when _DARWIN_FEATURE_64_BIT_INODE is set !
;
:FDIR? | adr -- 1/0
|WIN| @ 4 >>
|LIN| 18 + c@ 2 >>
|RPI| 10 + c@ 2 >>
|MAC| 20 + c@ 2 >> | when _DARWIN_FEATURE_64_BIT_INODE is set !
1 and ;
:FINFO | adr -- adr info
dup FDIR? 0? ( 2 + ; ) drop 0 ;
:getname | nro -- ""
2 << 'files + @ 8 >> 'filen + ;
:getinfo | nro -- info
2 << 'files + @ $ff and ;
:getlvl | nro -- info
2 << 'files + @ 4 >> $f and ;
:chginfo | nro --
2 << 'files + dup @ $1 xor swap ! ;
|--------------------------------
:files.clear
0 'nfiles !
'filen 'filen> !
'files dup 'files> ! 'files< !
;
:files!+
files> ( files< >?
4 - dup @+ swap !
) drop
files< !+ 'files< !
4 'files> +!
;
:files.free
0 'files ( files> <?
@+ pick2 >? ( swap rot )
drop ) drop
8 >> 'filen +
( c@+ 1? drop ) drop
'filen> !
;
:fileadd
dup FNAME
dup ".." = 1? ( 3drop ; ) drop
dup "." = 1? ( 3drop ; ) drop
drop
FINFO nivel 4 << or filen> 'filen - 8 << or
files!+
FNAME filen> strcpyl 'filen> !
;
:reload
'path
ffirst ( fileadd fnext 1? ) drop
files> 'files - 2 >> 'nfiles !
;
:rebuild
"r3" 'path strcpy
files.clear
0 'pagina !
0 'nivel !
reload
;
|-----------------------------
:makepath | actual nivel --
0? ( drop
"r3/" 'path strcpy
getname 'path strcat
; )
over 1 -
( dup getlvl pick2 >=?
drop 1 - ) drop
over 1 - makepath drop
"/" 'path strcat
getname 'path strcat
;
:expande
actual dup
getlvl makepath
actual chginfo
actual getlvl 1 + 'nivel !
actual 1 + 2 << 'files + 'files< !
reload
;
:remfiles
actual chginfo
actual getlvl 1 +
actual 1 +
( dup getlvl pick2 >=?
drop 1 + ) drop
nip
actual 1 +
( swap nfiles <?
dup 2 << 'files + @
pick2 2 << 'files + !
1 + swap 1 + ) drop
2 << 'files + 'files> !
files> 'files - 2 >> 'nfiles !
files.free
;
:contrae
'path ( c@+ 1? drop ) drop 1 -
( 'path >?
dup c@ $2f =? ( drop 0 swap c! remfiles ; )
drop 1 - ) drop
remfiles ;
|-------------
#nameaux * 1024
:next/ | adr -- adr'
( c@+ 1?
$2f =? ( drop 0 swap 1 - c!+ ; )
drop ) nip ;
:getactual | adr actual -- actual
( nfiles <?
dup getname pick2 = 1? ( drop nip ; )
drop 1 + ) nip ;
|--------------------------
:remlastpath
'path ( c@+ 1? drop ) drop 1 -
( dup c@ $2f <>? drop 1 - ) drop
0 swap c! ;
:setactual
actual dup getlvl makepath
actual getinfo 1 >? ( remlastpath ) drop
actual
dup getinfo $3 and 2 <? ( 2drop "" 'name strcpy ; ) drop
getname 'name strcpy
;
|---------------------
:traverse | adr -- adrname
dup next/ 0? ( drop ; )
( dup next/ 1?
swap
actual getactual 'actual !
expande
) drop ;
:loadm
'nameaux "mem/menu.mem" load
'nameaux =? ( drop ; )
'nameaux dup c@ 0? ( 2drop ; ) drop
0 'actual !
0 'path !
traverse
actual getactual nip
pagina linesv + 1 - >=? ( dup linesv - 1 + 'pagina ! )
'actual !
drop
setactual
;
:savem
'path 'name strcpy
"/" 'name strcat
actual getname 'name strcat
'name 1024 "mem/menu.mem" save ;
|--------------------------------
:printfn | n
sp
dup getlvl 1 << nsp
dup getinfo $3 and "+- ." + c@ emit
sp getname emits sp
;
#filecolor $ff00 $bf00 $bfbfbf $3f00
:colorfile
dup getinfo $3 and 2 << 'filecolor + @ 'ink ! ;
:backcursor
$444444 'ink !
sw 1 >> cch 0 ccy fillrect
;
:drawl | nro --
actual =? ( backcursor )
colorfile
printfn ;
:drawtree
0 1 gotoxy
0 ( linesv <?
dup pagina +
nfiles >=? ( 2drop ; )
| 'clicktree onLineClick
drawl
cr 1 + ) drop ;
|--------------------------
:remlastpath
'path ( c@+ 1? drop ) drop 1 -
( dup c@ $2f <>? drop 1 - ) drop
0 swap c! ;
|--------------------------------
:runfile
actual -? ( drop ; )
getinfo $7 and
2 <? ( drop ; )
drop
'path
|WIN| "r3 ""%s/%s"""
|LIN| "./r3lin ""%s/%s"""
|RPI| "./r3rpi ""%s/%s"""
|MAC| "./r3mac %s/%s"
sprint sys
;
:editfile
actual -? ( drop ; )
getinfo $3 and 2 <>? ( drop ; ) drop
actual getname 'path "%s/%s" sprint 'name strcpy
'name 1024 "mem/main.mem" save
|WIN| "r3 r3/editor/code-edit.r3"
|LIN| "./r3lin r3/editor/code-edit.r3"
|RPI| "./r3rpi r3/editor/code-edit.r3"
|MAC| "./r3mac r3/editor/code-edit.r3"
sys
;
#nfile
:newfile
1 'nfile !
0 'name !
;
:remaddtxt | --
'name ".r3" =pos 1? ( drop ; ) drop
".r3" swap strcat
;
:createfile
remaddtxt
'name 'path "%s/%s" sprint 'name strcpy
mark
"^r3/lib/gui.r3" ,ln ,cr
":main" ,ln
" cls home" ,ln
" ""Hello Human!"" print" ,ln
" key >esc< =? ( exit ) drop" ,ln
" ;" ,ln ,cr
": 'main onshow ;" ,ln
'name savemem
empty
'name 1024 "mem/main.mem" save
'name 1024 "mem/menu.mem" save
|WIN| "r3 r3/editor/code-edit.r3"
|LIN| "./r3lin r3/editor/code-edit.r3"
|RPI| "./r3rpi r3/editor/code-edit.r3"
|MAC| "./r3mac r3/editor/code-edit.r3"
sys
rebuild
loadm
;
|--------------------------------
:fenter
actual
getinfo $f and
0? ( drop expande ; )
1 =? ( drop contrae ; )
drop
actual
getname
".r3" =pos 1? ( drop runfile ; ) drop
drop
;
:fdn
actual nfiles 1 - >=? ( drop ; )
1 + pagina linesv + 1 - >=? ( dup linesv - 1 + 'pagina ! )
'actual !
setactual ;
:fup
actual 0? ( drop ; )
1 - pagina <? ( dup 'pagina ! )
'actual !
setactual ;
:fpgdn
actual nfiles 1 - >=? ( drop ; )
20 + nfiles >? ( drop nfiles 1 - ) 'actual !
actual pagina linesv + 1 -
>=? ( dup linesv - 1 + 'pagina ! ) drop
setactual ;
:fpgup
actual 0? ( drop ; )
20 - 0 <? ( drop 0 )
pagina <? ( dup 'pagina ! )
'actual !
setactual ;
:fhome
actual 0? ( drop ; ) drop
0 'actual ! 0 'pagina !
setactual ;
:fend
actual nfiles 1 - >=? ( drop ; ) drop
nfiles 1 - 'actual !
actual 1 + pagina linesv + 1 -
>=? ( dup linesv - 1 + 'pagina ! ) drop
setactual ;
|---------------------------------
:enter
nfile 0? ( drop fenter ; ) drop
0 'nfile !
'name c@ 0? ( drop setactual ; ) drop
createfile
;
:teclado
key
>esc< =? ( exit )
<up> =? ( fup )
<dn> =? ( fdn )
<pgup> =? ( fpgup )
<pgdn> =? ( fpgdn )
<home> =? ( fhome )
<end> =? ( fend )
<ret> =? ( enter )
<f1> =? ( fenter )
<f2> =? ( editfile )
<f3> =? ( newfile )
drop ;
:pfilename
nfile 0? ( drop
$444444 'ink ! 0 rows 2 - gotoxy backline
$ffffff 'ink ! " " emits
'path emits "/" emits 'name emits ; ) drop
$006600 'ink ! 0 rows 2 - gotoxy 2 backlines
$ffffff 'ink ! " " emits
'path emits "/" emits
'name 32 input ;
:btnf | "" "fx" --
sp
$ff0000 'ink ! backprint
$ffffff 'ink ! emits
$ffff 'ink ! emits
;
:header
pfilename
0 rows 1 - gotoxy
$444444 'ink ! backline
"Run " "F1" btnf
"Edit " "F2" btnf
"New " "F3" btnf
$444444 'ink !
0 0 gotoxy backline
$ff00 'ink !
" r3 " emits
$ffffff 'ink !
;
:inicio
cls home gui
header
drawtree
teclado
acursor
;
|---------------------------------
:main
'fontdroidsans13 fontm
rows 3 - 'linesv !
rebuild
loadm
'inicio onshow
savem
;
: main ;