-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgrammar.y
1281 lines (1148 loc) · 27 KB
/
grammar.y
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
%{
/*
SDL_basic written by David Ashley, released 20080621 under the GPL
http://www.linuxmotors.com/SDL_basic
*/
#include <string.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include "misc.h"
#define NAMELEN 16
typedef struct tokeninfo {
char *at;
union
{
double real;
char *start;
int integer;
char name[NAMELEN];
char string[256];
int count;
step *step;
void *pointer;
} value;
} tokeninfo;
typedef struct {
int stepoff;
char *at;
} lineref;
#define MAXSTEPS 100000
#define MAXLINEREFS 65536
typedef struct parse_state {
bc *bc;
int res;
char *yypntr;
char *yystart;
char *yylast;
step *nextstep;
step steps[MAXSTEPS];
int numlinerefs;
variable *rankfailure;
char errormsg[128];
char *errorpos;
lineref linerefs[MAXLINEREFS];
} ps;
static void rankcheck(ps *ps, int var, int rank);
static void addlineref(ps *ps, char *at)
{
ps->linerefs[ps->numlinerefs].at = at;
ps->linerefs[ps->numlinerefs++].stepoff = ps->nextstep - ps->steps;
}
static void addline(ps *ps, int number, int stepnum, char *at)
{
bc *bc = ps->bc;
bc->lm[bc->numlines].step = stepnum;
bc->lm[bc->numlines].src = at;
bc->lm[bc->numlines++].linenumber = number;
}
static void adddata(ps *ps, double v)
{
if(ps->bc->datanum < MAXDATA)
ps->bc->data[ps->bc->datanum++] = v;
}
// returns linemap associated with this line
static linemap *findlinemap(ps *ps, int want)
{
int low, high, mid;
bc *bc=ps->bc;
low = 0;
high=bc->numlines;
if(!high) return 0;
for(;;)
{
mid = (low+high) >> 1;
if(mid==low) break;
if(want < bc->lm[mid].linenumber)
high=mid;
else
low=mid;
}
if(want == bc->lm[mid].linenumber)
return bc->lm + mid;
else
return 0;
}
// returns program step associated with this line
static int findline(ps *ps, int want)
{
linemap *lm;
lm = findlinemap(ps, want);
if(!lm)
return -1;
else
return lm->step;
}
void seterror(ps *ps, char *p, char *msg, ...)
{
va_list ap;
va_start(ap, msg);
vsnprintf(ps->errormsg, sizeof(ps->errormsg), msg, ap);
va_end(ap);
ps->errorpos = p;
}
#define MAX (sizeof(int)*8/MODIFIER_BITS - 1)
int append_modifier(ps *ps, char *pos, int oldvalue, int toadd)
{
int i;
int t;
char *p;
for(i=0;i<MAX;++i)
{
t=(oldvalue >> (i*MODIFIER_BITS)) & ((1<<MODIFIER_BITS)-1);
if(t == toadd)
{
if(toadd == RENDER_ROUND) p="ROUND";
else if(toadd == RENDER_ROTATE) p="ROTATE";
else p="";
seterror(ps, pos, "Duplicate modifier %s", p);
break;
}
}
if(i==MAX)
oldvalue = (oldvalue<<MODIFIER_BITS) | toadd;
return oldvalue;
}
static int fixuplinerefs(ps *ps)
{
bc *bc=ps->bc;
int i;
int o;
int at;
int line;
for(i=0;i<ps->numlinerefs;++i)
{
o=ps->linerefs[i].stepoff;
at=findline(ps, ps->steps[o+1].i);
if(at<0)
{
for(line=0;line<bc->numlines;++line)
if(bc->lm[line].step > o)
break;
tprintf(ps->bc,
"Unresolved line reference on line %d\n",
bc->lm[line-1].linenumber);
return -1;
}
ps->steps[o+1].i = at - o;
}
return 0;
}
static void emitfunc(ps *ps, void (*func)())
{
ps->nextstep++ -> func = func;
}
static void emitint(ps *ps, int i)
{
ps->nextstep++ -> i = i;
}
static void emitfuncint(ps *ps, void (*func)(), int v)
{
emitfunc(ps, func);
emitint(ps, v);
}
static void emitdouble(ps *ps, double val)
{
ps->nextstep++ -> d = val;
}
static void emitpushd(ps *ps, double val)
{
emitfunc(ps, pushd);
emitdouble(ps, val);
}
static void emitpushs(ps *ps, char *s)
{
int len=strlen(s);
step ts;
int i;
emitfunc(ps, pushs);
i=0;
ts.str[i++]=len;
do
{
if(*s)
ts.str[i++] = *s++;
if(i==STEPSIZE || !*s)
{
while(i<STEPSIZE)
ts.str[i++] = 0;
*ps->nextstep++ = ts;
i=0;
}
} while(*s);
}
#define YYDEBUG 0
#define YYSTYPE tokeninfo
#define PS ((ps *)parm)
int yylex(YYSTYPE *lvalp, ps *parm);
void yyerror(ps *parm, char *s);
%}
%pure-parser
%param {ps *parm}
%token IF THEN ELSE
%token ON GOTO GOSUB RETURN LET INPUT PRINT READ DATA DIM
%token FOR TO NEXT STEP END STOP REM
%token RESTORE
%token INT FIX SGN SIN COS RND POW LOG EXP TAN ATN2 ATN ABS SQR LEN
%token LEFTSTR MIDSTR RIGHTSTR CHRSTR STRSTR STRINGSTR VAL ASC TAB
%token MOUSEX MOUSEY MOUSEB XSIZE YSIZE TICKS KEY KEYCODE
%token INKEYSTR
%token MOVE PEN LINE COLOR CLEAR RANDOM CLS FILL HOME
%token CIRCLE DISC TEST BOX RECT SLEEP SPOT UPDATE
%token INTEGER REAL NUMSYMBOL STRINGSYMBOL STRING
%token ARC WEDGE
%token SHINIT SHDONE SHEND SHLINE SHCURVE SHCUBIC
%token ROUND ROTATE
%token LF
%token TONE ADSR WAVE FREQ DUR FMUL VOL WSIN WSQR WTRI WSAW
%token QUIET NOTE
%token LOADTEXTURE DRAWTEXTURE
%left OROR
%left ANDAND
%left '=' NE LT GT LE GE
%left OR XOR
%left AND
%left RR LL
%left '+' '-'
%left '*' '/' MOD
%left POWER
%right UNARY NOT
%expect 4
%%
program:
/* nothing */
| prog2
| statements
;
prog2:
line
| prog2 line
;
line:
mark linenumber mark statements LF {addline(PS, $2.value.integer,
$1.value.step - PS->steps,
$2.at);}
;
linenumber:
INTEGER
;
statements:
statement
| statements ':' statement ;
statement:
IF numexpr optthen fixif stint mark
{$4.value.step[1].i = $6.value.step - $4.value.step;}
| IF numexpr optthen fixif stint ELSE fixifelse stint mark
{$4.value.step[1].i = $7.value.step - $4.value.step;
$7.value.step[-1].i = $9.value.step - $7.value.step+2;}
| GOTO INTEGER {addlineref(PS, $2.at);emitfuncint(PS, rjmp, $2.value.integer);}
| LET assignexpr {/* implemented */}
| assignexpr {/* implemented */}
| print printlist {if($2.value.integer) emitfunc(PS, lf);}
| DIM dimarraylist
| END {emitfunc(PS, performend);}
| STOP {emitfunc(PS, performstop);}
| SLEEP num1 {emitfunc(PS, sleepd);emitfunc(PS, pop);}
| PEN num1 {emitfunc(PS, performpen);}
| COLOR num34 {if($2.value.count==3) emitfunc(PS, color3);
else emitfunc(PS, color4);}
| CLS {emitfunc(PS, cls);}
| HOME {emitfunc(PS, home);}
| CIRCLE num3 {emitfunc(PS, performcircle);}
| DISC num3 {emitfunc(PS, performdisc);}
| FILL {emitfunc(PS, performfill);}
| MOVE num2 {emitfunc(PS, performmove);}
| LINE num2 {emitfunc(PS, performline);}
| BOX num4 extrarender {emitfuncint(PS, box, $3.value.integer);}
| ARC num5 {emitfunc(PS, arc);}
| WEDGE num6 {emitfunc(PS, wedge);}
| RECT num4 extrarender {emitfuncint(PS, rect, $3.value.integer);}
| SHINIT {emitfunc(PS, shinit);}
| SHDONE {emitfunc(PS, shdone);}
| SHEND {emitfunc(PS, shend);}
| SHLINE num2 {emitfunc(PS, shline);}
| SHCURVE num4 {emitfunc(PS, shcurve);}
| SHCUBIC num6 {emitfunc(PS, shcubic);}
| SPOT {emitfunc(PS, spot);}
| DRAWTEXTURE num3 {emitfunc(PS, performdrawtexture);}
| UPDATE {emitfunc(PS, forceupdate);}
| FOR forvar '=' numexpr TO numexpr optstep
{emitfuncint(PS, pushav, $2.value.integer);emitfunc(PS, performfor);}
| NEXT optforvar
| GOSUB INTEGER {addlineref(PS, $2.at);emitfuncint(PS, rcall, $2.value.integer);}
| RETURN {emitfunc(PS, ret);}
| REM {/* do nothing */}
| ON numexpr GOTO linelist {emitfuncint(PS, ongoto, $4.value.count);}
| ON numexpr GOSUB linelist {emitfuncint(PS, ongosub, $4.value.count);}
| INPUT inputlist {emitfuncint(PS, input, $2.value.count);}
| READ readlist {/* implemented */}
| DATA datalist {/* implemented */}
| QUIET silist
| TONE tonenumber otonelist {emitfunc(PS, soundgo);}
| RANDOM
| RESTORE
| CLEAR num1
| TEST {rendertest(PS->bc);}
;
extrarender: /* nothing */ {$$.value.integer = 0;}
| erlist
;
erlist:
eritem
| erlist eritem {$$.value.integer =
append_modifier(PS, $1.at, $1.value.integer,
$2.value.integer);}
;
eritem: ROUND numexpr {$$.value.integer = RENDER_ROUND;}
| ROTATE numexpr {$$.value.integer = RENDER_ROTATE;}
;
silist: /* nothing */ {emitpushd(PS, 0.0);emitfunc(PS, quiet);}
| numexpr {emitfunc(PS, quiet);}
;
tonenumber:
numexpr {emitfunc(PS, setsound);}
;
otonelist: /* nothing */
| tonelist
;
tonelist:
',' toneitem
| tonelist ',' toneitem
;
toneitem:
ADSR stringexpr
| WAVE
| FREQ numexpr {emitfunc(PS, freq);}
| DUR numexpr {emitfunc(PS, dur);}
| VOL numexpr {emitfunc(PS, vol);}
| FMUL numexpr {emitfunc(PS, fmul);}
| WSIN {emitfunc(PS, wsin);}
| WTRI {emitfunc(PS, wtri);}
| WSQR {emitfunc(PS, wsqr);}
| WSAW {emitfunc(PS, wsaw);}
;
print: PRINT
| '?'
;
fixif: /* nothing */ {emitfunc(PS, skip2ne);
$$.value.step = PS->nextstep;
emitfuncint(PS, rjmp, 0);} // size of true side
;
fixifelse: /* nothing */ {emitfuncint(PS, rjmp, 0); // true side to skip over false
$$.value.step = PS->nextstep;}
;
mark: /* nothing */ {$$.value.step = PS->nextstep;}
;
optstep: { emitpushd(PS, 1.0);}
| STEP numexpr
;
optforvar: {emitfunc(PS, performnext);}
| forvar {emitfuncint(PS, pushav, $1.value.integer);emitfunc(PS, performnext1);}
;
forvar:
NUMSYMBOL
;
stint:
statements
| INTEGER {addlineref(PS, $1.at);emitfuncint(PS, rjmp, $1.value.integer);}
;
optthen: /* nothing */
| THEN
;
num1:
numexpr {$$.value.count=1;}
;
num2:
numexpr ',' numexpr {$$.value.count = 2;}
;
num3:
numexpr ',' numexpr ',' numexpr {$$.value.count = 3;}
;
num4:
numexpr ',' numexpr ',' numexpr ',' numexpr {$$.value.count = 4;}
;
num5:
numexpr ',' numexpr ',' numexpr ',' numexpr ',' numexpr
{$$.value.count = 5;}
;
num6:
numexpr ',' numexpr ',' numexpr ',' numexpr ',' numexpr ',' numexpr
{$$.value.count = 6;}
;
num34:
num3
| num4
;
dimarraylist:
dimarrayvar
| dimarraylist ',' dimarrayvar
;
dimarrayvar:
NUMSYMBOL '(' dimlist ')' {emitfuncint(PS, pushav, $1.value.integer);
emitfuncint(PS, dimd, $3.value.count);
rankcheck(PS, $1.value.integer, $3.value.count);}
| STRINGSYMBOL '(' dimlist ')' {emitfuncint(PS, pushav, $1.value.integer);
emitfuncint(PS, dims, $3.value.count);
rankcheck(PS, $1.value.integer, $3.value.count);}
;
dimlist: INTEGER {$$.value.count = 1;emitfuncint(PS, pushi, $1.value.integer);}
| dimlist ',' INTEGER {$$.value.count = $1.value.count + 1;
emitfuncint(PS, pushi, $3.value.integer);}
;
linelist: INTEGER {$$.value.count = 1;addlineref(PS, $1.at);
emitfuncint(PS, pushea, $1.value.integer);}
| linelist ',' INTEGER {$$.value.count = $1.value.count + 1;
addlineref(PS, $3.at);
emitfuncint(PS, pushea, $3.value.integer);}
;
datalist:
dataentry
| datalist ',' dataentry
;
dataentry:
real {adddata(PS, $1.value.real);}
| STRING
;
real:
INTEGER {$$.value.real = (double)$1.value.integer;}
| REAL
;
readlist:
readvar
| readlist ',' readvar
;
readvar:
numvar {emitfunc(PS, readd);}
| stringvar;
numvar:
NUMSYMBOL {emitfuncint(PS, pushvd, $1.value.integer);}
| NUMSYMBOL '(' numlist ')'
{emitfuncint(PS, arrayd, $1.value.integer);
rankcheck(PS, $1.value.integer, $3.value.count);}
;
stringvar:
STRINGSYMBOL {emitfuncint(PS, pushvs, $1.value.integer);}
| STRINGSYMBOL '(' numlist ')'
{emitfuncint(PS, arrays, $1.value.integer);
rankcheck(PS, $1.value.integer, $3.value.count);}
;
numlist:
numexpr {$$.value.count = 1;}
| numlist ',' numexpr {$$.value.count = $1.value.count + 1;}
;
printlist: /* nothing */ {$$.value.integer = 1;} // want newline
| printitem {$$.value.integer = 1;} // want newline
| printlist printsep printitem {$$.value.integer = 1;} // want newline
| printlist printsep {$$.value.integer = 0;} // no newline
;
printsep: ';'
| ',' {emitfunc(PS, tab);}
;
printitem:
'@' numexpr {emitfunc(PS, printat);}
| numexpr {emitfunc(PS, printd);}
| stringexpr {emitfunc(PS, prints);}
;
singlenumpar:
'(' numexpr ')'
;
doublenumpar:
'(' numexpr ',' numexpr ')'
;
inputlist:
inputlist2
| STRING ';' inputlist2 {$$.value.count = $3.value.count;
emitpushs(PS, $1.value.string);
emitfunc(PS, prints);}
;
inputlist2:
inputvar {$$.value.count = 1;}
| inputlist2 ',' inputvar {$$.value.count = $1.value.count + 1;}
;
inputvar:
numvar {emitfuncint(PS, pushi, 0);}
| stringvar {emitfuncint(PS, pushi, 1);}
;
assignexpr:
numvar '=' numexpr {emitfunc(PS, assignd);}
| stringvar '=' stringexpr {emitfunc(PS, assigns);}
;
numexpr:
'-' numexpr %prec UNARY {emitfunc(PS, chs);}
| NOT numexpr {emitfunc(PS, not);}
| '(' numexpr ')'
| numexpr '+' numexpr {emitfunc(PS, addd);}
| numexpr '-' numexpr {emitfunc(PS, subd);}
| numexpr '*' numexpr {emitfunc(PS, muld);}
| numexpr '/' numexpr {emitfunc(PS, divd);}
| numexpr MOD numexpr {emitfunc(PS, modd);}
| numexpr POWER numexpr {emitfunc(PS, powerd);}
| numexpr LL numexpr
| numexpr RR numexpr
| numexpr '=' numexpr {emitfunc(PS, eqd);}
| numexpr NE numexpr {emitfunc(PS, ned);}
| numexpr LT numexpr {emitfunc(PS, ltd);}
| numexpr GT numexpr {emitfunc(PS, gtd);}
| numexpr LE numexpr {emitfunc(PS, led);}
| numexpr GE numexpr {emitfunc(PS, ged);}
| numexpr AND numexpr {emitfunc(PS, andd);}
| numexpr OR numexpr {emitfunc(PS, ord);}
| numexpr XOR numexpr {emitfunc(PS, xord);}
| numexpr ANDAND numexpr {emitfunc(PS, andandd);}
| numexpr OROR numexpr {emitfunc(PS, orord);}
| stringexpr '=' stringexpr {emitfunc(PS, eqs);}
| stringexpr NE stringexpr {emitfunc(PS, nes);}
| numfunc
| special
| numvar {emitfunc(PS, evald);}
| real {emitpushd(PS, $1.value.real);}
;
singlestringpar: '(' stringexpr ')'
;
numfunc:
INT singlenumpar {emitfunc(PS, intd);}
| FIX singlenumpar {emitfunc(PS, fixd);}
| SGN singlenumpar {emitfunc(PS, sgnd);}
| SIN singlenumpar {emitfunc(PS, sind);}
| COS singlenumpar {emitfunc(PS, cosd);}
| RND singlenumpar {emitfunc(PS, rndd);}
| POW doublenumpar {emitfunc(PS, powd);}
| LOG singlenumpar {emitfunc(PS, logd);}
| EXP singlenumpar {emitfunc(PS, expd);}
| TAN singlenumpar {emitfunc(PS, tand);}
| ATN singlenumpar {emitfunc(PS, atnd);}
| ATN2 doublenumpar {emitfunc(PS, atn2d);}
| ABS singlenumpar {emitfunc(PS, absd);}
| SQR singlenumpar {emitfunc(PS, sqrd);}
| SLEEP singlenumpar {emitfunc(PS, sleepd);}
| KEY singlenumpar {emitfunc(PS, keyd);}
| NOTE singlenumpar {emitfunc(PS, note);}
| LEN singlestringpar {emitfunc(PS, lend);}
| VAL singlestringpar {emitfunc(PS, vald);}
| ASC singlestringpar {emitfunc(PS, ascd);}
| LOADTEXTURE singlestringpar {emitfunc(PS, loadtexture);}
;
special:
MOUSEX {emitfunc(PS, mousexd);}
| MOUSEY {emitfunc(PS, mouseyd);}
| MOUSEB {emitfunc(PS, mousebd);}
| XSIZE {emitpushd(PS, PS->bc->xsize);}
| YSIZE {emitpushd(PS, PS->bc->ysize);}
| TICKS {emitfunc(PS, ticksd);}
| KEYCODE {emitfunc(PS, keycoded);}
;
specialstr:
INKEYSTR {emitfunc(PS, inkey);}
;
stringexpr:
sitem
| stringexpr '+' sitem {emitfunc(PS, adds);}
| stringexpr sitem {emitfunc(PS, adds);}
;
sitem:
STRING {emitpushs(PS, $1.value.string);}
| specialstr
| stringfunc
| stringvar {emitfunc(PS, evals);}
| TAB singlenumpar {emitfunc(PS, tabstr);}
;
stringfunc:
LEFTSTR '(' stringexpr ',' numexpr ')' {emitfunc(PS, leftstr);}
| RIGHTSTR '(' stringexpr ',' numexpr ')' {emitfunc(PS, rightstr);}
| MIDSTR '(' stringexpr ',' numexpr ',' numexpr ')'
{emitfunc(PS, midstr);}
| CHRSTR singlenumpar {emitfunc(PS, chrstr);}
| STRSTR singlenumpar {emitfunc(PS, performstrstr);}
| STRINGSTR '(' numexpr ',' stringexpr ')' {emitfunc(PS, stringstr);}
;
%%
void yyerror(ps *parm, char *s)
{
}
static void rankcheck(ps *ps, int var, int rank)
{
variable *v;
v=ps->bc->vvars + var;
if(!v->rank)
v->rank = rank;
else
if(v->rank != rank)
ps->rankfailure = v;
}
int findvar(ps *ps, char *name)
{
int i;
variable *v;
bc *bc = ps->bc;
v=bc->vvars;
for(i=0;i<bc->numvars;++i, ++v)
if(!strcmp(v->name, name))
return i;
if(bc->numvars < MAXVARIABLES)
{
memset(v, 0, sizeof(*v));
strcpy(v->name, name);
return bc->numvars++;
}
//WARNING
return -1; // ran out
}
static inline char at(ps *ps)
{
return *ps->yypntr;
}
static inline char get(ps *ps)
{
return *ps->yypntr++;
}
static inline char back(ps *ps)
{
return *--ps->yypntr;
}
static int iskeyword(ps *ps, char *want)
{
char *p1=ps->yypntr;
char *p2=want;
while(*p2)
{
if(tolower(*p1)!=*p2)
break;
++p1;
++p2;
}
if(!*p2)
{
ps->yypntr += p2-want;
return 1;
}
return 0;
}
int yylex(YYSTYPE *ti, ps *parm)
{
char ch;
ps *ps=parm;
while(get(ps)==' ');
back(ps);
ps->yylast = ps->yypntr;
ti->at = ps->yypntr;
if(0){char *p=ps->yypntr, csave;
while(*p && *p++ != '\n');
csave = *--p;
*p = 0;
printf("here:%s\n", ps->yypntr);
*p = csave;
}
// alphabetized for readability -- but atn2 must be before atn, keycode < key
if(iskeyword(ps, "abs")) return ABS;
if(iskeyword(ps, "adsr")) return ADSR;
if(iskeyword(ps, "and")) return ANDAND;
if(iskeyword(ps, "arc")) return ARC;
if(iskeyword(ps, "asc")) return ASC;
if(iskeyword(ps, "atn2")) return ATN2; // order critical!
if(iskeyword(ps, "atn")) return ATN;
if(iskeyword(ps, "box")) return BOX;
if(iskeyword(ps, "chr$")) return CHRSTR;
if(iskeyword(ps, "circle")) return CIRCLE;
if(iskeyword(ps, "clear")) return CLEAR;
if(iskeyword(ps, "cls")) return CLS;
if(iskeyword(ps, "color")) return COLOR;
if(iskeyword(ps, "cos")) return COS;
if(iskeyword(ps, "data")) return DATA;
if(iskeyword(ps, "dim")) return DIM;
if(iskeyword(ps, "disc")) return DISC;
if(iskeyword(ps, "drawtexture")) return DRAWTEXTURE;
if(iskeyword(ps, "dur")) return DUR;
if(iskeyword(ps, "else")) return ELSE;
if(iskeyword(ps, "end")) return END;
if(iskeyword(ps, "exp")) return EXP;
if(iskeyword(ps, "fill")) return FILL;
if(iskeyword(ps, "fix")) return FIX;
if(iskeyword(ps, "fmul")) return FMUL;
if(iskeyword(ps, "for")) return FOR;
if(iskeyword(ps, "freq")) return FREQ;
if(iskeyword(ps, "gosub")) return GOSUB;
if(iskeyword(ps, "goto")) return GOTO;
if(iskeyword(ps, "home")) return HOME;
if(iskeyword(ps, "if")) return IF;
if(iskeyword(ps, "inkey$")) return INKEYSTR;
if(iskeyword(ps, "input")) return INPUT;
if(iskeyword(ps, "int")) return INT;
if(iskeyword(ps, "keycode")) return KEYCODE;
if(iskeyword(ps, "key")) return KEY;
if(iskeyword(ps, "left$")) return LEFTSTR;
if(iskeyword(ps, "len")) return LEN;
if(iskeyword(ps, "let")) return LET;
if(iskeyword(ps, "line")) return LINE;
if(iskeyword(ps, "loadtexture")) return LOADTEXTURE;
if(iskeyword(ps, "log")) return LOG;
if(iskeyword(ps, "mid$")) return MIDSTR;
if(iskeyword(ps, "mod")) return MOD;
if(iskeyword(ps, "mouseb")) return MOUSEB;
if(iskeyword(ps, "mousex")) return MOUSEX;
if(iskeyword(ps, "mousey")) return MOUSEY;
if(iskeyword(ps, "move")) return MOVE;
if(iskeyword(ps, "next")) return NEXT;
if(iskeyword(ps, "note")) return NOTE;
if(iskeyword(ps, "on")) return ON;
if(iskeyword(ps, "or")) return OROR;
if(iskeyword(ps, "pen")) return PEN;
if(iskeyword(ps, "pow")) return POW;
if(iskeyword(ps, "print")) return PRINT;
if(iskeyword(ps, "random")) return RANDOM;
if(iskeyword(ps, "read")) return READ;
if(iskeyword(ps, "rect")) return RECT;
if(iskeyword(ps, "rem") || at(ps) == '\'')
{
while((ch=get(ps)) && ch!='\n');
back(ps);
return REM;
}
if(iskeyword(ps, "restore")) return RESTORE;
if(iskeyword(ps, "return")) return RETURN;
if(iskeyword(ps, "right$")) return RIGHTSTR;
if(iskeyword(ps, "rnd")) return RND;
if(iskeyword(ps, "rotate")) return ROTATE;
if(iskeyword(ps, "round")) return ROUND;
if(iskeyword(ps, "sgn")) return SGN;
if(iskeyword(ps, "quiet")) return QUIET;
if(iskeyword(ps, "shcubic")) return SHCUBIC;
if(iskeyword(ps, "shcurve")) return SHCURVE;
if(iskeyword(ps, "shdone")) return SHDONE;
if(iskeyword(ps, "shend")) return SHEND;
if(iskeyword(ps, "shinit")) return SHINIT;
if(iskeyword(ps, "shline")) return SHLINE;
if(iskeyword(ps, "sin")) return SIN;
if(iskeyword(ps, "sleep")) return SLEEP;
if(iskeyword(ps, "spot")) return SPOT;
if(iskeyword(ps, "sqr")) return SQR;
if(iskeyword(ps, "step")) return STEP;
if(iskeyword(ps, "stop")) return STOP;
if(iskeyword(ps, "str$")) return STRSTR;
if(iskeyword(ps, "string$")) return STRINGSTR;
if(iskeyword(ps, "tab")) return TAB;
if(iskeyword(ps, "tan")) return TAN;
if(iskeyword(ps, "test")) return TEST;
if(iskeyword(ps, "then")) return THEN;
if(iskeyword(ps, "ticks")) return TICKS;
if(iskeyword(ps, "tone")) return TONE;
if(iskeyword(ps, "to")) return TO;
if(iskeyword(ps, "update")) return UPDATE;
if(iskeyword(ps, "val")) return VAL;
if(iskeyword(ps, "vol")) return VOL;
if(iskeyword(ps, "wave")) return WAVE;
if(iskeyword(ps, "wedge")) return WEDGE;
if(iskeyword(ps, "wsaw")) return WSAW;
if(iskeyword(ps, "wsin")) return WSIN;
if(iskeyword(ps, "wsqr")) return WSQR;
if(iskeyword(ps, "wtri")) return WTRI;
if(iskeyword(ps, "xsize")) return XSIZE;
if(iskeyword(ps, "ysize")) return YSIZE;
ch=get(ps);
switch(ch)
{
case '%': return MOD;
case '?':
case '@':
case ',':
case ';':
case ':':
case '(':
case ')':
case '+':
case '/':
case '-': return ch;
case '*':
ch=get(ps);
if(ch=='*') return POWER;
back(ps);
return '*';
case '&': return AND;
case '|': return OR;
case '^': return XOR;
case '\n': return LF;
case '=': return ch;
case '~': return NOT;
case 0: back(ps);
return 0;
case '>':
ch=get(ps);
if(ch=='>') return RR;
if(ch=='=') return GE;
back(ps);
return GT;
case '<':
ch=get(ps);
if(ch=='>') return NE;
if(ch=='=') return LE;
if(ch=='<') return LL;
back(ps);
return LT;
}
ch=back(ps);
if(isdigit(ch) || ch=='.')
{
double intpart;
double fracpart=0.0;
int isreal = (ch=='.');
intpart = 0.0;
while(isdigit(ch=get(ps))) {intpart=intpart*10 + ch - '0';}
if(ch=='.')
{
double power = 1;
isreal = 1;
while(isdigit(ch=get(ps)))
{
fracpart = fracpart*10 + ch - '0';
power *= 10;
}
fracpart /= power;
}
back(ps);
if(isreal)
{
ti->value.real = intpart + fracpart;
return REAL;
}
ti->value.integer = intpart;
return INTEGER;
}
if(isalpha(ch))
{
int t=0;
char name[NAMELEN];
for(;;)
{
ch=get(ps);
if(!isalpha(ch) && !isdigit(ch))
break;
if(t<sizeof(name)-2)
name[t++] = tolower(ch);
}
if(ch=='$')
{
name[t++] = ch;
name[t] = 0;
ti->value.integer = findvar(ps, name);
return STRINGSYMBOL;
}
back(ps);
name[t] = 0;
ti->value.integer = findvar(ps, name);
return NUMSYMBOL;
}
if(ch=='"')
{
get(ps);
int t=0;
for(;;)
{
ch=get(ps);
if(!ch) {back(ps);return -1;} // nonterminated string
if(ch=='\\')
{
ch=get(ps);
if(!ch || ch=='\n')
{back(ps);return -1;} // nonterminated
} else if(ch=='"')
break;
if(t<sizeof(ti->value.string)-1)
ti->value.string[t++] = ch;
}
ti->value.string[t] = 0;
return STRING;
}
return -1;
}
char *myindex(char *p, char want)
{
while(*p && *p!=want) ++p;
if(*p) return p;
else return 0;
}
void freeold(bc *bc)
{
int i;
int j,size;
bstring **s;
variable *v;
for(i=0,v=bc->vvars;i<bc->numvars;++i,++v)
{
if(!v->pointer)