예제 #1
0
 /// <summary>
 /// Parses all cards from a json-file and returns specific cards based on XmlDeck instance.
 /// </summary>
 /// <param name="path">Path to the json-file.</param>
 /// <param name="deck">Instance of XmlDeck which specifies which JsonCards will be returned.</param>
 /// <returns>The parsed specific JsonCards.</returns>
 public static Collection <JsonCard> GetJsonCards(string path, XmlDeck deck)
 {
     if (deck == null)
     {
         throw new System.ArgumentNullException(nameof(deck));
     }
     return(GetCardsForXmlDeck(deck, GetJsonCards(path)));
 }
예제 #2
0
        /// <summary>
        /// Parses cards from a json web resourceand returns specific cards based on XmlDeck instance.
        /// </summary>
        /// <param name="uri">Uri of the json-file.</param>
        /// <param name="deck">Instance of XmlDeck which specifies which JsonCards will be returned.</param>
        /// <returns>The parsed JsonCards.</returns>
        public static Collection <JsonCard> GetJsonCardsFromUrl(System.Uri uri, XmlDeck deck)
        {
            if (deck is null)
            {
                throw new System.ArgumentNullException(nameof(deck));
            }

            return(GetCardsForXmlDeck(deck, GetJsonCardsFromUrl(uri)));
        }
예제 #3
0
        private static Collection <JsonCard> GetCardsForXmlDeck(XmlDeck deck, Collection <JsonCard> allJsonCards)
        {
            Collection <JsonCard> cards = new Collection <JsonCard>();

            foreach (XmlCard card in deck.Card)
            {
                for (int amount = 0; amount < card.Amount; ++amount)
                {
                    JsonCard foundCard = allJsonCards.Where(c => c.Set == card.Set && c.Id == card.Id).First().DeepCopy;
                    cards.Add(foundCard);
                }
            }
            return(cards);
        }