Source/TicTacToeGame.m
author Jens Alfke <jens@mooseyard.com>
Fri Mar 07 11:43:02 2008 -0800 (2008-03-07)
changeset 0 e9f7ba4718e1
child 1 3eb7be1dd7b6
permissions -rw-r--r--
Initial check-in into Mercurial. Branched from 1.0 release of Apple's sample code. No longer requires garbage collection. Fixed some memory leaks of CG objects. Fixed a bug when advancing to the 8th row in the Checkers game.
     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 #import "TicTacToeGame.h"
    24 #import "Grid.h"
    25 #import "Dispenser.h"
    26 #import "Piece.h"
    27 #import "QuartzUtils.h"
    28 
    29 
    30 @implementation TicTacToeGame
    31 
    32 - (void) x_createDispenser: (NSString*)imageName forPlayer: (int)playerNumber x: (int)x
    33 {
    34     Piece *p = [[Piece alloc] initWithImageNamed: imageName scale: 80];
    35     p.owner = [self.players objectAtIndex: playerNumber];
    36     _dispenser[playerNumber] = [[Dispenser alloc] initWithPrototype: p quantity: 0
    37                                                         frame: CGRectMake(x,16, 120,120)];
    38     [_board addSublayer: _dispenser[playerNumber]];
    39 }
    40 
    41 - (id) initWithBoard: (CALayer*)board
    42 {
    43     self = [super initWithBoard: board];
    44     if (self != nil) {
    45         [self setNumberOfPlayers: 2];
    46         
    47         // Create a 3x3 grid:
    48         CGFloat center = floor(CGRectGetMidX(board.bounds));
    49         _grid = [[RectGrid alloc] initWithRows: 3 columns: 3 frame: CGRectMake(center-150,16, 300,300)];
    50         [_grid addAllCells];
    51         _grid.allowsMoves = _grid.allowsCaptures = NO;
    52         _grid.cellColor = CGColorCreateGenericGray(1.0, 0.25);
    53         _grid.lineColor = kTranslucentLightGrayColor;
    54         [board addSublayer: _grid];
    55         
    56         // Create piece dispensers for the two players:
    57         [self x_createDispenser: @"/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/ToolbarUtilitiesFolderIcon.icns"
    58                      forPlayer: 0 x: center-290];
    59         [self x_createDispenser: @"/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/ToolbarAdvanced.icns"
    60                      forPlayer: 1 x: center+170];
    61         
    62         // And they're off!
    63         [self nextPlayer];
    64     }
    65     return self;
    66 }
    67 
    68 - (void) nextPlayer
    69 {
    70     [super nextPlayer];
    71     // Give the next player another piece to put down:
    72     _dispenser[self.currentPlayer.index].quantity = 1;
    73 }
    74 
    75 static Player* ownerAt( Grid *grid, int index )
    76 {
    77     return [grid cellAtRow: index/3 column: index%3].bit.owner;
    78 }
    79 
    80 /** Should return the winning player, if the current position is a win. */
    81 - (Player*) checkForWinner
    82 {
    83     static const int kWinningTriples[8][3] =  { {0,1,2}, {3,4,5}, {6,7,8},  // rows
    84                                                 {0,3,6}, {1,4,7}, {2,5,8},  // cols
    85                                                 {0,4,8}, {2,4,6} };         // diagonals
    86     for( int i=0; i<8; i++ ) {
    87         const int *triple = kWinningTriples[i];
    88         Player *p = ownerAt(_grid,triple[0]);
    89         if( p && p == ownerAt(_grid,triple[1]) && p == ownerAt(_grid,triple[2]) )
    90             return p;
    91     }
    92     return nil;
    93 }
    94 
    95 @end