I slowly regret ever thinking I could do this Part 1
This commit is contained in:
parent
1541657904
commit
cfdee9b56e
@ -37,6 +37,7 @@ SOURCES += src/advertiser.cpp \
|
||||
src/main.cpp \
|
||||
src/packets.cpp \
|
||||
src/server.cpp \
|
||||
src/testimony_recorder.cpp \
|
||||
src/ws_client.cpp \
|
||||
src/ws_proxy.cpp
|
||||
|
||||
|
@ -1474,6 +1474,12 @@ class AOClient : public QObject {
|
||||
long long parseTime(QString input);
|
||||
QString getReprimand(bool positive = false);
|
||||
|
||||
void addStatement(QString packet);
|
||||
void updateStatement(QString packet);
|
||||
void deleteStatement();
|
||||
void clearTestimony();
|
||||
void playTestimony();
|
||||
void pauseTestimony();
|
||||
///@}
|
||||
|
||||
/**
|
||||
|
@ -274,13 +274,13 @@ class AreaData : public QObject {
|
||||
QMap<QString, QString> notecards;
|
||||
|
||||
/**
|
||||
* @brief The three "states" the testimony recording system can have in an area.
|
||||
* @brief The five "states" the testimony recording system can have in an area.
|
||||
*/
|
||||
enum TestimonyRecording{
|
||||
STOPPED,
|
||||
RECORDING,
|
||||
UPDATE,
|
||||
AMEND,
|
||||
ADD,
|
||||
PLAYBACK,
|
||||
};
|
||||
|
||||
@ -305,7 +305,7 @@ class AreaData : public QObject {
|
||||
*/
|
||||
|
||||
/**
|
||||
* @var TestimonyRecording AMEND
|
||||
* @var TestimonyRecording ADD
|
||||
* The testimony recorder is active and inserts the next message after the currently displayed ic-message
|
||||
* This will increase the size by 1.
|
||||
*/
|
||||
@ -319,7 +319,9 @@ class AreaData : public QObject {
|
||||
Q_ENUM(TestimonyRecording);
|
||||
TestimonyRecording test_rec;
|
||||
|
||||
QVector<QStringList> testimony;
|
||||
|
||||
QVector<QStringList> testimony; //!< Vector of all statements saved. Index 0 is always the title of the testimony.
|
||||
int current_statement; //!< Keeps track of the currently played statement.
|
||||
|
||||
};
|
||||
|
||||
|
45
src/testimony_recorder.cpp
Normal file
45
src/testimony_recorder.cpp
Normal file
@ -0,0 +1,45 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 of the //
|
||||
// License, or (at your option) any later version. //
|
||||
// //
|
||||
// This program is distributed in the hope that it will be useful, //
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
||||
// GNU Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#include "include/aoclient.h"
|
||||
|
||||
//
|
||||
|
||||
void AOClient::addStatement(QString packet)
|
||||
{
|
||||
|
||||
}
|
||||
void AOClient::updateStatement(QString packet)
|
||||
{
|
||||
|
||||
}
|
||||
void AOClient::deleteStatement()
|
||||
{
|
||||
AreaData* area = server->areas[current_area];
|
||||
}
|
||||
void AOClient::clearTestimony()
|
||||
{
|
||||
|
||||
}
|
||||
void AOClient::playTestimony()
|
||||
{
|
||||
|
||||
}
|
||||
void AOClient::pauseTestimony()
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user