2017-01-19 8 views
-3

私が現在行っている落ちる四角いゲームがあります。私はスコアシステムを持っている必要がありますが、私はどのように統合して、それをゲームフレームに表示するのか分かりません。時間を私のゲームに表示する方法

私の質問は、自分のゲームのフレームにリアルタイムで表示するタイマーを上向きにする方法です。

マイコード:ゲーム用途に

package GamePackage; 


import javax.swing.*; 
import java.awt.*; 
import java.awt.event.ActionEvent; 
import java.awt.event.ActionListener; 
import java.awt.event.KeyEvent; 
import java.awt.event.MouseEvent; 
import java.awt.image.BufferedImage; 
import java.io.BufferedReader; 
import java.io.FileInputStream; 
import java.io.FileReader; 
import java.io.IOException; 
import java.util.logging.Level; 
import java.util.logging.Logger; 
import sun.audio.AudioPlayer; 
import sun.audio.AudioStream; 
import javax.swing.ImageIcon; 

public class Game extends JPanel { 

    //changing these values will change the size of the game, while still remaining functional 
    //within the size limit specified. 
    public static final int WINDOW_WIDTH = 875; 
    public static final int WINDOW_HEIGHT = 720; 
    private Timer countdownTimer; 

    private javax.swing.JLabel lblTimer; 
    private String Highscore = ""; 

    private int count; 
    int Health = 1; 

    //Creates a Square object Array 
    Square[] squareArray = new Square[20]; 
    //Triangle[] TriangleArray = new Triangle[10]; 

    Player thePlayer = new Player(); 


    public Game() { 

     //initializes square objects 

     for (int i = 0; i < squareArray.length; i++) 
      squareArray[i] = new Square(); 


    } 

    public static void music(){ 
     try{ 
      AudioStream Music = new AudioStream (new FileInputStream("/SplashDemoPackage/URF.wav")); 
      AudioPlayer.player.start(Music); 
     }catch (IOException error){} 
    } 

    private void StartGame(){ 
       count = 14; 
     countdownTimer = new Timer(1000,new ActionListener() { 
      public void actionPerformed(ActionEvent e) { 
       lblTimer.setText(Integer.toString(count)); 
       count = count -1; 
       if(count<0){ 
       lblTimer.setText("0"); 
       } 
     } 
    }); 
    countdownTimer.start(); 
    } 


    public void paint(Graphics graphics) { 


     graphics.setColor(Color.WHITE); 
     graphics.fillRect(0, 0, WINDOW_WIDTH, WINDOW_HEIGHT); 

     //paints square objects to the screen 


     for (Square aSquareArray : squareArray) { 
      aSquareArray.paint(graphics);  
     } 

     // for (Triangle aTriangleArray : TriangleArray) { 
     //  aTriangleArray.paint(graphics);  
     // } 

     thePlayer.paint(graphics); 

    //  if(Highscore.equals("")){ 
//   Highscore = this.GetHighScore(); 
    //  } 

    } 

    // public void DrawScore(Graphics g){ 
    //  g.drawString("Score: " + score, 0, B); 
    //  g.drawString("HighScore: " + HighScore, 0,); 
    // } 

    public void update() { 

     // calls the Square class update method on the square objects 
     if(Health > 0){ 

     for (Square aSquareArray : squareArray) aSquareArray.update(); 
     } 

      // if(Health > 0){ 

     // for (Triangle aTriangleArray : TriangleArray) aTriangleArray.update(); 
     // } 

    } 



     private void mouseMove(MouseEvent evt) { 
      if(Health > 0){ 
      thePlayer.PlayerMove(evt); 
     } 
    } 


    public void collision(){ 
    Rectangle rectangle1 = thePlayer.bounds();//player rectangle 
    for (Square square: squareArray) { 
     if(square.GetBounds().intersects(rectangle1)){//testing all squares vs player 
      Health = Health - 1; 
      System.out.println("HIT"); 

      if (Health == 0){ 
        System.out.println("LOST"); 

      } 
     } 
    } 

     // for (Triangle triangle: TriangleArray) { 
    // if(triangle.GetBounds().intersects(rectangle1)){//testing all triangles vs player 
    //  Health = Health - 1; 
     //  System.out.println("HIT"); 

     //  if (Health == 0){ 
     //   System.out.println("LOST"); 

     //  } 
     // } 
    // } 

} 

private static void GUI() throws InterruptedException { 

     Game game = new Game(); 
     Player thePlayer = new Player(); 

     JLabel lblStart = new JLabel(); 
     JFrame frame = new JFrame(); 
     frame.add(game); 
     frame.setVisible(true); 
     frame.setSize(WINDOW_WIDTH, WINDOW_HEIGHT); 
     frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); 
     frame.setTitle("Dodge The Squares"); 
     frame.setResizable(false); 
     frame.setLocationRelativeTo(null); 





     BufferedImage cursorImg = new BufferedImage(16, 16, BufferedImage.TYPE_INT_ARGB); 

// Create a new blank cursor. 
Cursor blankCursor = Toolkit.getDefaultToolkit().createCustomCursor(
    cursorImg, new Point(0, 0), "blank cursor"); 

// Set the blank cursor to the JFrame. 
frame.getContentPane().setCursor(blankCursor); 



       frame.addMouseMotionListener(new java.awt.event.MouseMotionAdapter() { 
      public void mouseMoved(java.awt.event.MouseEvent evt) { 
       mouseMove(evt); 
      } 

      private void mouseMove(MouseEvent evt){ 
       game.mouseMove(evt); 
      } 
     }); 


     while (true) { 
      game.update(); 
      game.repaint(); 
      game.collision(); 


      Thread.sleep(10); 
     } 

} 

    public void DrawScore(Graphics g) throws InterruptedException{ 

     while (true) { 
      int time = 0; 
      time = time + 1; 
      g.drawString("Score: " + time, 0, WINDOW_WIDTH * WINDOW_HEIGHT + 10); 

      Thread.sleep(1000); 
     } 

    } 

    public static void main(String[] args) throws InterruptedException { 
     new Scoreboards().setVisible(true); 
     music(); 
      GUI(); 

    }  
} 
+0

'のSystem.currentTimeMillis()'と 'System.nanoTimeの()'ここからあなたの最高の友人となりますon out;) – CraigR8806

答えて

0

それが賢明System.nanoTimeのよりも優れた性能であるので、私は()にSystem.currentTimeMillis()を示唆しています。あなたがゲーム内の時間を追跡することができる方法の例:

public class Stopwatch { 
    private long startTime; 

    public void start() { 
     startTime = System.currentTimeMillis(); 
    } 

    public float getElapsedTimeSeconds() { 
     return (System.currentTimeMillis() - startTime)/1000f; 
    } 
} 

使用法:

Stopwatch stopwatch = new Stopwatch(); 
stopwatch.start(); 
Thread.sleep(5000); 
System.out.println("Time elapsed in seconds: " + stopwatch.getElapsedTimeSeconds()); 
+0

'Thread.sleep(5000);'は慎重に使用しないとGUIをフリーズします。 Swingベースの 'Timer'を使ってGUIを定期的に更新する方が良いでしょう。 –

+0

私はあなたがsleep(5000)を必要としない、または必要としないことに同意しますが、このために別個のタイマーが必要ではないと思います。プログラムはすでに10 ms程度のGUIを更新しています。 –

+0

あいまいさを謝罪するThread.sleep呼び出しは、StopWatch機能をデモンストレーションするだけでした。 – abstractx1

関連する問題