-
Notifications
You must be signed in to change notification settings - Fork 1
/
Myfriend.c
330 lines (301 loc) · 5.66 KB
/
Myfriend.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void notice(int x){
if(x==1){
system("clear");
printf("ATTENTION :::::Dado incorreto:::::ATTENTION\n\n");
}
printf("********************************\n");
printf("* Quero conversar: PRESS <1> *\n");
printf("* Sou Administrador: PRESS <2> *\n");
printf("* desejo sair: PRESS <3> *\n");
printf("********************************\n");
}
int menu(){
char a=0;
int valor;
char senha[50];
int pass;
scanf("%c",&a);
while(a!='1' && a!='2' && a!='3'){
notice(1);
scanf("%c",&a);
}
switch(a){
case '1':
valor = 1;
break;
case '2':
printf("Digite sua senha:\n");
scanf("%s",senha);
if(strlen(senha)==4){
pass = strcmp(senha,"9438");
if(pass == 0){
valor = 2;
}
else{
notice(1);
valor = menu();
}
}
else{
notice(1);
valor = menu();
}
break;
case '3':
valor = 3;
break;
}
return valor;
}
void print(char BOX[][100]){
int i;
system("clear");
printf("\t**********My Friend***********\n\n");
for(i=0;i<5;i++){
printf("%s\n",BOX[i]);
printf("\n");
}
printf("\n********************************************************************************\n");
}
void talk(){
FILE *arq;
int count;
int tam;
char **perg;
char **resp;
char BOX[5][100];
char msg[100],send[100];
int i,j,ouro;
system("clear");
printf("Iniciando......\n");
arq = fopen("ask.txt","r");
if(arq == NULL){
printf("falha ao abrir arquivo(ask)\n");
exit(1);
}
count = 0;
while(fgets(msg,100,arq)!=NULL){
count++;
}
rewind(arq);
perg = (char **) malloc(count * sizeof(char *));
for(i=0;i<count;i++){
perg[i] = (char *) malloc(100 * sizeof(char));
}
j = 0;
while(fgets(msg,100,arq)!=NULL){
tam = strlen(msg);
msg[tam-1] = '\0';
strcpy(perg[j],msg);
j++;
}
fclose(arq);
arq = fopen("ans.txt","r");
if(arq == NULL){
printf("falha ao abrir arquivo(ans)\n");
for(i=0;i<count;i++){
free(perg[i]);
}
free(perg);
exit(1);
}
resp = (char **) malloc(count * sizeof(char *));
for(i=0;i<count;i++){
resp[i] = (char *) malloc(100 * sizeof(char));
}
j = 0;
while(fgets(msg,100,arq)!=NULL){
tam = strlen(msg);
msg[tam-1] = '\0';
strcpy(resp[j],msg);
j++;
}
fclose(arq);
arq = fopen("question.txt","a");
if(arq == NULL){
printf("falha ao abrir arquivo(question)\n");
for(i=0;i<count;i++){
free(resp[i]);
free(perg[i]);
}
free(resp);
free(perg);
}
for(i=0;i<5;i++){
strcpy(BOX[i]," ");
}
strcpy(BOX[0],"Digite (SAIR) em maiusculo. Para sair do chat");
while(1){
print(BOX);
scanf(" %[^\n]",msg);
if(strcmp(msg,"SAIR")==0){
break;
}
for(i=0;i<4;i++){
strcpy(BOX[i],BOX[i+1]);
}
strcpy(BOX[4],"Voce: ");
strcat(BOX[4],msg);
print(BOX);
ouro = -1;
for(i=0;i<count;i++){
if(strcmp(msg,perg[i])==0){
ouro = i;
break;
}
}
strcpy(send,"friend: ");
if(ouro == -1){
fputs(msg,arq);
fputc('\n',arq);
strcat(send,"Estou em fase de teste. Nao sei responder isso ainda");
}
else{
strcat(send,resp[ouro]);
}
for(i=0;i<4;i++){
strcpy(BOX[i],BOX[i+1]);
}
strcpy(BOX[4],send);
}
for(i=0;i<count;i++){
free(resp[i]);
free(perg[i]);
}
free(resp);
free(perg);
fclose(arq);
}
void adm(){
FILE *arq;
FILE *perg;
FILE *resp;
char **cur;
char buffer[100];
int count;
int i,j,k,tam;
char msg[100];
system("clear");
printf("Iniciando...\n");
arq = fopen("question.txt","r");
if(arq == NULL){
printf("falha ao abrir arquivo(question)\n");
exit(1);
}
count = 0;
while(fgets(msg,100,arq)!=NULL){
count++;
}
cur = (char **) malloc(count * sizeof(char *));
for(i=0;i<count;i++){
cur[i] = (char *) malloc(100 * sizeof(char));
}
rewind(arq);
j=0;
while(fgets(msg,100,arq)!=NULL){
tam = strlen(msg);
msg[tam-1] = '\0';
strcpy(cur[j],msg);
j++;
}
fclose(arq);
perg = fopen("ask.txt","a");
if(perg == NULL){
printf("Falha ao abrir arquivo(ask)\n");
for(i=0;i<count;i++){
free(cur[i]);
}
free(cur);
exit(1);
}
resp = fopen("ans.txt","a");
if(resp == NULL){
printf("Falha ao abrir arquivo(ans)\n");
for(i=0;i<count;i++){
free(cur[i]);
}
free(cur);
fclose(perg);
exit(1);
}
system("clear");
k = 0;
while(1){
scanf(" %[^\n]",msg);
if(strcmp(msg,"PERGUNTAS")==0){
printf("tenho %d coisas para aprender!\n",count-k);
}
else if(strcmp(msg,"EXIT")==0){
arq = fopen("question.txt","w");
if(arq == NULL){
printf("falha ao abrir arquivo(question)\n");
break;
}
while(k!=count){
fputs(cur[k],arq);
fputc('\n',arq);
k++;
}
fclose(arq);
printf("Ate a proxima!\n");
break;
}
printf("Como devo responder um:\n");
printf("%s\n",cur[k]);
scanf(" %[^\n]",buffer);
while(strcmp(buffer,"REPEAT")==0){
k++;
system("clear");
printf("Como devo responder um:\n");
printf("%s\n",cur[k]);
scanf(" %[^\n]",buffer);
}
fputs(cur[k],perg);
fputc('\n',perg);
fputs(buffer,resp);
fputc('\n',resp);
printf("\nME diga uma pergunta parecida com esta.\n");
scanf(" %[^\n]",msg);
while(strcmp(msg,"FIM")!=0){
fputs(msg,perg);
fputc('\n',perg);
fputs(buffer,resp);
fputc('\n',resp);
printf("Armazenado.Se tiver mais, continue:\n");
scanf(" %[^\n]",msg);
}
system("clear");
printf("Salvo na memoria. Deseja continuar ?\n");
k++;
if(k==count){
system("clear");
printf("Por hoje acabou. Ate mais..\n");
arq = fopen("question.txt","w");
fclose(arq);
break;
}
}
fclose(resp);
fclose(perg);
for(i=0;i<count;i++){
free(cur[i]);
}
free(cur);
}
int main(){
int mod;
system("clear");
printf("\t*****Seja Bem-vindo ao \"Myfriend\"*****\n\n");
notice(2);
mod = menu();
if(mod == 1){
talk();
}
else if(mod == 2){
adm();
}
return 0;
}