-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
353 lines (283 loc) · 6.89 KB
/
main.cpp
File metadata and controls
353 lines (283 loc) · 6.89 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
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int nSimbols = 0;
int nStates = 0;
int initState = 0;
int finalStates = 0;
int tab = 0;
void writeHeaderGoto(ofstream&);
void writeStateLabel(ofstream&,int);
void writeSimbol(ofstream& file,int, int, char*);
void tabula(ofstream&,int);
void writeIfGoto(ofstream&, char*, int, int);
void writeLabel(ofstream&, int);
void writeElse(ofstream&);
void writeFinalStateGoto(ofstream&);
void writeRejectGoto(ofstream&);
void writeRejectLabel(ofstream&);
void writeAcceptLabel(ofstream&);
// Function mode
void writeIfFun(ofstream&, char*, int, int);
void writeMain(ofstream&);
void writeHeaderFun(ofstream&);
void writeFunReference(ofstream&);
void writeFun(ofstream&,int);
void writeRejectCall(ofstream&);
void writeFinalStateFun(ofstream&);
void writeRejectFun(ofstream&);
void writeAcceptFun(ofstream&);
int fileExist(string);
int main()
{
cout << "executando programa..."<<endl;
cout << "* Gerador de Programas *"<<endl;
cout << "\nQuantos simbolos tem o alfabeto? ";
cin >> nSimbols;
char vecSimbols[nSimbols];
for(int i = 0; i < nSimbols; i++){
cout << "\nQual o simbolo " << i << " ? ";
cin >> vecSimbols[i];
}
cout << "\nQuantos estados tem o automato? ";
cin >> nStates;
cout << "\nQual o estado inicial? ";
cin >> initState;
cout << "\nQuantos estados finais? ";
cin >> finalStates;
int vecFinalStates[finalStates];
for(int i = 0; i < finalStates; i++){
cout << "\nQual o estado final " << i << " ? ";
cin >> vecFinalStates[i];
}
int matSimbToState[nStates][nSimbols];
for(int state = 0; state < nStates; state++){
for(int simbol = 0; simbol < nSimbols; simbol++){
cout << "\nPara o estado 'e" << state << "'" << " e o simbolo " << "'" << vecSimbols[simbol] << "'" << " qual o proximo estado? ";
cin >> matSimbToState[state][simbol];
}
}
/*Creating file with a given name and writing the basic program header*/
string name;
cout << "Qual o nome do arquivo? " << endl;
cin >> name;
while(fileExist(name)){
cout << "O arquivo ja existe, digite outro nome" <<endl;
cin >> name;
}
ofstream file;
file.open(name+".c");
int mode = 0;
cout << "Qual o metodo será utilizado? 0 - Funcao || 1 - GoTo " << endl;
cin >> mode;
if(mode == 0){
writeHeaderFun(file);
writeFunReference(file);
writeMain(file);
for(int state = 0; state < nStates; state++){
tab = 1;
writeFun(file,state);
for (int i = 0; i < finalStates; i++){
if(state == vecFinalStates[i]){
writeFinalStateFun(file);
writeElse(file);
}
}
for(int simbol = 0; simbol < nSimbols; simbol++){
if(matSimbToState[state][simbol] != -1){
writeIfFun(file, vecSimbols, simbol, matSimbToState[state][simbol]);
writeElse(file);
}
}
writeRejectCall(file);
tab = 0;
tabula(file, tab);
file << "}\n";
}
writeRejectFun(file);
writeAcceptFun(file);
}
else
if(mode == 1){
writeHeaderGoto(file);
for(int state = 0; state < nStates; state++){
tab = 1;
writeLabel(file, state);
for (int i = 0; i < finalStates; i++){
if(state == vecFinalStates[i]){
writeFinalStateGoto(file);
writeElse(file);
}
}
for(int simbol = 0; simbol < nSimbols; simbol++){
if(matSimbToState[state][simbol] != -1){
writeIfGoto(file, vecSimbols, simbol, matSimbToState[state][simbol]);
writeElse(file);
}
}
writeRejectGoto(file);
}
tab = 0; // Reset tab
writeRejectLabel(file);
writeAcceptLabel(file);
file << "}\n"; // Close main
file.close();
}
else{
cout << "Nenhuma escolha valida!" << endl;
return 2;
}
}
int fileExist(string name){
FILE *file;
string fullName = name+".c";
if(file = fopen(fullName.c_str(),"r")){
fclose(file);
return 1;
}
return 0;
}
// Functions related to Function mode
void writeHeaderFun(ofstream& file){
file << "#include<stdio.h>\n\n";
}
void writeFunReference(ofstream& file){
for (int i = 0; i < nStates; i++){
file << "void e"+to_string(i)+"(char*,int);\n";
}
file << "void aceita();\n";
file << "void rejeita();\n\n";
}
void writeMain(ofstream& file){
file << "int main(){\n\n";
file << "char word[200];\n";
file << "int i = 0;\n";
file << "gets(word);\n\n";
file << "e"+to_string(initState)+"(word,i);"+"\n";
file << "}\n\n";
}
void writeFinalStateFun(ofstream& file){
tabula(file,tab);
file << "if(word[i] == 0){\n";
tab ++;
tabula(file,tab);
file << "aceita();\n";
tab--;
tabula(file,tab);
file << "}\n";
}
void writeRejectFun(ofstream& file){
tabula(file,tab);
file << "void rejeita(){\n";
tab++;
tabula(file,tab);
file << "printf(\"REJEITADO!!!\");\n";
file << "return 1;\n";
tab--;
tabula(file,tab);
file << "}\n\n";
}
void writeAcceptFun(ofstream& file){
tabula(file,tab);
file << "void aceita(){\n";
tab++;
tabula(file,tab);
file << "printf(\"ACEITO!!!\");\n";
file << "return 0;\n";
tab--;
tabula(file,tab);
file << "}\n";
}
void writeRejectCall(ofstream& file){
tabula(file,tab);
file << "rejeita();\n";
tab--;
}
void writeIfFun(ofstream& file, char* vecSimbols, int simbol, int nextState){
tabula(file,tab);
file << "if(word[i] == "+to_string(vecSimbols[simbol])+"){\n";
tab++;
tabula(file,tab);
file << "i++;\n";
tabula(file,tab);
file << "e"+to_string(nextState)+"(word,i);\n";
tab--;
tabula(file,tab);
file << "}\n";
}
void writeFun(ofstream& file, int state){
file << "void e"+to_string(state)+"(char* word,int i){\n";
}
// Functions related to Goto mode
void writeRejectLabel(ofstream& file){
tabula(file,tab);
file << "REJEITA:\n";
tab++;
tabula(file,tab);
file << "printf(\"REJEITADO!!!\");\n";
tabula(file,tab);
file << "return 1;\n\n";
tab--;
}
void writeAcceptLabel(ofstream& file){
tabula(file,tab);
file << "ACEITA:\n";
tab++;
tabula(file,tab);
file << "printf(\"ACEITO!!!\");\n";
tabula(file,tab);
file << "return 0;\n";
tab--;
}
void writeFinalStateGoto(ofstream& file){
tabula(file,tab);
file << "if(word[i] == 0){\n";
tab ++;
tabula(file,tab);
file << "goto ACEITA;\n";
tab--;
tabula(file,tab);
file << "}\n";
}
void writeRejectGoto(ofstream& file){
tabula(file,tab);
file << "goto REJEITA;\n\n";
tab--;
}
void writeIfGoto(ofstream& file, char* vecSimbols, int simbol, int nextState){
tabula(file,tab);
file << "if(word[i] == "+to_string(vecSimbols[simbol])+"){\n";
tab++;
tabula(file,tab);
file << "i++;\n";
tabula(file,tab);
file << "goto E"+to_string(nextState)+";\n";
tab--;
tabula(file,tab);
file << "}\n";
}
void writeElse(ofstream& file){
tabula(file,tab);
file << "else\n";
tab++;
}
void writeHeaderGoto(ofstream& file){
file << "#include<stdio.h>\n\n";
file << "int main(){\n\n";
file << "char word[200];\n";
file << "int i = 0;\n";
file << "gets(word);\n\n";
file << "E"+to_string(initState)+":"+"\n";
}
void writeLabel(ofstream& file, int state){
if(state != initState){
file << "E"+to_string(state)+":\n";
}else
return;
}
void tabula(ofstream& file, int times){
for(int i = 0; i < times; i++){
file << "\t";
}
}