Hallo everybody,
I wrote a little code to get some exerice in C++...
The code works... but it has a little problem... if you want to solve the problem go ahead and read, if you don't want to please comment on the programming style, I need it to improve myself.
The game is called "Stress in camisa", is a card game from my region in Italy...
the game is a really simple luck game , I played it when I was 4... The rules are simple:
distribute all the 52 card of a French deck between two player,
each player in a row discard the card on top of the hand in the center of the table ,
if one card is less then three,
the other player has to give a corresponding number of cards to the number reported on the card...
if the other player throw the cards in a row without having a card less then 3, the other player get all the cards that are in the center of the table.
loses who don't have anymore cards in his hand.
Example
"firs turn"
player 1:
King of Spades
player 2:
Queen of Clubs
player 1:
3 of Diamond (>now player2 has to discard 3 cards)
player 2:
Jack of Hearts
8 of Clubs
6 of Diamond
player 1 won and take:
King of Spades
Queen of Clubs
3 of Diamond
Jack of Hearts
8 of Clubs
6 of Diamond
"second turn"
player 2:
2 of Clubs (> player 1 has to throw 2 cards)
player 1:
King of Clubs (> 1st card)
2 of Diamond (> 2nd card is less then 3 so player 2 has to throw 2 card)
player 2:
5 of Hearts (> 1st card)
Jack of Diamond (> 2nd card)
player one whon again, and takes:
2 of Clubs
King of Clubs
2 of Diamond
5 of Hearts
Jack of Diamond
To the code I defined the function to check if the card is thrown is < 3 and to make the other player throw the corresponding number of card like this:
void check(Card card, Hand &g1, Hand &g2, Hand &Deck_c){
cout << endl;
int a = card.get_number();
if (card.get_number() <= 3) {
cout << g2.get_name() << " discard: " << endl;
while (a > 0) {
if (g2.void_hand()) {
return;
}
Card discarded_card = g2.discard(0);
cout << " ";
cout << discarded_card;
Deck_c.append_card(discarded_card);
check( discarded_card, g2,g1, Deck_c);
a--;
}
int size_Deck_c = Deck_c.size_cards();
for (int i = 0; i < size_Deck_c; i++) {
g1.feed_from_back(Deck_c.discard(0));
}
return;
}
return;
}
it works fine if there is only one card less then 3 in play:
Giovanni discard:
2 of Heart
Pietro discard:
8 of Clubs
7 of Heart
but here is the problem:
Pietro discard:
3 of Heart
Giovanni discard:
2 of Spades
Pietro discard:
Queen of Spades
5 of Spades (>should pass the turn but continue to throw cards)
5 of Diamond
9 of Diamond
Pietro should discard 2 card, then pass the turn....
the function is a recursive function, which check if the card is less then 3 every card is thrown
if it's over 3 it return to the normal game,
else it call again the function with switched players...
The problem is in that iterator "int a"...
This is the source code if you want to have a look:
#include <iostream>
#include <string>
#include <vector>
#include <stdlib.h>
using namespace std;
int array_numbers[] = {1,2,3,4,5,6,7,8,9,10,11,12,13};
string array_suit[] = {"Heart","Clubs","Spades","Diamond"};
class Card{
private:
int Number;
string Suit;
public:
Card();
Card(int,string);
int get_number();
string get_suit();
void assign_values(int,string);
friend ostream &operator<<(ostream&, const Card&);
};
Card::Card(){
Number = 0;
Suit = "void";
}
Card::Card(int number, string suit){
Number = number;
Suit = suit;
}
int Card::get_number(){
return Number;
}
string Card::get_suit(){
return Suit;
}
void Card::assign_values(int i, string suit){
Number = i;
Suit = suit;
}
ostream &operator<<(ostream& os, const Card& card){
if (card.Number == 1) {
os << "Ace of " << card.Suit;
}
else if(card.Number == 11){
os << "Jack of " << card.Suit;
}
else if(card.Number == 12){
os << "Queen of " << card.Suit;
}
else if(card.Number == 13){
os << "King of " << card.Suit;
}
else{
os << card.Number << " of " << card.Suit;
}
return os;
}
class Deck {
private:
int x;
Card cards[52];
public:
Deck();
void print_card(int);
void print_Deck();
void shuffle();
Card get_card(int);
};
Deck::Deck(){
for (int n = 0; n < 13; n++) {
for (int seme = 0; seme < 4; seme++) {
cards[n*4+seme].assign_values(array_numbers[n], array_suit[seme]);
}
}
}
void Deck::print_card(int i){
cout << cards[i];
}
void Deck::print_Deck(){
for (int i = 0; i<52; i++) {
for (int a = 0; a < i; a++) {
cout << " ";
}
print_card(i);
cout << endl;
}
}
void Deck::shuffle(){
srand ( time(NULL) );
for (int i = 0; i<500; i++) {
int x = rand()%51;
int y = rand()%51;
Card cpy;
cpy.assign_values(cards[x].get_number(),cards[x].get_suit());
cards[x] = cards[y];
cards[y] = cpy;
}
}
Card Deck::get_card(int i){
return cards[i];
}
class Hand {
private:
vector <Card> cards;
string name;
public:
Hand();
Hand(string);
string get_name();
void append_card(Card);
void print_hand();
Card discard(int);
bool operator==(Hand);
bool void_hand();
void feed_from_back(Card);
int size_cards();
};
int Hand::size_cards(){
return cards.size();
}
void Hand::append_card(Card card){
cards.insert(cards.begin(),card);
}
Hand::Hand(){
name = "void";
}
Hand::Hand(string x){
name = x;
}
string Hand::get_name(){
return name;
}
void Hand::print_hand(){
int a= 0;
vector <Card> ::iterator i;
for (i = cards.begin(); i != cards.end(); i++) {
a++;
for (int c = 0; c < a; c++) {
cout << " ";
}
cout << *i << endl;
}
}
Card Hand::discard(int a){
Card c_return;
vector <Card>::iterator i;
i = cards.begin();
for (int f = 0; f < a; f++) {
i++;
}
c_return = *i;
cards.erase(i);
return c_return;
}
bool Hand::operator==(Hand other_hand){
if (name == other_hand.get_name()) {
return 1;
}
else {
return 0;
}
}
bool Hand::void_hand(){
if (cards.size()== 0) {
return 1;
}
else {
return 0;
}
}
void Hand::feed_from_back(Card x){
cards.insert(cards.end(),x);
}
void check(Card card, Hand &g1, Hand &g2, Hand &Deck_c){
cout << endl;
int a = card.get_number();
if (card.get_number() <= 3) {
cout << g2.get_name() << " discard: " << endl;
while (a > 0) {
if (g2.void_hand()) {
return;
}
Card discarded_card = g2.discard(0);
cout << " ";
cout << discarded_card;
Deck_c.append_card(discarded_card);
check( discarded_card, g2,g1, Deck_c);
a--;
}
int size_Deck_c = Deck_c.size_cards();
for (int i = 0; i < size_Deck_c; i++) {
g1.feed_from_back(Deck_c.discard(0));
}
return;
}
return;
}
void turn(Hand &g1, Hand &g2, Hand &Deck_c){
if (g1.void_hand()) {
return;
}
Card discarded_card = g1.discard(0);
cout << g1.get_name() << " discard:" << endl << " ";
cout << discarded_card;
Deck_c.append_card(discarded_card);
check(discarded_card, g1, g2, Deck_c);
turn(g2,g1,Deck_c);
}
int main (int argc, char * const argv[]) {
// inizializzo il mazzo
Deck Deck1;
Deck1.shuffle();
Hand hand1("Giovanni");
Hand hand2("Pietro");
Hand central_deck;
// inizializzo le mani
for (int i = 0; i < 52/2; i++) {
hand1.append_card(Deck1.get_card(i));
}
for (int i = 52/2; i < 52; i++) {
hand2.append_card(Deck1.get_card(i));
}
turn(hand1, hand2, central_deck);
//turn(mano1, mano2, mazzo_centrale);
cout << "mazzo" << endl;
central_deck.print_hand();
cout << "mano 1" << endl;
hand1.print_hand();
cout << "mano 2" << endl;
hand2.print_hand();
std::cout << "Hello, World!\n";
return 0;
}