Text, playing cards, and Klondike solitaire all work on iPhone now. (Regression: Klondike UI layout has changed, and is awkward on Mac now. Need to special case that.)
1 /* This code is based on Apple's "GeekGameBoard" sample code, version 1.0.
2 http://developer.apple.com/samplecode/GeekGameBoard/
3 Copyright © 2007 Apple Inc. Copyright © 2008 Jens Alfke. All Rights Reserved.
5 Redistribution and use in source and binary forms, with or without modification, are permitted
6 provided that the following conditions are met:
8 * Redistributions of source code must retain the above copyright notice, this list of conditions
9 and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright notice, this list of
11 conditions and the following disclaimer in the documentation and/or other materials provided
12 with the distribution.
14 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
15 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
17 BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
19 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
20 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
21 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 @class GGBLayer, Bit, Player;
27 /** Abstract superclass. Keeps track of the rules and turns of a game. */
28 @interface Game : NSObject
32 Player *_currentPlayer, *_winner;
35 /** Returns the human-readable name of this game.
36 (By default it just returns the class name with the "Game" suffix removed.) */
37 + (NSString*) displayName;
39 + (BOOL) landscapeOriented;
41 @property (readonly, copy) NSArray *players;
42 @property (readonly) Player *currentPlayer, *winner;
45 // Methods for subclasses to implement:
47 /** Designated initializer. After calling the superclass implementation,
48 it should add the necessary Grids, Pieces, Cards, Decks etc. to the board. */
49 - (id) initWithBoard: (GGBLayer*)board;
51 /** Should return YES if it is legal for the given bit to be moved from its current holder.
52 Default implementation always returns YES. */
53 - (BOOL) canBit: (Bit*)bit moveFrom: (id<BitHolder>)src;
55 /** Should return YES if it is legal for the given Bit to move from src to dst.
56 Default implementation always returns YES. */
57 - (BOOL) canBit: (Bit*)bit moveFrom: (id<BitHolder>)src to: (id<BitHolder>)dst;
59 /** Should handle any side effects of a Bit's movement, such as captures or scoring.
60 Does not need to do the actual movement! That's already happened.
61 It should end by calling -endTurn, if the player's turn is over.
62 Default implementation just calls -endTurn. */
63 - (void) bit: (Bit*)bit movedFrom: (id<BitHolder>)src to: (id<BitHolder>)dst;
65 /** Called on mouse-down/touch of an *empty* BitHolder. Should return a Bit if
66 it's OK to place a new Bit there; else nil. */
67 - (Bit*) bitToPlaceInHolder: (id<BitHolder>)holder;
69 /** Called instead of the above if a Bit is simply clicked, not dragged.
70 Should return NO if the click is illegal (i.e. clicking an empty draw pile in a card game.)
71 Default implementation always returns YES. */
72 - (BOOL) clickedBit: (Bit*)bit;
74 /** Should return the winning player, if the current position is a win, else nil.
75 Default implementation returns nil. */
76 - (Player*) checkForWinner;
79 // Protected methods for subclasses to call:
81 /** Sets the number of players in the game. Subclass initializers should call this. */
82 - (void) setNumberOfPlayers: (unsigned)n;
84 /** Advance to the next player, when a turn is over. */
87 /** Checks for a winner and advances to the next player. */
94 /** A mostly-passive object used to represent a player. */
95 @interface Player : NSObject
101 - (id) initWithGame: (Game*)game;
103 @property (readonly) Game *game;
104 @property (copy) NSString *name;
105 @property (readonly) int index;
106 @property (readonly, getter=isCurrent) BOOL current;
107 @property (readonly, getter=isFriendly) BOOL friendly;
108 @property (readonly, getter=isUnfriendly) BOOL unfriendly;
109 @property (readonly) Player *nextPlayer, *previousPlayer;
115 @interface CALayer (Game)
117 /** Called on any CALayer in the game's layer tree, will return the current Game object. */
118 @property (readonly) Game *game;