author | unc0rr |
Tue, 18 Dec 2012 20:48:37 +0400 | |
branch | flibqtfrontend |
changeset 8306 | 50fe80adbfcb |
parent 8092 | 08960209db8c |
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 |
#ifndef RECORDER_H |
|
20 |
#define RECORDER_H |
|
21 |
||
22 |
#include <QString> |
|
23 |
#include <QByteArray> |
|
24 |
||
25 |
#include "tcpBase.h" |
|
26 |
||
27 |
class GameUIConfig; |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
28 |
class VideoItem; |
7180 | 29 |
|
30 |
class HWRecorder : public TCPBase |
|
31 |
{ |
|
32 |
Q_OBJECT |
|
33 |
public: |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
34 |
HWRecorder(GameUIConfig * config, const QString & prefix); |
7180 | 35 |
virtual ~HWRecorder(); |
36 |
||
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
|
37 |
void EncodeVideo(const QByteArray & record); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
38 |
|
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
39 |
VideoItem * item; // used by pagevideos |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
40 |
QString name; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
41 |
QString prefix; |
7180 | 42 |
|
43 |
protected: |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
44 |
// virtuals from TCPBase |
7180 | 45 |
virtual QStringList getArguments(); |
46 |
virtual void onClientRead(); |
|
47 |
virtual void onClientDisconnect(); |
|
8092 | 48 |
void onEngineStart(); |
7180 | 49 |
|
50 |
signals: |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
51 |
void onProgress(float progress); // 0 < progress < 1 |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
52 |
void encodingFinished(bool success); |
7180 | 53 |
|
54 |
private: |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
55 |
bool finished; |
7180 | 56 |
GameUIConfig * config; |
57 |
}; |
|
58 |
||
59 |
#endif // RECORDER_H |