summaryrefslogtreecommitdiff
path: root/noncore/games/solitaire/cardpile.h
Side-by-side diff
Diffstat (limited to 'noncore/games/solitaire/cardpile.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/solitaire/cardpile.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/noncore/games/solitaire/cardpile.h b/noncore/games/solitaire/cardpile.h
index c515bbc..1eb2499 100644
--- a/noncore/games/solitaire/cardpile.h
+++ b/noncore/games/solitaire/cardpile.h
@@ -52,4 +52,11 @@ public:
int getWidth() { return pileWidth; }
int getHeight() { return pileHeight; }
+ int getOffsetDown() { return pileOffsetDown; }
+ int getAnzCardsInPile() {
+ int anz=0;
+ Card *card = cardOnBottom();
+ while (card != NULL) { anz++; card = cardInfront(card); }
+ return anz;
+ }
void setX(int x) { pileX = x; }
@@ -59,4 +66,5 @@ public:
void setWidth(int width) { pileWidth = width; }
void setHeight(int height) { pileHeight = height; }
+ void setOffsetDown(int down) { pileOffsetDown = down; }
void beginDealing() { dealing = TRUE; }
@@ -64,4 +72,8 @@ public:
bool isDealing() { return dealing; }
+ void beginPileResize() { PileResize = TRUE; }
+ void endPileResize() { PileResize = FALSE; }
+ bool isPileResize() { return PileResize; }
+
int distanceFromPile(int x, int y);
int distanceFromNextPos(int x, int y);
@@ -93,6 +105,8 @@ protected:
int pileCenterX, pileCenterY;
int pileRadius;
+ int pileOffsetDown;
private:
bool dealing;
+ bool PileResize;
};