コード例 #1
0
ファイル: FlxGameView.java プロジェクト: s0ld13r/pacmandroid
 public void surfaceDestroyed(SurfaceHolder holder) {
   if (thread != null) {
     boolean retry = true;
     thread.setRunning(false);
     while (retry) {
       try {
         thread.join();
         retry = false;
       } catch (InterruptedException e) {
       }
     }
   }
   thread = null;
 }
コード例 #2
0
ファイル: FlxGameView.java プロジェクト: s0ld13r/pacmandroid
  public void surfaceCreated(SurfaceHolder holder) {
    if (thread == null && !shutdown) {
      thread =
          new GameThread(
              this,
              game,
              holder,
              new Handler() {
                @Override
                public void handleMessage(Message m) {}
              });

      thread.start();
    }
  }
コード例 #3
0
ファイル: FlxGameView.java プロジェクト: s0ld13r/pacmandroid
 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
   if (thread != null) thread.setSurfaceSize(width, height);
 }
コード例 #4
0
ファイル: FlxGameView.java プロジェクト: s0ld13r/pacmandroid
 @Override
 public void onWindowFocusChanged(boolean hasWindowFocus) {
   if (thread != null) {
     thread.onWindowFocusChanged(hasWindowFocus);
   }
 }
コード例 #5
0
ファイル: FlxGameView.java プロジェクト: s0ld13r/pacmandroid
  @Override
  public boolean onKeyUp(int keyCode, KeyEvent msg) {
    if (thread != null) return thread.doKeyUp(keyCode, msg);

    return false;
  }