-
Notifications
You must be signed in to change notification settings - Fork 1
/
UCutApplicationAsfbin.pas
225 lines (186 loc) · 6.23 KB
/
UCutApplicationAsfbin.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
unit UCutApplicationAsfBin;
{$I Information.inc}
// basic review and reformatting: done
interface
uses
// Delphi
System.Classes, System.IniFiles, System.Contnrs, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Controls,
// Jedi
JvExStdCtrls, JvCheckBox,
// CA
UCutApplicationBase;
type
TCutApplicationAsfbin = class;
TfrmCutApplicationAsfbin = class(TfrmCutApplicationBase)
edtCommandLineOptions: TEdit;
lblCommandLineOptions: TLabel;
cbRkf: TJvCheckBox;
procedure cbRkfClick(Sender: TObject);
procedure edtCommandLineOptionsChange(Sender: TObject);
private
{ private declarations }
procedure SetCutApplication(const Value: TCutApplicationAsfbin);
function GetCutApplication: TCutApplicationAsfbin;
public
{ public declarations }
property CutApplication: TCutApplicationAsfbin read GetCutApplication write SetCutApplication;
procedure Init; override;
procedure Apply; override;
end;
TCutApplicationAsfbin = class(TCutApplicationBase)
protected
public
CommandLineOptions: string;
constructor Create; override;
function LoadSettings(IniFile: TCustomIniFile): Boolean; override;
function SaveSettings(IniFile: TCustomIniFile): Boolean; override;
function InfoString: string; override;
function WriteCutlistInfo(CutlistFile: TCustomIniFile; section: string): Boolean; override;
function PrepareCutting(SourceFileName: string; var DestFileName: string; Cutlist: TObjectList): Boolean; override;
end;
var
frmCutApplicationAsfbin : TfrmCutApplicationAsfbin;
implementation
{$R *.dfm}
{.....$WARN UNIT_PLATFORM OFF}
uses
// Delphi
System.SysUtils, System.StrUtils,
// CA
UCutlist, CAResources, Utils;
const
ASFBIN_DEFAULT_EXENAME_1 = 'asfbin.exe';
ASFBIN_DEFAULT_EXENAME_2 = 'asfcut.exe';
// rkf Options Syntax
RKF_1 = '-rkf';
RKF_2 = '-recreatekf';
{ TCutApplicationAsfbin }
constructor TCutApplicationAsfbin.Create;
begin
inherited;
FrameClass := TfrmCutApplicationAsfbin;
Name := 'Asfbin';
DefaultExeNames.Add(ASFBIN_DEFAULT_EXENAME_1);
DefaultExeNames.Add(ASFBIN_DEFAULT_EXENAME_2);
RedirectOutput := True;
ShowAppWindow := False;
end;
function TCutApplicationAsfbin.LoadSettings(IniFile: TCustomIniFile): Boolean;
var
section: string;
success: Boolean;
begin
//This part only for compatibility issues for versions below 0.9.9
//These Settings may be overwritten below
Path := IniFile.ReadString('External Cut Application', 'Path', '');
CommandLineOptions := IniFile.ReadString('External Cut Application', 'CommandLineOptions', '');
success := inherited LoadSettings(IniFile);
section := GetIniSectionName;
CommandLineOptions := IniFile.ReadString(section, 'CommandLineOptions', CommandLineOptions);
Result := success;
end;
function TCutApplicationAsfbin.SaveSettings(IniFile: TCustomIniFile): Boolean;
var
section: string;
success: Boolean;
begin
success := inherited SaveSettings(IniFile);
section := GetIniSectionName;
IniFile.WriteString(section, 'CommandLineOptions', CommandLineOptions);
Result := success;
end;
function TCutApplicationAsfbin.PrepareCutting(SourceFileName: string; var DestFileName: string; Cutlist: TObjectList): Boolean;
var
TempCutlist: TCutlist;
iCut: Integer;
MustFreeTempCutlist: Boolean;
CommandLine: string;
begin
Result := inherited PrepareCutting(SourceFileName, DestFileName, Cutlist);
if Result then
begin
FCommandLines.Clear;
MustFreeTempCutlist := False;
TempCutlist := (Cutlist as TCutlist);
if TempCutlist.Mode <> clmTrim then
begin
TempCutlist := TempCutlist.Convert;
MustFreeTempCutlist := True;
end;
CommandLine := '-i "' + SourceFileName + '" -o "' + DestFileName + '" ';
try
TempCutlist.Sort;
for iCut := 0 to Pred(TempCutlist.Count) do
begin
CommandLine := CommandLine + ' -start ' + FloatToStrInvariant(TempCutlist[iCut].pos_from);
CommandLine := CommandLine + ' -duration ' + FloatToStrInvariant(TempCutlist[iCut].pos_to - TempCutlist[iCut].pos_from);
end;
CommandLine := CommandLine + ' ' + CommandLineOptions;
FCommandLines.Add(CommandLine);
Result := True;
finally
if MustFreeTempCutlist then
FreeAndNil(TempCutlist);
end;
end;
end;
function TCutApplicationAsfbin.InfoString: string;
begin
Result := Format(CAResources.RsCutAppInfoAsfBin, [inherited InfoString, CommandLineOptions]);
end;
function TCutApplicationAsfbin.WriteCutlistInfo(CutlistFile: TCustomIniFile; section: string): Boolean;
begin
Result := inherited WriteCutlistInfo(CutlistFile, section);
if Result then
begin
cutlistfile.WriteString(section, 'IntendedCutApplicationOptions', CommandLineOptions);
Result := True;
end;
end;
{ TfrmCutApplicationAsfbin }
procedure TfrmCutApplicationAsfbin.Init;
begin
inherited;
edtCommandLineOptions.Text := CutApplication.CommandLineOptions;
edtCommandLineOptionsChange(nil);
end;
procedure TfrmCutApplicationAsfbin.Apply;
begin
inherited;
CutApplication.CommandLineOptions := edtCommandLIneOptions.Text;
end;
procedure TfrmCutApplicationAsfbin.SetCutApplication(const Value: TCutApplicationAsfbin);
begin
FCutApplication := Value;
end;
function TfrmCutApplicationAsfbin.GetCutApplication: TCutApplicationAsfbin;
begin
Result := (FCutApplication as TCutApplicationAsfbin);
end;
procedure TfrmCutApplicationAsfbin.cbRkfClick(Sender: TObject);
var
s: string;
begin
s := edtCommandLineOptions.Text;
if cbRkf.Checked then
begin
if not (AnsiContainsText(s, RKF_1) or AnsiContainsText(s, RKF_2)) then
s := RKF_1 + ' ' + s;
end else
begin
s := AnsiReplaceText(s, RKF_1, '');
s := AnsiReplaceText(s, RKF_2, '');
//remove Double spaces
while AnsiPos(' ', s) > 0 do
s := AnsiReplaceText(s, ' ', ' ');
end;
edtCommandLineOptions.Text := Trim(s);
end;
procedure TfrmCutApplicationAsfbin.edtCommandLineOptionsChange(Sender: TObject);
var
s: string;
begin
s := edtCommandLineOptions.Text;
cbRkf.Checked := (AnsiContainsText(s, RKF_1) or AnsiContainsText(s, RKF_2));
end;
end.