[*]前 次[#] [0]戻 [4]履歴
[1]最新 [2]最初 ▼[3]コメント欄
2:www 11/28 10:14 ID:1U
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
public class ClickGame extends Frame implements ActionListener,Runnable {
Panel p1,p2;
Button ok,ng;
Label l;
PBar pbar;
boolean success;
int timer,point,speed;
Thread th;
public static void main(String args[]){
ClickGame cg = new ClickGame();
cg.setVisible(true);
}
public ClickGame(){
point = 0;
p1 = new Panel();
p1.setLayout(null);
p1.setSize(800,600);
p2 = new Panel();
pbar = new PBar();
pbar.setSize(400,20);
ok = new Button("押せ!");
ok.addActionListener(this);
ng = new Button("押すな");
ng.addActionListener(this);
l = new Label(point + "点");
add(p1,"Center");
p2.add(pbar);
p2.add(l);
add(p2,"South");
pack();
th = new Thread(this);
th.start();
}
public void gameover(){
System.out.println("Game Over");
System.out.println("あなたの得点は" + point + "点でした");
System.exit(0);
}
public void actionPerformed(ActionEvent e){
if(e.getSource() == ok){
p1.remove(ok);
point = point + timer;
l.setText(point + "点");
success = true;
}
if(e.getSource() == ng){
gameover();
}
}
public void run(){
int x,y,z;
speed = 50;
try{
while(speed > 0){
timer = 400;
x = (int)(Math.random()*750);
y = (int)(Math.random()*550);
z = (int)(Math.random()*10);
if(z > 2){
success = false;
ok.setBounds(x,y,50,50);
p1.add(ok);
}else{
success = true;
ng.setBounds(x,y,50,50);
p1.add(ng);
}
while(timer > 0){
pbar.setTimer(timer);
pbar.repaint();
th.sleep(speed);
timer=timer - 4;
}
if(!success)
gameover();
if(z <= 2)
p1.remove(ng);
speed--;
}
System.out.println("おめでとうございます");
System.out.println("完全クリアー!!");
System.exit(0);
}catch(Exception e){System.out.println(e);}
}
}
class PBar extends Canvas{
int timer;
public void setTimer(int t){
timer = t;
}
public void paint(Graphics g){
g.setColor(Color.white);
g.fillRect(0,0,400,20);
g.setColor(Color.blue);
g.fillRect(0,0,timer,20);
}
}
[*]前 次[#]
▲[6]上に [8]最新レス [7]ピク一覧