KoiKoi/engine/CardStack.cpp
2022-01-15 16:45:52 +01:00

33 lines
596 B
C++

#include "CardStack.hpp"
#include <algorithm>
#include <chrono>
#include <random>
CardStack::CardStack()
{
// Create a full stack of cards
for (int month = 0; month < 11; month++)
{
for (int type = 0; type < 4; type++)
{
stack.push_back(std::make_shared<Card>(static_cast<Month>(month), type));
}
}
// Shuffle stack
std::default_random_engine engine(time(0));
std::shuffle(stack.begin(), stack.end(), engine);
}
CardStack::~CardStack()
{
}
std::shared_ptr<Card> CardStack::DrawCard()
{
std::shared_ptr<Card> drawnCard = stack.back();
stack.pop_back();
return drawnCard;
}