-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLuckBasicQB64-cleanup2.bas
1236 lines (851 loc) · 21.9 KB
/
LuckBasicQB64-cleanup2.bas
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
$Debug
'---script created on 11-08-2022 14:51:59 by
' LuckBasic
' This is my personal project to build a Basic interpreter.
' It's a high level project to prove to myself that i understand how to build an interpreter.
' I'm intentionaly using very simple algorithms and data structures. Readability outweighs performance.
'
' Gary Luckenbaugh - fall of '22
' Parse buffer
Dim Shared buff$
buff$ = ""
' Used to switch between expression parse
' and RPN evaluation. This was a bad design choice
Dim Shared buff_after_parse_or$
' Program Counter (aka current line being executed)
Dim Shared pc%
' Operators. I really should have just created a single
' array. There should also be a l_ops const
Const ops = 10
Dim Shared op$(ops)
Dim Shared logical_op$(9)
Data "dummy","+","-","*","/","(",")","=","^","@",","
Data "dummy","<","<=","=",">",">=","<>","AND","OR"
Dim t
For t = 0 To ops
Read op$(t)
Next t
For t = 0 To 8
Read logical_op$(t)
Next t
' Editor buffer
Dim Shared statement$(5000)
' @ array
Dim Shared at_array%(5000)
' helpful pre declaraion of common FOR-NEXT variable
Dim Shared i%
Dim Shared vars$(26)
' Retained information about FOR command
Dim Shared acvar$(100)
Dim Shared aistart%(100)
Dim Shared ailast%(100)
Dim Shared aistep%(100)
Dim Shared ailine%(100)
Dim Shared for_stackp%
' GOSUB stack
Dim Shared gosub_stack%(100)
Dim Shared gosub_stack_ptr%
' RPN evaluation stack
Dim Shared mystack$(50)
Dim Shared msp%
Call Main
Function myucase$ (s$)
Dim c$(100)
Dim flag%
Dim collect$
flag% = 1
collect$ = ""
For i% = 1 To Len(s$)
c$(i%) = Mid$(s$, i%, 1)
If Asc(c$(i%)) = 34 Then
If flag% = 1 Then
flag% = 0
Else
flag% = 1
End If
End If
If flag% = 1 Then
c$(i%) = UCase$(c$(i%))
End If
Next i%
For i% = 1 To Len(s$)
collect$ = collect$ + c$(i%)
Next i%
myucase$ = collect$
End Function
Sub Main
Dim k%
For k% = 1 To 5000
at_array%(k%) = 2 * k% ' test pattern, should change to zeros
Next k%
For k% = 1 To 5000
statement$(k%) = ""
Next k%
Dim in$
Dim cont%
Dim tok$
cont% = 1
Do While cont% <> 0
Line Input "basic> ", in$
in$ = myucase$(in$)
buff$ = in$
tok$ = gettok$
If Left$(tok$, 1) >= "0" And Left$(tok$, 1) <= "9" Then
process_line in$
ElseIf tok$ <> "BYE" Then
do_command in$
ElseIf tok$ = "BYE" Then
cont% = 0
End If
Loop
End Sub
Sub edit_delete (linenum%)
statement$(linenum%) = ""
End Sub
Sub edit_replace (linenum%, buf$)
statement$(linenum%) = buf$
End Sub
Sub process_line (lin$)
Dim line_tok$
Dim nexttok$
Dim mystring$
Dim linenum%
buff$ = lin$
line_tok$ = gettok$
nexttok$ = gettok$
If nexttok$ = "~" Then
edit_delete Val(line_tok$)
Else
linenum% = Val(line_tok$)
mystring$ = nexttok$ + buff$
edit_replace linenum%, mystring$
End If
End Sub
Sub do_command (cmd$)
If cmd$ = "LIST" Then
do_list
ElseIf Left$(cmd$, 5) = "PRINT" Then
do_print cmd$
ElseIf Left$(cmd$, 3) = "LET" Then
do_let cmd$
buff$ = buff_after_parse_or$
If gettok$ <> "~" Then
Print "warning: extra stuff after expression"
End If
ElseIf cmd$ = "NEW" Then
do_new
ElseIf Left$(cmd$, 4) = "LOAD" Then
do_load LTrim$(RTrim$(Mid$(cmd$, 5)))
ElseIf Left$(cmd$, 4) = "SAVE" Then
do_save LTrim$(RTrim$(Mid$(cmd$, 5)))
ElseIf cmd$ = "RUN" Then
do_run
Else
do_let "LET " + cmd$
buff$ = buff_after_parse_or$
If gettok$ <> "~" Then
Print "warning: extra stuff after expression"
End If
End If
End Sub
Sub do_load (fname$)
Dim myline$
do_new
Open fname$ For Input As #1
Do While Not EOF(1)
Line Input #1, myline$
process_line (myline$)
Loop
Close #1
End Sub
Sub do_save (fname$)
Open fname$ For Output As #2
For i% = 1 To 5000
If statement$(i%) <> "" Then
Print #2, Str$(i%) + " " + statement$(i%)
End If
Next i%
Close #2
End Sub
Sub do_new
For i% = 1 To 5000
statement$(i%) = ""
Next i%
End Sub
Sub do_list
For i% = 1 To 5000
If statement$(i%) <> "" Then
Print Str$(i%) + " " + statement$(i%)
End If
Next i%
End Sub
Sub do_run
Dim startpc%
Dim stoprun%
Dim cmd$
Dim target%
startpc% = 0
for_stackp% = 0
gosub_stack_ptr% = 0
stoprun% = 0
For l% = 1 To 5000
If statement$(l%) <> "" Then
startpc% = l%
Exit For
End If
Next l%
If startpc% = 0 Then
Print "No statements in buffer!"
Exit Sub
End If
pc% = startpc%
Do While stoprun% = 0 And pc% <> 0
cmd$ = statement$(pc%)
If Left$(cmd$, 3) = "LET" Then
do_let cmd$
buff$ = buff_after_parse_or$
If gettok$ <> "~" Then
Print "warning: extra stuff after LET expression on line " + Str$(pc%)
End If
ElseIf Left$(cmd$, 5) = "PRINT" Then
do_print cmd$
ElseIf Left$(cmd$, 4) = "GOTO" Then
pc% = do_goto(cmd$) - 1
ElseIf Left$(cmd$, 5) = "GOSUB" Then
pc% = do_gosub(cmd$) - 1
ElseIf Left$(cmd$, 7) = "RETURN" Then
pc% = do_return
ElseIf cmd$ = "END" Or cmd$ = "STOP" Then
stoprun% = 1
ElseIf Left$(cmd$, 2) = "IF" Then
target% = do_if(cmd$)
If target% <> 0 Then
pc% = target% - 1
End If
ElseIf Left$(cmd$, 5) = "INPUT" Then
do_input cmd$
ElseIf Left$(cmd$, 3) = "FOR" Then
do_for cmd$
ElseIf Left$(cmd$, 4) = "NEXT" Then
do_next cmd$
Else
cmd$ = "LET " + cmd$
do_let cmd$
End If
If Left$(cmd$, 4) <> "NEXT" Then
pc% = next_pc%(pc%)
End If
Loop
End Sub
Sub do_print (cmd$)
Dim tok$
Dim comma_last%
comma_last% = 0
buff$ = Mid$(cmd$, 6)
tok$ = gettok$
If tok$ = "~" Then
Print ""
Exit Sub
End If
Do While tok$ <> "~"
comma_last% = 0
If Left$(tok$, 1) = Chr$(34) Then
tok$ = Mid$(tok$, 2, Len(tok$) - 2)
Print tok$ + " ";
tok$ = gettok$
If tok$ = "," Then
tok$ = gettok$
comma_last% = 1
End If
Else
Print Expr_eval$(tok$ + buff$) + " ";
buff$ = buff_after_parse_or$
tok$ = gettok$
If tok$ = "," Then
tok$ = gettok$
comma_last% = 1
End If
End If
Loop
If comma_last% <> 1 Then
Print ""
End If
End Sub
Function do_if% (cmd$)
Dim b%
Dim linenum%
b% = Val(Expr_eval$(Mid$(cmd$, 3)))
buff$ = buff_after_parse_or$
If gettok$ <> "THEN" Then
Print "warning: THEN not found right after expression end on line " + Str$(pc%)
End If
i% = InStr(1, cmd$, "THEN")
If i% <> 0 Then
linenum% = Val(Mid$(cmd$, i% + 4))
Else
Print "malformed command is :" + cmd$ + ": missing THEN"
linenum% = 0
End If
If b% Then
do_if% = linenum%
Else
do_if% = 0
End If
End Function
Sub do_for (cmd$)
cmd$ = Mid$(cmd$, 4)
buff$ = cmd$
Dim cvar$
cvar$ = gettok$
If gettok$ <> "=" Then
Print "Missing = in FOR statment on line " + Str$(pc%)
Exit Sub
End If
Dim istart%
Dim ilast%
Dim istep%
istart% = Val(Expr_eval$(buff$))
buff$ = buff_after_parse_or$
If gettok$ <> "TO" Then
Print "Missing TO in FOR on line " + Str$(pc%)
Exit Sub
End If
ilast% = Val(Expr_eval$(buff$))
buff$ = buff_after_parse_or$
istep% = 1
If gettok$ = "STEP" Then
istep% = Val(Expr_eval$(buff$))
End If
buff$ = buff_after_parse_or$
If gettok$ <> "~" Then
Print "Extraneous stuff after STEP value on line " + Str$(pc%)
End If
for_stackp% = for_stackp% + 1
acvar$(for_stackp%) = cvar$
aistart%(for_stackp%) = istart%
ailast%(for_stackp%) = ilast%
aistep%(for_stackp%) = istep%
ailine%(for_stackp%) = pc%
set_var cvar$, Str$(istart%)
End Sub
Sub do_next (cmd$)
If for_stackp% <= 0 Then
Print "stack underflow NEXT without FOR on line " + Str$(pc%)
pc% = next_pc(pc%)
Exit Sub
End If
buff$ = Mid$(cmd$, 5)
Dim controlvariable$
controlvariable$ = gettok$
If controlvariable$ <> acvar$(for_stackp%) Then
Print "mismatched next on line " + Str$(pc%)
End If
Dim cvar$
Dim start%
Dim last%
Dim istep%
Dim iline%
start% = aistart%(for_stackp%)
last% = ailast%(for_stackp%)
istep% = aistep%(for_stackp%)
iline% = ailine%(for_stackp%)
cvar$ = acvar$(for_stackp%)
Dim v%
v% = Val(get_var$(cvar$))
v% = v% + istep%
If istep% >= 0 Then
If v% > last% Then
pc% = next_pc%(pc%)
for_stackp% = for_stackp% - 1
Else
pc% = next_pc%(iline%)
End If
Else
If v% < last% Then
pc% = next_pc%(pc%)
for_stack% = for_stackp% - 1
Else
pc% = next_pc%(iline%)
End If
End If
set_var cvar$, Str$(v%)
End Sub
Function next_pc% (pc%)
For i% = pc% + 1 To 5000
If statement$(i%) <> "" Then
next_pc% = i%
Exit Function
End If
Next i%
next_pc% = 0
End Function
Function do_goto% (cmd$)
do_goto% = Val(Mid$(cmd$, 5))
End Function
Function do_gosub% (cmd$)
do_gosub% = Val(Mid$(cmd$, 6))
gosub_stack_ptr% = gosub_stack_ptr% + 1
gosub_stack%(gosub_stack_ptr%) = pc%
End Function
Function do_return%
do_return% = gosub_stack%(gosub_stack_ptr%)
gosub_stack_ptr% = gosub_stack_ptr% - 1
End Function
Sub do_let (cmd$)
Dim cvar$
Dim firstchar$
buff$ = Mid$(cmd$, 4)
cvar$ = gettok$
If cvar$ = "@" Then
do_let_at_array buff$
Exit Sub
End If
firstchar$ = Left$(cvar$, 1)
If Not (firstchar$ >= "A" And firstchar$ <= "Z") Then
Print "Variable name must follow LET"
Exit Sub
ElseIf gettok$ <> "=" Then
Print "Missing '=' in LET " + cmd$
Exit Sub
End If
set_var cvar$, Expr_eval$(buff$)
End Sub
Sub do_let_at_array (e$)
Dim leftval%
Dim rightval%
Dim rpn$
buff$ = e$
If gettok$ <> "(" Then
Print "an open left paren ( must follow @ in LET"
Exit Sub
End If
rpn$ = parse_or$
If gettok$ <> ")" Then
Print "missing right paren ) in LET @"
Exit Sub
End If
buff_after_parse_or$ = buff$
leftval% = Val(Eval_rpn$(rpn$))
buff$ = buff_after_parse_or$
If gettok$ <> "=" Then
Print "missing = in LET @"
Exit Sub
End If
rightval% = Val(Eval_rpn$(parse_or$))
If Not (leftval% >= 1 And leftval% <= 5000) Then
Print "subscript out of bounds on left side of assignment is " + Str$(leftval%)
Exit Sub
End If
at_array%(leftval%) = rightval%
End Sub
Sub do_input (cmd$)
Dim cvar$
Dim firstchar$
buff$ = Mid$(cmd$, 6)
cvar$ = gettok$
If cvar$ = "@" Then
do_input_at_array buff$
Exit Sub
End If
firstchar$ = Left$(cvar$, 1)
If Not (firstchar$ >= "A" And firstchar$ <= "Z") Then
Print "Variable name must follow INPUT"
Exit Sub
End If
Dim user_input$
Input user_input$
set_var cvar$, Expr_eval$(user_input$)
End Sub
Sub do_input_at_array (e$)
Dim user_input$
Dim subval%
Dim rpn$
buff$ = e$
If gettok$ <> "(" Then
Print "an open left paren ( must follow @ in INPUT"
Exit Sub
End If
rpn$ = parse_or$
If gettok$ <> ")" Then
Print "missing right paren ) in INPUT @"
Exit Sub
End If
subval% = Val(Eval_rpn$(rpn$))
Line Input user_input$
inpval = Val(Expr_eval$(user_input$))
If Not (subval% >= 1 And subval% <= 5000) Then
Print "subscript out of bounds on left side of INPUT @ is "; subval%
Exit Sub
End If
at_array%(subval%) = inpval
End Sub
Function Eval_rpn$ (rpn$)
buff$ = rpn$
Dim tok$
clearstack
tok$ = gettok$
If tok$ = "~" Then
Eval_rpn = "0"
Exit Function
End If
Do While tok$ <> "~"
process_tok (tok$)
tok$ = gettok$
Loop
Eval_rpn$ = mypop$
End Function
Function Expr_eval$ (e$)
clearstack
buff$ = e$
buff$ = parse_or$
Dim tok$
tok$ = gettok$
If tok$ = "~" Then
Expr_eval = "0"
Exit Function
End If
Do While tok$ <> "~"
process_tok tok$
tok$ = gettok$
Loop
Expr_eval$ = mypop$
End Function
Sub process_tok (tok$)
If tok$ = "UNM" Then
mypush Str$(-Val(mypop$))
Exit Sub
End If
If tok$ = "GETAT" Then
i% = Val(mypop$)
If i% < 1 Or i% > 5000 Then
Print "Subscript out of range 1..5000 for " + Str$(i%)
mypush "0"
Exit Sub
End If
mypush Str$(at_array%(i%))
Exit Sub
End If
For i% = 1 To ops
If op$(i%) = tok$ Then
process_op op$(i%)
Exit Sub
End If
Next i%
For i% = 1 To 8
If logical_op$(i%) = tok$ Then
process_op logical_op$(i%)
Exit Sub
End If
Next i%
process_num_or_var tok$
End Sub
Sub process_op (op$)
Dim leftval%
Dim rightval%
Dim res%
rightval% = Val(mypop$)
leftval% = Val(mypop$)
If op$ = "+" Then
res% = leftval% + rightval%
ElseIf op$ = "-" Then
res% = leftval% - rightval%
ElseIf op$ = "*" Then
res% = leftval% * rightval%
ElseIf op$ = "/" Then
res% = leftval% / rightval%
ElseIf op$ = "^" Then
res% = leftval% ^ rightval%
ElseIf op$ = "<" Then
res% = leftval% < rightval%
ElseIf op$ = "<=" Then
res% = leftval% <= rightval%
ElseIf op$ = "=" Then
res% = leftval% = rightval%
ElseIf op$ = ">" Then
res% = leftval% > rightval%
ElseIf op$ = ">=" Then
res% = leftval% >= rightval%
ElseIf op$ = "AND" Then
res% = leftval% And rightval%
ElseIf op$ = "OR" Then
res% = leftval% Or rightval%
Else
Print "Not an operator " + op$
Exit Sub
End If
mypush Str$(res%)
End Sub
Sub process_num_or_var (num$)
If Left$(num$, 1) >= "0" And Left$(num$, 1) <= "9" Then
mypush num$
Else
mypush get_var$(num$)
End If
End Sub
Sub clearstack ()
msp% = 1
End Sub
Sub mypush (tok$)
mystack$(msp%) = tok$
msp% = msp% + 1
End Sub
Function mypop$
msp% = msp% - 1
mypop$ = mystack$(msp%)
End Function
'This may not be needed - NOP now
Function rid_eol$ (inpval$)
rid_eol$ = inpval$
End Function
Sub set_var (key$, item$)
If Len(key$) <> 1 Then
Print "variable name " + key$ + " is too long"
Exit Sub
End If
Dim nkey%
nkey% = Asc(key$) - Asc("A") + 1
vars$(nkey%) = item$
End Sub
Function get_var$ (key$)
If Len(key$) <> 1 Then
'print "variable name " + key + " is too long"
get_var$ = "0"
Exit Function
End If
Dim nkey%
nkey% = Asc(key$) - Asc("A") + 1
get_var$ = vars$(nkey%)
End Function
' here we go, the gettok$ function is the so-called lexical scanner.
Function gettok$
Dim collect$
Dim b$
Dim b1$
Dim i%
Do While Left$(buff$, 1) = " "
buff$ = Mid$(buff$, 2)
Loop
If buff$ = "" Then
gettok$ = "~"
Exit Function
End If
collect$ = ""
b$ = Left$(buff$, 1)
b1$ = Mid$(buff$, 2, 1)
If b$ = "<" And b1$ = "=" Then
buff$ = Mid$(buff$, 3)
gettok$ = b$ + b1$
Exit Function
End If
If b$ = "<" And b1$ = ">" Then
buff$ = Mid$(buff$, 3)
gettok$ = b$ + b1$
Exit Function
End If
If b$ = "<" Then
buff$ = Mid$(buff$, 2)
gettok$ = b$
Exit Function
End If
If b$ = ">" And b1$ = "=" Then
buff$ = Mid$(buff$, 3)
gettok$ = b$ + b1$
Exit Function
End If
If b$ = ">" Then
buff$ = Mid$(buff$, 2)
gettok$ = b$
Exit Function
End If
For i% = 1 To ops
If b$ = op$(i%) Then
gettok$ = b$
buff$ = Mid$(buff$, 2)
Exit Function
End If
Next i%
If b$ >= "A" And b$ <= "Z" Then
Do While b$ >= "A" And b$ <= "Z" Or b$ >= "0" And b$ <= "9"
collect$ = collect$ + b$
buff$ = Mid$(buff$, 2)
b$ = Left$(buff$, 1)
Loop
gettok$ = collect$
Exit Function
End If
If b$ >= "0" And b$ <= "9" Then
Do While b$ >= "0" And b$ <= "9"
collect$ = collect$ + b$
buff$ = Mid$(buff$, 2)
b$ = Left$(buff$, 1)
Loop
gettok$ = collect$
Exit Function
End If
If Asc(b$) = 34 Then ' quote mark