扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
在
/*
* GameClock.java
*
* Created on 2005年7月18日, 上午11:00
*
* To change this template, choose Tools | Options and locate the template under
* the Source Creation and Management node. Right-click the template and choose
* Open. You can then make changes to the template in the Source Editor.
*/
package com.j2medev.gameclock;
import java.util.TimerTask;
/**
*
* @author Administrator
*/
public class GameClock extends TimerTask{
private int timeLeft = 60;//时钟的默认时间
private boolean pause = false;
/** Creates a new instance of GameClock */
public GameClock() {
}
public GameClock(int value){
timeLeft = value;
}
public void run(){
if(!pause){
timeLeft--;
}
}
public void pause(){
pause = true;
}
public void resume(){
pause = false;
}
public int getTimeLeft(){
return timeLeft;
}
public void setTimeLeft(int _value){
this.timeLeft = _value;
}
}
当我们使用这个时钟的时候,只需要把它的一个实例作为参数传给Timer的schedule()方法即可。例如
clock = new GameClock(30);
timer.schedule(clock,0,1000);
接下来我们编写一个简单的游戏界面测试一下时钟。我们在程序启动的时候开始计时,每隔一秒钟timeLeft会减少1,并且在手机
public void verifyGameState(){
timeLeft = clock.getTimeLeft();
if(timeLeft == 0){
going = false;
}
}
为了测试时钟的暂停功能,我们接收用户的按键行为,如果左键被按下,那么调用clock的pause()方法,如果右键被按下则调用clock的resume()方法。
public void userInput(){
int keyStates = this.getKeyStates();
if((keyStates & GameCanvas.LEFT_PRESSED) != 0){
clock.pause();
}else if((keyStates & GameCanvas.RIGHT_PRESSED) != 0){
clock.resume();
}
}
下面给出MIDlet和Canvas的代码:
/*
* ClockCanvas.java
*
* Created on 2005年7月18日, 上午11:04
*
* To change this template, choose Tools | Options and locate the template under
* the Source Creation and Management node. Right-click the template and choose
* Open. You can then make changes to the template in the Source Editor.
*/
package com.j2medev.gameclock;
import java.util.Timer;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.game.*;
/**
*
* @author Administrator
*/
public class ClockCanvas extends GameCanvas implements Runnable {
private Timer timer = new Timer();
private GameClock clock = null;
private boolean going = true;
int timeLeft = 0;
/** Creates a new instance of ClockCanvas */
public ClockCanvas() {
super(false);
}
public void run(){
clock = new GameClock(30);
timer.schedule(clock,0,1000);
while(going){
verifyGameState();
userInput();
repaint();
try{
Thread.sleep(100);
}catch(Exception e){
e.printStackTrace();
}
}
}
public void userInput(){
int keyStates = this.getKeyStates();
if((keyStates & GameCanvas.LEFT_PRESSED) != 0){
clock.pause();
}else if((keyStates & GameCanvas.RIGHT_PRESSED) != 0){
clock.resume();
}
}
public void paint(Graphics g){
int color = g.getColor();
g.setColor(0xffffff);
g.fillRect(0,0, this.getWidth(), this.getHeight());
g.setColor(color);
if(timeLeft == 0){
g.drawString("游戏结束", this.getWidth()/2, this.getHeight()/4, Graphics.HCENTER|Graphics.BOTTOM);
}else{
g.drawString("游戏剩余时间:"+timeLeft, this.getWidth()/2, this.getHeight()/4, Graphics.HCENTER|Graphics.BOTTOM);
}
}
public void verifyGameState(){
timeLeft = clock.getTimeLeft();
if(timeLeft == 0){
going = false;
}
}
public void start(){
Thread t = new Thread(this);
t.start();
}
public void stop(){
going = false;
}
}
/*
* TestMidlet.java
*
* Created on 2005年7月18日, 上午11:00
*/
package com.j2medev.gameclock;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
*
* @author Administrator
* @version
*/
public class TestMidlet extends MIDlet {
private Display display = null;
public void startApp() {
display = Display.getDisplay(this);
ClockCanvas canvas = new ClockCanvas();
canvas.start();
display.setCurrent(canvas);
}
public void pauseApp() {
}
public void destroyApp(boolean unconditional) {
}
}
总结:本文实现了一个游戏开发中可能用到的时钟程序,代码并不复杂。
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者