forked from vikiezekiel/SimpleScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptParser.java
More file actions
208 lines (133 loc) · 6.24 KB
/
Copy pathScriptParser.java
File metadata and controls
208 lines (133 loc) · 6.24 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
package ttttteeeesssttt;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;
//CODED BY ADITYA/LOADEDBOY
public class TTTTTEEEESSSTTT {
public static void main(String[] args) throws FileNotFoundException {
Scanner sc = new Scanner(new File("hoba.txt"));
int line = 0;
while (sc.hasNextLine()) {
line++;
String words[] = null;
words = sc.nextLine().trim().split("\\s+");
System.out.println(Arrays.asList(words));
if (Arrays.asList(words).contains("")) {
System.out.println("Line " + line + " Empty Line Detected"); //Empty Line
}
// FOR VARIABLES
int l = words.length;
if (Arrays.asList(words).contains("var")) {
TTTTTEEEESSSTTT.vars(words, line);
}
//PRINT
if (Arrays.asList(words).contains("print()")) {
System.out.println("Line " + line + " Print is a Function call"); //IDENTIFYS PRINT
}
//OPERATORS
try {
if (Arrays.asList(words[1]).contains("+") || Arrays.asList(words[1]).contains("-") || Arrays.asList(words[1]).contains("/") || Arrays.asList(words[1]).contains("*")) {
TTTTTEEEESSSTTT.op(words, line);
}
} catch (ArrayIndexOutOfBoundsException exception) {
}
//FUNC
if (Arrays.asList(words[0]).contains("func")) {
System.out.println("Line " + line + " Function found called " + words[1] + " This Function Consists of the following code: ");
String funcline;
while (sc.hasNextLine()) {
funcline=sc.nextLine();
System.out.println("Line " + line + " " + funcline);
if (funcline.contentEquals(""))
{
break;
}
}
}
}
}
public static void op(String[] words, int line) {
try {
if (Arrays.asList(words).contains("+")) {
System.out.println("Line " + line + " Expression " + words[0] + " + " + words[2] + " , Simple subtraction found"); // num2 - 5
}
if (Arrays.asList(words).contains("-")) {
System.out.println("Line " + line + " Expression " + words[0] + " - " + words[2] + " , Simple subtraction found"); // num2 - 5
}
if (Arrays.asList(words).contains("*")) {
System.out.println("Line " + line + " Expression " + words[0] + " * " + words[2] + " , Simple multiplication found"); // num2 * 5
}
if (Arrays.asList(words).contains("/")) {
System.out.println("Line " + line + " Expression " + words[0] + " / " + words[2] + " , Simple division found"); // num2 / 5
}
} catch (ArrayIndexOutOfBoundsException exception) {
}
}
public static void vars(String[] words, int line) {
try {
if (words[0].contains("var")) {
System.out.println("Line " + line + ", Expression var " + words[1] + " is a Variable declaration"); //var num1
}
if (words[1].contains(",")) {
if (words[1].contains(",")) {
System.out.println("Line " + line + ", Expression var " + words[2] + " is a Variable declaration"); // var num, num2
}
if (words[2].contains(",")) {
int i;
for (i = 3; i < 30; i++) {
System.out.println("Line " + line + ", Expression var " + words[i] + " is a Variable declaration"); //var num, num2,num3......
if (!words[i].contains(",")) {
break;
}
}
}
}
if (Arrays.asList(words).contains("=")) {
if(words[2].contains("=")){
System.out.println("Line " + line + ", Expression var " + words[1] + " = " + words[3] + " is a Variable declaration and initialization "); // var num1=1
}
if (words[3].contains(",")) {
int i;
for (i = 4; i < 30; i++) {
System.out.println("Line " + line + ", Expression var " + words[i] + " = " + words[i + 2] + " is a Variable declaration and initialization "); // var num1 = 1, var num2 = 1, var num3 = 1......
i = i + 2;
if (!words[i].contains(",")) {
break;
}
}
}
}
if (Arrays.asList(words[2]).contains("+")) {
System.out.println("Line " + line + " Expression " + words[1] + " + " + words[3] + " , Simple addition found"); // var num1 + num2
}
if (Arrays.asList(words[2]).contains("-")) {
System.out.println("Line " + line + " Expression " + words[1] + " - " + words[3] + " , Simple subtraction found"); // var num1 - num2
}
if (Arrays.asList(words[2]).contains("*")) {
System.out.println("Line " + line + " Expression " + words[1] + " * " + words[3] + " , Simple multiplication found"); // var num1 * num2
}
if (Arrays.asList(words[2]).contains("/")) {
System.out.println("Line " + line + " Expression " + words[1] + " / " + words[3] + " , Simple division found"); // var num1 / num2
}
} catch (ArrayIndexOutOfBoundsException exception) {
}
}
}
/*Detects the following
var a, b, c
var a = 10
var a = 10, b=40, d=2
var a + b
var a
var a - a
var a + b
var a * c
var a / s
a + b
func helloworlds():
var a
var b
var c
var k
*/