-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.r3
403 lines (334 loc) · 6.07 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
| main filesystem - PHREDA 2019
|
^r3/lib/print.r3
^r3/lib/sprite.r3
^r3/lib/mem.r3
^r3/lib/str.r3
^r3/lib/trace.r3
^r3/lib/fontm.r3
^r3/fntm/droidsans13.fnt
#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 +
;
:FDIR? | adr -- 1/0
|WIN| @ 4 >>
|LIN| 18 + c@ 2 >>
|RPI| 10 + c@ 2 >>
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
FINFO nivel 4 << or filen> 'filen - 8 << or
files!+
FNAME filen> strcpyl 'filen> !
;
:reload
'path
ffirst drop | quita .
fnext drop | quita ..
( fnext 1? fileadd ) 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 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 !
setactual ;
:savem
'path 'name strcpy
"/" 'name strcat
actual getname 'name strcat
'name 1024 "mem/menu.mem" save ;
|--------------------------------
:printfn | n
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 + @
0 swap fontmcolor ;
:drawl | nro --
colorfile
actual =? ( fontminv printfn fontminv ; )
printfn ;
:drawtree
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
mark
|WIN| "r3 "
|LIN| "./r3lin"
|RPI| "./r3lin " | ,s does not add a space for RPI ?
,s 'path ,s "/" ,s ,s ,eol
empty here
sys
;
:editfile
actual -? ( drop ; )
getinfo $3 and 2 <>? ( drop ; ) drop
'path 'name strcpy
"/" 'name strcat
actual getname 'name strcat
'name 1024 "mem/main.mem" save
mark
"r3 r3/sys/edit-code.r3" ,s ,eol
empty here
sys drop
;
#nfile
:newfile
1 'nfile !
;
:remaddtxt | --
| 'name ".r3" =pos 1? ( drop ; ) drop
| ".r3" swap strcat
;
:createfile
0 'nfile !
remaddtxt
| savem
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 'path "%s/%s" mformat savemem
empty
editfile
;
|--------------------------------
: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 ;
|---------------------------------
:teclado
key
>esc< =? ( exit )
<up> =? ( fup )
<dn> =? ( fdn )
<pgup> =? ( fpgup )
<pgdn> =? ( fpgdn )
<home> =? ( fhome )
<end> =? ( fend )
<ret> =? ( fenter )
<f1> =? ( fenter )
<f2> =? ( editfile )
<f3> =? ( newfile )
drop ;
:header
$888888 'ink !
0 rows 1 - gotoxy backline
$888888 $ffffff fontmcolor
| " /" emits 'path emits
" " emits 'name emits
0 0 gotoxy backline
$0 $ff00 fontmcolor
" r3" emits
$0 $ff0000 fontmcolor
"d4 " emits
0 1 gotoxy
;
:inicio
cls home
header
drawtree
teclado
acursor
;
|---------------------------------
:main
'fontdroidsans13 fontm
rows 2 - 'linesv !
rebuild
loadm
'inicio onshow
savem
;
: main ;