-
Notifications
You must be signed in to change notification settings - Fork 0
/
CPM86.PAS
509 lines (479 loc) · 11.4 KB
/
CPM86.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
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2022
@website(https://www.gladir.com/cpm86-0)
@abstract(Target: Turbo Pascal, Free Pascal)
}
Program CPM86;
Uses Crt,DOS;
Const
CommandList:Array[0..6]of String[8]=(
'DIR','DIRS','ERA','EXIT','REN','TYPE','USER'
);
Var
CommandFound,Terminated:Boolean;
CmdStr:String;
CurrCommand,ParamList:String;
I,J:Byte;
Function PadRight(S:String;Space:Byte):String;
Var
I:Byte;
Begin
If Length(S)<Space Then For I:=Length(S)+1 to Space do S:=S+' ';
PadRight:=S;
End;
Function PadZeroLeft(Value:Integer;Space:Byte):String;
Var
S:String;
Begin
Str(Value,S);
While Length(S)<Space do S:='0'+S;
PadZeroLeft:=S;
End;
Function TrimL(S:String):String;
Var
I:Byte;
Begin
For I:=1to Length(S)do Begin
If S[I]<>' 'Then Begin
TrimL:=Copy(S,I,255);
Exit;
End;
End;
TrimL:=S;
End;
Function TrimR(s:String):String;
Var
i:Integer;
Begin
i:=Length(s);
While (i>0)and(s[i]in[#9,' '])do Dec(i);
s[0]:=Chr(i);
TrimR:=S;
End;
Function StrToUpper(S:String):String;
Var
I:Byte;
Begin
For I:=1 to Length(S)do Begin
If S[I] in['a'..'z']Then S[I]:=Chr(Ord(S[I])-32);
End;
StrToUpper:=S;
End;
Function GetCurrentDisk:Char;
Var
CurrentDir:String;
Begin
GetDir(0,CurrentDir);
GetCurrentDisk:=CurrentDir[1];
End;
Function Path2Name(Const Path:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(Path,D,N,E);
Path2Name:=N;
End;
Function Path2ExtNoDot(Const Path:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(Path,D,N,E);
Path2ExtNoDot:=Copy(E,2,255);
End;
Function Path2Drive(Path:String):Char;Begin
Path:=FExpand(Path);
Path2Drive:=Path[1];
End;
Function GetErrorMessage(Code:Word):String;Begin
Case Code of
0:GetErrorMessage:='';
2:GetErrorMessage:='Fichier introuvable';
3:GetErrorMessage:='Chemin introuvable';
4:GetErrorMessage:='Trop de fichiers ouvert';
5:GetErrorMessage:='Acces refuse';
6:GetErrorMessage:='Handle de fichier invalide';
12:GetErrorMessage:='Mode d''acces sur disque invalide';
15:GetErrorMessage:='Num‚ro de disque invalide';
16:GetErrorMessage:='Impossible de supprimer le r‚pertoire';
17:GetErrorMessage:='Impossible de renommer sur plusieurs volumes';
100:GetErrorMessage:='Erreur de lecture … partir du disque';
101:GetErrorMessage:='Erreur d''ecriture sur le disque';
102:GetErrorMessage:='Fichier non attribue';
103:GetErrorMessage:='Le fichier n''est pas ouvert';
104:GetErrorMessage:='Le fichier n''est pas ouvert … l''entree';
105:GetErrorMessage:='Le fichier n''est pas ouvert … la sortie';
106:GetErrorMessage:='Numero invalide';
150:GetErrorMessage:='Disque protege en ecriture';
151:GetErrorMessage:='Peripherique est inconnu';
152:GetErrorMessage:='Disque pas pret';
153:GetErrorMessage:='Commande inconnue';
154:GetErrorMessage:='Echec de verification CRC';
155:GetErrorMessage:='Disque invalide';
156:GetErrorMessage:='Erreur de recherche sur disque';
157:GetErrorMessage:='Type de media invalide';
158:GetErrorMessage:='Secteur introuvable';
159:GetErrorMessage:='L''imprimante n''a plus de papier';
160:GetErrorMessage:='Erreur d''ecriture sur le peripherique';
161:GetErrorMessage:='Erreur de lecture sur le peripherique';
162:GetErrorMessage:='Defaillance materielle';
Else GetErrorMessage:='Erreur inconnue';
End;
End;
Procedure ExtractCommand;
Var
I:Byte;
Begin
For I:=1 to Length(CmdStr)do Begin
If Not(CmdStr[I]in['A'..'Z','a'..'z','_','-','0'..'9'])Then Begin
CurrCommand:=StrToUpper(Copy(CmdStr,1,I-1));
ParamList:=TrimL(Copy(CmdStr,I,255));
Exit;
End;
End;
CurrCommand:=StrToUpper(CmdStr);
ParamList:='';
End;
Function ExtractParam(Index:Byte):String;
Var
Count:Word;
LocalIndex:Word;
l:Byte;
Temp:String;
Begin
Temp:='';Count:=1;LocalIndex:=1;l:=0;
While Count<=Length(ParamList)do Begin
If Not(ParamList[Count] in [' ',#9])then Begin
If LocalIndex=Index Then Begin
While (Count<=Length(ParamList)) and (Not(ParamList[count] in[' ',#9])) and (l < 256) do Begin
Temp:=Temp+ParamList[count];
Inc(l);
Inc(Count);
end;
Temp[0]:=Char(l);
ExtractParam:=Temp;
Exit;
End;
While (Count<=Length(ParamList)) and (Not(ParamList[count] in [' ',#9])) do Inc(Count);
Inc(LocalIndex);
End;
If Count>=Length(ParamList)Then Break;
Inc(Count);
End;
ExtractParam:=Temp;
End;
Procedure HomeMessage;Begin
WriteLn;
WriteLn('CP/M-86 clone');
WriteLn;
End;
Procedure ShowPrompt;Begin
Write(GetCurrentDisk,'>');
End;
Procedure InvalidParam(P:Byte);Begin
WriteLn('Le parametre suivant est invalide : ',ExtractParam(P));
End;
Procedure DirCommand;
Var
P:Byte;
Info:SearchRec;
T:DateTime;
TotalNumFiles,TotalSize:LongInt;
CurrParam,ShowDir,CurrLabel:String;
CurrDrive:Char;
Begin
P:=0;
ShowDir:='*.*';
Repeat
Inc(P);
CurrParam:=ExtractParam(P);
If Length(CurrParam)=0Then Break;
If CurrParam='/?'Then Begin
WriteLn('DIR Cette commande permet d''afficher le contenu d''un repertoire dans l''unite de disque.');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('DIR [/?] [chemin]');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
Exit;
End
Else
ShowDir:=CurrParam;
If P>99Then Break;
Until CurrParam='';
CurrDrive:=Path2Drive(ShowDir);
FindFirst(ShowDir,AnyFile,Info);
P:=0;
While DOSError=0 do Begin
If P=0Then Write(CurrDrive,': ');
Inc(P);
Write(PadRight(Path2Name(StrToUpper(Info.Name)),9),
PadRight(Path2ExtNoDot(StrToUpper(Info.Name)),4),': ');
FindNext(Info);
If P=4Then Begin
WriteLn;
P:=0;
End;
End;
End;
Procedure EraCommand;
Var
P:Byte;
Err:Word;
F:File;
CurrParam:String;
Begin
P:=0;
Repeat
Inc(P);
CurrParam:=ExtractParam(P);
If CurrParam=''Then Begin
If P=1Then Begin
WriteLn('ParamŠtre requis');
End;
Break;
End
Else
If CurrParam='/?'Then Begin
WriteLn('ERA Cette commande permet d''effectuer la suppression de fichier sur un unite de disque.');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('ERA [/?] fichier');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
WriteLn(' fichier Ce parametre permet d''indiquer le nom du fichier a supprimer.');
Exit;
End;
{$I-}Assign(F,CurrParam);
Erase(F);
{$I+}
Err:=IoResult;
If Err=0Then WriteLn('1 fichier de supprime')
Else WriteLn(GetErrorMessage(Err));
If P>9Then Break;
Until CurrParam='';
End;
Function ExitCommand:Boolean;
Var
FirstParam:String;
N,Err:Integer;
Begin
FirstParam:=ExtractParam(1);
If FirstParam='/?'Then Begin
WriteLn('EXIT Cette commande permet de quitter l''interpreteur de commande.');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('EXIT [/?] [CodeSortie]');
WriteLn;
WriteLn(' CodeSortfiie Ce parametre permet d''indiquer le code de sortie a ',
'retourner a l''application parent');
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
ExitCommand:=False;
End
Else
If Length(FirstParam)>0Then Begin
Val(FirstParam,N,Err);
Halt(N);
ExitCommand:=True;
End
Else
ExitCommand:=True;
End;
Procedure RenCommand;
Var
P,I:Byte;
Err:Word;
F:File;
CurrParam,Source,Target:String;
Begin
P:=0;
Source:='';
Target:='';
If ParamList='/?'Then Begin
WriteLn('REN Cette commande permet de renommer un fichier.');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('REN [/?] nouveaunom=anciennom');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
WriteLn('nouveaunom Ce parametre permet d''indiquer le nouveau nom');
WriteLn('anciennom Ce parametre permet d''indiquer l''ancien nom');
Exit;
End
Else
If ParamList<>''Then Begin
For I:=1 to Length(ParamList)do Begin
If ParamList[I]='='Then Begin
Target:=TrimR(TrimL(Copy(ParamList,1,I-1)));
Source:=TrimR(TrimL(Copy(ParamList,I+1,255)));
Break;
End;
End;
End;
If(Source='')or(Target='')Then Begin
WriteLn('La source et la destination sont requises');
End
Else
Begin
{$I-}Assign(F,Source);
Rename(F,Target);
{$I+}
Err:=IoResult;
If Err=0Then WriteLn('1 fichier de renomme')
Else WriteLn(GetErrorMessage(Err));
End;
End;
Procedure DirsCommand;
Var
P:Byte;
Info:SearchRec;
T:DateTime;
TotalNumFiles,TotalSize:LongInt;
CurrParam,ShowDir,CurrLabel:String;
CurrDrive:Char;
Begin
P:=0;
ShowDir:='*.*';
Repeat
Inc(P);
CurrParam:=ExtractParam(P);
If Length(CurrParam)=0Then Break;
If CurrParam='/?'Then Begin
WriteLn('DIR Cette commande permet d''afficher le contenu d''un repertoire dans l''unite de disque.');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('DIR [/?] [chemin]');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
Exit;
End
Else
ShowDir:=CurrParam;
If P>99Then Break;
Until CurrParam='';
CurrDrive:=Path2Drive(ShowDir);
FindFirst(ShowDir,SysFile,Info);
P:=0;
While DOSError=0 do Begin
If Info.Attr and SysFile=SysFile Then Begin
If P=0Then Write(CurrDrive,': ');
Inc(P);
Write(PadRight(Path2Name(StrToUpper(Info.Name)),9),
PadRight(Path2ExtNoDot(StrToUpper(Info.Name)),4),': ');
If P=4Then Begin
WriteLn;
P:=0;
End;
End;
FindNext(Info);
End;
End;
Procedure TypeCommand;
Var
P:Byte;
Err:Word;
Handle:Text;
CurrParam,CurrLine:String;
Begin
P:=0;
Repeat
Inc(P);
CurrParam:=ExtractParam(P);
If(Length(CurrParam)=0)and(P=1)Then Begin
WriteLn('La syntaxe est incorrecte');
Exit;
End;
If CurrParam='/?'Then Begin
WriteLn('TYPE Cette commande permet d''afficher le contenu d''un fichier');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('TYPE [/?] [fichier]');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
WriteLn('fichier Ce parametre permet d''indiquer le nom du fichier a afficher');
Exit;
End;
If CurrParam<>''Then Begin
Assign(Handle,CurrParam);
{$I-}Reset(Handle);{$I+}
Err:=IOResult;
If Err<>0Then Begin
WriteLn('Nom du fichier : "',CurrParam,'"');
WriteLn(GetErrorMessage(Err));
Exit;
End;
While NOT EOF(Handle)do Begin
ReadLn(Handle,CurrLine);
WriteLn(CurrLine);
End;
Close(Handle);
End;
If P>9Then Break;
Until CurrParam='';
End;
Procedure UserCommand;Begin
If ParamList='/?'Then Begin
WriteLn('USER Cette commande permet de demander le numero de l''utilisateur courant');
WriteLn;
WriteLn('Syntaxe:');
WriteLn;
WriteLn('USER [/?]');
WriteLn;
WriteLn(' /? Ce parametre permet d''afficher l''aide sur cette commande');
End
Else
WriteLn(0); { Retourne toujours l'utilisateur 0 }
End;
Procedure UnknownCommand;Begin
Exec(CurrCommand,ParamList);
If DosError<>0Then Begin
WriteLn('Commande ou nom de fichier non reconnu');
End;
WriteLn;
End;
BEGIN
Terminated:=False;
HomeMessage;
Repeat
ShowPrompt;
ReadLn(CmdStr);
ExtractCommand;
CommandFound:=False;
For J:=Low(CommandList) to High(CommandList) do Begin
If CurrCommand=CommandList[J]Then Begin
Case(J)of
0:DIRCommand;
1:DIRSCommand;
2:ERACommand;
3:Terminated:=ExitCommand;
4:RenCommand;
5:TypeCommand;
6:UserCommand;
End;
If J<=High(CommandList)Then Begin
CommandFound:=True;
WriteLn;
Break;
End;
End;
End;
If Not(CommandFound)Then Begin
If CmdStr='?'Then Begin
For I:=Low(CommandList) to High(CommandList) do Write(PadRight(CommandList[I],10));
WriteLn;
WriteLn;
End
Else
UnknownCommand;
End;
Until Terminated;
END.