-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataProgram.pas
1850 lines (1780 loc) · 46 KB
/
dataProgram.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
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit dataProgram;
{$mode Delphi}
interface
uses
Sysutils,DateUtils,Math;
type
mentah = record //bahanMentah
nama : string;
harga: longint;
exp: integer;
end;
olahan = record //bahanOlahan
nama : string;
harga: longint;
n: integer; //jumlah komponen penyusun
komponen: array[1..20] of string;
end;
resep = record //resep
nama : string;
harga: longint;
n: integer;
komponen: array[1..20] of string;
end;
invMentah = record //inventory bahan mentah
nama: string;
tanggal: TDateTime;
jumlah: integer;
end;
invOlahan = record //inventory bahan mentah
nama: string;
tanggal: TDateTime;
jumlah: integer;
end;
simulasi = record
nomor: integer;
tanggalStart: TDateTime;
komponen: array[1..11] of longint;
end;
rEner = record // tipe bentukan agar bisa menampung count dan boolean
energi : longint;
CMakan : integer;
CTidur : integer;
CIstirahat : integer;
end;
//--------------------------PROCEDURE-------------------
procedure ubahUang(besar: integer);
procedure ubahEnergy(banyak: integer); // + jika nambah energy, - jika kurang energy
procedure readMentah (var namaFile: string);
procedure readOlahan (var namaFile: string);
procedure readResep (var namaFile: string);
procedure readInvMentah (var namaFile: string);
procedure readInvOlahan (var namaFile: string);
procedure readSimulasi (var namaFile: string );
procedure parser(command: string);
procedure load();
procedure startSimulation(nomorInput:integer);
procedure newSimulation(nomorInput: integer);
procedure resetFileName();
procedure writeSimulasi();
procedure keluar();
procedure belibahan(); {untuk membeli sesuatu}
procedure refreshInv();
procedure upgradeInventori();
procedure olahBahan();
procedure jualOlahan();
procedure jualResep();
procedure refreshCount();
procedure istirahat ();
procedure tidur();
procedure makan ();
procedure cariResep();
procedure writeResep();
procedure tambahResep();
procedure lihatInv();
procedure lihatResep();
procedure lihatStat();
procedure help();
procedure writeInvOlahan();
procedure writeInvMentah();
//------------------FUNCTION----------------------
function copyIdx(kata:string;a,b:integer):string;
function cekExpire(tanggal_input: TDateTime; jumlahInc: integer): boolean;
function cariIdxInv(mode: integer; namaBahan: string): integer;
function cariIdxSimulasi(no: integer): integer;
function cukupUang(besar: integer):boolean;
function cukupInv(besar: integer):boolean;
function validEnergy(banyak: integer):boolean;
function LevenshteinDistance(s, t: string): longint;
var
nomor, energy: integer;
jlhSimulasi,jlhMentah,jlhOlahan,jlhResep,jlhInvOlahan,jlhInvMentah: integer;
jlhItemOlahan,jlhItemMentah: longint;
fileMentah, fileOlahan, fileResep, fileInvMentah, fileInvOlahan, fileSimulasi: TextFile;
listMentah: array[1..100] of mentah; //array berisi daftar bahan mentah
listOlahan: array[1..100] of olahan;
listResep: array[1..100] of resep;
listInvMentah: array[1..1001] of invMentah;
listInvOlahan: array[1..1001] of invOlahan;
listSimulasi: array[1..100] of simulasi;
kalimat: string;
ener : Rener; //energi
//-------------------
kapasitasInv: longint; //variable kapasitas inventory
//nama files
namaFileMentah : string = 'Bahan Mentah.txt';
namaFileOlahan : string = 'Bahan Olahan.txt';
namaFileResep : string = 'Resep.txt';
namaFileInvMentah : string = '/Inventori Bahan Mentah.txt';
namaFileInvOlahan: string = '/Inventori Bahan Olahan.txt';
namaFileSimulasi: string = 'Simulasi.txt';
//----statistik
tanggalSekarang: TDateTime; //tanggal dalam simulasi
noSimulasi : integer;
tanggalAwal: TDateTime; //tanggal dalam simulasi
jlhHariHidup: integer;
mentahBeli, olahanBuat, olahanJual, resepJual : longint; //4 serangkai
pemasukan, pengeluaran, uang: longint; //berkaitan dengan uang
//----miscelaneous
loaded: boolean = false;
isSimulating : boolean = false;
doSth: boolean;
commands: array[1..16] of string;
implementation
function cukupEnergi():boolean;
begin
if ener.energi > 0 then
begin
cukupEnergi:= true;
end
else
begin
cukupEnergi:= false;
end;
end;
procedure restock();
var
total: integer;
jawab: string;
begin
if ((jlhHariHidup mod 3=0) and (jlhHariHidup<>0)) then
begin
writeln('------------------------Restock------------------------');
total:= 5000;
if cukupUang(-1*total) then
begin
if cukupInv(-1*10) then
begin
writeln('Apakah anda ingin restock 5 air dan 5 telur dengan harga 5000?(y/n)');
repeat
readln(jawab);
if not (jawab='y') or (jawab='n') then
begin
writeln('Input invalid!');
end;
until (jawab='y') or (jawab='n');
if jawab='y' then
begin
ubahUang(-1*total);
//UPDATE ARRAY UNTUK AIR
jlhItemMentah:= jlhItemMentah + 5; //JUMLAH INVENTORY TERPAKAI + x
jlhInvMentah:= jlhInvMentah + 1; //JUMLAH ARRAY + 1
listInvMentah[jlhInvMentah].nama:='Air';
listInvMentah[jlhInvMentah].tanggal:=tanggalSekarang;
listInvMentah[jlhInvMentah].jumlah:=5;
//UPDATE ARRAY UNTUK TELUR
jlhItemMentah:= jlhItemMentah + 5; //JUMLAH INVENTORY TERPAKAI + x
jlhInvMentah:= jlhInvMentah + 1; //JUMLAH ARRAY + 1
listInvMentah[jlhInvMentah].nama:='Telur';
listInvMentah[jlhInvMentah].tanggal:=tanggalSekarang;
listInvMentah[jlhInvMentah].jumlah:=5;
//UPDATE STATISTIK
mentahBeli:= mentahBeli+10;
pengeluaran:= pengeluaran+total;
//ENDING
writeln('Biaya restock anda: ', total);
writeln('Sisa Uang anda: ',uang);
writeln('Terima kasih! Barang diantar dan tidak mengurangi energi anda!');
end
else
begin
writeln('Baik, Terimakasih!');
end;
end
else
begin
writeln('Restock gagal! Inventori hanya tersisa ', kapasitasInv-jlhItemMentah-jlhItemOlahan);
end;
end
else
begin
writeln('Restock gagal! Uang tidak cukup');
end;
end;
writeInvMentah();
end;
procedure writeInvOlahan();
var
fileInvOlahan: TextFile;
i: integer;
begin
assignfile(fileInvOlahan, namaFileInvOlahan);
rewrite(fileInvOlahan);
for i:= 1 to jlhInvOlahan do
begin
writeln(fileInvOlahan,listInvOlahan[i].nama,'|',DateToStr(listInvOlahan[i].tanggal),'|',listInvOlahan[i].jumlah);
end;
write(fileInvOlahan,'-999');
CloseFile(fileInvOlahan);
end;
procedure stop();
begin
writeSimulasi();
isSimulating:=false;
resetFileName();
end;
procedure writeInvMentah();
var
i: integer;
begin
assignfile(fileInvMentah, namaFileInvMentah);
rewrite(fileInvMentah);
for i:= 1 to jlhInvMentah do
begin
writeln(fileInvMentah,listInvMentah[i].nama,'|',DateToStr(listInvMentah[i].tanggal),'|',listInvMentah[i].jumlah);
end;
write(fileInvMentah,'-999');
CloseFile(fileInvMentah);
//writeln('haha')
end;
procedure writeSimulasi();
var
fileSimulasi: TextFile;
i,j: integer;
begin
assignfile(fileSimulasi, 'Simulasi.txt');
rewrite(fileSimulasi);
//UPDATE STATISTIK SEBELUM DI TULISKAN
if isSimulating then
begin
listSimulasi[noSimulasi].komponen[1]:=jlhharihidup;
if ((ener.energi= 10) and doSth) then
begin
ener.energi:=-10;
end;
listSimulasi[noSimulasi].komponen[2]:=ener.energi;
listSimulasi[noSimulasi].komponen[3]:=kapasitasInv;
listSimulasi[noSimulasi].komponen[4]:=mentahBeli;
listSimulasi[noSimulasi].komponen[5]:=olahanBuat;
listSimulasi[noSimulasi].komponen[6]:=olahanJual;
listSimulasi[noSimulasi].komponen[7]:=resepJual;
listSimulasi[noSimulasi].komponen[8]:=pemasukan;
listSimulasi[noSimulasi].komponen[9]:=pengeluaran;
listSimulasi[noSimulasi].komponen[10]:=uang;
end;
for i:= 1 to jlhSimulasi do
begin
write(fileSimulasi,listSimulasi[i].nomor);
write(fileSimulasi,'|', DateToStr(listSimulasi[i].tanggalStart));
for j:=1 to 10 do
begin
write(fileSimulasi,'|', listSimulasi[i].komponen[j]);
end;
writeln(fileSimulasi);
end;
write(fileSimulasi,'-999');
CloseFile(fileSimulasi);
end;
procedure writeResep();
var
fileResep: TextFile;
i,j: integer;
begin
assignfile(fileResep, 'Resep.txt');
rewrite(fileResep);
for i:= 1 to jlhResep do
begin
write(fileResep,listResep[i].nama);
write(fileResep,'|', listResep[i].harga);
write(fileResep,'|', listResep[i].n);
for j:=1 to listResep[i].n do
begin
write(fileResep,'|', listResep[i].komponen[j]);
end;
writeln(fileResep);
end;
write(fileResep,'-999');
CloseFile(fileResep);
end;
procedure newSimulation(nomorInput: integer);
var
nIdx: Integer; //NEW INDEX
begin
//PEMBACAAN INVENTORY
CreateDir(IntToStr(nomorInput));
namaFileInvMentah:= concat(IntToStr(nomorInput),namaFileInvMentah);
//writeln('namaFile: ',namaFileInvMentah);
namaFileInvOlahan:= concat(IntToStr(nomorInput),namaFileInvOlahan);
assignfile(fileInvMentah,namaFileInvMentah);
assignfile(fileInvOlahan,namaFileInvOlahan);
rewrite(fileInvMentah);
rewrite(fileInvOlahan);
writeln(fileInvMentah,-999);
writeln(fileInvOlahan,-999);
CloseFile(fileInvMentah);
CloseFile(fileInvOlahan);
//INISIALISASI KE ARRAY
nIdx:= jlhSimulasi+1;
listSimulasi[nIdx].nomor:= nomorInput;
listSimulasi[nIdx].tanggalStart:= today;
listSimulasi[nIdx].komponen[1]:=0; //hari hidup
listSimulasi[nIdx].komponen[2]:=10; // ener.energi
listSimulasi[nIdx].komponen[3]:=500; // kapasitasInv
listSimulasi[nIdx].komponen[4]:=0; //mentahBeli:=
listSimulasi[nIdx].komponen[5]:=0; //olahanBuat:=
listSimulasi[nIdx].komponen[6]:=0; //olahanJual:=
listSimulasi[nIdx].komponen[7]:=0; //resepJual:=
listSimulasi[nIdx].komponen[8]:=5000; //pemasukan:=
listSimulasi[nIdx].komponen[9]:=0; //pengeluaran:=
listSimulasi[nIdx].komponen[10]:=5000; //uang:=
//LOADING INFO SIMULASI
noSimulasi:= listSimulasi[nIdx].nomor;
tanggalAwal:= listSimulasi[nidx].tanggalStart;
tanggalSekarang:=listSimulasi[nIdx].tanggalStart;
jlhHariHidup:= listSimulasi[nIdx].komponen[1];
ener.energi:=listSimulasi[nIdx].komponen[2];
kapasitasInv:=listSimulasi[nIdx].komponen[3];
mentahBeli:=listSimulasi[nIdx].komponen[4];
olahanBuat:=listSimulasi[nIdx].komponen[5];
olahanJual:=listSimulasi[nIdx].komponen[6];
resepJual:=listSimulasi[nIdx].komponen[7];
pemasukan:=listSimulasi[nIdx].komponen[8];
pengeluaran:=listSimulasi[nIdx].komponen[9];
uang:= listSimulasi[nIdx].komponen[10];
jlhSimulasi:= jlhSimulasi+1; //NAMBAH JUMLAH SIMULASI
writeln('Simulasi baru nomor: ',nomorInput,' akan dijalankan!');
noSimulasi:= nomorInput;
isSimulating:=true;
doSth:=false;
end;
procedure resetFileName();
begin
namaFileInvMentah:= '/Inventori Bahan Mentah.txt';
namaFileInvOlahan:= '/Inventori Bahan Olahan.txt';
end;
procedure startSimulation(nomorInput: integer);
var
idx: Integer;
error: boolean = false;
begin
idx:=cariIdxSimulasi(nomorInput);
//LOADING INFO SIMULASI
jlhHariHidup:= listSimulasi[idx].komponen[1];
tanggalAwal:= listSimulasi[idx].tanggalStart;
tanggalSekarang:=listSimulasi[idx].tanggalStart+jlhHariHidup;
//writeln('jlhharihidup: ',jlhHariHidup);
ener.energi:=listSimulasi[idx].komponen[2];
if ener.energi = 10 then
begin
doSth:= false;
end
else if (ener.energi = -10) or (ener.energi<10) then
begin
ener.energi:= 10;
doSth:= true;
end;
kapasitasInv:=listSimulasi[idx].komponen[3];
mentahBeli:=listSimulasi[idx].komponen[4];
olahanBuat:=listSimulasi[idx].komponen[5];
olahanJual:=listSimulasi[idx].komponen[6];
resepJual:=listSimulasi[idx].komponen[7];
pemasukan:=listSimulasi[idx].komponen[8];
pengeluaran:=listSimulasi[idx].komponen[9];
uang:= listSimulasi[idx].komponen[10];
//LOADING INVENTORY SIMULASI
namaFileInvMentah:= concat(IntToStr(nomorInput),namaFileInvMentah);
namaFileInvOlahan:= concat(IntToStr(nomorInput),namaFileInvOlahan);
try
readInvMentah(namaFileInvMentah);
except
On E :Exception do
begin
writeln('Error loading file inventori mentah!');
error:= true;
end;
end;
try
readInvOlahan(namaFileInvOlahan);;
except
On E :Exception do
begin
writeln('Error loading file inventori olahan!');
error:= true;
end;
end;
if not error then
begin
writeln('Mulai simulasi ',nomorInput);
isSimulating:=true;
noSimulasi:= nomorInput;
refreshCount();
end
else
begin
writeln('Terjadi error saat loading file inventori');
isSimulating:= false;
resetFileName();
end;
end;
function cukupUang(besar: integer):boolean;
begin
if uang+besar >= 0 then
begin
cukupUang:=true;
end
else
begin
cukupUang:=false;
end;
end;
function cukupInv(besar: integer):boolean;
begin
if kapasitasInv - jlhItemMentah - jlhItemOlahan + (besar) >= 0 then
begin
cukupInv:=true;
end
else
begin
cukupInv:=false;
end;
end;
procedure ubahUang(besar: integer);// + jika nambah uang, - jika kurang uang
begin
uang:=uang+ besar;
end;
procedure load();
var
error: boolean =false;
begin
try
readResep(namaFileResep);
except
On E :Exception do
begin
writeln('Error loading file resep!');
error:= true;
end;
end;
try
readSimulasi(namaFileSimulasi);
except
On E :Exception do
begin
writeln('Error loading file simulasi!');
error:= true;
end;
end;
try
readOlahan(namaFileOlahan);
except
On E :Exception do
begin
writeln('Error loading file olahan!');
error:= true;
end;
end;
try
readMentah(namaFileMentah);
except
On E :Exception do
begin
writeln('Error loading file mentah!');
error:= true;
end;
end;
if error= true then
begin
writeln('Loading tidak berhasil, ada error!');
end
else
begin
writeln('Files berhasil loaded, tidak ada error');
loaded:= true;
end;
end;
//------------------------------parser
procedure parser(command: string);
var
j,idx,min: Integer;
ans : string;
begin
if loaded then
begin
//-----------------start simulation
if command = 'exit' then
begin
stop();
end
else if command = 'help' then
begin
help();
end
else if command = 'start' then
begin
if not isSimulating then
begin
write('Pilih no simulasi: ');
readln(nomor);
if cariIdxSimulasi(nomor)=0 then //START NEW SIMULTION
begin
newSimulation(nomor);
end
else
begin
startSimulation(nomor);
end;
end
else
begin
writeln('Simulasi ',noSimulasi,' sedang berjalan!')
end;
end
else if command = 'stop' then
begin
if isSimulating = true then
begin
stop();
lihatStat();
end
else
begin
writeln('Anda memang tidak sedang dalam simulasi!');
end;
end
else if command = 'beliBahan' then
begin
if isSimulating = true then
begin
if ener.energi-1>=0 then
begin
beliBahan();
end
else
begin
writeln('Tidak cukup energi untuk beli bahan!');
end;
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'olahBahan' then
begin
if isSimulating = true then
begin
if ener.energi-1>=0 then
begin
olahbahan();
end
else
begin
writeln('Tidak cukup energi untuk mengolah bahan!');
end;
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'jualOlahan' then
begin
if isSimulating = true then
begin
if ener.energi-1>=0 then
begin
jualOlahan();
end
else
begin
writeln('Tidak cukup energi untuk jual olahan!');
end;
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'jualResep' then
begin
if isSimulating = true then
begin
if ener.energi-1>=0 then
begin
jualResep();
end
else
begin
writeln('Tidak cukup energi untuk jual resep!');
end;
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'makan' then
begin
if isSimulating = true then
begin
makan();
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'istirahat' then
begin
if isSimulating = true then
begin
istirahat();
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'tidur' then
begin
if isSimulating = true then
begin
tidur();
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'lihatStatistik' then
begin
if isSimulating = true then
begin
lihatStat();
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'lihatInventori' then
begin
if isSimulating = true then
begin
lihatInv();
end
else
begin
writeln('Anda tidak sedang dalam simulasi!');
end;
end
else if command = 'lihatResep' then
begin
lihatResep();
end
else if command = 'cariResep' then
begin
cariResep();
end
else if command = 'tambahResep' then
begin
tambahResep();
end
else if command = 'upgradeInventori' then
begin
upgradeInventori();
end
else if command = 'load' then
begin
writeln('Load sudah dilakukan');
end
else
begin
min:= LevenshteinDistance(command,commands[1]);
idx:= 1;
for j:=2 to 16 do
begin
if LevenshteinDistance(command,commands[j]) < min then
begin
min:= LevenshteinDistance(command,commands[j]);
idx:= j;
end;
end;
writeln('Apakah yang anda maksud ',commands[idx],'? Distance: ',min);
readln(ans);
if ans = 'y' then
begin
parser(commands[idx]);
end;
end;
end
else if (command = 'load') and (loaded) then
begin
writeln('Load sudah dilakukan');
end
else if command = 'exit' then
begin
keluar();
end
else if (not loaded) and (command <> 'load') then
begin
writeln('Silahkan jalankan perintah load terlebih dahulu');
end
else //jika dia menjalan perintah load
begin
load();
end;
end;
function LevenshteinDistance(s, t: string): longint;
var
d: array of array of integer;
i, j, n, m: integer;
begin
n := length(t);
m := length(s);
setlength(d, m+1, n+1);
for i := 0 to m do
d[i,0] := i;
for j := 0 to n do
d[0,j] := j;
for j := 1 to n do
for i := 1 to m do
if s[i] = t[j] then
d[i,j] := d[i-1,j-1]
else
d[i,j] := min(d[i-1,j] + 1, min(d[i,j-1] + 1, d[i-1,j-1] + 1));
LevenshteinDistance := d[m,n];
end;
procedure help();
begin
writeln('start');
writeln('stop');
writeln('beliBahan');
writeln('olahBahan');
writeln('jualOlahan');
writeln('jualResep');
writeln('makan');
writeln('istirahat');
writeln('tidur');
writeln('lihatStatistik');
writeln('lihatInventori');
writeln('lihatResep');
writeln('cariResep');
writeln('tambahResep');
writeln('upgradeInventori');
writeln('exit');
end;
procedure keluar();
begin
writeSimulasi();
end;
//-------------cariIdxSimulasi
function cariIdxSimulasi(no: integer): integer;
var
i:integer;
begin
i:=1;
while (i<=jlhSimulasi) and (listSimulasi[i].nomor<>no) do
begin
i:=i+1
end;
if listSimulasi[i].nomor=no then
begin
cariIdxSimulasi:=i;
end
else
begin
cariIdxSimulasi:=0;
end;
end;
//-----------------------------------------------read simulasi
procedure readSimulasi (var namaFile: string);
var
i:integer=0;
j:integer;
posisiD:integer;
begin
AssignFile(fileSimulasi,namaFile);
reset(fileSimulasi);
readln(fileSimulasi,kalimat);
while (kalimat <> '-999') do
begin
i:=i+1;
//---------------proses send ke array--------------
//nama
posisiD:=pos('|',kalimat);
listSimulasi[i].nomor:= StrToInt(copyIdx(kalimat,1,posisiD-1));
//harga
kalimat:= copyIdx(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listSimulasi[i].tanggalStart:=StrToDate(copyIdx(kalimat,1,posisiD-1),'DD/MM/YY');
//read komponen
kalimat:= concat(copyIdx(kalimat,posisiD,length(kalimat)),'|');//mempersiapkan kalimat
// 2|Beras|Air -> |Beras|Air|
for j:= 1 to 10 do
begin
posisiD:=pos('|',copyIdx(kalimat,2,length(kalimat)))+1;
listSimulasi[i].komponen[j]:= StrToInt(copyIdx(kalimat,2,posisiD-1));
kalimat:= copy(kalimat,posisiD,length(kalimat));
end;
jlhSimulasi:=i;
//---------------end send ke array-----------------
readln(fileSimulasi,kalimat);
end;
CloseFile(fileSimulasi);
end;
function validEnergy(banyak: integer):boolean;
begin
if (energy+banyak > 10) or (energy+banyak < 0) then
begin
validEnergy:= false;
end
else
begin
validEnergy:= true;
end;
end;
//------------------------------------energy-------------------------------------------------------------------------
procedure ubahEnergy(banyak: integer); // + jika nambah energy, - jika kurang energy
begin
ener.energi:= ener.energi + banyak;
end;
//------------------------------------end energy----------------------------------------------------------------------
procedure readMentah (var namaFile: string );
var
i:integer=0;
posisiD:integer;
begin
AssignFile(fileMentah,namaFile);
reset(fileMentah);
readln(fileMentah,kalimat);
while (kalimat <> '-999') do
begin
i:=i+1;
//---------------proses send ke array--------------
//nama
posisiD:=pos('|',kalimat);
listMentah[i].nama:= copyIdx(kalimat,1,posisiD-1);
//harga
kalimat:= copy(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listMentah[i].harga:=StrToInt(copyIdx(kalimat,1,posisiD-1));
//exp
kalimat:= copyIdx(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listMentah[i].exp:=StrToInt(kalimat);
//---------------end send ke array-----------------
readln(fileMentah,kalimat);
end;
jlhMentah:=i;
CloseFile(fileMentah);
end;
procedure readOlahan (var namaFile: string );
var
i:integer=0;
j:integer;
posisiD:integer;
begin
AssignFile(fileOlahan,namaFile);
reset(fileOlahan);
readln(fileOlahan,kalimat);
while (kalimat <> '-999') do
begin
i:=i+1;
//---------------proses send ke array--------------
//nama
posisiD:=pos('|',kalimat);
listOlahan[i].nama:= copyIdx(kalimat,1,posisiD-1);
//harga
kalimat:= copyIdx(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listOlahan[i].harga:=StrToInt(copyIdx(kalimat,1,posisiD-1));
//n
kalimat:= copyIdx(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listOlahan[i].n:=StrToInt(copyIdx(kalimat,1,posisiD-1));
//read komponen
kalimat:= concat(copyIdx(kalimat,posisiD,length(kalimat)),'|');//mempersiapkan kalimat
// 2|Beras|Air -> |Beras|Air|
j:=1;
repeat
begin
posisiD:=pos('|',copyIdx(kalimat,2,length(kalimat)))+1;
listOlahan[i].komponen[j]:= copyIdx(kalimat,2,posisiD-1);
j:=j+1;
kalimat:= copy(kalimat,posisiD,length(kalimat));
end;
until j>listOlahan[i].n;
jlhOlahan:=i;
//---------------end send ke array-----------------
readln(fileOlahan,kalimat);
end;
CloseFile(fileOlahan);
end;
procedure readResep (var namaFile: string );
var
i:integer=0;
j:integer;
posisiD:integer;
begin
AssignFile(fileResep,namaFile);
reset(fileResep);
readln(fileResep,kalimat);
while (kalimat <> '-999') do
begin
i:=i+1;
//---------------proses send ke array--------------
//nama
posisiD:=pos('|',kalimat);
listResep[i].nama:= copyIdx(kalimat,1,posisiD-1);
//harga
kalimat:= copyIdx(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listResep[i].harga:=StrToInt(copyIdx(kalimat,1,posisiD-1));
//n
kalimat:= copyIdx(kalimat,posisiD+1,length(kalimat));
posisiD:=pos('|',kalimat);
listResep[i].n:=StrToInt(copyIdx(kalimat,1,posisiD-1));
//read komponen
kalimat:= concat(copyIdx(kalimat,posisiD,length(kalimat)),'|');//mempersiapkan kalimat
// 2|Beras|Air -> |Beras|Air|
j:=1;
repeat
begin
posisiD:=pos('|',copyIdx(kalimat,2,length(kalimat)))+1;
listResep[i].komponen[j]:= copyIdx(kalimat,2,posisiD-1);
j:=j+1;
kalimat:= copy(kalimat,posisiD,length(kalimat));
end;
until j>listResep[i].n;
jlhResep:=i;
//---------------end send ke array-----------------
readln(fileResep,kalimat);
end;
CloseFile(fileResep);
end;
procedure readInvMentah (var namaFile: string );
var
i:integer=0;
posisiD:integer;
total: longint; //berapa kapasitas inv yang terpakai
begin
total:=0;
AssignFile(fileInvMentah,namaFile);
reset(fileInvMentah);
readln(fileInvMentah,kalimat);
while (kalimat <> '-999') do
begin
i:=i+1;
//writeln('Pos: ',pos('|',kalimat));
//---------------proses send ke array--------------
//nama