-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnigme.java
More file actions
1173 lines (1073 loc) · 29.5 KB
/
Enigme.java
File metadata and controls
1173 lines (1073 loc) · 29.5 KB
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
/* Enigme.java */
/* Generated By:JavaCC: Do not edit this line. Enigme.java */
import java.util.HashMap;
public class Enigme implements EnigmeConstants {
private static HashMap<String, Integer> symbolTable = new HashMap<>();
private static HashMap<String, String> symbolTableString = new HashMap<>();
public static void main(String[] args) throws ParseException {
System.out.println("Entrez un programme 'Enigme' a parser :");
Enigme parser = new Enigme(System.in);
parser.programme();
System.out.println("Programme analyse avec succes !");
}
static final public void programme() throws ParseException {
System.out.println("-> Entree dans programme");
jj_consume_token(DEBUT);
instructions();
jj_consume_token(FIN);
System.out.println("<- Sortie de programme");
}
static final public void instructions() throws ParseException {
System.out.println("-> Entree dans instructions");
label_1:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case AFFICHERINT:
case AFFICHERSTRING:
case LIREINT:
case LIRESTRING:
case ENTIER:
case CHAINE:
case SI:
case TANTQUE:
case POUR:
case IDENTIFIANT:{
;
break;
}
default:
jj_la1[0] = jj_gen;
break label_1;
}
instruction();
jj_consume_token(SEMICOLON);
}
System.out.println("<- Sortie de instructions");
}
static final public void instruction() throws ParseException {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case AFFICHERINT:{
afficherInt();
break;
}
case AFFICHERSTRING:{
afficherString();
break;
}
case LIREINT:{
lireInt();
break;
}
case LIRESTRING:{
lireString();
break;
}
case ENTIER:{
declarationVariable();
break;
}
case CHAINE:{
declarationVariableString();
break;
}
default:
jj_la1[1] = jj_gen;
if (jj_2_1(3)) {
affectation();
} else if (jj_2_2(3)) {
affectationString();
} else {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case SI:{
condition();
break;
}
case TANTQUE:{
boucleTantQue();
break;
}
case POUR:{
bouclePour();
break;
}
default:
jj_la1[2] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
}
}
static final public void declarationVariable() throws ParseException {
jj_consume_token(ENTIER);
jj_consume_token(IDENTIFIANT);
symbolTable.put(token.image, 0);
}
static final public void declarationVariableString() throws ParseException {
jj_consume_token(CHAINE);
jj_consume_token(IDENTIFIANT);
symbolTableString.put(token.image, "");
}
static final public void affectation() throws ParseException {String varName; int value;
jj_consume_token(IDENTIFIANT);
varName = token.image;
jj_consume_token(39);
value = expression();
symbolTable.put(varName, value);
}
static final public void affectationString() throws ParseException {String varName;
jj_consume_token(IDENTIFIANT);
varName = token.image;
jj_consume_token(39);
jj_consume_token(STRING);
String value = token.image;
symbolTableString.put(varName, value);
}
static final public void afficherInt() throws ParseException {int value;
System.out.println("-> Entree dans afficherInt");
jj_consume_token(AFFICHERINT);
jj_consume_token(40);
value = expression();
jj_consume_token(41);
System.out.println("Afficher (Int) : " + value);
System.out.println("<- Sortie de afficherInt");
}
static final public void afficherString() throws ParseException {String value;
System.out.println("-> Entree dans afficherString");
jj_consume_token(AFFICHERSTRING);
jj_consume_token(40);
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case STRING:{
jj_consume_token(STRING);
value = token.image;
break;
}
case IDENTIFIANT:{
jj_consume_token(IDENTIFIANT);
if (symbolTableString.containsKey(token.image)) {
value = symbolTableString.get(token.image);
} else {
{if (true) throw new Error("Variable non dEclarEe : " + token.image);}
}
break;
}
default:
jj_la1[3] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
jj_consume_token(41);
System.out.println("Afficher (String) : " + value);
System.out.println("<- Sortie de afficherString");
}
static final public void lireInt() throws ParseException {
System.out.println("-> Entree dans lireInt");
jj_consume_token(LIREINT);
jj_consume_token(40);
jj_consume_token(IDENTIFIANT);
jj_consume_token(41);
if (!symbolTable.containsKey(token.image)) {
{if (true) throw new Error("Variable non dEclarEe : " + token.image);}
}
symbolTable.put(token.image, 42); // Exemple de valeur lue
System.out.println("<- Sortie de lireInt");
}
static final public void lireString() throws ParseException {
System.out.println("-> Entree dans lireString");
jj_consume_token(LIRESTRING);
jj_consume_token(40);
jj_consume_token(IDENTIFIANT);
jj_consume_token(41);
if (!symbolTableString.containsKey(token.image)) {
{if (true) throw new Error("Variable non dEclarEe : " + token.image);}
}
symbolTableString.put(token.image, "exemple"); // Exemple de valeur lue
System.out.println("<- Sortie de lireString");
}
static final public void condition() throws ParseException {
System.out.println("-> Entree dans condition");
jj_consume_token(SI);
expBool();
jj_consume_token(ALORS);
instructions();
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case SINON:{
jj_consume_token(SINON);
instructions();
break;
}
default:
jj_la1[4] = jj_gen;
;
}
jj_consume_token(FINSI);
System.out.println("<- Sortie de condition");
}
static final public void boucleTantQue() throws ParseException {
System.out.println("-> Entree dans boucleTantQue");
jj_consume_token(TANTQUE);
expBool();
jj_consume_token(FAIRE);
instructions();
jj_consume_token(FINTANTQUE);
System.out.println("<- Sortie de boucleTantQue");
}
static final public void bouclePour() throws ParseException {
System.out.println("-> Entree dans bouclePour");
jj_consume_token(POUR);
jj_consume_token(IDENTIFIANT);
jj_consume_token(DE);
expArith();
jj_consume_token(A);
expArith();
jj_consume_token(FAIRE);
instructions();
jj_consume_token(FINPOUR);
System.out.println("<- Sortie de bouclePour");
}
static final public int expression() throws ParseException {int result;
result = expArith();
{if ("" != null) return result;}
throw new Error("Missing return statement in function");
}
static final public int expArith() throws ParseException {int result; int term1, term2;
term1 = term();
label_2:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 42:
case 43:{
;
break;
}
default:
jj_la1[5] = jj_gen;
break label_2;
}
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 42:{
jj_consume_token(42);
term2 = term();
result = term1 + term2; term1 = result;
break;
}
case 43:{
jj_consume_token(43);
term2 = term();
result = term1 - term2; term1 = result;
break;
}
default:
jj_la1[6] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
{if ("" != null) return term1;}
throw new Error("Missing return statement in function");
}
static final public int term() throws ParseException {int result; int factor1, factor2;
factor1 = factor();
label_3:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 44:
case 45:{
;
break;
}
default:
jj_la1[7] = jj_gen;
break label_3;
}
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 44:{
jj_consume_token(44);
factor2 = factor();
result = factor1 * factor2; factor1 = result;
break;
}
case 45:{
jj_consume_token(45);
factor2 = factor();
if (factor2 == 0) {if (true) throw new ArithmeticException("Division par zero !");}
result = factor1 / factor2;
factor1 = result;
break;
}
default:
jj_la1[8] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
{if ("" != null) return factor1;}
throw new Error("Missing return statement in function");
}
static final public int factor() throws ParseException {int result;
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case NUMBER:{
jj_consume_token(NUMBER);
result = Integer.parseInt(token.image); {if ("" != null) return result;}
break;
}
case IDENTIFIANT:{
jj_consume_token(IDENTIFIANT);
if (symbolTable.containsKey(token.image)) {
result = symbolTable.get(token.image);
} else {
{if (true) throw new Error("Variable non dEclarEe : " + token.image);}
}
{if ("" != null) return result;}
break;
}
case 40:{
jj_consume_token(40);
result = expArith();
jj_consume_token(41);
{if ("" != null) return result;}
break;
}
default:
jj_la1[9] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public boolean expBool() throws ParseException {boolean result; boolean right;
result = termBool();
label_4:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 46:{
;
break;
}
default:
jj_la1[10] = jj_gen;
break label_4;
}
jj_consume_token(46);
right = termBool();
result = result || right;
}
{if ("" != null) return result;}
throw new Error("Missing return statement in function");
}
static final public boolean termBool() throws ParseException {boolean result; boolean right;
result = factorBool();
label_5:
while (true) {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 47:{
;
break;
}
default:
jj_la1[11] = jj_gen;
break label_5;
}
jj_consume_token(47);
right = factorBool();
result = result && right;
}
{if ("" != null) return result;}
throw new Error("Missing return statement in function");
}
static final public boolean factorBool() throws ParseException {boolean result;
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case 48:{
jj_consume_token(48);
result = factorBool();
result = !result;
break;
}
default:
jj_la1[12] = jj_gen;
result = elementBool();
{if ("" != null) return result;}
}
throw new Error("Missing return statement in function");
}
static final public boolean valueBool() throws ParseException {boolean result;
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case TRUE:{
jj_consume_token(TRUE);
{if ("" != null) return true;}
break;
}
case FALSE:{
jj_consume_token(FALSE);
{if ("" != null) return false;}
break;
}
default:
jj_la1[13] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
throw new Error("Missing return statement in function");
}
static final public boolean elementBool() throws ParseException {boolean result;
if (jj_2_3(3)) {
jj_consume_token(40);
result = expBool();
jj_consume_token(41);
{if ("" != null) return result;}
} else if (jj_2_4(2)) {
comparison();
result = comparison();
} else {
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case TRUE:{
jj_consume_token(TRUE);
{if ("" != null) return true;}
break;
}
case FALSE:{
jj_consume_token(FALSE);
{if ("" != null) return false;}
break;
}
default:
jj_la1[14] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
}
throw new Error("Missing return statement in function");
}
static final public boolean comparison() throws ParseException {boolean result; int left, right;
left = expression();
switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
case GT:{
jj_consume_token(GT);
right = expression();
result = left > right;
break;
}
case LT:{
jj_consume_token(LT);
right = expression();
result = left < right;
break;
}
case GE:{
jj_consume_token(GE);
right = expression();
result = left >= right;
break;
}
case LE:{
jj_consume_token(LE);
right = expression();
result = left <= right;
break;
}
case EQ:{
jj_consume_token(EQ);
right = expression();
result = left == right;
break;
}
case NE:{
jj_consume_token(NE);
right = expression();
result = left != right;
break;
}
default:
jj_la1[15] = jj_gen;
{if (true) throw new Error("Unsupported operator in comparison.");}
}
{if ("" != null) return result;}
throw new Error("Missing return statement in function");
}
static private boolean jj_2_1(int xla)
{
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return (!jj_3_1()); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(0, xla); }
}
static private boolean jj_2_2(int xla)
{
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return (!jj_3_2()); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(1, xla); }
}
static private boolean jj_2_3(int xla)
{
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return (!jj_3_3()); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(2, xla); }
}
static private boolean jj_2_4(int xla)
{
jj_la = xla; jj_lastpos = jj_scanpos = token;
try { return (!jj_3_4()); }
catch(LookaheadSuccess ls) { return true; }
finally { jj_save(3, xla); }
}
static private boolean jj_3R_factor_271_7_32()
{
if (jj_scan_token(IDENTIFIANT)) return true;
return false;
}
static private boolean jj_3_4()
{
if (jj_3R_comparison_324_5_9()) return true;
return false;
}
static private boolean jj_3R_factor_270_5_31()
{
if (jj_scan_token(NUMBER)) return true;
return false;
}
static private boolean jj_3R_factor_270_5_27()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_factor_270_5_31()) {
jj_scanpos = xsp;
if (jj_3R_factor_271_7_32()) {
jj_scanpos = xsp;
if (jj_3R_factor_279_7_33()) return true;
}
}
return false;
}
static private boolean jj_3_3()
{
if (jj_scan_token(40)) return true;
if (jj_3R_expBool_284_5_8()) return true;
if (jj_scan_token(41)) return true;
return false;
}
static private boolean jj_3R_affectationString_126_5_7()
{
if (jj_scan_token(IDENTIFIANT)) return true;
if (jj_scan_token(39)) return true;
if (jj_scan_token(STRING)) return true;
return false;
}
static private boolean jj_3R_term_259_11_35()
{
if (jj_scan_token(45)) return true;
return false;
}
static private boolean jj_3R_term_258_9_34()
{
if (jj_scan_token(44)) return true;
return false;
}
static private boolean jj_3R_term_258_9_28()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_term_258_9_34()) {
jj_scanpos = xsp;
if (jj_3R_term_259_11_35()) return true;
}
return false;
}
static private boolean jj_3R_affectation_118_5_6()
{
if (jj_scan_token(IDENTIFIANT)) return true;
if (jj_scan_token(39)) return true;
if (jj_3R_expression_241_5_10()) return true;
return false;
}
static private boolean jj_3R_factorBool_303_7_25()
{
return false;
}
static private boolean jj_3R_term_256_5_23()
{
if (jj_3R_factor_270_5_27()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_term_258_9_28()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_expArith_249_11_30()
{
if (jj_scan_token(43)) return true;
return false;
}
static private boolean jj_3R_factorBool_302_5_24()
{
if (jj_scan_token(48)) return true;
if (jj_3R_factorBool_302_5_21()) return true;
return false;
}
static private boolean jj_3R_factorBool_302_5_21()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_factorBool_302_5_24()) {
jj_scanpos = xsp;
if (jj_3R_factorBool_303_7_25()) return true;
}
return false;
}
static private boolean jj_3R_expArith_248_9_29()
{
if (jj_scan_token(42)) return true;
return false;
}
static private boolean jj_3R_expArith_248_9_26()
{
Token xsp;
xsp = jj_scanpos;
if (jj_3R_expArith_248_9_29()) {
jj_scanpos = xsp;
if (jj_3R_expArith_249_11_30()) return true;
}
return false;
}
static private boolean jj_3R_termBool_295_9_22()
{
if (jj_scan_token(47)) return true;
if (jj_3R_factorBool_302_5_21()) return true;
return false;
}
static private boolean jj_3R_expArith_246_5_20()
{
if (jj_3R_term_256_5_23()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_expArith_248_9_26()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_termBool_293_5_11()
{
if (jj_3R_factorBool_302_5_21()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_termBool_295_9_22()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3R_comparison_332_11_19()
{
return false;
}
static private boolean jj_3R_expBool_286_9_12()
{
if (jj_scan_token(46)) return true;
if (jj_3R_termBool_293_5_11()) return true;
return false;
}
static private boolean jj_3R_comparison_331_11_18()
{
if (jj_scan_token(NE)) return true;
return false;
}
static private boolean jj_3R_comparison_330_11_17()
{
if (jj_scan_token(EQ)) return true;
return false;
}
static private boolean jj_3R_expression_241_5_10()
{
if (jj_3R_expArith_246_5_20()) return true;
return false;
}
static private boolean jj_3R_comparison_329_11_16()
{
if (jj_scan_token(LE)) return true;
return false;
}
static private boolean jj_3R_comparison_328_11_15()
{
if (jj_scan_token(GE)) return true;
return false;
}
static private boolean jj_3R_comparison_327_11_14()
{
if (jj_scan_token(LT)) return true;
return false;
}
static private boolean jj_3_2()
{
if (jj_3R_affectationString_126_5_7()) return true;
return false;
}
static private boolean jj_3R_expBool_284_5_8()
{
if (jj_3R_termBool_293_5_11()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
if (jj_3R_expBool_286_9_12()) { jj_scanpos = xsp; break; }
}
return false;
}
static private boolean jj_3_1()
{
if (jj_3R_affectation_118_5_6()) return true;
return false;
}
static private boolean jj_3R_comparison_326_9_13()
{
if (jj_scan_token(GT)) return true;
return false;
}
static private boolean jj_3R_factor_279_7_33()
{
if (jj_scan_token(40)) return true;
if (jj_3R_expArith_246_5_20()) return true;
return false;
}
static private boolean jj_3R_comparison_324_5_9()
{
if (jj_3R_expression_241_5_10()) return true;
Token xsp;
xsp = jj_scanpos;
if (jj_3R_comparison_326_9_13()) {
jj_scanpos = xsp;
if (jj_3R_comparison_327_11_14()) {
jj_scanpos = xsp;
if (jj_3R_comparison_328_11_15()) {
jj_scanpos = xsp;
if (jj_3R_comparison_329_11_16()) {
jj_scanpos = xsp;
if (jj_3R_comparison_330_11_17()) {
jj_scanpos = xsp;
if (jj_3R_comparison_331_11_18()) {
jj_scanpos = xsp;
if (jj_3R_comparison_332_11_19()) return true;
}
}
}
}
}
}
return false;
}
static private boolean jj_initialized_once = false;
/** Generated Token Manager. */
static public EnigmeTokenManager token_source;
static SimpleCharStream jj_input_stream;
/** Current token. */
static public Token token;
/** Next token. */
static public Token jj_nt;
static private int jj_ntk;
static private Token jj_scanpos, jj_lastpos;
static private int jj_la;
static private int jj_gen;
static final private int[] jj_la1 = new int[16];
static private int[] jj_la1_0;
static private int[] jj_la1_1;
static {
jj_la1_init_0();
jj_la1_init_1();
}
private static void jj_la1_init_0() {
jj_la1_0 = new int[] {0x4123f80,0x1f80,0x122000,0x14000000,0x8000,0x0,0x0,0x0,0x0,0xc000000,0x0,0x0,0x0,0x3000000,0x3000000,0xc0000000,};
}
private static void jj_la1_init_1() {
jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0xc00,0xc00,0x3000,0x3000,0x100,0x4000,0x8000,0x10000,0x0,0x0,0xf,};
}
static final private JJCalls[] jj_2_rtns = new JJCalls[4];
static private boolean jj_rescan = false;
static private int jj_gc = 0;
/** Constructor with InputStream. */
public Enigme(java.io.InputStream stream) {
this(stream, null);
}
/** Constructor with InputStream and supplied encoding */
public Enigme(java.io.InputStream stream, String encoding) {
if (jj_initialized_once) {
System.out.println("ERROR: Second call to constructor of static parser. ");
System.out.println(" You must either use ReInit() or set the JavaCC option STATIC to false");
System.out.println(" during parser generation.");
throw new Error();
}
jj_initialized_once = true;
try { jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
token_source = new EnigmeTokenManager(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 16; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Reinitialise. */
static public void ReInit(java.io.InputStream stream) {
ReInit(stream, null);
}
/** Reinitialise. */
static public void ReInit(java.io.InputStream stream, String encoding) {
try { jj_input_stream.ReInit(stream, encoding, 1, 1); } catch(java.io.UnsupportedEncodingException e) { throw new RuntimeException(e); }
token_source.ReInit(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 16; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Constructor. */
public Enigme(java.io.Reader stream) {
if (jj_initialized_once) {
System.out.println("ERROR: Second call to constructor of static parser. ");
System.out.println(" You must either use ReInit() or set the JavaCC option STATIC to false");
System.out.println(" during parser generation.");
throw new Error();
}
jj_initialized_once = true;
jj_input_stream = new SimpleCharStream(stream, 1, 1);
token_source = new EnigmeTokenManager(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 16; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Reinitialise. */
static public void ReInit(java.io.Reader stream) {
if (jj_input_stream == null) {
jj_input_stream = new SimpleCharStream(stream, 1, 1);
} else {
jj_input_stream.ReInit(stream, 1, 1);
}
if (token_source == null) {
token_source = new EnigmeTokenManager(jj_input_stream);
}
token_source.ReInit(jj_input_stream);
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 16; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Constructor with generated Token Manager. */
public Enigme(EnigmeTokenManager tm) {
if (jj_initialized_once) {
System.out.println("ERROR: Second call to constructor of static parser. ");
System.out.println(" You must either use ReInit() or set the JavaCC option STATIC to false");
System.out.println(" during parser generation.");
throw new Error();
}
jj_initialized_once = true;
token_source = tm;
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 16; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
/** Reinitialise. */
public void ReInit(EnigmeTokenManager tm) {
token_source = tm;
token = new Token();
jj_ntk = -1;
jj_gen = 0;
for (int i = 0; i < 16; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
static private Token jj_consume_token(int kind) throws ParseException {
Token oldToken;
if ((oldToken = token).next != null) token = token.next;
else token = token.next = token_source.getNextToken();
jj_ntk = -1;
if (token.kind == kind) {
jj_gen++;
if (++jj_gc > 100) {
jj_gc = 0;
for (int i = 0; i < jj_2_rtns.length; i++) {
JJCalls c = jj_2_rtns[i];
while (c != null) {
if (c.gen < jj_gen) c.first = null;
c = c.next;
}
}
}
return token;
}
token = oldToken;
jj_kind = kind;
throw generateParseException();
}
@SuppressWarnings("serial")
static private final class LookaheadSuccess extends java.lang.Error {
@Override
public Throwable fillInStackTrace() {
return this;
}
}
static private final LookaheadSuccess jj_ls = new LookaheadSuccess();
static private boolean jj_scan_token(int kind) {
if (jj_scanpos == jj_lastpos) {
jj_la--;
if (jj_scanpos.next == null) {
jj_lastpos = jj_scanpos = jj_scanpos.next = token_source.getNextToken();
} else {
jj_lastpos = jj_scanpos = jj_scanpos.next;
}
} else {
jj_scanpos = jj_scanpos.next;
}
if (jj_rescan) {
int i = 0; Token tok = token;
while (tok != null && tok != jj_scanpos) { i++; tok = tok.next; }
if (tok != null) jj_add_error_token(kind, i);