author | nemo |
Fri, 14 Dec 2012 09:58:26 -0500 | |
changeset 8292 | c284ea71a4f8 |
parent 8069 | bb7671829935 |
child 8092 | 08960209db8c |
child 8325 | ecd51650d5d8 |
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 <QString> |
|
20 |
#include <QByteArray> |
|
21 |
||
22 |
#include "recorder.h" |
|
23 |
#include "gameuiconfig.h" |
|
24 |
#include "hwconsts.h" |
|
25 |
#include "game.h" |
|
7897 | 26 |
#include "LibavInteraction.h" |
7180 | 27 |
|
7507 | 28 |
// Encoding is memory expensive process, so we need to limit maximum number |
29 |
// of simultaneous encoders. |
|
30 |
static const int maxRecorders = 3; |
|
31 |
static int numRecorders = 0; |
|
32 |
||
33 |
static QList<HWRecorder*> queue; |
|
34 |
||
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
35 |
HWRecorder::HWRecorder(GameUIConfig * config, const QString &prefix) : |
7180 | 36 |
TCPBase(false) |
37 |
{ |
|
38 |
this->config = config; |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
39 |
this->prefix = prefix; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
40 |
finished = false; |
7897 | 41 |
name = prefix + "." + LibavInteraction::instance().getExtension(config->AVFormat()); |
7180 | 42 |
} |
43 |
||
44 |
HWRecorder::~HWRecorder() |
|
45 |
{ |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
46 |
emit encodingFinished(finished); |
7507 | 47 |
if (queue.empty()) |
48 |
numRecorders--; |
|
49 |
else |
|
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7897
diff
changeset
|
50 |
queue.takeFirst()->Start(false); |
7180 | 51 |
} |
52 |
||
53 |
void HWRecorder::onClientDisconnect() |
|
54 |
{ |
|
55 |
} |
|
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
56 |
|
7180 | 57 |
void HWRecorder::onClientRead() |
58 |
{ |
|
59 |
quint8 msglen; |
|
60 |
quint32 bufsize; |
|
61 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
|
62 |
((msglen = readbuffer.data()[0]) < bufsize)) |
|
63 |
{ |
|
64 |
QByteArray msg = readbuffer.left(msglen + 1); |
|
65 |
readbuffer.remove(0, msglen + 1); |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
66 |
switch (msg.at(1)) |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
67 |
{ |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
68 |
case '?': |
7180 | 69 |
SendIPC("!"); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
70 |
break; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
71 |
case 'p': |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
72 |
emit onProgress((quint8(msg.at(2))*256.0 + quint8(msg.at(3)))*0.0001); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
73 |
break; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
74 |
case 'v': |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
75 |
finished = true; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
76 |
break; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
77 |
} |
7180 | 78 |
} |
79 |
} |
|
80 |
||
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
81 |
void HWRecorder::EncodeVideo(const QByteArray & record) |
7180 | 82 |
{ |
83 |
toSendBuf = record; |
|
84 |
toSendBuf.replace(QByteArray("\x02TD"), QByteArray("\x02TV")); |
|
85 |
toSendBuf.replace(QByteArray("\x02TL"), QByteArray("\x02TV")); |
|
86 |
toSendBuf.replace(QByteArray("\x02TN"), QByteArray("\x02TV")); |
|
87 |
toSendBuf.replace(QByteArray("\x02TS"), QByteArray("\x02TV")); |
|
88 |
||
7507 | 89 |
if (numRecorders < maxRecorders) |
90 |
{ |
|
91 |
numRecorders++; |
|
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7897
diff
changeset
|
92 |
Start(false); // run engine |
7507 | 93 |
} |
94 |
else |
|
95 |
queue.push_back(this); |
|
7180 | 96 |
} |
97 |
||
98 |
QStringList HWRecorder::getArguments() |
|
99 |
{ |
|
100 |
QStringList arguments; |
|
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
101 |
QRect resolution = config->rec_Resolution(); |
7180 | 102 |
arguments << cfgdir->absolutePath(); |
103 |
arguments << QString::number(resolution.width()); |
|
104 |
arguments << QString::number(resolution.height()); |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
105 |
arguments << "32"; // bpp |
7180 | 106 |
arguments << QString("%1").arg(ipc_port); |
107 |
arguments << "0"; // fullscreen |
|
108 |
arguments << "0"; // sound |
|
109 |
arguments << "0"; // music |
|
110 |
arguments << "0"; // sound volume |
|
111 |
arguments << QString::number(config->timerInterval()); |
|
112 |
arguments << datadir->absolutePath(); |
|
7868 | 113 |
arguments << "0"; // fps |
7180 | 114 |
arguments << (config->isAltDamageEnabled() ? "1" : "0"); |
115 |
arguments << config->netNick().toUtf8().toBase64(); |
|
116 |
arguments << QString::number(config->translateQuality()); |
|
117 |
arguments << QString::number(config->stereoMode()); |
|
118 |
arguments << HWGame::tr("en.txt"); |
|
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
119 |
arguments << QString::number(config->rec_Framerate()); // framerate numerator |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
120 |
arguments << "1"; // framerate denominator |
7180 | 121 |
arguments << prefix; |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
122 |
arguments << config->AVFormat(); |
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
123 |
arguments << config->videoCodec(); |
7633
d4251e519062
Allow adjusting bitrate so that I can get a somewhat usable webm video. The audio is still tinny and unlistenable. Configuration option for that might be helpful, or just adjusting defaults in the wrapper.
nemo
parents:
7507
diff
changeset
|
124 |
// Could use a field to use quality instead. maybe quality could override bitrate - or just pass (and set) both. |
d4251e519062
Allow adjusting bitrate so that I can get a somewhat usable webm video. The audio is still tinny and unlistenable. Configuration option for that might be helpful, or just adjusting defaults in the wrapper.
nemo
parents:
7507
diff
changeset
|
125 |
// The library does support using both at once after all. |
d4251e519062
Allow adjusting bitrate so that I can get a somewhat usable webm video. The audio is still tinny and unlistenable. Configuration option for that might be helpful, or just adjusting defaults in the wrapper.
nemo
parents:
7507
diff
changeset
|
126 |
arguments << QString::number(config->rec_Bitrate()*1024); |
7868 | 127 |
arguments << (config->recordAudio() ? config->audioCodec() : "no"); |
7180 | 128 |
|
129 |
return arguments; |
|
130 |
} |