mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-29 18:13:55 -07:00
* Refactor replay code to replayManager * Lint. * Refresh shortcuts. Took 13 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de> Co-authored-by: Zach H <zahalpern+github@gmail.com>
37 lines
959 B
C++
37 lines
959 B
C++
#ifndef REPLAY_MANAGER_H
|
|
#define REPLAY_MANAGER_H
|
|
#include "network/replay_timeline_widget.h"
|
|
#include "pb/game_replay.pb.h"
|
|
|
|
#include <QWidget>
|
|
|
|
class ReplayManager : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ReplayManager(TabGame *parent, GameReplay *replay);
|
|
TabGame *game;
|
|
GameReplay *replay;
|
|
|
|
signals:
|
|
void requestChatAndPhaseReset();
|
|
|
|
private:
|
|
// Replay related members
|
|
int currentReplayStep = 0;
|
|
QList<int> replayTimeline;
|
|
ReplayTimelineWidget *timelineWidget;
|
|
QToolButton *replayPlayButton, *replayFastForwardButton;
|
|
QAction *aReplaySkipForward, *aReplaySkipBackward, *aReplaySkipForwardBig, *aReplaySkipBackwardBig;
|
|
|
|
private slots:
|
|
void replayNextEvent(Player::EventProcessingOptions options);
|
|
void replayFinished();
|
|
void replayPlayButtonToggled(bool checked);
|
|
void replayFastForwardButtonToggled(bool checked);
|
|
void replayRewind();
|
|
void refreshShortcuts();
|
|
};
|
|
|
|
#endif // REPLAY_MANAGER_H
|