author | Stepan777 <stepik-777@mail.ru> |
Fri, 08 Jun 2012 02:52:35 +0400 | |
changeset 7198 | 5debd5fe526e |
parent 7180 | 53ffc8853008 |
child 7235 | baa69bd025d9 |
permissions | -rw-r--r-- |
7180 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
19 |
{$INCLUDE "options.inc"} |
|
20 |
||
21 |
unit uVideoRec; |
|
22 |
||
23 |
{$IFDEF UNIX} |
|
24 |
{$LINKLIB avwrapper} |
|
25 |
{$LINKLIB avutil} |
|
26 |
{$LINKLIB avcodec} |
|
27 |
{$LINKLIB avformat} |
|
28 |
{$ENDIF} |
|
29 |
||
30 |
interface |
|
31 |
||
32 |
var flagPrerecording: boolean = false; |
|
33 |
||
34 |
function BeginVideoRecording: Boolean; |
|
35 |
function LoadNextCameraPosition: LongInt; |
|
36 |
procedure EncodeFrame; |
|
37 |
procedure StopVideoRecording; |
|
38 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
39 |
procedure BeginPreRecording; |
7180 | 40 |
procedure StopPreRecording; |
41 |
procedure SaveCameraPosition; |
|
42 |
||
43 |
procedure freeModule; |
|
44 |
||
45 |
implementation |
|
46 |
||
47 |
uses uVariables, uUtils, GLunit, SDLh, SysUtils; |
|
48 |
||
49 |
{$IFDEF WIN32} |
|
50 |
const AVWrapperLibName = 'libavwrapper.dll'; |
|
51 |
{$ENDIF} |
|
52 |
||
53 |
type TAddFileLogRaw = procedure (s: pchar); cdecl; |
|
54 |
||
55 |
{$IFDEF WIN32} |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
56 |
procedure AVWrapper_Init( |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
57 |
AddLog: TAddFileLogRaw; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
58 |
filename, soundFile, format, vcodec, acodec, preset: PChar; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
59 |
width, height, framerateNum, framerateDen, frequency, channels, vquality, aquality: LongInt); cdecl; external AVWrapperLibName; |
7180 | 60 |
procedure AVWrapper_Close; cdecl; external AVWrapperLibName; |
61 |
procedure AVWrapper_WriteFrame( pY, pCb, pCr: PByte ); cdecl; external AVWrapperLibName; |
|
62 |
{$ELSE} |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
63 |
procedure AVWrapper_Init( |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
64 |
AddLog: TAddFileLogRaw; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
65 |
filename, soundFile, format, vcodec, acodec, preset: PChar; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
66 |
width, height, framerateNum, framerateDen, frequency, channels, vquality, aquality: LongInt); cdecl; external; |
7180 | 67 |
procedure AVWrapper_Close; cdecl; external; |
68 |
procedure AVWrapper_WriteFrame( pY, pCb, pCr: PByte ); cdecl; external; |
|
69 |
{$ENDIF} |
|
70 |
||
71 |
var YCbCr_Planes: array[0..2] of PByte; |
|
72 |
RGB_Buffer: PByte; |
|
73 |
||
74 |
frequency, channels: LongInt; |
|
75 |
||
76 |
cameraFile: TextFile; |
|
77 |
audioFile: File; |
|
78 |
||
79 |
numPixels: LongInt; |
|
80 |
||
81 |
firstTick, nframes: Int64; |
|
82 |
||
83 |
cameraFilePath, soundFilePath: shortstring; |
|
84 |
||
85 |
function BeginVideoRecording: Boolean; |
|
86 |
var filename: shortstring; |
|
87 |
begin |
|
88 |
AddFileLog('BeginVideoRecording'); |
|
89 |
||
90 |
numPixels:= cScreenWidth*cScreenHeight; |
|
91 |
||
92 |
{$IOCHECKS OFF} |
|
93 |
// open file with prerecorded camera positions |
|
94 |
cameraFilePath:= UserPathPrefix + '/Videos/' + cRecPrefix + '.txtin'; |
|
95 |
Assign(cameraFile, cameraFilePath); |
|
96 |
Reset(cameraFile); |
|
97 |
if IOResult <> 0 then |
|
98 |
begin |
|
99 |
AddFileLog('Error: Could not read from ' + cameraFilePath); |
|
100 |
exit(false); |
|
101 |
end; |
|
102 |
||
103 |
ReadLn(cameraFile, frequency, channels); |
|
104 |
{$IOCHECKS ON} |
|
105 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
106 |
filename:= UserPathPrefix + '/Videos/' + cRecPrefix + #0; |
7180 | 107 |
soundFilePath:= UserPathPrefix + '/Videos/' + cRecPrefix + '.hwsound' + #0; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
108 |
cAVFormat+= #0; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
109 |
cAudioCodec+= #0; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
110 |
cVideoCodec+= #0; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
111 |
cVideoPreset+= #0; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
112 |
AVWrapper_Init(@AddFileLogRaw, @filename[1], @soundFilePath[1], @cAVFormat[1], @cVideoCodec[1], @cAudioCodec[1], @cVideoPreset[1], |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
113 |
cScreenWidth, cScreenHeight, cVideoFramerateNum, cVideoFramerateDen, frequency, channels, cAudioQuality, cVideoQuality); |
7180 | 114 |
|
115 |
YCbCr_Planes[0]:= GetMem(numPixels); |
|
116 |
YCbCr_Planes[1]:= GetMem(numPixels div 4); |
|
117 |
YCbCr_Planes[2]:= GetMem(numPixels div 4); |
|
118 |
||
119 |
if (YCbCr_Planes[0] = nil) or (YCbCr_Planes[1] = nil) or (YCbCr_Planes[2] = nil) then |
|
120 |
begin |
|
121 |
AddFileLog('Error: Could not allocate memory for video recording (YCbCr buffer).'); |
|
122 |
exit(false); |
|
123 |
end; |
|
124 |
||
125 |
RGB_Buffer:= GetMem(4*numPixels); |
|
126 |
if RGB_Buffer = nil then |
|
127 |
begin |
|
128 |
AddFileLog('Error: Could not allocate memory for video recording (RGB buffer).'); |
|
129 |
exit(false); |
|
130 |
end; |
|
131 |
||
132 |
BeginVideoRecording:= true; |
|
133 |
end; |
|
134 |
||
135 |
procedure StopVideoRecording; |
|
136 |
begin |
|
137 |
AddFileLog('StopVideoRecording'); |
|
138 |
FreeMem(YCbCr_Planes[0], numPixels); |
|
139 |
FreeMem(YCbCr_Planes[1], numPixels div 4); |
|
140 |
FreeMem(YCbCr_Planes[2], numPixels div 4); |
|
141 |
FreeMem(RGB_Buffer, 4*numPixels); |
|
142 |
Close(cameraFile); |
|
143 |
AVWrapper_Close(); |
|
144 |
DeleteFile(cameraFilePath); |
|
145 |
DeleteFile(soundFilePath); |
|
146 |
end; |
|
147 |
||
148 |
function pixel(x, y, color: LongInt): LongInt; |
|
149 |
begin |
|
150 |
pixel:= RGB_Buffer[(cScreenHeight-y-1)*cScreenWidth*4 + x*4 + color]; |
|
151 |
end; |
|
152 |
||
153 |
procedure EncodeFrame; |
|
154 |
var x, y, r, g, b: LongInt; |
|
155 |
begin |
|
156 |
// read pixels from OpenGL |
|
157 |
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_RGBA, GL_UNSIGNED_BYTE, RGB_Buffer); |
|
158 |
||
159 |
// convert to YCbCr 4:2:0 format |
|
160 |
// Y |
|
161 |
for y := 0 to cScreenHeight-1 do |
|
162 |
for x := 0 to cScreenWidth-1 do |
|
163 |
YCbCr_Planes[0][y*cScreenWidth + x]:= Byte(16 + ((16828*pixel(x,y,0) + 33038*pixel(x,y,1) + 6416*pixel(x,y,2)) shr 16)); |
|
164 |
||
165 |
// Cb and Cr |
|
166 |
for y := 0 to cScreenHeight div 2 - 1 do |
|
167 |
for x := 0 to cScreenWidth div 2 - 1 do |
|
168 |
begin |
|
169 |
r:= pixel(2*x,2*y,0) + pixel(2*x+1,2*y,0) + pixel(2*x,2*y+1,0) + pixel(2*x+1,2*y+1,0); |
|
170 |
g:= pixel(2*x,2*y,1) + pixel(2*x+1,2*y,1) + pixel(2*x,2*y+1,1) + pixel(2*x+1,2*y+1,1); |
|
171 |
b:= pixel(2*x,2*y,2) + pixel(2*x+1,2*y,2) + pixel(2*x,2*y+1,2) + pixel(2*x+1,2*y+1,2); |
|
172 |
YCbCr_Planes[1][y*(cScreenWidth div 2) + x]:= Byte(128 + ((-2428*r - 4768*g + 7196*b) shr 16)); |
|
173 |
YCbCr_Planes[2][y*(cScreenWidth div 2) + x]:= Byte(128 + (( 7196*r - 6026*g - 1170*b) shr 16)); |
|
174 |
end; |
|
175 |
||
176 |
AVWrapper_WriteFrame(YCbCr_Planes[0], YCbCr_Planes[1], YCbCr_Planes[2]); |
|
177 |
end; |
|
178 |
||
179 |
function LoadNextCameraPosition: LongInt; |
|
180 |
var NextTime: LongInt; |
|
181 |
NextZoom: LongInt; |
|
182 |
NextWorldDx, NextWorldDy: LongInt; |
|
183 |
begin |
|
184 |
{$IOCHECKS OFF} |
|
185 |
if eof(cameraFile) then |
|
186 |
exit(-1); |
|
187 |
ReadLn(cameraFile, NextTime, NextWorldDx, NextWorldDy, NextZoom); |
|
188 |
{$IOCHECKS ON} |
|
189 |
if NextTime = 0 then |
|
190 |
exit(-1); |
|
191 |
WorldDx:= NextWorldDx; |
|
192 |
WorldDy:= NextWorldDy; |
|
193 |
zoom:= NextZoom/10000; |
|
194 |
ZoomValue:= NextZoom/10000; |
|
195 |
LoadNextCameraPosition:= NextTime; |
|
196 |
end; |
|
197 |
||
198 |
// this procedure may be called from different thread |
|
199 |
procedure RecordPostMix(udata: pointer; stream: PByte; len: LongInt); cdecl; |
|
200 |
begin |
|
201 |
udata:= udata; |
|
202 |
{$IOCHECKS OFF} |
|
203 |
BlockWrite(audioFile, stream^, len); |
|
204 |
{$IOCHECKS ON} |
|
205 |
end; |
|
206 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
207 |
procedure BeginPreRecording; |
7180 | 208 |
var format: word; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
209 |
filePrefix, filename: shortstring; |
7180 | 210 |
begin |
211 |
AddFileLog('BeginPreRecording'); |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
212 |
|
7180 | 213 |
nframes:= 0; |
214 |
firstTick:= SDL_GetTicks(); |
|
215 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
216 |
filePrefix:= FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
217 |
|
7180 | 218 |
Mix_QuerySpec(@frequency, @format, @channels); |
219 |
if format <> $8010 then |
|
220 |
begin |
|
221 |
// TODO: support any audio format |
|
222 |
AddFileLog('Error: Unexpected audio format ' + IntToStr(format)); |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
223 |
exit; |
7180 | 224 |
end; |
225 |
||
226 |
{$IOCHECKS OFF} |
|
227 |
filename:= UserPathPrefix + '/Videos/' + filePrefix + '.hwsound'; |
|
228 |
Assign(audioFile, filename); |
|
229 |
Rewrite(audioFile, 1); |
|
230 |
if IOResult <> 0 then |
|
231 |
begin |
|
232 |
AddFileLog('Error: Could not write to ' + filename); |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
233 |
exit; |
7180 | 234 |
end; |
235 |
||
236 |
filename:= UserPathPrefix + '/Videos/' + filePrefix + '.txtout'; |
|
237 |
Assign(cameraFile, filename); |
|
238 |
Rewrite(cameraFile); |
|
239 |
if IOResult <> 0 then |
|
240 |
begin |
|
241 |
AddFileLog('Error: Could not write to ' + filename); |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
242 |
exit; |
7180 | 243 |
end; |
244 |
{$IOCHECKS ON} |
|
245 |
WriteLn(cameraFile, inttostr(frequency) + ' ' + inttostr(channels)); |
|
246 |
||
247 |
// register callback for actual audio recording |
|
248 |
Mix_SetPostMix(@RecordPostMix, nil); |
|
249 |
||
250 |
flagPrerecording:= true; |
|
251 |
end; |
|
252 |
||
253 |
procedure StopPreRecording; |
|
254 |
begin |
|
255 |
AddFileLog('StopPreRecording'); |
|
256 |
flagPrerecording:= false; |
|
257 |
||
258 |
// call SDL_LockAudio because RecordPostMix may be executing right now |
|
259 |
SDL_LockAudio(); |
|
260 |
Close(audioFile); |
|
261 |
Close(cameraFile); |
|
262 |
Mix_SetPostMix(nil, nil); |
|
263 |
SDL_UnlockAudio(); |
|
264 |
end; |
|
265 |
||
266 |
procedure SaveCameraPosition; |
|
267 |
var Ticks: LongInt; |
|
268 |
begin |
|
269 |
Ticks:= SDL_GetTicks(); |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
270 |
while (Ticks - firstTick)*cVideoFramerateNum > nframes*cVideoFramerateDen*1000 do |
7180 | 271 |
begin |
272 |
WriteLn(cameraFile, inttostr(GameTicks) + ' ' + inttostr(WorldDx) + ' ' + inttostr(WorldDy) + ' ' + inttostr(Round(zoom*10000))); |
|
273 |
inc(nframes); |
|
274 |
end; |
|
275 |
end; |
|
276 |
||
277 |
procedure freeModule; |
|
278 |
begin |
|
279 |
if flagPrerecording then |
|
280 |
StopPreRecording(); |
|
281 |
end; |
|
282 |
||
283 |
end. |