From cfdee9b56eb063e5bbadda09beaedc2b87194c4c Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 7 Apr 2021 23:52:45 +0200 Subject: [PATCH] I slowly regret ever thinking I could do this Part 1 --- akashi.pro | 1 + include/aoclient.h | 6 +++++ include/area_data.h | 10 +++++---- src/testimony_recorder.cpp | 45 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 58 insertions(+), 4 deletions(-) create mode 100644 src/testimony_recorder.cpp diff --git a/akashi.pro b/akashi.pro index 365150c..1766080 100644 --- a/akashi.pro +++ b/akashi.pro @@ -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 diff --git a/include/aoclient.h b/include/aoclient.h index 0c4d7cf..4e83fd0 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -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(); ///@} /** diff --git a/include/area_data.h b/include/area_data.h index d948d8c..6871477 100644 --- a/include/area_data.h +++ b/include/area_data.h @@ -274,13 +274,13 @@ class AreaData : public QObject { QMap 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 testimony; + + QVector 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. }; diff --git a/src/testimony_recorder.cpp b/src/testimony_recorder.cpp new file mode 100644 index 0000000..b9e70a0 --- /dev/null +++ b/src/testimony_recorder.cpp @@ -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 . // +////////////////////////////////////////////////////////////////////////////////////// +#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() +{ + +}