Home
last modified time | relevance | path

Searched refs:CardRelation (Results 1 – 11 of 11) sorted by relevance

/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/cockatrice/src/
H A Dcarddatabase.h20 class CardRelation; variable
166 QList<CardRelation *> relatedCards;
168 QList<CardRelation *> reverseRelatedCards;
170 QList<CardRelation *> reverseRelatedCardsToMe;
185 const QList<CardRelation *> &_relatedCards = QList<CardRelation *>(),
186 const QList<CardRelation *> &_reverseRelatedCards = QList<CardRelation *>(),
197 … const QList<CardRelation *> &_relatedCards = QList<CardRelation *>(),
198 … const QList<CardRelation *> &_reverseRelatedCards = QList<CardRelation *>(),
278 const QList<CardRelation *> &getRelatedCards() const in getRelatedCards()
292 QList<CardRelation *> result; in getAllRelatedCards()
[all …]
H A Dcarddatabase.cpp224 const QList<CardRelation *> &_relatedCards, in CardInfo()
225 const QList<CardRelation *> &_reverseRelatedCards, in CardInfo()
249 const QList<CardRelation *> &_relatedCards, in newInstance()
250 const QList<CardRelation *> &_reverseRelatedCards, in newInstance()
582 foreach (CardRelation *cardRelation, card->getReverseRelatedCards()) { in refreshCachedReverseRelatedCards()
588 auto *newCardRelation = new CardRelation(card->getName(), cardRelation->getDoesAttach(), in refreshCachedReverseRelatedCards()
672 CardRelation::CardRelation(const QString &_name, in CardRelation() function in CardRelation
684 foreach (CardRelation *cardRelation, this->getReverseRelatedCards2Me()) { in resetReverseRelatedCards2Me()
687 reverseRelatedCardsToMe = QList<CardRelation *>(); in resetReverseRelatedCards2Me()
H A Ddlg_edit_tokens.cpp162 … CardInfoPtr card = CardInfo::newInstance(name, "", true, QVariantHash(), QList<CardRelation *>(), in actAddToken()
163 QList<CardRelation *>(), sets, false, -1, false); in actAddToken()
H A Dabstractcarditem.cpp52 …rdInfo::newInstance(name, "", true, QVariantHash(), QList<CardRelation *>(), QList<CardRelation *>… in cardInfoUpdated()
H A Dplayer.cpp1310 CardRelation *cardRelation = relatedCards.at(action->data().toInt()); in actCreateRelatedCard()
1334 CardRelation *cardRelation = nullptr; in actCreateAllRelatedCards()
1343 QList<CardRelation *> nonExcludedRelatedCards; in actCreateAllRelatedCards()
1345 for (CardRelation *cardRelationTemp : relatedCards) { in actCreateAllRelatedCards()
1360 for (CardRelation *cardRelationAll : relatedCards) { in actCreateAllRelatedCards()
1374 for (CardRelation *cardRelationNotExcluded : nonExcludedRelatedCards) { in actCreateAllRelatedCards()
3150 QList<CardRelation *> relatedCards = cardInfo->getAllRelatedCards(); in addRelatedCardView()
3151 for (const CardRelation *cardRelation : relatedCards) { in addRelatedCardView()
3166 for (const CardRelation *relatedCard : relatedCards) { in addRelatedCardView()
3183 QList<CardRelation *> relatedCards = cardInfo->getAllRelatedCards(); in addRelatedCardActions()
[all …]
H A Dplayer.h275 bool createRelatedFromRelation(const CardItem *sourceCard, const CardRelation *cardRelation);
H A Dtab_deck_editor.cpp477 for (const CardRelation *rel : relatedCards) { in databaseCustomMenu()
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/cockatrice/src/carddbparser/
H A Dcockatricexml4.cpp130 QList<CardRelation *> relatedCards, reverseRelatedCards; in loadCardsFromXml()
202 auto *relation = new CardRelation(cardName, attach, exclude, variable, count); in loadCardsFromXml()
276 const QList<CardRelation *> related = info->getRelatedCards(); in operator <<()
298 const QList<CardRelation *> reverseRelated = info->getReverseRelatedCards(); in operator <<()
H A Dcockatricexml3.cpp154 QList<CardRelation *> relatedCards, reverseRelatedCards; in loadCardsFromXml()
251 auto *relation = new CardRelation(cardName, attach, exclude, variable, count); in loadCardsFromXml()
350 const QList<CardRelation *> related = info->getRelatedCards(); in operator <<()
372 const QList<CardRelation *> reverseRelated = info->getReverseRelatedCards(); in operator <<()
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/oracle/src/
H A Doracleimporter.cpp101 QList<CardRelation *> &relatedCards, in addCard()
167 QList<CardRelation *> reverseRelatedCards; in addCard()
210 QList<CardRelation *> relatedCards; in importCardsFromSet()
362 relatedCards.append(new CardRelation(additionalName, true)); in importCardsFromSet()
367 relatedCards.append(new CardRelation(additionalName, true)); in importCardsFromSet()
H A Doracleimporter.h103 QList<CardRelation *> &relatedCards,