author | sheepluva |
Fri, 13 Jun 2014 06:26:31 +0200 | |
changeset 10293 | 201ea4989985 |
parent 10248 | 7b9b44a051f8 |
child 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
7180 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
9998 | 3 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
7180 | 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
7180 | 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; |
10248 | 40 |
item = 0; |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
41 |
finished = false; |
7897 | 42 |
name = prefix + "." + LibavInteraction::instance().getExtension(config->AVFormat()); |
7180 | 43 |
} |
44 |
||
45 |
HWRecorder::~HWRecorder() |
|
46 |
{ |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
47 |
emit encodingFinished(finished); |
7507 | 48 |
if (queue.empty()) |
49 |
numRecorders--; |
|
50 |
else |
|
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7897
diff
changeset
|
51 |
queue.takeFirst()->Start(false); |
7180 | 52 |
} |
53 |
||
54 |
void HWRecorder::onClientDisconnect() |
|
55 |
{ |
|
56 |
} |
|
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
57 |
|
7180 | 58 |
void HWRecorder::onClientRead() |
59 |
{ |
|
60 |
quint8 msglen; |
|
61 |
quint32 bufsize; |
|
62 |
while (!readbuffer.isEmpty() && ((bufsize = readbuffer.size()) > 0) && |
|
63 |
((msglen = readbuffer.data()[0]) < bufsize)) |
|
64 |
{ |
|
65 |
QByteArray msg = readbuffer.left(msglen + 1); |
|
66 |
readbuffer.remove(0, msglen + 1); |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
67 |
switch (msg.at(1)) |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
68 |
{ |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
69 |
case '?': |
7180 | 70 |
SendIPC("!"); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
71 |
break; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
72 |
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
|
73 |
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
|
74 |
break; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
75 |
case 'v': |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
76 |
finished = true; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
77 |
break; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
78 |
} |
7180 | 79 |
} |
80 |
} |
|
81 |
||
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
|
82 |
void HWRecorder::EncodeVideo(const QByteArray & record) |
7180 | 83 |
{ |
84 |
toSendBuf = record; |
|
85 |
toSendBuf.replace(QByteArray("\x02TD"), QByteArray("\x02TV")); |
|
86 |
toSendBuf.replace(QByteArray("\x02TL"), QByteArray("\x02TV")); |
|
87 |
toSendBuf.replace(QByteArray("\x02TN"), QByteArray("\x02TV")); |
|
88 |
toSendBuf.replace(QByteArray("\x02TS"), QByteArray("\x02TV")); |
|
89 |
||
7507 | 90 |
if (numRecorders < maxRecorders) |
91 |
{ |
|
92 |
numRecorders++; |
|
8069
bb7671829935
- Only allow one engine instance running at the moment
unc0rr
parents:
7897
diff
changeset
|
93 |
Start(false); // run engine |
7507 | 94 |
} |
95 |
else |
|
96 |
queue.push_back(this); |
|
7180 | 97 |
} |
98 |
||
99 |
QStringList HWRecorder::getArguments() |
|
100 |
{ |
|
101 |
QStringList arguments; |
|
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
102 |
QRect resolution = config->rec_Resolution(); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
103 |
QString nick = config->netNick().toUtf8().toBase64(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
104 |
|
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
105 |
arguments << "--internal"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
106 |
arguments << "--port"; |
7180 | 107 |
arguments << QString("%1").arg(ipc_port); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
108 |
arguments << "--prefix"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
109 |
arguments << datadir->absolutePath(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
110 |
arguments << "--user-prefix"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
111 |
arguments << cfgdir->absolutePath(); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
112 |
arguments << "--locale"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
113 |
arguments << HWGame::tr("en.txt"); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
114 |
arguments << "--frame-interval"; |
7180 | 115 |
arguments << QString::number(config->timerInterval()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
116 |
arguments << "--width"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
117 |
arguments << QString::number(resolution.width()); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
118 |
arguments << "--height"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
119 |
arguments << QString::number(resolution.height()); |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
120 |
arguments << "--nosound"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
121 |
arguments << "--raw-quality"; |
7180 | 122 |
arguments << QString::number(config->translateQuality()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
123 |
arguments << "--stereo"; |
7180 | 124 |
arguments << QString::number(config->stereoMode()); |
8325
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
125 |
arguments << "--nomusic"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
126 |
arguments << "--volume"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
127 |
arguments << "0"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
128 |
if (config->isAltDamageEnabled()) |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
129 |
arguments << "--altdmg"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
130 |
if (!nick.isEmpty()) { |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
131 |
arguments << "--nick"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
132 |
arguments << nick; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
133 |
} |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
134 |
arguments << "--recorder"; |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
135 |
arguments << QString::number(config->rec_Framerate()); //cVideoFramerateNum |
ecd51650d5d8
GCI2012: Change Argument Passing Between Frontend and Engine
RowanD
parents:
8069
diff
changeset
|
136 |
arguments << "1"; //cVideoFramerateDen |
7180 | 137 |
arguments << prefix; |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
138 |
arguments << config->AVFormat(); |
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
139 |
arguments << config->videoCodec(); |
8434 | 140 |
// Could use a field to use quality instead. maybe quality could override bitrate - or just pass (and set) both. |
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
|
141 |
// 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
|
142 |
arguments << QString::number(config->rec_Bitrate()*1024); |
7868 | 143 |
arguments << (config->recordAudio() ? config->audioCodec() : "no"); |
7180 | 144 |
|
145 |
return arguments; |
|
146 |
} |
|
9800
169fbb968bb3
No idea what this is doing, seems to allow recorder instance to not block further engine starts while it is doing its job.
unc0rr
parents:
9080
diff
changeset
|
147 |
|
169fbb968bb3
No idea what this is doing, seems to allow recorder instance to not block further engine starts while it is doing its job.
unc0rr
parents:
9080
diff
changeset
|
148 |
bool HWRecorder::simultaneousRun() |
169fbb968bb3
No idea what this is doing, seems to allow recorder instance to not block further engine starts while it is doing its job.
unc0rr
parents:
9080
diff
changeset
|
149 |
{ |
169fbb968bb3
No idea what this is doing, seems to allow recorder instance to not block further engine starts while it is doing its job.
unc0rr
parents:
9080
diff
changeset
|
150 |
return true; |
169fbb968bb3
No idea what this is doing, seems to allow recorder instance to not block further engine starts while it is doing its job.
unc0rr
parents:
9080
diff
changeset
|
151 |
} |