-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
395 lines (346 loc) · 9.29 KB
/
Copy pathmain.c
File metadata and controls
395 lines (346 loc) · 9.29 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
#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include <stdlib.h>
//Method declarations
void lit(int i); //creates a new node and puts it on the list
void printList();
void out(); //Pops the top integer from the list and prints it
void swap(); //Swaps the top two nodes in the list
void dup(int n); //Duplicates the top n elements of the list (dup 2: A B... A B A B)
void in(); //Reads the next integer from the console and pushes it to the list
void drop(); //Pops the top element of the list and returns it
void add(); //Adds the top two elements in the list and pushes the result to the list
void subtrc(); //Subtracts top two elements in the list and pushes the result
void mult();
void DIV();
void mod();
void and();
void or();
void jump();
void ifeq();
void iflt();
//Globals
int counter;
char* ptr;
char* ptr2;
void main() {
FILE *myFile;
char str[500];
//Reads the first line of the input file
myFile = fopen("instructions.txt", "r");
fgets(str, 500, myFile);
//Puts line one as the array size
char* num1;
num1 = strstr(str, &str[0]);
int arraySize = atoi(num1);
char array[arraySize][100];
//Reads each line
for (int i = 0; i < arraySize; i++) {
fgets(str, 500, myFile);
strcpy(array[i], str);
}
fclose(myFile);
//Conditionals for instructions
for(counter = 0; counter < arraySize; counter++){
ptr = array[counter];
ptr2 = strtok(ptr, "\n");
if(strcmp(ptr2, "IN") == 0){
//IN case
in();
} else if(strncmp(ptr2, "LIT", 3) == 0){
//LIT case
char* num;
num = strstr(ptr2, &ptr[4]);
lit(atoi(num));
}else if(strcmp(ptr2, "OUT") == 0){
//OUT case
out();
} else if(strcmp(ptr2, "DROP") == 0){
//DROP case
drop();
} else if(strncmp(ptr2, "DUP", 3) == 0){
//DUP case
char* number;
number = strstr(ptr2, &ptr[4]);
dup(atoi(number));
} else if(strcmp(ptr2, "SWAP") == 0){
//SWAP case
swap();
} else if(strcmp(ptr2, "ADD") == 0){
//ADD case
add();
} else if(strcmp(ptr2, "SUB") == 0){
//SUB case
subtrc();
} else if(strcmp(ptr2, "MUL") == 0){
//MUL case
mult();
} else if(strcmp(ptr2, "DIV") == 0){
//DIV case
DIV();
} else if(strcmp(ptr2, "MOD") == 0){
//MOD case
mod();
} else if(strcmp(ptr2, "AND") ==0){
//AND case
and();
} else if(strcmp(ptr2, "OR") == 0){
//OR case
or();
} else if(strncmp(ptr2, "JUMP", 4) == 0){
//JUMP case
jump();
} else if(strncmp(ptr2, "IFEQ", 4) == 0){
//IFEQ case
ifeq();
} else if(strncmp(ptr2, "IFLT", 4) == 0){
iflt();
}
}
printList();
}
//Struct for a node
struct node {
int value;
struct node *next;
};
struct node *head = NULL;
void lit(int value) {
//Creates a node
struct node *Node = (struct node*) malloc(sizeof(struct node));
Node->value = value;
//Point to old node
Node->next = head;
//Point to the new first node
head = Node;
}
//Prints out each node in the list
void printList() {
struct node *ptr4 = head;
while(ptr4 !=NULL){
printf("[%d]\n", ptr4->value);
ptr4 = ptr4 ->next;
}
}
//Removes the top integer from the list and prints it
//Instruction called "OUT" in project 1
void out(){
struct node Node;
//If the node is empty
if(head == NULL){
printf("The list is empty\n");
} else{
//pointer to original head node
struct node *tempHead = head;
//Node being removed
int temp = head->value;
//Head set to neighbor node
head = head->next;
free(tempHead);
printf("The value removed is [%d]\n", temp);
}
}
//Swaps the top two elements of the stack
void swap() {
//If the node is empty
if (head == NULL) {
printf("The list is empty\n");
} else {
//References nodes
struct node *node1 = head;
struct node *node2 = head->next;
//Points the head to the second node
head = node2;
//Points next of the first node to the next node of the head
node1->next = head->next;
//Points the next value to the first node(formally second node)
head->next = node1;
}
}
void dup(int n) {
struct node *ptr3 = head;
int array[100];
if (head == NULL) {
printf("The list is empty\n");
} else {
int count = 0;
while (ptr3 != NULL) {
int val = ptr3->value;
array[count] = val + 0;
ptr3 = ptr3->next;
count++;
}
for (int i = 0; i < 1; i++) {
if (head->value < head->next->value) {
for (int y = 0; y < n; y++) {
int vale = array[y];
lit(vale);
}
} else if(head->value > head->next->value) {
for (int x = n; x > 0; x--) {
int vale = array[x-1];
lit(vale);
}
}
}
}
}
//Reads the next integer from the input stream and pushes it on the list
void in(){
//Read an int
int numInput = 0;
printf("Enter an integer to push onto the stack: ");
scanf("%d", &numInput);
lit(numInput);
}
//Pops the top element of the list
void drop() {
//If the node is empty
if (head == NULL) {
printf("The list is empty\n");
} else {
//sets head value to its neighbor node
struct node *tempHead = head;
head = head->next;
free(tempHead);
}
}
//Pops top two ints and adds them
void add() {
if (head == NULL) {
printf("The list is empty\n");
} else {
//Gets the values of the first two nodes in the list
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 + value2;
lit(result);
}
}
void subtrc() {
if (head == NULL) {
printf("The list is empty\n");
} else {
//Gets the values of the first two nodes in the list
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 - value2;
lit(result);
}
}
void mult() {
if (head == NULL) {
printf("The list is empty\n");
} else {
//Gets the values of the first two nodes in the list
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 * value2;
lit(result);
}
}
void DIV() {
if (head == NULL) {
printf("The list is empty\n");
} else {
//Gets the values of the first two nodes in the list
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 / value2;
lit(result);
}
}
void mod() {
if (head == NULL) {
printf("The list is empty\n");
} else {
//Gets the values of the first two nodes in the list
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 % value2;
lit(result);
}
}
void and() {
if (head == NULL) {
printf("The list is empty\n");
} else {
//Gets the values of the first two nodes in the list
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 & value2;
lit(result);
}
}
void or() {
if (head == NULL) {
printf("The list is empty\n");
} else {
int value1 = head->value;
int value2 = head->next->value;
//Removes them from the list
drop();
drop();
//Adds the value of nodes together and pushes the result
int result = value1 | value2;
lit(result);
}
}
void jump(){
char* n;
n = strstr(ptr, &ptr[5]);
int instruct = atoi(n);
counter = instruct - 2;
}
void ifeq() {
if (head == NULL) {
printf("The list is empty\n");
} else {
int value1 = head->value;
int value2 = head->next->value;
if (head == NULL) {
printf("The list is empty\n");
} else if (value1 == value2) {
jump();
}
drop();
drop();
}
}
void iflt() {
int value1 = head->value;
int value2 = head->next->value;
if (head == NULL) {
printf("The list is empty\n");
} else if (value1 < value2) {
jump();
} else {
drop();
drop();
}
}