Hot answers tagged slick2d
37
I don't think the two are really related. I mean, I know Slick is built on top of LWGJL, but that's not what I'm getting at here.
Slick exists to take advantage of the hardware graphics and sound acceleration, and to give that power to 2D games with a set of objects and classes that make sense for 2D games (sprites and tilemaps, as opposed to geometric ...
31
If all you're doing is drawing sprites in a 2D world, then there's basically two things you need to keep track of in order to decide which sprites to draw on the screen and where on the screen to draw them. You have to think of your sprites as existing at a certain location in the world, and what you see on the screen as just one view of the world, focusing ...
10
Here's some reading for you (there's a gamedev-specific StackExchange site, BTW):
http://gamedev.stackexchange.com/questions/6825/time-based-movement-vs-frame-rate-based-movement
http://gamedev.stackexchange.com/questions/1589/fixed-time-step-vs-variable-time-step
One of the most important points in these articles is that things move at a certain rate ...
8
You never instantiate your array enemy.
At some point, before you use enemy, you'll need something like: enemy = new Enemy[numEnemies];. You can do it in the declaration:
// use a constant for the number of enemies:
public static final int NUM_ENEMIES = 20;
Enemy enemy[] = new Enemy[NUM_ENEMIES];
Otherwise, since enemy is null - because you haven't ...
6
Here is a simple example of how the A-star path finding in Slick2D works. In a real game you would probably have a more realistic implementation of the TileBasedMap interface which actually looks up the accessibility in whatever map structure your game uses. You may also return different costs based on for example your map terrain.
import ...
6
Java does not support multiple inheritance. For typing problems, use interfaces. But in this case you're more interested in behavior, so I'd use composition.
public class GameApplet extends JApplet {
private Game game = new Game();
public void init() {
game.foo();
...
}
...
}
6
Put a try/catch around the function where an enemy gets hit. In the catch statement, have it print a stack trace and information on the exception caught.
Something like:
try {
enemyHit();
} catch (Exception e) {
System.out.print("RuntimeException: ");
System.out.println(e.getMessage());
e.printStackTrace();
}
Run the jar from the command ...
5
I don't know slick2d but I'd say your class should not extend Image but have an image attribute. Extending is a way of saying "Plane is an Image" which normally is not the case but rather a plane has a texture/image.
Additionally, the image should not be public but protected/private and be accessed by public getters and setters. That way you increase ...
5
The way OpenGL works is basically one large, global state machine. When you bind a texture, every triangle you draw afterwards will use that texture.
The issue here is that the text drawing doesn't unbind it's texture afterwards, so the shapes you draw afterwards will be using that texture instead of no texture. The reason why you think it's "disabling" ...
5
The problem occurs because your instance variables x, y, etc. in EntityBall are static, meaning there is only one value of each for the entire class. Each time a new instance is created, the values are overwritten. Remove static from the field declarations in EntityBall, so that there are distinct values for each ball created.
4
You can find the location of the user's mouse by asking an Input object. This is done by asking the GameContainer for the input.
Input userInput = gameContainer.getInput();
float mouseX = userInput.getMouseX();
float mouseY = userInput.getMouseY();
The locations of the mouse and the gun can be used to determine the angle the gun needs to face. We can ...
4
This is madness. Of course you can move the camera. See my answer to this question explaining how to move the camera, render the world relative to said camera, and some other useful tips on how to do this and how to decide what to draw on the screen as the camera moves.
While it's totally possible to use translate(x, y), that alone doesn't solve clipping ...
4
I think the issue is that you are trying to import the whole package, like a "import org.newdawn.slick.*" in Java. In Clojure you cannot do this, but you have to import each class that you want to use.
The shortest that you can get is:
(:import (java.io BufferedReader Bits BufferedWriter))
4
I have been developing prototypes in Slick2D, but I can't speak for the other two. As a bit of background, I've released games on XBLIG and PC using XNA, and I've been a serverside Java developer (mostly Spring these days) for years. I've been working on a 2D platformer, text-based game, and tile-based puzzle game.
Slick is more suited to 2D than 3D IMO, ...
4
You cannot have a class extend from more than 1 class. There are ways to get what you want though, the easiest of which might be to have another class that extends JApplet, and have that class use your game class. This is called composition -- it's when a class uses instances of one or more other classes.
Typically if you want to extend from more than 1 ...
4
I don't know much about Slick, but the idea behind a "bullet system" isn't that bad.
Unless you want instant hits when they fire, which it doesn't seem you do, the general idea behind what you need to do goes like this.
First, listen for a space bar press. When this happens, create a new "bullet" object.
Give this object a movement direction and speed, ...
3
sorry, but this answer is anything but short
You can use angel code's BMF font tool, which makes bitmap font files with a glyph image that stores the character images, and a text file that describes the image file (windows only, Herio.jar is similar and is included with slick, but it only works sometimes, crashing on me repeatedly)
Get BMF font here and ...
3
My best bet is that you missed to reference your Main-class in the manifest-file.
Have a look at this it shows how to set up your manifest-file correctly.
Have Fun!
EDIT:
Manifest-Version: 1.0
Main-Class: SimpleTest
Class-Path: lib/lwjgl.jar lib/slick.jar
<-- new line without any content -->
EDIT 2:
OK, I was able to reproduce this ...
3
It's the number of milliseconds between frames. Rather than trying to build your game on a fixed number of milliseconds between frames, you want to alter your game to move/update/adjust each element/sprite/AI based on how much time has passed since the last time the update method has come around. This is the case with pretty much all game engines, and allows ...
3
There is a SpriteSheet class in Slick that does exactly this.
SpriteSheets, in Slick, are large images made up of a series of uniformly sized tiles. Each tile is typically an animation frame in a Sprite. In the SpriteSheet constructor you specify the image (which has all the tiles), and the width/height of the tiles in the sheet, along with any spacing and ...
3
A lot of games still divide the map into tiles even if it isn't a tile-based game.
The reason is that you can do collision detection by checking whether an object is overlapping any of the objects in its current tile or any of the neighbouring tiles. As long as your objects are no larger than the tiles, this collision detection scheme is guaranteed to work ...
3
Based on the comments:
The documentation implies that the filter property of Images controls how images are scaled. To scale an image without smoothing, use the nearest neighbour filter:
Image original = …;
original.setFilter(Image.FILTER_NEAREST);
Image scaled = original.getScaledCopy();
3
Are you looking hard enough?
http://ray3k.com/site/tutorials/tutorial-setup-slick-in-netbeans/
http://wiki.netbeans.org/SlickSet
Download Link: http://slick.cokeandcode.com/downloads/slick.zip
Slick Nightly Build: https://www.newdawnsoftware.com/hudson/view/Slick/job/Slick/lastSuccessfulBuild/artifact/Slick/dist/slick.zip
This link warns you of a ...
3
According to this tutorial, you can call drawString from your graphics object in the render method.
g.drawString("Hello World!",200,200);
3
Really nice answer from normalocity, I just want to say if you want to really optimize your drawing scene in Slick2D, you need to know than standard draw method of Slick use a glBegin/glEnd.
With a lot of sprite (~10 000), this method is really slow. To avoid this problem you can use drawEmbedded method on a very big sprite-sheet or make your own method ...
3
TileSelection t = new TileSelection();
System.out.println(t.jk);
At this point if you havent selected a value/default value the selectedItem return null.
set a default selected item in your TileSelection constructor and also assign jk in the constructor after you assign a default selected item:
patternList.setSelectedIndex(0);//sets first option ...
3
Download the Slick2D library and import the jar.
Inside your class to cover the scope of the whole class:
Font font;
TrueTypeFont ttf;
Your init method
public void init(GameContainer gc){
font = new Font("Verdana", Font.BOLD, 20);
ttf = new TrueTypeFont(font, true);
}
Your render method:
public void render(GameContainer gc, Graphics g){
...
3
Firstly, atan2 can get the correct angle for you - just remove Math.abs from the inputs, and you won't need your three four if statements that you use to correct the quadrants of the angle. (Though you have to get the subtractions the right way around)
Secondly, you're setting the sprite's rotation to mAng-pAng, which amounts to "old angle - new angle". So ...
3
The long and short of it is, you need to maintain a list of the objects you want to paint on each paint cycle.
public class ColorMeRectangles {
public static void main(String[] args) {
new ColorMeRectangles();
}
public ColorMeRectangles() {
EventQueue.invokeLater(new Runnable() {
@Override
public void ...
3
http://docs.oracle.com/javase/6/docs/api/java/awt/Rectangle.html
Use the Rectangle class.
Here, some code
http://pastebin.com/raw.php?i=TzkST3Hm
Only top voted, non community-wiki answers of a minimum length are eligible


