タイトル画面
最後に簡単なタイトル画面を作り、ゲーム起動時にはそこから開始されるようにしてみよう。そして、画面タップでゲーム開始、ゲームオーバーやゲームクリアになったら画面タップでタイトルに戻るという流れを作ってみる。

|
図4:タイトルとゲーム画面の流れ(クリックで拡大) |
タイトル画面には「Game Start」という文字を表示しておくことにする、その表示のための画像をプロジェクトに登録して、GameControllerのプロパティーに表示用のUIImageViewを追加する。また、現在表示されている画面がタイトルなのか、ゲームなのかを記録しておく型を以下のように定義しておく。さらに画面クリアとタイトル画面、ゲーム画面を作るメソッドを追加する。
06 | @interface GameController : NSObject { |
08 | UIImageView* imageView; |
以下が追加メソッドの内容だ。画面クリアのメソッドは現在GameBoardViewに乗っているサブビューを全て削除している。
3 | NSArray* ary = [gameView subviews]; |
4 | for (int i=0; i < [ary count]; i++) { |
5 | UIView* view = [ary objectAtIndex:i]; |
6 | [view removeFromSuperview]; |
タイトル画面の作成はモードタイプの設定と画面クリアを行った後、画面中央にイメージビューを表示している。
6 | [gameView addSubview:imageView]; |
7 | imageView.center = CGPointMake(160, 240); |
ゲーム画面は今まで初期化メソッドにあったビューの作成をここで行うようにしている。先に説明したSEやBGM関係の初期化はそのまま初期化メソッドに残して、BGMの再生開始のみをここで行うようにする。
005 | [self clearGameView]; |
012 | int tileIndex[3] = {10, 55, 66}; |
013 | for (int i=0; i < 3; i++) { |
014 | UIImage* image = [UIImage imageNamed:@"carot_00.png"]; |
015 | NSMutableArray* array = [NSArray arrayWithObject:image]; |
016 | GamePieceView* carot = ; |
019 | carot.center = [tile center]; |
020 | carot.state = STATE_STAY; |
026 | NSMutableArray* array = [NSMutableArray array]; |
028 | for(i=0; i < 15; i++){ |
029 | NSString* name = [NSString stringWithFormat:@"rabit00_%03d.png", i]; |
030 | UIImage* image = [UIImage imageNamed:name]; |
031 | [array addObject:image]; |
033 | pieceView = [[[GamePieceView alloc] initWithFrame:CGRectMake(0, 0, 48, 48) |
035 | Delegate:self] autorelease]; |
036 | pieceView.type = TYPE_RABBIT; |
038 | [gameView addSubview:pieceView]; |
039 | GameBoardTile* tile = [self.gameView tileAtIndex:44]; |
040 | tile.piece = pieceView; |
041 | pieceView.tile = tile; |
042 | pieceView.center = [tile center]; |
044 | [pieceView timerStart]; |
049 | NSMutableArray* array = [NSMutableArray array]; |
051 | for(i=0; i < 15; i++){ |
052 | NSString* name = [NSString stringWithFormat:@"wlof00_%03d.png", i]; |
053 | UIImage* image = [UIImage imageNamed:name]; |
054 | [array addObject:image]; |
056 | enemyView = [[[GamePieceView alloc] initWithFrame:CGRectMake(0, 0, 48, 48) |
058 | Delegate:self] autorelease]; |
059 | enemyView.type = TYPE_WLOF; |
060 | enemyView.speed = 50; |
062 | [gameView addSubview:enemyView]; |
063 | GameBoardTile* tile = [self.gameView tileAtIndex:22]; |
064 | tile.piece = enemyView; |
065 | enemyView.tile = tile; |
066 | enemyView.center = [tile center]; |
067 | enemyView.state = STATE_SLEEP; |
069 | [enemyView timerStart]; |
074 | lifeImageArray = [[NSMutableArray array] retain]; |
075 | UIImage* image = [UIImage imageNamed:@"LifeHart.png"]; |
076 | for (int i=0; i < 3; i++) { |
077 | efView = [[EffectView alloc] initWith:image]; |
078 | efView.isFinishDelete = YES; |
079 | [lifeImageArray addObject:efView]; |
080 | [gameView addSubview:efView]; |
082 | efView.center = CGPointMake(320-24-(24*i),32); |
085 | [bgmPlayer play];//BGM再生開始 |
087 | gameTimeCount = 90; //制限時間 |
089 | timeLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 32)]; |
090 | [gameView addSubview:timeLabel]; |
091 | timeLabel.backgroundColor = [UIColor clearColor]; |
092 | timeLabel.textColor = [UIColor whiteColor]; |
093 | timeLabel.center = CGPointMake(160, 32); |
095 | timeLabel.textAlignment = UITextAlignmentCenter; |
096 | timeLabel.font = [UIFont boldSystemFontOfSize:28]; |
097 | timeLabel.text = [NSString stringWithFormat:@"%02d:%02d", |
099 | gameTimeCount-(60*(gameTimeCount/60))]; |
101 | gameTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 //1秒ごとにタイマー実行 |
103 | selector:@selector(gameTimeCount:) |
そして、タイトル画面、ゲーム画面の切り替えを行うため、GameBoardViewからのタッチアップイベントを受けるデリゲートメソッドの先頭で、モードとフラグなどから判断して処理の切り分けを行う。これにより、タイトル画面でタップすればゲームが開始され、ゲームクリアやゲームオーバーでタップすればタイトル画面に移行できるようになる。
02 | -(void) gameBoardViewTouchUp:(GameBoardView*)gmView |
03 | Location:(CGPoint)touchPt Taps:(int)taps |
10 | else if(mode==MODE_GAME && ( isGameClear || isGameOver )){ |
15 | GameBoardTile* tile = [gmView tileAtPoint:touchPt]; |
17 | [pieceView moveWith:tile]; |
サンプル一式は、会員限定特典としてダウンロードできるので、記事末尾をご確認いただきたい。
最後まで読んでくださった皆さま、ありがとうございました。