Home
last modified time | relevance | path

Searched refs:DeckList (Results 1 – 21 of 21) sorted by relevance

/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/cockatrice/src/
H A Dtappedout_interface.h12 class DeckList; variable
27 void copyDeckSplitMainAndSide(const DeckList &source, DeckList &mainboard, DeckList &sideboard);
30 void getAnalyzeRequestData(DeckList *deck, QByteArray *data);
34 void analyzeDeck(DeckList *deck);
H A Dtappedout_interface.cpp70 void TappedOutInterface::getAnalyzeRequestData(DeckList *deck, QByteArray *data) in getAnalyzeRequestData()
72 DeckList mainboard, sideboard; in getAnalyzeRequestData()
84 void TappedOutInterface::analyzeDeck(DeckList *deck) in analyzeDeck()
98 DeckList &mainboard, &sideboard;
100 CopyMainOrSide(CardDatabase &_cardDatabase, DeckList &_mainboard, DeckList &_sideboard) in CopyMainOrSide()
118 …d TappedOutInterface::copyDeckSplitMainAndSide(const DeckList &source, DeckList &mainboard, DeckLi… in copyDeckSplitMainAndSide()
H A Ddeckstats_interface.cpp45 void DeckStatsInterface::getAnalyzeRequestData(DeckList *deck, QByteArray *data) in getAnalyzeRequestData()
47 DeckList deckWithoutTokens; in getAnalyzeRequestData()
58 void DeckStatsInterface::analyzeDeck(DeckList *deck) in analyzeDeck()
72 DeckList &destination;
74 CopyIfNotAToken(CardDatabase &_cardDatabase, DeckList &_destination) in CopyIfNotAToken()
87 void DeckStatsInterface::copyDeckWithoutTokens(const DeckList &source, DeckList &destination) in copyDeckWithoutTokens()
H A Ddeckstats_interface.h12 class DeckList; variable
27 void copyDeckWithoutTokens(const DeckList &source, DeckList &destination);
31 void getAnalyzeRequestData(DeckList *deck, QByteArray *data);
35 void analyzeDeck(DeckList *deck);
H A Ddeckview.h13 class DeckList; variable
108 DeckList *deck;
125 void setDeck(const DeckList &_deck);
153 void setDeck(const DeckList &_deck);
H A Ddeck_loader.cpp15 DeckLoader::DeckLoader() : DeckList(), lastFileName(QString()), lastFileFormat(CockatriceFormat), l… in DeckLoader()
20 …: DeckList(nativeString), lastFileName(QString()), lastFileFormat(CockatriceFormat), lastRemoteDec… in DeckLoader()
24 DeckLoader::DeckLoader(const DeckList &other) in DeckLoader()
25 … : DeckList(other), lastFileName(QString()), lastFileFormat(CockatriceFormat), lastRemoteDeckId(-1) in DeckLoader()
30 : DeckList(other), lastFileName(other.lastFileName), lastFileFormat(other.lastFileFormat), in DeckLoader()
H A Ddeck_loader.h6 class DeckLoader : public DeckList
28 DeckLoader(const DeckList &other);
H A Ddlg_create_token.h15 class DeckList; variable
H A Ddeckview.cpp328 void DeckViewScene::setDeck(const DeckList &_deck) in setDeck()
333 deck = new DeckList(_deck); in setDeck()
518 void DeckView::setDeck(const DeckList &_deck) in setDeck()
H A Dtab_supervisor.h34 class DeckList; variable
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/common/
H A Ddecklist.cpp334 DeckList::DeckList() in DeckList() function in DeckList
340 DeckList::DeckList(const DeckList &other) in DeckList() function in DeckList
353 DeckList::DeckList(const QString &nativeString) in DeckList() function in DeckList
359 DeckList::~DeckList() in ~DeckList()
388 bool DeckList::readElement(QXmlStreamReader *xml) in readElement()
411 void DeckList::write(QXmlStreamWriter *xml) in write()
461 QString DeckList::writeToString_Native() in writeToString_Native()
686 void DeckList::cleanList() in cleanList()
708 QStringList DeckList::getCardList() const in getCardList()
715 int DeckList::getSideboardSize() const in getSideboardSize()
[all …]
H A Ddecklist.h172 class DeckList : public QObject
207 explicit DeckList();
208 DeckList(const DeckList &other);
209 explicit DeckList(const QString &nativeString);
210 ~DeckList() override;
H A Dserver_player.h14 class DeckList; variable
74 DeckList *deck;
H A Dserver_database_interface.h63 virtual DeckList *getDeckFromDatabase(int /* deckId */, int /* userId */) in getDeckFromDatabase()
H A Dserver.h27 class DeckList; variable
H A Dserver_player.cpp727 DeckList *newDeck; in cmdDeckSelect()
736 newDeck = new DeckList(QString::fromStdString(cmd.deck())); in cmdDeckSelect()
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/tests/loading_from_clipboard/
H A Dclipboard_testing.cpp18 DeckList deckList; in testEmpty()
28 DeckList deckList; in testDeck()
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/servatrice/src/
H A Dserversocketinterface.h32 class DeckList; variable
93 DeckList *getDeckFromDatabase(int deckId);
H A Dservatrice_database_interface.h74 DeckList *getDeckFromDatabase(int deckId, int userId);
H A Dservatrice_database_interface.cpp867 DeckList *Servatrice_DatabaseInterface::getDeckFromDatabase(int deckId, int userId) in getDeckFromDatabase()
879 DeckList *deck = new DeckList; in getDeckFromDatabase()
H A Dserversocketinterface.cpp512 DeckList deck(deckStr); in cmdDeckUpload()
569 DeckList *deck; in cmdDeckDownload()