# HG changeset patch # User Jens Alfke # Date 1217535824 25200 # Node ID efe5d4523a23f695bb6232b6f5fdc8abc5806040 # Parent 4cb50131788fdf5c6d1a370ddbac234a538abf1b * Fixed scaling of king pieces when the board's state is set. * Added IBOutlets for tilting the BoardView. diff -r 4cb50131788f -r efe5d4523a23 Source/BoardView.h --- a/Source/BoardView.h Thu Jul 31 11:18:13 2008 -0700 +++ b/Source/BoardView.h Thu Jul 31 13:23:44 2008 -0700 @@ -61,6 +61,8 @@ @property CGFloat perspective; +- (IBAction) tiltUp: (id)sender; +- (IBAction) tiltDown: (id)sender; - (IBAction) enterFullScreen: (id)sender; @property CGSize gameBoardInset; diff -r 4cb50131788f -r efe5d4523a23 Source/BoardView.m --- a/Source/BoardView.m Thu Jul 31 11:18:13 2008 -0700 +++ b/Source/BoardView.m Thu Jul 31 13:23:44 2008 -0700 @@ -51,6 +51,10 @@ } +#pragma mark - +#pragma mark PERSPECTIVE: + + - (void) _applyPerspective { CATransform3D t; @@ -60,7 +64,7 @@ t = CATransform3DConcat(t, CATransform3DMakeRotation(-_perspective, 1,0,0)); CATransform3D pers = CATransform3DIdentity; - pers.m34 = 1.0/-800; + pers.m34 = 1.0/-2000; t = CATransform3DConcat(t, pers); t = CATransform3DConcat(t, CATransform3DMakeTranslation(size.width/2, size.height*(0.25 + 0.05*sin(2*_perspective)), @@ -85,6 +89,13 @@ } } +- (IBAction) tiltUp: (id)sender {self.perspective -= M_PI/40;} +- (IBAction) tiltDown: (id)sender {self.perspective += M_PI/40;} + + +#pragma mark - +#pragma mark GAME BOARD: + - (void) _removeGameBoard { @@ -134,6 +145,10 @@ } +#pragma mark - +#pragma mark VIEW MANIPULATION: + + - (CGRect) gameBoardFrame { return CGRectInset(self.layer.bounds, _gameBoardInset.width,_gameBoardInset.height); diff -r 4cb50131788f -r efe5d4523a23 Source/CheckersGame.m --- a/Source/CheckersGame.m Thu Jul 31 11:18:13 2008 -0700 +++ b/Source/CheckersGame.m Thu Jul 31 13:23:44 2008 -0700 @@ -95,9 +95,9 @@ - (void) makeKing: (Piece*)piece { - piece.scale = kKingScale; piece.tag = YES; // tag property stores the 'king' flag piece.name = piece.owner.index ?@"4" :@"3"; + [self _transformPiece: piece]; } - (void) setUpBoard