-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUContextos.pas
executable file
·649 lines (590 loc) · 19.7 KB
/
UContextos.pas
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
unit UContextos;
interface
procedure crea_atomos;
Type
CONTEXTO_BAS_REF = record
Resistencia : integer;
MaderaAlmacenada : integer;
PiedraAlmacenada : integer;
MetalAlmacenado : integeR;
LifeInRisk : integer;
SegInRisk : integer;
Nece_Madera : integer;
Nece_Piedra : integer;
Nece_Metal : integer;
end;
CONTEXTO_SOLDADO = record
Haciendo : string;
Victima : string;
Resistencia : integer;
Amenazado : string;
P_Equipo : integer;
P_ToBomber : integer;
P_ToEsp : integer;
Odio_Ene : integer;
Od_ToSolEne : integer;
Od_ToBomEne : integer;
Od_ToEspEne : integer;
SegInRisk : integer;
LifeInRisk : integer;
end;
CONTEXTO_BOMBER = record
Haciendo : string;
victima : string;
Resistencia : integer;
Amenazado : string;
P_Equipo : integer;
P_ToSoldado : integer;
P_ToEsp : integer;
Odio_Ene : integer;
Od_ToSolEne : integer;
Od_ToBomEne : integer;
Od_ToEspEne : integer;
SegInRisk : integer;
LifeInRisk : integer;
end;
CONTEXTO_ESPIA = record
Haciendo : string;
victima : string;
Resistencia : integer;
Amenazado : string;
P_Equipo : integer;
P_ToBomber : integer;
P_ToSoldado : integer;
Odio_Ene : integer;
Od_ToSolEne : integer;
Od_ToBomEne : integer;
Od_ToEspEne : integer;
SegInRisk : integer;
LifeInRisk : integer;
end;
ATOMO = record
No : integer;
Amenaza : string[5];
SR : integer;
OD : integer;
VR : integer;
Plantilla : string;
end;
Var
ATOMOS : array[1..50] of ATOMO;
ACCIONES_POSIBLES : Array[1..60,1..2] of string;
Buen_Desem : ATOMO;
Estar_Cerca : ATOMO;
Atacando : ATOMO;
Estar_Ocupado: ATOMO;
Refugiado : ATOMO;
CONTEXT_BASE : CONTEXTO_BAS_REF;
CONTEXT_BASEE: CONTEXTO_BAS_REF;
CONTEXT_REF : CONTEXTO_BAS_REF;
CONTEXT_REFE : CONTEXTO_BAS_REF;
CONTEXT_SOL : CONTEXTO_SOLDADO;
CONTEXT_SOLE : CONTEXTO_SOLDADO;
CONTEXT_BOM : CONTEXTO_BOMBER;
CONTEXT_BOME : CONTEXTO_BOMBER;
CONTEXT_ESP : CONTEXTO_ESPIA;
CONTEXT_ESPE : CONTEXTO_ESPIA;
implementation
uses
SysUtils, UEjecutaInstrucciones;
var
cad : string;
p1,p2 : integer;
quien : string;
a_quien : string;
Archivo : TextFile;
NoAtomos : integer;
Direct : string;
Instruccion: string;
num_asoc : integer;
NoAccion : integer;
formados : array[1..60] of string;
{================================================================ establece las plantillas}
procedure llena_plantillas;
begin
with Buen_Desem do
begin
AmenAza := '2'; // 2 o '2' = no importa
SR := 2;
OD := 1;
VR := 2;
end;
with Estar_Cerca do
begin
AmenAza := '2';
SR := 1;
OD := 2;
VR := 2;
end;
with Atacando do
begin
AmenAza := '2';
SR := 0;
OD := 1;
VR := 2;
end;
with Estar_Ocupado do
begin
AmenAza := '2';
SR := 1;
OD := 2;
VR := 2;
end;
with Refugiado do
begin
AmenAza := '2';
SR := 0;
OD := 0;
VR := 2;
end;
end;
{========================================================= EJECUTA ir_por_madera1}
procedure exe_IR_POR_MADERA1(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
IR_POR_MADERA1(QUIEN);
end;
{========================================================= EJECUTA ir_por_madera2}
procedure exe_IR_POR_MADERA2(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
IR_POR_MADERA2(QUIEN);
end;
{========================================================= EJECUTA ir_por_piedra1}
procedure exe_IR_POR_PIEDRA1(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
IR_POR_PIEDRA1(QUIEN);
end;
{========================================================= EJECUTA ir_por_piedra2}
procedure exe_IR_POR_PIEDRA2(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
IR_POR_PIEDRA2(QUIEN);
end;
{========================================================= EJECUTA ir_por_metal1}
procedure exe_IR_POR_METAL1(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
IR_POR_METAL1(QUIEN);
end;
{========================================================= EJECUTA ir_por_metal2}
procedure exe_IR_POR_METAL2(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
IR_POR_METAL2(QUIEN);
end;
{========================================================= EJECUTA atacar}
procedure exe_ATACAR_CON_MADERA(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(',',cad);
quien := Copy(cad,p1+1,p2-p1-1);
cad := copy(cad,p2+1,length(cad)-1); // quita el parentesis final
a_quien := cad;
ATACAR_CON_MADERA(quien,a_quien);
end;
{========================================================= EJECUTA atacar}
procedure exe_ATACAR_CON_PIEDRA(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(',',cad);
quien := Copy(cad,p1+1,p2-p1-1);
cad := copy(cad,p2+1,length(cad)-1); // quita el parentesis final
a_quien := cad;
ATACAR_CON_PIEDRA(quien,a_quien);
end;
{========================================================= EJECUTA atacar}
procedure exe_ATACAR_CON_METAL(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(',',cad);
quien := Copy(cad,p1+1,p2-p1-1);
cad := copy(cad,p2+1,length(cad)-1); // quita el parentesis final
a_quien := cad;
ATACAR_CON_METAL(quien,a_quien);
end;
{========================================================= EJECUTA CONSTRUIR}
procedure exe_CONSTRUIR_CON_MADERA(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := Copy(cad,p1+1,p2-p1-1);
CONSTRUIR_CON_MADERA(quien);
end;
{========================================================= EJECUTA CONSTRUIR}
procedure exe_CONSTRUIR_CON_PIEDRA(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := Copy(cad,p1+1,p2-p1-1);
CONSTRUIR_CON_PIEDRA(quien);
end;
{========================================================= EJECUTA CONSTRUIR}
procedure exe_CONSTRUIR_CON_METAL(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := Copy(cad,p1+1,p2-p1-1);
CONSTRUIR_CON_METAL(quien);
end;
{========================================================= EJECUTA refugiarse}
procedure exe_REFUGIARSE(cadena : string);
begin
cad := cadena;
p1 := pos('(',cad);
p2 := pos(')',cad);
quien := copy(cadena,p1 + 1,p2-p1-1);
REFUGIARSE(quien);
end;
{========================================================= CREANDO atomos}
procedure separa_numero_asociado(linea : string);
var
num : string;
begin
num := linea[3];
num_asoc := strToInt(num);
instruccion := copy(linea,5,length(linea)-4);
end;
{========================================================= AJECUTA LA ACCION CORRECTA}
procedure ejecutaAccCorrecta(linea : string);
begin
if pos('IR_POR_MADERA1',instruccion) > 0 then exe_IR_POR_MADERA1(instruccion);
if pos('IR_POR_MADERA2',instruccion) > 0 then exe_IR_POR_MADERA2(instruccion);
if pos('IR_POR_PIEDRA1',instruccion) > 0 then exe_IR_POR_PIEDRA1(instruccion);
if pos('IR_POR_PIEDRA2',instruccion) > 0 then exe_IR_POR_PIEDRA2(instruccion);
if pos('IR_POR_METAL1' ,instruccion) > 0 then exe_IR_POR_METAL1(instruccion);
if pos('IR_POR_METAL2' ,instruccion) > 0 then exe_IR_POR_METAL2(instruccion);
if pos('ATACAR_CON_MADERA',instruccion) > 0 then exe_ATACAR_CON_MADERA(instruccion);
if pos('ATACAR_CON_PIEDRA',instruccion) > 0 then exe_ATACAR_CON_PIEDRA(instruccion);
if pos('ATACAR_CON_METAL',instruccion) > 0 then exe_ATACAR_CON_METAL(instruccion);
if pos('REFUGIARSE',instruccion) > 0 then exe_REFUGIARSE(instruccion);
if pos('CONSTRUIR_CON_MADERA',instruccion) > 0 then exe_CONSTRUIR_CON_MADERA(instruccion);
if pos('CONSTRUIR_CON_PIEDRA',instruccion) > 0 then exe_CONSTRUIR_CON_PIEDRA(instruccion);
if pos('CONSTRUIR_CON_METAL',instruccion) > 0 then exe_CONSTRUIR_CON_METAL(instruccion);
end;
{========================================================= DEFINE LA PLANTILLA}
function plantilla(Ame : string; SR,OD,VR: integer):string;
begin
if SR = 1 then plantilla := 'Estar_Ocupado';
if OD = 1 then plantilla := 'Buen_Desem';
if (SR = 0) and (OD = 1) then plantilla := 'Atacando';
if (SR = 0) and (OD = 0) THEN plantilla := 'Refugiado'
end;
{========================================================= AJECUTA LA ACCION CORRECTA}
procedure LlenaAtomo(QUIEN : string);
begin
if quien = 'SOLDADO' then
begin
ATOMOS[NoAtomos].No := num_asoc;
ATOMOS[NoAtomos].Amenaza := Context_Sol.Amenazado;
ATOMOS[NoAtomos].SR := Context_Sol.SegInRisk;
ATOMOS[NoAtomos].OD := Context_Sol.Odio_Ene;
ATOMOS[NoAtomos].VR := Context_Sol.LifeInRisk;
ATOMOS[NoAtomos].Plantilla := plantilla(Context_Sol.Amenazado,Context_sol.SegInRisk,Context_sol.Odio_Ene,Context_sol.LifeInRisk)
end;
if quien = 'SOLDADO_ENEMIGO' then
begin
ATOMOS[NoAtomos].No := num_asoc;
ATOMOS[NoAtomos].Amenaza := Context_SolE.Amenazado;
ATOMOS[NoAtomos].SR := Context_SolE.SegInRisk;
ATOMOS[NoAtomos].OD := Context_SolE.Odio_Ene;
ATOMOS[NoAtomos].VR := Context_SolE.LifeInRisk;
ATOMOS[NoAtomos].Plantilla := plantilla(Context_SolE.Amenazado,Context_solE.SegInRisk,Context_solE.Odio_Ene,Context_solE.LifeInRisk);
end;
if quien = 'BOMBER' then
begin
ATOMOS[NoAtomos].No := num_asoc;
ATOMOS[NoAtomos].Amenaza := Context_Bom.Amenazado;
ATOMOS[NoAtomos].SR := Context_Bom.SegInRisk;
ATOMOS[NoAtomos].OD := Context_Bom.Odio_Ene;
ATOMOS[NoAtomos].VR := Context_Bom.LifeInRisk;
ATOMOS[NoAtomos].Plantilla := plantilla(Context_Bom.Amenazado,Context_Bom.SegInRisk,Context_Bom.Odio_Ene,Context_Bom.LifeInRisk);
end;
if quien = 'BOMBER_ENEMIGO' then
begin
ATOMOS[NoAtomos].No := num_asoc;
ATOMOS[NoAtomos].Amenaza := Context_BomE.Amenazado;
ATOMOS[NoAtomos].SR := Context_BomE.SegInRisk;
ATOMOS[NoAtomos].OD := Context_BomE.Odio_Ene;
ATOMOS[NoAtomos].VR := Context_BomE.LifeInRisk;
ATOMOS[NoAtomos].Plantilla := plantilla(Context_BomE.Amenazado,Context_BomE.SegInRisk,Context_BomE.Odio_Ene,Context_BomE.LifeInRisk);
end;
if quien = 'ESPIA' then
begin
ATOMOS[NoAtomos].No := num_asoc;
ATOMOS[NoAtomos].Amenaza := Context_Esp.Amenazado;
ATOMOS[NoAtomos].SR := Context_Esp.SegInRisk;
ATOMOS[NoAtomos].OD := Context_Esp.Odio_Ene;
ATOMOS[NoAtomos].VR := Context_Esp.LifeInRisk;
ATOMOS[NoAtomos].Plantilla := plantilla(Context_Esp.Amenazado,Context_Esp.SegInRisk,Context_Esp.Odio_Ene,Context_Esp.LifeInRisk);
end;
if quien = 'ESPIA_ENEMIGO' then
begin
ATOMOS[NoAtomos].No := num_asoc;
ATOMOS[NoAtomos].Amenaza := Context_EspE.Amenazado;
ATOMOS[NoAtomos].SR := Context_EspE.SegInRisk;
ATOMOS[NoAtomos].OD := Context_EspE.Odio_Ene;
ATOMOS[NoAtomos].VR := Context_EspE.LifeInRisk;
ATOMOS[NoAtomos].Plantilla := plantilla(Context_EspE.Amenazado,Context_EspE.SegInRisk,Context_EspE.Odio_Ene,Context_EspE.LifeInRisk);
end;
end;
{========================================================= borra atomos y Siguientes_Acciones}
procedure borraAtomosAcciones;
var
i: integer;
begin
for i := 1 to 50 do
begin
ATOMOS[i].No := 0;
ATOMOS[i].Amenaza := '';
ATOMOS[i].SR := 0;
ATOMOS[i].OD := 0;
ATOMOS[i].VR := 0;
ATOMOS[i].Plantilla := '';
end;
for i := 1 to 60 do
begin
ACCIONES_POSIBLES[i,1] := '';
ACCIONES_POSIBLES[i,2] := '';
end;
end;
{========================================================= quito átomos repetidos}
procedure actualizaAtomos;
var
i,j,n,p,sr,od,vr,h : integer;
c,c2,ame,pl,acc,nc,enc : string;
existe : boolean;
begin
i := 0;
c := 'vacia';
repeat
i := i + 1;
c2 := formados[i];
if c2 <> '' then
begin
c := c2;
p := pos('&',c);
nc := copy(c,1,p-1);
n := strToInt(nc); //numero (int)
c := copy(c,p+1,length(c)-p);
p := pos('&',c);
ame := copy(c,1,p-1); //amenaza
c := copy(c,p+1,length(c)-p);
p := pos('&',c);
sr := StrToInt(copy(c,1,p-1)); //SR
c := copy(c,p+1,length(c)-p);
p := pos('&',c);
od := StrToInt(copy(c,1,p-1)); //OD
c := copy(c,p+1,length(c)-p);
p := pos('&',c);
vr := StrToInt(copy(c,1,p-1)); //VR
c := copy(c,p+1,length(c)-p);
p := pos('&',c);
pl := copy(c,1,p-1); //plantilla
c := copy(c,p+1,length(c)-p);
ATOMOS[i].No := n;
ATOMOS[i].Amenaza := ame;
ATOMOS[i].SR := sr;
ATOMOS[i].OD := od;
ATOMOS[i].VR := vr;
ATOMOS[i].Plantilla := pl;
j := 0;
enc := 'vacia';
existe := false;
repeat
p := pos('&',c);
if p > 0 then
begin
repeat
j := j + 1;
enc := ACCIONES_POSIBLES[j,2];
if enc = '' then break;
until enc = '';
acc := copy(c,1,p-1);
c := copy(c,p+1,length(c)-p);
for h := 1 to j do
begin
if acc = ACCIONES_POSIBLES[h,2] then existe := true;
end;
if existe = false then
begin
ACCIONES_POSIBLES[j,1] := nc;
ACCIONES_POSIBLES[j,2] := acc;
end;
end;
until p = 0;
end;
until c2 = '';
end;
{========================================================= quito átomos repetidos}
procedure filtro_atomos;
var
nu,i,j,z : integer;
nuc : string[10];
cadena,c : string;
accion : string;
existe : boolean;
begin
nuc := 'uno';
instruccion := 'vacia';
i := 0;
c := 'vacia';
while nuc <> '0' do
begin
i := i + 1;
nu := ATOMOS[i].No;
nuc := intToStr(nu);
if nuc = '0' then break;
cadena := nuc + '&' + ATOMOS[i].Amenaza + '&' + IntToStr(ATOMOS[i].SR)+ '&' +
IntToStr(ATOMOS[i].OD) + '&'+ IntToStr(ATOMOS[i].VR)+ '&'+ ATOMOS[i].Plantilla;
j := 0;
repeat
j := j + 1;
accion := ACCIONES_POSIBLES[j,2];
if ACCIONES_POSIBLES[j,1] = nuc then cadena := cadena + '&'+ accion;
until accion = '';
cadena := cadena + '&';
z := 0;
existe := false;
repeat
z := z + 1;
c := formados[z];
if c = cadena then
begin
existe := true;
break;
end;
until c = '';
if existe = false then formados[z] := cadena;
end;
borraAtomosAcciones;
actualizaAtomos;
end;
{========================================================= crea archivo de ATOMOS}
procedure ArchivoAtomos(nombre : string; cuantos : integer);
var
i,j : integer;
cuentaAtomos : integer;
AtomosFile : TextFile;
nu : string;
accion : string;
begin
cuentaAtomos := 0;
AssignFile(AtomosFile,Direct + '\DEF\' + nombre);
rewrite(AtomosFile);
For i := 1 To cuantos Do
begin
cuentaAtomos := cuentaAtomos + 1;
writeln(AtomosFile,'*** ATOMO #' + IntToStr(cuentaAtomos) + ' ***');
writeln(AtomosFile,'SR : '+ intToStr(ATOMOS[i].SR));
writeln(AtomosFile,'VR : '+ intToStr(ATOMOS[i].VR));
writeln(AtomosFile,'OD : '+ intToStr(ATOMOS[i].OD));
writeln(AtomosFile,'PLANTILLA: '+ ATOMOS[i].plantilla);
writeln(AtomosFile,' -------------------------');
writeln(AtomosFile,' --ACCIONES RELACIONADAS--');
writeln(AtomosFile,' -------------------------');
nu := IntToStr(ATOMOS[i].No);
accion := 'vacia';
j := 0;
repeat
j := j + 1;
accion := ACCIONES_POSIBLES[j,2];
if ACCIONES_POSIBLES[j,1] = nu then writeln(AtomosFile,accion);
until accion = '';
writeln(AtomosFile,'');
writeln(AtomosFile,'');
end;
closefile(AtomosFile);
end;
{========================================================= CREANDO atomos}
procedure crea_atomos;
var
linea : string;
i,nuAtomos,nu : integer;
begin
NoAtomos := 0;
NoAccion := 0;
Direct := GetCurrentDir;
AssignFile(archivo, Direct + '\DEF\ESTRATEGIAS.txt');
reset(archivo);
for i := 1 to 60 do // vacia ACCIONES_POSIBLES
begin
ACCIONES_POSIBLES[i,1] := '';
ACCIONES_POSIBLES[i,2] := '';
formados[i] := '';
end;
While not EOF(archivo) do
begin
readln(archivo,linea);
if length(linea)> 0 then
begin
if linea[1] = 'd' then // lee descripción y ejecuta la accion llenando los contextos
begin
separa_numero_asociado(linea); {--> obtiene "num" e "instruccion"}
EjecutaAccCorrecta(linea); {--> obtiene "quien"}
NoAtomos := NoAtomos + 1;
LlenaAtomo(quien);
end;
if linea[1] = 'e' then // carga las acciones posibles.
begin
NoAccion := NoAccion + 1;
separa_numero_asociado(linea);
ACCIONES_POSIBLES[NoAccion,1] := IntToStr(num_asoc);
ACCIONES_POSIBLES[NoAccion,2] := instruccion;
end;
end;
end;
closefile(archivo);
// crea el archivo de átomos
nuAtomos := 0;
// nu := 1;
repeat
nuAtomos := nuAtomos + 1;
nu := ATOMOS[nuAtomos].No;
if nu = 0 then
begin
nuAtomos := nuAtomos - 1;
break;
end;
until nu = 0;
ArchivoAtomos('ATOMOS.txt',nuAtomos);
filtro_atomos;
nuAtomos := 0;
// nu := 1;
repeat
nuAtomos := nuAtomos + 1;
nu := ATOMOS[nuAtomos].No;
if nu = 0 then
begin
nuAtomos := nuAtomos - 1;
break;
end;
until nu = 0;
ArchivoAtomos('ATOMOSFINALES.txt',nuAtomos);
end;
end.