forked from gladir/corail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCP2GAT.PAS
105 lines (99 loc) · 2.54 KB
/
CP2GAT.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
{ @author: Sylvain Maltais ([email protected])
@created: 2023
@website(https://www.gladir.com/corail)
@abstract(Target: Turbo Pascal 7, Free Pascal 3.2)
}
Program CP2GAT;
Uses DOS;
Const
{Constante du Traitement de texte}
cgNormal=0; { CaractŠre normal }
cgBold=1; { CaractŠre gras }
cgUnderLine=2; { CaractŠre soulign‚ }
cgItalic=4; { CaractŠre italique }
cgInverse=8; { CaractŠre invers‚ en couleur de fond et d'‚criture }
cgExposant=cgInverse+cgBold; { CaractŠre en expososant }
cgDouble=16; { CaractŠre en largeur double }
Var
HS,HT:Text;
S,T:String;
I,SP:Byte;
ModeBold,ModeUnderline:Boolean;
Function Path2NoExt(Const Path:String):String;
Var
D:DirStr;
N:NameStr;
E:ExtStr;
Begin
FSplit(Path,D,N,E);
Path2NoExt:=D+N;
End;
BEGIN
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('CP2GAT : Cette commande permet de convertir un fichier ',
'texte Central-Point ou Norton en format GAT ',
'du MonsterBook.');
WriteLn;
WriteLn('Syntaxe : CP2GAT nomdufichier.txt');
WriteLn;
WriteLn(' nomdufichier.txt Nom du fichier … convertir.');
WriteLn;
End
Else
Begin
{$I-}Assign(HS,ParamStr(1));
Reset(HS);{$I+}
If(IoResult<>0)Then Begin
WriteLn('Impossible d''ouvrir le fichier source');
Halt(1)
End;
{$I-}Assign(HT,Path2NoExt(ParamStr(1))+'.GAT');
Rewrite(HT);{$I+}
If(IoResult<>0)Then Begin
WriteLn('Impossible de cr‚er le fichier GAT');
Halt(2)
End;
WriteLn(HT,': 10 6 90 60 L 0');
ModeBold:=False;
ModeUnderline:=False;
While Not EOF(HS)do Begin
FillChar(S,SizeOf(S),#0);
ReadLn(HS,S);
T:='';
Sp:=0;
If S<>''Then Begin
T:=' ';
I:=1;
While(I<=Length(S))do Begin
If(S[I]='^')and(S[I+1]='B')Then Begin
ModeBold:=Not(ModeBold);
Inc(I);
End
Else
If(S[I]='^')and(S[I+1]='U')Then Begin
ModeUnderline:=Not(ModeUnderline);
Inc(I);
End
Else
Begin
If(ModeBold)and(ModeUnderline)Then T:=T+Chr(cgBold+cgUnderline)Else
If(ModeBold)Then T:=T+Chr(cgBold)Else
If(ModeUnderline)Then T:=T+Chr(cgUnderline);
T:=T+S[I];
If S[I]=' 'Then Inc(Sp);
End;
Inc(I);
End;
If(Length(S)>60)and(Sp>0)and(T[Length(T)]<>' ')Then Begin
FillChar(S,SizeOf(S),#0);
ReadLn(HS,S);
If S<>''Then T:=T+' ';
End;
End;
WriteLn(HT,T);
End;
Close(HT);
Close(HS);
End;
END.