forked from phreda4/r4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.txt
488 lines (415 loc) · 7.94 KB
/
main.txt
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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
| :r4/menu
| PHREDA 2015
|------------------------
^r4/lib/gui.txt
^r4/lib/btn.txt
^r4/lib/input.txt
^r4/lib/codecolor.txt
|^r4/lib/rfont.txt
|^inc/rft/robotoregular.rft
^r4/lib/fontm.txt
^inc/fntm/droidsans13.txt
^r4/system/mem-ed.txt
#nfiles
#files )( 8192
#files> 'files
#files< 'files
#filen )( $3fff
#filen> 'filen
#linesv 20
#nivel 0
#pagina 0
#actual 0
#path )( 1024
#name )( 64
#source 0
#padin )( 1024
#padout
|------------------- OS DEp ---------------------
:FNAME | adr -- adrname
|WIN| 44 +
|AND| 19 +
;
:FDIR? | adr -- 1/0
|WIN| @ $10
|AND| 18 + c@ 4
=? ( 1 )( 0 ) nip ;
|----------------------------------------
#iconcolor $7f7f00 $3f00 $7f7f $7f007f $7f7f00 $7f0000 $7f00 $ff $ff
#tipoext "bmr" "inc" "rmt" "spr" "vsp" "ico"
:FINFO | adr -- adr info
dup FDIR? 1? ( 0 nip ; ) drop
dup FNAME
".txt" =pos 1? ( 2drop 1 ; ) drop
".bmr" =pos 1? ( 2drop 2 ; ) drop
".inc" =pos 1? ( 2drop 3 ; ) drop
".rmt" =pos 1? ( 2drop 4 ; ) drop
".spr" =pos 1? ( 2drop 5 ; ) drop
".vsp" =pos 1? ( 2drop 6 ; ) drop
| ".ico" =pos 1? ( 2drop 7 ; ) drop
7 nip ;
: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> !
;
:files.getpath
'path
ffirst drop | quita .
fnext drop
( fnext 1? )(
FINFO nivel 4 << or filen> 'filen - 8 << or
files!+
FNAME filen> strcpyl 'filen> !
) drop
files> 'files - 2 >> 'nfiles !
;
: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 @ $8 xor swap ! ;
:rebuild
"r4" 'path strcpy
files.clear
0 'pagina !
0 'nivel !
files.getpath
;
|-----------------------------
:makepath | actual nivel --
0? ( drop getname "r4/%s" mprint 'path strcpy ; )
over 1-
( dup getlvl pick2 >=? )( drop 1- ) drop
over 1- makepath drop
"/" 'path strcat
getname 'path strcat
;
:expande
0 'name !
actual
dup getlvl makepath
actual chginfo
actual getlvl 1+ 'nivel !
actual 1+ 2 << 'files + 'files< !
files.getpath
;
: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
0 'name !
'path ( c@+ 1? )( drop ) drop 1-
( 'path >? )(
dup c@ $2f =? ( drop 0 swap c! remfiles ; )
drop 1- ) drop
remfiles ;
|-------------
#pathaux )( 1024
#nameaux )( 64
:next/ | adr -- adr'
( c@+ 1? )(
$2f =? ( drop 0 swap 1- c!+ ; )
drop ) nip ;
:getactual | adr actual --
( nfiles <? )(
dup getname pick2 =s 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 $7 and 1? ( remlastpath ) drop
actual getname 'name strcpy
;
:loadfile
actual getinfo $f and 6 >? ( drop ; ) drop
source 'name 'path "%s/%s" mprint load 0 swap ! ;
|---------------------
:loadm
'path "mem/menu.mem" load 'path =? ( drop ; ) drop
'path dup c@ 0? ( 2drop ; ) drop
'pathaux strcpy
'name 'nameaux strcpy
0 'actual !
'pathaux next/ 0? ( drop ; )
( dup next/ swap | sig act
actual getactual 'actual !
expande
0? ) drop
'nameaux
dup c@ 0? ( 2drop ; ) drop
actual getactual
pagina linesv + 1- >=? ( dup linesv - 1+ 'pagina ! )
'actual !
'nameaux 'name strcpy
loadfile
;
:savem
'path 1024 64 + "mem/menu.mem" save ;
|--------------------------------------
:nrun | tipo --
7 >? ( drop ; )
'tipoext swap 2 - ( 1? )( swap >>0 swap 1- ) drop >r
mark
'name 'path "%s/%s" ,print
r@ "mem/inc-%w.mem" mprint savemem
empty
r> "r4/system/inc-%w.txt" mprint run ;
:runfile
actual -? ( drop ; )
getinfo $7 and
0? ( drop ; )
setactual savem
1 >? ( nrun ; )
drop
'name 'path "%s/%s" mprint run
;
:runedit
ed.load
'name 'path "%s/%s" mprint 'ed.nombre =
0? ( 'name 'path "%s/%s" mprint 'ed.nombre strcpy 0 'ed.ncar ! 0 'ed.ipan ! ed.save )
drop
|win| "r4/IDE/edit-code.txt" run
|and| "r4/system/edit-codea.txt" run
;
:editfile
actual -? ( drop ; )
getinfo $7 and
0? ( drop ; )
setactual savem
1 >? ( nrun ; )
drop
runedit
;
:enter
actual getinfo $f and
0? ( drop expande ; )
8 =? ( drop contrae ; )
drop
setactual savem
runedit
;
:enter2
| 'padin exer:
0 'padin !
refreshfoco
;
#nfile
:newfile
setactual
1 'nfile !
0 'name !
;
:remaddtxt | --
'name ".txt" =pos 1? ( drop ; ) drop
".txt" swap strcat ;
:createfile
0 'nfile !
remaddtxt
savem
mark
"^r4/lib/gui.txt" ,ln ,cr
":main" ,ln
" show clrscr" ,ln
" ""Hello Human!"" print " ,ln
" 'exit >esc<" ,ln
" cminiflecha ;" ,ln ,cr
": main ;" ,ln
'name 'path "%s/%s" mprint savemem
empty
runedit
;
|--------------------------------------------
:toolbar
blanco
sp 'path print "/" print
nfile 0? ( actual getinfo 1 and 1? ( 'name print ) drop )( 'name 32 inputcell 'createfile <enter> ) drop
cols 2/ 0 gotoxy
'runfile dup <f1> "F1 Run" $fff37b flink sp
'editfile dup <f2> "F2 Edit" $fff37b flink sp
'newfile dup <f3> "F3 New" $fff37b flink sp
cr
;
|--------------------------------------------
:fdn
actual nfiles 1- >=? ( drop ; )
1+ pagina linesv + 1- >=? ( dup linesv - 1+ 'pagina ! )
'actual !
setactual
loadfile
;
:fpgdn
actual nfiles 1- >=? ( drop ; )
20 + nfiles >? ( nfiles 1- 'actual ! drop )( 'actual ! )
actual pagina linesv + 1- >=? ( dup linesv - 1+ 'pagina ! ) drop
setactual
loadfile
;
:fend
actual nfiles 1- >=? ( drop ; ) drop
nfiles 1- 'actual !
actual 1+ pagina linesv + 1- >=? ( dup linesv - 1+ 'pagina ! ) drop
setactual
loadfile
;
| --
:fup actual 0? ( drop ; )
1- pagina <? ( dup 'pagina ! )
'actual !
setactual
loadfile
;
:fpgup
actual 0? ( drop ; )
20 - 0 <? ( drop 0 )
pagina <? ( dup 'pagina ! )
'actual !
setactual
loadfile
;
:fhome actual 0? ( drop ; ) drop
0 'actual !
0 'pagina !
setactual
loadfile
;
|-----------------------------
:boton | nrp 'vector nombre --
swap flatbtn
;
:aa 0 source !
dup getinfo $f and
0? ( drop expande ; )
8 =? ( drop contrae ; )
drop
setactual
loadfile
;
:inka
over actual =? ( 2drop $444444 ink linefill $ffffff ink ; ) drop ink ;
:ta | nro -- nro
$9FA5B5 inka
dup getlvl 2* 1+ nsp
dup getname print
;
:t0 | nro -- nro
$9FA5B5 inka
dup getlvl 2* nsp " + " print
dup getname print "/" print
| verde [ dup 'actual ! enter ; ] boton
;
:t8 | nro -- nro
$E4C189 inka
dup getlvl 2* nsp " - " print
dup getname print "/" print
| cyan [ dup 'actual ! enter ; ] boton
;
#info 't0 'ta 'ta 'ta 'ta 'ta 'ta 'ta 't8
:drawl
| actual =? ( ">>" printx )
dup getinfo $f and 2 << 'info + @ exec ;
:clicktree |
dup 'actual !
setactual
actual getinfo $f and
0? ( drop expande ; )
8 =? ( drop contrae ; )
drop
loadfile
;
:drawtree
| ccw 5 <<
sw 2 >> 'tx2 !
| $222222 ink
| tx1 ccy tx2 ty2 cajaf
0 ( linesv <? )(
dup pagina +
nfiles >=? ( 2drop ; )
'clicktree onLineClick
drawl drop
cr 1+ ) drop ;
:drawfulltree
| ccw 5 <<
| sw 2 >> 'tx2 !
| $222222 ink
| tx1 ccy tx2 ty2 cajaf
0 ( nfiles <? )(
'clicktree onLineClick
drawl cr allowchome
1+ ) drop ;
:drawsource
| ccw 5 <<
sw 2 >> 'tx1 !
sw 8 - 'tx2 !
0 0 gotoxy
source 0? ( drop ; ) amarillo
linesv code.nlines drop
;
:main
$111111 'paper !
4
| robotoregular 48 rfont!
'fontdroidsans13 fontm
clrscr
rows 1- 'linesv !
show clrscr
$444444 ink linefill | linea abajo
'newfile over ":R%d" mprint sp $0f0000 flink sp
toolbar
| ">" print blanco 'padin 1024 inputcr cr cr
chome!
| drawfulltree
drawtree
drawsource
0 'tx1 !
'fdn <dn>
'fpgdn <pgdn>
'fend <end>
'fup <up>
'fpgup <pgup>
'fhome <home>
'enter <enter>
'exit >esc<
cminiflecha
;
:ram
mark
rebuild
here 'source ! 0 source !
loadm
;
: ram main savem ;