CTB 5-7
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
package jp.codeforfun.catchtheball; | |
import androidx.appcompat.app.AppCompatActivity; | |
import android.graphics.Point; | |
import android.os.Bundle; | |
import android.os.Handler; | |
import android.view.Display; | |
import android.view.MotionEvent; | |
import android.view.View; | |
import android.view.WindowManager; | |
import android.widget.FrameLayout; | |
import android.widget.ImageView; | |
import android.widget.TextView; | |
import java.util.Timer; | |
import java.util.TimerTask; | |
public class MainActivity extends AppCompatActivity { | |
private TextView scoreLabel; | |
private TextView startLabel; | |
private ImageView box; | |
private ImageView orange; | |
private ImageView pink; | |
private ImageView black; | |
// サイズ | |
private int frameHeight; | |
private int boxSize; | |
private int screenWidth; | |
private int screenHeight; | |
// 位置 | |
private float boxY; | |
private float orangeX; | |
private float orangeY; | |
private float pinkX; | |
private float pinkY; | |
private float blackX; | |
private float blackY; | |
// Handler & Timer | |
private Handler handler = new Handler(); | |
private Timer timer = new Timer(); | |
// Status | |
private boolean action_flg = false; | |
private boolean start_flg = false; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
scoreLabel = findViewById(R.id.scoreLabel); | |
startLabel = findViewById(R.id.startLabel); | |
box = findViewById(R.id.box); | |
orange = findViewById(R.id.orange); | |
pink = findViewById(R.id.pink); | |
black = findViewById(R.id.black); | |
// Screen Size | |
WindowManager wm = getWindowManager(); | |
Display display = wm.getDefaultDisplay(); | |
Point size = new Point(); | |
display.getSize(size); | |
screenWidth = size.x; | |
screenHeight = size.y; | |
orange.setX(-80.0f); | |
orange.setY(-80.0f); | |
pink.setX(-80.0f); | |
pink.setY(-80.0f); | |
black.setX(-80.0f); | |
black.setY(-80.0f); | |
} | |
public void changePos() { | |
// Orange | |
orangeX -= 12; | |
if (orangeX < 0) { | |
orangeX = screenWidth + 20; | |
orangeY = (float)Math.floor(Math.random() * (frameHeight - orange.getHeight())); | |
} | |
orange.setX(orangeX); | |
orange.setY(orangeY); | |
// Black | |
blackX -= 16; | |
if (blackX < 0) { | |
blackX = screenWidth + 10; | |
blackY = (float)Math.floor(Math.random() * (frameHeight - black.getHeight())); | |
} | |
black.setX(blackX); | |
black.setY(blackY); | |
// Pink | |
pinkX -= 20; | |
if (pinkX < 0) { | |
pinkX = screenWidth + 5000; | |
pinkY = (float)Math.floor(Math.random() * (frameHeight - pink.getHeight())); | |
} | |
pink.setX(pinkX); | |
pink.setY(pinkY); | |
// Box | |
if (action_flg) { | |
boxY -= 20; | |
} else { | |
boxY += 20; | |
} | |
if (boxY < 0) boxY = 0; | |
if (boxY > frameHeight - boxSize) boxY = frameHeight - boxSize; | |
box.setY(boxY); | |
} | |
@Override | |
public boolean onTouchEvent(MotionEvent event) { | |
if (start_flg == false) { | |
start_flg = true; | |
FrameLayout frame = findViewById(R.id.frame); | |
frameHeight = frame.getHeight(); | |
boxY = box.getY(); | |
boxSize = box.getHeight(); | |
startLabel.setVisibility(View.GONE); | |
timer.schedule(new TimerTask() { | |
@Override | |
public void run() { | |
handler.post(new Runnable() { | |
@Override | |
public void run() { | |
changePos(); | |
} | |
}); | |
} | |
}, 0, 20); | |
} else { | |
if (event.getAction() == MotionEvent.ACTION_DOWN) { | |
action_flg = true; | |
} else if (event.getAction() == MotionEvent.ACTION_UP) { | |
action_flg = false; | |
} | |
} | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment