-
Notifications
You must be signed in to change notification settings - Fork 1
/
UfrmCutting.pas
200 lines (169 loc) · 5.06 KB
/
UfrmCutting.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
unit UfrmCutting;
{$I Information.inc}
// basic review and reformatting: done
interface
uses
// Delphi
System.Classes, Vcl.Forms, Vcl.ExtCtrls, Vcl.StdCtrls, Vcl.Controls,
// CA
UCutApplicationBase;
type
TfrmCutting = class(TForm)
memOutput: TMemo;
cmdClose_nl: TButton;
cmdAbort: TButton;
cmdCopyClipbrd: TButton;
cmdEmergencyExit: TButton;
timAutoClose: TTimer;
procedure CutAppTerminate(Sender: TObject; AExitCode: Cardinal);
procedure cmdAbortClick(Sender: TObject);
procedure cmdCopyClipbrdClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure cmdEmergencyExitClick(Sender: TObject);
procedure timAutoCloseTimer(Sender: TObject);
procedure memOutputClick(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ private declarations }
FAborted: Boolean;
FTerminateTime: TDateTime;
//FCommandLineCounter: Integer;
FCutApplication: TCutApplicationBase;
procedure SetCutApplication(const Value: TCutApplicationBase);
public
{ public declarations }
CommandLines: TStringList;
ExitCode: Cardinal;
function GetCutAppOutput: string;
function ExecuteCutApp: Integer;
property CutApplication: TCutApplicationBase read FCutApplication write SetCutApplication;
end;
var
frmCutting: TfrmCutting;
implementation
uses
// Delphi
Winapi.Windows, System.SysUtils, System.DateUtils, Vcl.Clipbrd,
// CA
CAResources, DateTools, Main, Utils, Movie;
{$R *.dfm}
function TfrmCutting.GetCutAppOutput: string;
begin
Result := memOutput.Text;
end;
function TfrmCutting.ExecuteCutApp: Integer;
var
S: RCutAppSettings;
begin
Result := mrNone;
FAborted := False;
ExitCode := 0;
if Assigned(CutApplication) then
begin
cmdAbort.Enabled := True;
cmdEmergencyExit.Enabled := True;
cmdClose_nl.Enabled := False;
timAutoClose.Enabled := False;
cmdClose_nl.Caption := RsCaptionCuttingClose;
// Apply codec settings (HD vs HQ)
if MovieInfo.MovieType in [mtHQAVI, mtHDAVI] then
begin
if MovieInfo.MovieType = mtHQAVI then
S := Settings.CutAppSettingsHQAvi
else
S := Settings.CutAppSettingsHDAvi;
if Pos('x264vfw', S.CodecName) > 0 then
CopyX264RegistrySettings('x264-' + MovieTypeStr[MovieInfo.MovieType], 'x264');
end;
CutApplication.StartCutting;
Result := ShowModal;
if CutApplication.CleanUp then
if not CutApplication.CleanUpAfterCutting then
if not batchmode then
ErrMsg(RsErrorCleanUpCutting);
end;
end;
procedure TfrmCutting.CutAppTerminate(Sender: TObject; AExitCode: Cardinal);
begin
ExitCode := AExitCode;
if ExitCode = 0 then
cmdClose_nl.ModalResult := mrOK
else
cmdClose_nl.ModalResult := mrCancel;
cmdAbort.Enabled := False;
cmdEmergencyExit.Enabled := False;
cmdClose_nl.Enabled := True;
FTerminateTime := NowUTC;
if Settings.CuttingWaitTimeout > 0 then
timAutoClose.Enabled := True;
Beep;
end;
procedure TfrmCutting.cmdAbortClick(Sender: TObject);
begin
FAborted := True;
if Assigned(FCutApplication) then
FCutApplication.AbortCutProcess;
end;
procedure TfrmCutting.cmdCopyClipbrdClick(Sender: TObject);
begin
Clipboard.AsText := memOutput.Text;
end;
procedure TfrmCutting.FormCreate(Sender: TObject);
begin
CommandLines := TStringList.Create;
end;
procedure TfrmCutting.FormDestroy(Sender: TObject);
begin
FreeAndNil(CommandLines);
end;
procedure TfrmCutting.SetCutApplication(const Value: TCutApplicationBase);
begin
FCutApplication := Value;
if Assigned(FCutApplication) then
begin
FCutApplication.OnCuttingTerminate := CutAppTerminate;
FCutApplication.OutputMemo := memOutput;
end else
begin
FCutApplication.OnCuttingTerminate := nil;
FCutApplication.OutputMemo := nil;
end;
end;
procedure TfrmCutting.cmdEmergencyExitClick(Sender: TObject);
begin
if YesNoWarnMsg(RsMsgWarnOnTerminateCutApplication) then
begin
CutApplication.EmergencyTerminateProcess;
CutAppTerminate(Self, Cardinal(-1));
end;
end;
procedure TfrmCutting.timAutoCloseTimer(Sender: TObject);
var
secsToWait: Integer;
begin
secsToWait := Settings.CuttingWaitTimeout - SecondsBetween(FTerminateTime, NowUTC);
if secsToWait <= 0 then
begin
timAutoClose.Enabled := False;
cmdClose_nl.Click;
end else
cmdClose_nl.Caption := Format(RsCaptionCuttingAutoClose, [secsToWait]);
end;
procedure TfrmCutting.memOutputClick(Sender: TObject);
begin
if timAutoClose.Enabled then
begin
timAutoClose.Enabled := False;
cmdClose_nl.Caption := RsCaptionCuttingClose;
end;
end;
procedure TfrmCutting.FormClose(Sender: TObject; var Action: TCloseAction);
begin
if ModalResult = mrNone then
ModalResult := mrCancel
else
if FAborted and (ModalResult <> mrOk) then
ModalResult := mrAbort;
end;
end.