Androidでオセロゲームを作ってみる (1)
Androidでオセロゲームを作ってみる (2) ゲームロジックの実装
Androidでオセロゲームを作ってみる (3) 思考ルーチンの実装
Androidでオセロゲームを作ってみる (4) 文字列をぐるぐる回す方法
Androidでオセロゲームを作ってみる (5) 裏返しアニメーションを付けてついに完成!
前回までで思考ルーチンがそこそこ動く様になってゲームとしては結構遊べる状態になったので、今回からは少しずつグラフィックを改善して行きたい。
ひとまずこんな感じで、ゲーム終了時の結果表示の文字列をぐるぐる回してみた。
http://www.youtube.com/watch?v=AYld0bnjxeI
FrameLayoutを使ってオーバーレイ表示
前回まではカスタムのReversiViewの中でdrawTextを使って勝ち負けを表示していた。今回はその代わりにAndroid標準のアニメーション機能を使いたいので、ReversiViewの中心に重なる様にTextViewを配置して、そこに文字列を表示した。
複数のViewを重なる様に配置するには、FrameLayoutを使うと良いらしい。
TextViewには標準でドロップシャドウの機能が付いているのでこれも利用した。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="vertical" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
> | |
<FrameLayout | |
android:id="@+id/frame" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
> | |
<View | |
android:id="@+id/vwBack" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:background="#000000" | |
/> | |
<TextView | |
android:id="@+id/txtWinner" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="@string/app_name" | |
android:textSize="@dimen/font_size_winner" | |
android:textColor="@color/winner_text" | |
android:shadowRadius="5" | |
android:shadowDx="5" | |
android:shadowDy="5" | |
android:shadowColor="@color/winner_text_shadow" | |
android:layout_gravity="center" | |
android:textStyle="italic" | |
android:marqueeRepeatLimit="marquee_forever" | |
/> | |
</FrameLayout> | |
</LinearLayout> |
文字列を画面の中心に配置するのは、
android:layout_gravity="center"
とするだけで出来た。素晴らしい。^^
ちなみにTextViewの上のViewは、ゲーム終了時に画面の背景を暗くするアニメーションを入れる為に使っている。
AnimationをXMLファイルで定義
AnimationをXMLファイルで定義するには、res/の下にanimフォルダを作ってそこに適当な名前でXMLファイルを作成する。
色々試行錯誤して見た結果、こんな形になった。
回転しながらズームイン&フェードインして、一瞬止まった後でスーっと上に動く感じ、が作りたかったので。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<set xmlns:android="http://schemas.android.com/apk/res/android" | |
android:fillEnabled="true" | |
android:fillAfter="true" | |
> | |
<alpha xmlns:android="http://schemas.android.com/apk/res/android" | |
android:interpolator="@android:anim/accelerate_interpolator" | |
android:fromAlpha="0.0" | |
android:toAlpha="1.0" | |
android:duration="2000" | |
/> | |
<scale xmlns:android="http://schemas.android.com/apk/res/android" | |
android:interpolator="@android:anim/accelerate_interpolator" | |
android:duration="2000" | |
android:fromXScale="0.2" | |
android:toXScale="1.0" | |
android:fromYScale="0.2" | |
android:toYScale="1.0" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
/> | |
<rotate xmlns:android="http://schemas.android.com/apk/res/android" | |
android:interpolator="@android:anim/decelerate_interpolator" | |
android:duration="2000" | |
android:fromDegrees="0" | |
android:toDegrees="1050" | |
android:pivotX="50%" | |
android:pivotY="50%" | |
/> | |
<translate xmlns:android="http://schemas.android.com/apk/res/android" | |
android:startOffset="2500" | |
android:interpolator="@android:anim/accelerate_interpolator" | |
android:duration="1000" | |
android:fromYDelta="0" | |
android:toYDelta="-80" | |
/> | |
</set> |
また文字列を回すのと同時に、背景を少しずつ暗くするのもalphaアニメーションを使って行なっている。
あと、ちょっとハマったのは、setタグの属性として「xmlns:android=...」を付けないと set全体にfillEnabledとfillAfterの属性を付けられなかった点だった。
AnimationをTextViewに適用
ActivityのonCreateでAnimationUtils.loadAnimation()を呼んで上で定義したアニメーションを準備しておく。
実際にアニメーションを開始するには、TextViewのstartAnimation()を呼ぶだけだ。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Animation mAnimWinner = null; | |
@Override | |
public void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
mAnimWinner = AnimationUtils.loadAnimation(this, R.anim.winner); | |
setContentView(R.layout.main); | |
/* 省略 */ | |
} | |
public void showWinner(String msg){ | |
TextView txt = (TextView)findViewById(R.id.txtWinner); | |
txt.setText(msg); | |
if (txt.getVisibility() == View.INVISIBLE){ | |
txt.setVisibility(View.VISIBLE); | |
txt.startAnimation(mAnimWinner); | |
} | |
} |
ソースコードと次回の予定
現時点のプロジェクト全体のソースコードはこちら。
mikehibm/MiReversi at ver4 - GitHub
次回はいよいよコマをひっくり返す時のアニメーションを作りたい。それが出来たら一応完成かな?
Androidでオセロゲームを作ってみる (1)
Androidでオセロゲームを作ってみる (2) ゲームロジックの実装
Androidでオセロゲームを作ってみる (3) 思考ルーチンの実装
Androidでオセロゲームを作ってみる (4) 文字列をぐるぐる回す方法
Androidでオセロゲームを作ってみる (5) 裏返しアニメーションを付けてついに完成!
.