I slowly regret ever thinking I could do this Part 1

This commit is contained in:
Salanto 2021-04-07 23:52:45 +02:00
parent 1541657904
commit cfdee9b56e
4 changed files with 58 additions and 4 deletions

View File

@ -37,6 +37,7 @@ SOURCES += src/advertiser.cpp \
src/main.cpp \ src/main.cpp \
src/packets.cpp \ src/packets.cpp \
src/server.cpp \ src/server.cpp \
src/testimony_recorder.cpp \
src/ws_client.cpp \ src/ws_client.cpp \
src/ws_proxy.cpp src/ws_proxy.cpp

View File

@ -1474,6 +1474,12 @@ class AOClient : public QObject {
long long parseTime(QString input); long long parseTime(QString input);
QString getReprimand(bool positive = false); QString getReprimand(bool positive = false);
void addStatement(QString packet);
void updateStatement(QString packet);
void deleteStatement();
void clearTestimony();
void playTestimony();
void pauseTestimony();
///@} ///@}
/** /**

View File

@ -274,13 +274,13 @@ class AreaData : public QObject {
QMap<QString, QString> notecards; 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{ enum TestimonyRecording{
STOPPED, STOPPED,
RECORDING, RECORDING,
UPDATE, UPDATE,
AMEND, ADD,
PLAYBACK, 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 * The testimony recorder is active and inserts the next message after the currently displayed ic-message
* This will increase the size by 1. * This will increase the size by 1.
*/ */
@ -319,7 +319,9 @@ class AreaData : public QObject {
Q_ENUM(TestimonyRecording); Q_ENUM(TestimonyRecording);
TestimonyRecording test_rec; 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.
}; };

View 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()
{
}