Source/Game.h
author Jens Alfke <jens@mooseyard.com>
Mon Mar 10 17:30:57 2008 -0700 (2008-03-10)
changeset 1 3eb7be1dd7b6
parent 0 e9f7ba4718e1
child 3 40d225cf9c43
permissions -rw-r--r--
Tic-tac-toe works on the iPhone simulator!
     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.
     4 
     5     Redistribution and use in source and binary forms, with or without modification, are permitted
     6     provided that the following conditions are met:
     7 
     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.
    13 
    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.
    22 */
    23 @class GGBLayer, Bit, Player;
    24 @protocol BitHolder;
    25 
    26 
    27 /** Abstract superclass. Keeps track of the rules and turns of a game. */
    28 @interface Game : NSObject
    29 {
    30     GGBLayer *_board;
    31     NSArray *_players;
    32     Player *_currentPlayer, *_winner;
    33 }
    34 
    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;
    38 
    39 @property (readonly, copy) NSArray *players;
    40 @property (readonly) Player *currentPlayer, *winner;
    41 
    42 
    43 // Methods for subclasses to implement:
    44 
    45 /** Designated initializer. After calling the superclass implementation,
    46     it should add the necessary Grids, Pieces, Cards, Decks etc. to the board. */
    47 - (id) initWithBoard: (GGBLayer*)board;
    48 
    49 /** Should return YES if it is legal for the given bit to be moved from its current holder.
    50     Default implementation always returns YES. */
    51 - (BOOL) canBit: (Bit*)bit moveFrom: (id<BitHolder>)src;
    52 
    53 /** Should return YES if it is legal for the given Bit to move from src to dst.
    54     Default implementation always returns YES. */
    55 - (BOOL) canBit: (Bit*)bit moveFrom: (id<BitHolder>)src to: (id<BitHolder>)dst;
    56 
    57 /** Should handle any side effects of a Bit's movement, such as captures or scoring.
    58     Does not need to do the actual movement! That's already happened.
    59     It should end by calling -endTurn, if the player's turn is over.
    60     Default implementation just calls -endTurn. */
    61 - (void) bit: (Bit*)bit movedFrom: (id<BitHolder>)src to: (id<BitHolder>)dst;
    62 
    63 /** Called instead of the above if a Bit is simply clicked, not dragged.
    64     Should return NO if the click is illegal (i.e. clicking an empty draw pile in a card game.)
    65     Default implementation always returns YES. */
    66 - (BOOL) clickedBit: (Bit*)bit;
    67 
    68 /** Should return the winning player, if the current position is a win, else nil.
    69     Default implementation returns nil. */
    70 - (Player*) checkForWinner;
    71 
    72 
    73 // Protected methods for subclasses to call:
    74 
    75 /** Sets the number of players in the game. Subclass initializers should call this. */
    76 - (void) setNumberOfPlayers: (unsigned)n;
    77 
    78 /** Advance to the next player, when a turn is over. */
    79 - (void) nextPlayer;
    80 
    81 /** Checks for a winner and advances to the next player. */
    82 - (void) endTurn;
    83 
    84 @end
    85 
    86 
    87 
    88 /** A mostly-passive object used to represent a player. */
    89 @interface Player : NSObject
    90 {
    91     Game *_game;
    92     NSString *_name;
    93 }
    94 
    95 - (id) initWithGame: (Game*)game;
    96 
    97 @property (readonly) Game *game;
    98 @property (copy) NSString *name;
    99 @property (readonly) int index;
   100 @property (readonly, getter=isCurrent) BOOL current;
   101 @property (readonly, getter=isFriendly) BOOL friendly;
   102 @property (readonly, getter=isUnfriendly) BOOL unfriendly;
   103 @property (readonly) Player *nextPlayer, *previousPlayer;
   104 
   105 @end
   106 
   107 
   108 
   109 @interface CALayer (Game)
   110 
   111 /** Called on any CALayer in the game's layer tree, will return the current Game object. */
   112 @property (readonly) Game *game;
   113 
   114 @end