/*
* 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) {
}
}