2011-02-06 05:44:45 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-04-05 07:33:10 +00:00
|
|
|
#include <malloc.h>
|
2011-02-06 05:44:45 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2010-04-05 07:33:10 +00:00
|
|
|
#include "deck.h"
|
|
|
|
|
|
|
|
void allocate_deck(struct deck **deck) {
|
2011-02-06 05:44:45 +00:00
|
|
|
if (!(*deck = malloc(sizeof(**deck)))) {
|
|
|
|
fprintf(stderr, "%s: %s (%s:%d)\n", program_name, strerror(errno), __FILE__, __LINE__ - 1);
|
|
|
|
exit(errno);
|
|
|
|
}
|
2010-04-05 07:33:10 +00:00
|
|
|
|
|
|
|
allocate_stack(&((*deck)->stock));
|
2010-04-09 03:12:06 +00:00
|
|
|
allocate_stack(&((*deck)->waste_pile));
|
2010-04-05 07:33:10 +00:00
|
|
|
|
|
|
|
allocate_stack(&((*deck)->foundation_0));
|
|
|
|
allocate_stack(&((*deck)->foundation_1));
|
|
|
|
allocate_stack(&((*deck)->foundation_2));
|
|
|
|
allocate_stack(&((*deck)->foundation_3));
|
|
|
|
|
|
|
|
allocate_stack(&((*deck)->maneuvre_0));
|
|
|
|
allocate_stack(&((*deck)->maneuvre_1));
|
|
|
|
allocate_stack(&((*deck)->maneuvre_2));
|
|
|
|
allocate_stack(&((*deck)->maneuvre_3));
|
|
|
|
allocate_stack(&((*deck)->maneuvre_4));
|
|
|
|
allocate_stack(&((*deck)->maneuvre_5));
|
|
|
|
allocate_stack(&((*deck)->maneuvre_6));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void initialize_deck(struct deck *deck) {
|
|
|
|
initialize_stack(deck->stock);
|
2010-04-09 03:12:06 +00:00
|
|
|
initialize_stack(deck->waste_pile);
|
2010-04-05 07:33:10 +00:00
|
|
|
|
|
|
|
initialize_stack(deck->foundation_0);
|
|
|
|
initialize_stack(deck->foundation_1);
|
|
|
|
initialize_stack(deck->foundation_2);
|
|
|
|
initialize_stack(deck->foundation_3);
|
|
|
|
|
|
|
|
initialize_stack(deck->maneuvre_0);
|
|
|
|
initialize_stack(deck->maneuvre_1);
|
|
|
|
initialize_stack(deck->maneuvre_2);
|
|
|
|
initialize_stack(deck->maneuvre_3);
|
|
|
|
initialize_stack(deck->maneuvre_4);
|
|
|
|
initialize_stack(deck->maneuvre_5);
|
|
|
|
initialize_stack(deck->maneuvre_6);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2010-04-07 00:59:21 +00:00
|
|
|
|
|
|
|
void delete_deck(struct deck *deck) {
|
|
|
|
delete_stack(deck->stock);
|
2010-04-09 03:12:06 +00:00
|
|
|
delete_stack(deck->waste_pile);
|
2010-04-07 00:59:21 +00:00
|
|
|
|
|
|
|
delete_stack(deck->foundation_0);
|
|
|
|
delete_stack(deck->foundation_1);
|
|
|
|
delete_stack(deck->foundation_2);
|
|
|
|
delete_stack(deck->foundation_3);
|
|
|
|
|
|
|
|
delete_stack(deck->maneuvre_0);
|
|
|
|
delete_stack(deck->maneuvre_1);
|
|
|
|
delete_stack(deck->maneuvre_2);
|
|
|
|
delete_stack(deck->maneuvre_3);
|
|
|
|
delete_stack(deck->maneuvre_4);
|
|
|
|
delete_stack(deck->maneuvre_5);
|
|
|
|
delete_stack(deck->maneuvre_6);
|
|
|
|
|
|
|
|
free(deck);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|