Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (408)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Can't find FPS?  (Read 237 times)
0 Members and 1 Guest are viewing this topic.
Offline Crammer

Senior Newbie





« Posted 2013-01-25 12:13:31 »

First of all hello everyone Smiley I am new to Slick and I just started. I know how to pogram in Java but I want to start making games. Now I was just trying out the tutorials on the site when I stumbled on a little problem. When I run the code in the left corner "FPS: XXX" appears? I can't find the code line that does this? Can someone explain this to me please?

Code:

package Game;

import org.newdawn.slick.AppGameContainer;
import org.newdawn.slick.BasicGame;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.Graphics;
import org.newdawn.slick.Image;
import org.newdawn.slick.Input;
import org.newdawn.slick.SlickException;
 
public class Code extends BasicGame{
   Image land = null;
   Image plane = null;
   float x = 400;
   float y = 300;
   float scale = 1.0f;
 
    public Code(){
        super("Van Hoeserlande Jordi");
       
    }
 
    public void init(GameContainer event) throws SlickException{
       land = new Image("Land_Background.jpg");
       plane = new Image("Plane_Image.png");
    }
 
    public void update(GameContainer event, int delta) throws SlickException{
       Input input = event.getInput();
        
        if(input.isKeyDown(Input.KEY_Q)){
            plane.rotate(-0.2f * delta);
        }
 
        if(input.isKeyDown(Input.KEY_D)){
            plane.rotate(0.2f * delta);
        }
 
        if(input.isKeyDown(Input.KEY_Z)){
            float hip = 0.4f * delta;
 
            float rotation = plane.getRotation();
 
            x+= hip * Math.sin(Math.toRadians(rotation));
            y-= hip * Math.cos(Math.toRadians(rotation));
        }
       
        if(input.isKeyDown(Input.KEY_S)){
            float hip = 0.4f * delta;
 
            float rotation = plane.getRotation();
 
            x-= hip * Math.sin(Math.toRadians(rotation));
            y+= hip * Math.cos(Math.toRadians(rotation));
        }
    }
 
    public void render(GameContainer event, Graphics g) throws SlickException{
       land.draw(0, 0);
       plane.draw(x, y, scale);
    }
 
    public static void main(String[] args) throws SlickException{
         AppGameContainer screen = new AppGameContainer(new Code());
         screen.setDisplayMode(800, 600, false);
         screen.start();
    }
}
Offline Phased
« Reply #1 - Posted 2013-01-25 12:39:52 »

The fps thing is part of Slick.

I have not used libGDX, but i recommend libGDX over slick.
Offline Crammer

Senior Newbie





« Reply #2 - Posted 2013-01-25 12:46:58 »

Yeah I know but I tried... Slick has more information and more tutorials.
And I can understand it so why not Smiley

So do you mean it will always be there?
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline Phased
« Reply #3 - Posted 2013-01-25 12:49:37 »

there is a way to turn it off, i cant remember how.

For libGDX tutorials: http://code.google.com/p/libgdx/wiki/TableOfContents

also i read that it comes with some premade games in a post today, you could check out the source code for them
Offline Grunnt

JGO Knight


Medals: 22
Projects: 6


Complex != complicated


« Reply #4 - Posted 2013-01-25 13:28:02 »

there is a way to turn it off, i cant remember how.

Indeed, here's a link to the docs:
http://slick.cokeandcode.com/javadoc/org/newdawn/slick/GameContainer.html

Just call setShowFPS(false) on your GameContainer object, and voila: it's gone.

Grunnt Games  Play my 4K games or follow development of Constellation Control, a back-to-basics 4X RTS.
Offline Crammer

Senior Newbie





« Reply #5 - Posted 2013-01-25 13:39:36 »

Oke thank you! Smiley
Pages: [1]
  ignore  |  Print  
 
 

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (139 views)
2013-05-17 21:29:12

alaslipknot (148 views)
2013-05-16 21:24:48

gouessej (178 views)
2013-05-16 00:53:38

gouessej (172 views)
2013-05-16 00:17:58

theagentd (182 views)
2013-05-15 15:01:13

theagentd (166 views)
2013-05-15 15:00:54

StreetDoggy (211 views)
2013-05-14 15:56:26

kutucuk (235 views)
2013-05-12 17:10:36

kutucuk (234 views)
2013-05-12 15:36:09

UnluckyDevil (239 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.072 seconds with 20 queries.