mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
* [DeckList] refactor: pass DeckList by const ref * Change getDeckList to return a const ref
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/**
|
|
* @file tapped_out_interface.h
|
|
* @ingroup ApiInterfaces
|
|
* @brief TODO: Document this.
|
|
*/
|
|
|
|
#ifndef TAPPEDOUT_INTERFACE_H
|
|
#define TAPPEDOUT_INTERFACE_H
|
|
|
|
#include <libcockatrice/card/database/card_database.h>
|
|
#include <libcockatrice/deck_list/deck_list.h>
|
|
|
|
inline Q_LOGGING_CATEGORY(TappedOutInterfaceLog, "tapped_out_interface");
|
|
|
|
class QByteArray;
|
|
class QNetworkAccessManager;
|
|
class QNetworkReply;
|
|
class DeckList;
|
|
|
|
/**
|
|
* TappedOutInterface exists in order to support the "Analyze on TappedOut" feature.
|
|
* An http POST request is sent and the result is retrieved from the reply. Parsing
|
|
* logic is implemented in TappedOutInterface::queryFinished().
|
|
*/
|
|
|
|
class TappedOutInterface : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
QNetworkAccessManager *manager;
|
|
|
|
CardDatabase &cardDatabase;
|
|
void copyDeckSplitMainAndSide(const DeckList &source, DeckList &mainboard, DeckList &sideboard);
|
|
private slots:
|
|
void queryFinished(QNetworkReply *reply);
|
|
void getAnalyzeRequestData(const DeckList &deck, QByteArray &data);
|
|
|
|
public:
|
|
explicit TappedOutInterface(CardDatabase &_cardDatabase, QObject *parent = nullptr);
|
|
void analyzeDeck(const DeckList &deck);
|
|
};
|
|
|
|
#endif
|