You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
617 B
31 lines
617 B
#ifndef SIMON_H
|
|
#define SIMON_H
|
|
|
|
#include "dealer.h"
|
|
|
|
class Simon : public Dealer {
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
Simon( TDEMainWindow* parent=0, const char* name=0);
|
|
|
|
public slots:
|
|
void deal();
|
|
virtual void restart();
|
|
virtual bool isGameLost() const;
|
|
|
|
|
|
protected:
|
|
virtual bool checkAdd ( int checkIndex, const Pile *c1, const CardList& c2) const;
|
|
virtual bool checkPrefering( int checkIndex, const Pile *c1, const CardList& c2) const;
|
|
virtual bool checkRemove( int checkIndex, const Pile *c1, const Card *c) const;
|
|
|
|
private:
|
|
Pile* store[10];
|
|
Pile* target[4];
|
|
Deck *deck;
|
|
};
|
|
|
|
#endif
|