Add card inventory classes and helpers
This commit is contained in:
23
Assets/Scripts/Core/Logging.cs
Normal file
23
Assets/Scripts/Core/Logging.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace Core
|
||||
{
|
||||
public static class Logging
|
||||
{
|
||||
[System.Diagnostics.Conditional("ENABLE_LOG")]
|
||||
public static void Debug(object message)
|
||||
{
|
||||
UnityEngine.Debug.Log(message);
|
||||
}
|
||||
|
||||
[System.Diagnostics.Conditional("ENABLE_LOG")]
|
||||
public static void Warning(object message)
|
||||
{
|
||||
UnityEngine.Debug.LogWarning(message);
|
||||
}
|
||||
|
||||
[System.Diagnostics.Conditional("ENABLE_LOG")]
|
||||
public static void Error(object message)
|
||||
{
|
||||
UnityEngine.Debug.LogError(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Scripts/Core/Logging.cs.meta
Normal file
3
Assets/Scripts/Core/Logging.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 99ee122ee6ee4b57b40c03be4479b124
|
||||
timeCreated: 1760446431
|
||||
@@ -2,6 +2,7 @@
|
||||
using AppleHills.Data.CardSystem;
|
||||
using Cinematics;
|
||||
using Core;
|
||||
using Data.CardSystem;
|
||||
using Input;
|
||||
using PuzzleS;
|
||||
|
||||
|
||||
203
Assets/Scripts/Data/CardSystem/CardInventory.cs
Normal file
203
Assets/Scripts/Data/CardSystem/CardInventory.cs
Normal file
@@ -0,0 +1,203 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AppleHills.Data.CardSystem
|
||||
{
|
||||
/// <summary>
|
||||
/// Manages the player's collection of cards and booster packs
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class CardInventory
|
||||
{
|
||||
// Dictionary of collected cards indexed by definition ID
|
||||
[SerializeField] private Dictionary<string, CardData> collectedCards = new Dictionary<string, CardData>();
|
||||
|
||||
// Number of unopened booster packs the player has
|
||||
[SerializeField] private int boosterPackCount;
|
||||
|
||||
// Additional lookup dictionaries (not serialized)
|
||||
[NonSerialized] private Dictionary<CardZone, List<CardData>> cardsByZone = new Dictionary<CardZone, List<CardData>>();
|
||||
[NonSerialized] private Dictionary<CardRarity, List<CardData>> cardsByRarity = new Dictionary<CardRarity, List<CardData>>();
|
||||
|
||||
// Properties with public getters
|
||||
public Dictionary<string, CardData> CollectedCards => collectedCards;
|
||||
|
||||
public int BoosterPackCount
|
||||
{
|
||||
get => boosterPackCount;
|
||||
set => boosterPackCount = value;
|
||||
}
|
||||
|
||||
// Constructor initializes empty dictionaries
|
||||
public CardInventory()
|
||||
{
|
||||
// Initialize dictionaries for all enum values so we never have to check for null
|
||||
foreach (CardZone zone in Enum.GetValues(typeof(CardZone)))
|
||||
{
|
||||
cardsByZone[zone] = new List<CardData>();
|
||||
}
|
||||
|
||||
foreach (CardRarity rarity in Enum.GetValues(typeof(CardRarity)))
|
||||
{
|
||||
cardsByRarity[rarity] = new List<CardData>();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get all cards in the player's collection as a list
|
||||
/// </summary>
|
||||
public List<CardData> GetAllCards()
|
||||
{
|
||||
return new List<CardData>(collectedCards.Values);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get cards filtered by zone
|
||||
/// </summary>
|
||||
public List<CardData> GetCardsByZone(CardZone zone)
|
||||
{
|
||||
return new List<CardData>(cardsByZone[zone]);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get cards filtered by rarity
|
||||
/// </summary>
|
||||
public List<CardData> GetCardsByRarity(CardRarity rarity)
|
||||
{
|
||||
return new List<CardData>(cardsByRarity[rarity]);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Add a card to the inventory (or increase the copies if already owned)
|
||||
/// </summary>
|
||||
public void AddCard(CardData card)
|
||||
{
|
||||
if (card == null) return;
|
||||
|
||||
if (collectedCards.TryGetValue(card.DefinitionId, out CardData existingCard))
|
||||
{
|
||||
// Increase copies of existing card
|
||||
existingCard.CopiesOwned++;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Add new card to collection
|
||||
var newCard = new CardData(card);
|
||||
collectedCards[card.DefinitionId] = newCard;
|
||||
|
||||
// Add to lookup dictionaries
|
||||
cardsByZone[newCard.Zone].Add(newCard);
|
||||
cardsByRarity[newCard.Rarity].Add(newCard);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Update card zone and rarity indexes when a card changes
|
||||
/// </summary>
|
||||
public void UpdateCardProperties(CardData card, CardZone oldZone, CardRarity oldRarity)
|
||||
{
|
||||
// Only needed if the card's zone or rarity actually changed
|
||||
if (oldZone != card.Zone)
|
||||
{
|
||||
cardsByZone[oldZone].Remove(card);
|
||||
cardsByZone[card.Zone].Add(card);
|
||||
}
|
||||
|
||||
if (oldRarity != card.Rarity)
|
||||
{
|
||||
cardsByRarity[oldRarity].Remove(card);
|
||||
cardsByRarity[card.Rarity].Add(card);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get a specific card from the collection by definition ID
|
||||
/// </summary>
|
||||
public CardData GetCard(string definitionId)
|
||||
{
|
||||
return collectedCards.TryGetValue(definitionId, out CardData card) ? card : null;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Check if the player has a specific card
|
||||
/// </summary>
|
||||
public bool HasCard(string definitionId)
|
||||
{
|
||||
return collectedCards.ContainsKey(definitionId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get total number of unique cards in collection
|
||||
/// </summary>
|
||||
public int GetUniqueCardCount()
|
||||
{
|
||||
return collectedCards.Count;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get total number of cards including copies
|
||||
/// </summary>
|
||||
public int GetTotalCardCount()
|
||||
{
|
||||
return collectedCards.Values.Sum(card => card.CopiesOwned);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get number of cards in a specific zone
|
||||
/// </summary>
|
||||
public int GetZoneCardCount(CardZone zone)
|
||||
{
|
||||
return cardsByZone[zone].Count;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get number of cards of a specific rarity
|
||||
/// </summary>
|
||||
public int GetRarityCardCount(CardRarity rarity)
|
||||
{
|
||||
return cardsByRarity[rarity].Count;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get cards sorted by collection index (for album view)
|
||||
/// </summary>
|
||||
public List<CardData> GetCardsSortedByIndex()
|
||||
{
|
||||
return collectedCards.Values
|
||||
.OrderBy(card => card.CollectionIndex)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Check if there's a complete collection for a specific zone
|
||||
/// </summary>
|
||||
public bool IsZoneCollectionComplete(CardZone zone, List<CardDefinition> allAvailableCards)
|
||||
{
|
||||
int availableInZone = allAvailableCards.Count(card => card.Zone == zone);
|
||||
int collectedInZone = cardsByZone[zone].Count;
|
||||
|
||||
return availableInZone > 0 && collectedInZone >= availableInZone;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Adds booster packs to the inventory
|
||||
/// </summary>
|
||||
public void AddBoosterPacks(int count)
|
||||
{
|
||||
boosterPackCount += count;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use a single booster pack (returns true if successful)
|
||||
/// </summary>
|
||||
public bool UseBoosterPack()
|
||||
{
|
||||
if (boosterPackCount <= 0) return false;
|
||||
|
||||
boosterPackCount--;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Assets/Scripts/Data/CardSystem/CardInventory.cs.meta
Normal file
3
Assets/Scripts/Data/CardSystem/CardInventory.cs.meta
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f5b1aa91590d48a1a4c426f3cd4aa103
|
||||
timeCreated: 1760445622
|
||||
@@ -1,8 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using AppleHills.Data.CardSystem;
|
||||
using UnityEngine;
|
||||
|
||||
namespace AppleHills.Data.CardSystem
|
||||
namespace Data.CardSystem
|
||||
{
|
||||
/// <summary>
|
||||
/// Manages the player's card collection, booster packs, and related operations.
|
||||
@@ -138,8 +139,9 @@ namespace AppleHills.Data.CardSystem
|
||||
private void AddCardToInventory(CardData card)
|
||||
{
|
||||
// Check if the player already has this card type (definition)
|
||||
if (playerInventory.CollectedCards.TryGetValue(card.DefinitionId, out CardData existingCard))
|
||||
if (playerInventory.HasCard(card.DefinitionId))
|
||||
{
|
||||
CardData existingCard = playerInventory.GetCard(card.DefinitionId);
|
||||
existingCard.CopiesOwned++;
|
||||
|
||||
// Check if the card can be upgraded
|
||||
@@ -153,7 +155,7 @@ namespace AppleHills.Data.CardSystem
|
||||
else
|
||||
{
|
||||
// Add new card
|
||||
playerInventory.CollectedCards.Add(card.DefinitionId, new CardData(card));
|
||||
playerInventory.AddCard(card);
|
||||
OnCardCollected?.Invoke(card);
|
||||
|
||||
Debug.Log($"[CardSystemManager] Added new card '{card.Name}' to collection.");
|
||||
@@ -227,12 +229,23 @@ namespace AppleHills.Data.CardSystem
|
||||
/// </summary>
|
||||
public List<CardData> GetAllCollectedCards()
|
||||
{
|
||||
List<CardData> result = new List<CardData>();
|
||||
foreach (var card in playerInventory.CollectedCards.Values)
|
||||
{
|
||||
result.Add(card);
|
||||
}
|
||||
return result;
|
||||
return playerInventory.GetAllCards();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns cards from a specific zone
|
||||
/// </summary>
|
||||
public List<CardData> GetCardsByZone(CardZone zone)
|
||||
{
|
||||
return playerInventory.GetCardsByZone(zone);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns cards of a specific rarity
|
||||
/// </summary>
|
||||
public List<CardData> GetCardsByRarity(CardRarity rarity)
|
||||
{
|
||||
return playerInventory.GetCardsByRarity(rarity);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -248,17 +261,30 @@ namespace AppleHills.Data.CardSystem
|
||||
/// </summary>
|
||||
public bool IsCardCollected(string definitionId)
|
||||
{
|
||||
return playerInventory.CollectedCards.ContainsKey(definitionId);
|
||||
return playerInventory.HasCard(definitionId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets total unique card count
|
||||
/// </summary>
|
||||
public int GetUniqueCardCount()
|
||||
{
|
||||
return playerInventory.GetUniqueCardCount();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets completion percentage for a specific zone (0-100)
|
||||
/// </summary>
|
||||
public float GetZoneCompletionPercentage(CardZone zone)
|
||||
{
|
||||
// Count available cards in this zone
|
||||
int totalInZone = availableCards.FindAll(c => c.Zone == zone).Count;
|
||||
if (totalInZone == 0) return 0;
|
||||
|
||||
// Count collected cards in this zone
|
||||
int collectedInZone = playerInventory.GetCardsByZone(zone).Count;
|
||||
|
||||
return (float)collectedInZone / totalInZone * 100f;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Serializable class to store the player's card inventory
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class CardInventory
|
||||
{
|
||||
public Dictionary<string, CardData> CollectedCards = new Dictionary<string, CardData>();
|
||||
public int BoosterPackCount;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using AppleHills.Data.CardSystem;
|
||||
using Data.CardSystem;
|
||||
using Pixelplacement;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using AppleHills.Data.CardSystem;
|
||||
using Data.CardSystem;
|
||||
using Pixelplacement;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using AppleHills.Data.CardSystem;
|
||||
using Data.CardSystem;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using AppleHills.Data.CardSystem;
|
||||
using Data.CardSystem;
|
||||
using Pixelplacement;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
Reference in New Issue
Block a user