Slick2D is a wrapper around the LWJGL OpenGL library for Java.

learn more… | top users | synonyms

0
votes
1answer
20 views

Collision not working

I have a problem in my game's collision. The game is "tiled based". The problem comes in when I place a tile that is supposed to block the player from walking into it, it produces a infinite vertical ...
0
votes
1answer
92 views

Slick2D AppGameContainer to AppletGameContainer

Alright so I've made this game a while back and I've recently decided to put it onto my website! To make things short, I have no clue how to convert my game from an AppGameContainer to an ...
0
votes
1answer
68 views

lwjgl and slick-util rendering text

Let me start with I can't find a Slick2d.jar file anywhere on the internet furthermore my project is not necessarily always going to be in 2d so I would prefer to use slick-util since that is ...
-1
votes
1answer
36 views

Move tile by tile with dynamic speed

I'm using java with slick2d library and trying to move tile by tile with dynamic speed. I have tried a couple methods but none of them can move with dynamic speed between the tiles. Can someone help ...
0
votes
1answer
36 views

Error when running applet with Slick2D

I have been trying to get a slick application to work on a website for awhile now, and I have the HTML code correct, I know that for sure, however I am getting an error from the applet saying this: ...
0
votes
1answer
28 views

slick 2d, Java, Animation getters and setters

i'm trying to develop a game and it's still early days, but i've run into an issue. I've created a character class and defined an animation in that class but want to use it in another class, I've ...
0
votes
1answer
67 views

Image.getGraphics() causing crash

Whenever I use the method getGraphics() from org.newdawn.slick.Image in fullscreen mode, it causes a crash. It works perfectly fine in windowed mode, and I've tried doing stuff like Graphics g = new ...
0
votes
1answer
26 views

How do you fix image duplication in Slick2d?

There is a glitch with slick2d. The pictures I make it draw on the window duplicates. I am on a windows 7 computer running eclipse. I am using paint.net for my graphics this is what it looks like: I ...
0
votes
1answer
15 views

use slick2d mouselistener to use this?

i have a image that's the pause menu. it has an exit button. when the exit button is pressed, a dialog appears. this is what i want. so, i have an image, and i set the x and y position of where the ...
0
votes
1answer
64 views

Slick2d | TextField character passing

The problem: I wrote some GUI stuff (a button) for my game. But Im stuck at creating the TextField, becouse the KeyListener is not working. I tried to implement the KeyListener but did not work. ...
-1
votes
0answers
27 views

How can I find the collision points of two Polygons in slick2d?

I'm making a top down ship game in slick2d. I'm trying to make collision physic for the ships with polygons. if(ship.polygon.intersects(ship2.polygon)){ } How can I find the collision ...
0
votes
0answers
40 views

JTextField area for Slick Java

What i want is that i want a JTextField in my Slick Application. I know how to make one for Java, but not for slick. Does Slick have one? I want a TextField that anyone can type in (like in a login ...
0
votes
0answers
26 views

OpenGL - Getting The Display Color Bits

I'm looking at the LWJGL wiki for taking a screenshot (found here) and I noticed the comment Assuming a 32-bit display with a byte each for red, green, blue, and alpha. in this code: ...
0
votes
1answer
29 views

How can I properly use bind() on a subImage?

I'm having a lot of trouble using the Slick2D bind() functionality and then trying to draw an image in OpenGL. I'm using an Image I obtained from getSubImage. If I use the graphics.drawImage() method ...
0
votes
0answers
22 views

Java Slick2D: Is it possible to turn a slick Image into a bufferedImage

Is it possible to turn a slick2D image back into a buffered image?
-6
votes
0answers
25 views

Slick2D music only plays when window is out of focus? [closed]

The music in my game will only play when the window is out of focus. import java.applet.Applet; import org.newdawn.slick.AppGameContainer; import org.newdawn.slick.BasicGame; import ...
0
votes
1answer
47 views

Java : 2 lines angle finding?

I'm using Java and slick2D. The Class:Line is referenced from : org.newdawn.slick.geom.Line My question is how can I find out how many degrees is the angle that concluded two lines. Example: Line ...
0
votes
1answer
68 views

Java - Slick - Fill Rectangle on Click

I am trying to fill a rectangle on the nearest 10th pixel with a 50x50 size. Whenever this code executes, it shows me the numbers in the syso so I know the locations are being calculated correctly. ...
-1
votes
1answer
40 views

Java Rectangle Collision [closed]

I'm making an RTS game and I need it so when two units collide to stop moving towards the collision but still move towards the point that you initially click to send them. The hitboxes of these two ...
0
votes
1answer
35 views

Gravity algorithm help needed

I'm using Slick2D and I was wondering if anyone knew how to tell if the player collided with the ground or a wall. So far I have it where it checks if the player hit something solid and if so it ...
1
vote
1answer
26 views

Slick2d Image object not displaying correctly?

I just started using the Slick2d game library (following this guide). For some reason the whole frame is black. I don't know what's wrong, because I'm getting complaints from neither Eclipse nor ...
-1
votes
0answers
16 views

Java Rectangle Collision/Fixed Speed? [duplicate]

So I have a deadline for a project and I have some problems with rectangle collision, and move speed of an image to a vector point. The problem with the rectangle collision is I have a little image ...
0
votes
2answers
33 views

Personnal implementation of Java events in Slick2D

I'm making my own windowing system in Java with Slick2D right now and I want to add buttons to my windows! The thing is that I have no knowledge on events or such things... Everywhere I look it's ...
0
votes
1answer
22 views

Slick2d's TiledMap.getTileProperty's String “def” field

I am trying to use Slick2d to write a basic game am using the Tiled tilemap editor to make the game terrain. Each type of tile in the map has a property known as "id" with a known string as a value. ...
0
votes
1answer
157 views

Text field using OpenGL

So, I'm new to OpenGL and trying to create a 2D Multiplayer game, I know how to do all of the networking, although the graphics portion is honestly kicking my buttox. I have tried looking at NiftyGUI ...
0
votes
2answers
84 views

Having problems declaring arrays of arrays of object Java

I have a problem using arrays of arrays of objects or simply arrays of objects and I'm pretty sure this isn't related to slick. Whenever the init method runs and get to the block part i'm getting a ...
1
vote
1answer
40 views

StateBased Java Game - How to tell if the mouse button is released?

i'm creating a statebased game using slick 2d, and lwjgl. I currently am using if statements to check whether the mouse is inside the area of the button, and another if statement to check whether the ...
2
votes
1answer
80 views

Java StateBased Game - Run outside of eclipse

I have created a game using LWJGL and Slick2d. I tried exporting my game as a runnable JAR, but when I double click the JAR nothing happens. Is there any way to find out why it isn't working or ...
0
votes
1answer
37 views

Not able to change color with Slick2d Graphics context

I'm playing around with Slick2D and I can't change the color of my Graphics Context. This is what I have: public void render(GameContainer gc, Graphics g) throws SlickException { Color color = ...
0
votes
1answer
84 views

I cannot solve this with slick2D java code

The problem is that i try to make a splash screen for a game i'm making. search google but no hope. i was following this tutorial here and it worked for him. my code was a little different but looked ...
0
votes
0answers
42 views

slick 2d, g.drawString delay?

I am using slick 2d for Java and trying to make a shorter story with it, using the g.drawString method. All worked fine so far, but now my question: Is there a possibility for getting the single ...
1
vote
1answer
1k views

Slick - Filled Rectangles

I am trying to render a health bar with Slick. I want a red rectangle with a green one in front of it to show the health remaining. This is what I have so far: Rectangle healthBG = new ...
2
votes
2answers
4k views

In Eclipse, my exported executable jar doesn't do anything ! (LWJGL)

Java beginner here. I made a small java app in Eclipse (on Windows), using the LWJGL lib and Slick. Then when I export is as an executable .jar file, and run the resulting .jar, it doesn't do ...
0
votes
0answers
27 views

Slick2D: Call to Animation.update causes application to freeze, crash

I'm working on a game with some basic graphics that utilizes Slick2D. In order to display an animation I have to display an image that's both rotated and scaled, so I quickly discovered that none of ...
-2
votes
0answers
36 views

Slick2D side scroller not working

What I want it to do is, make it so the player stays in the center, and have the background move but I am having trouble with that. The problem is that when I move left it shows up as +x when I move ...
0
votes
2answers
49 views

Destroying an enemy animation after it has been hit

I'm trying to destroy an enemy animation after it has been hit by the a bullet... The way I have it set up now is that, if the bullet animation hits any position on the enemy ship, give that animation ...
0
votes
0answers
42 views

UnsatisfiedLinkError: no lwjgl in java.library.path using Slick2D and LWJGL

Quick question about LWJGL and how she works. I know there's a thread on this already, I looked at it, but I still don't understand it. If I should post there instead of here, I apologize. It's my ...
0
votes
1answer
48 views

Need some assistance with moving an enemy bullet animation down the screen

I need help figuring out why the enemy bullets won't move when they have identical code... Please help... I didn't make either one as a separate class just simple animations Now I think that you can ...
1
vote
1answer
79 views

Collision Detection: What side was hit? [Java,Slick2D]

I have two rectangles, r1 which is moving, and r2 which is a stationary tile. I need to know what side of r2 (or r1) is hit to determine which direction r1 should go. The collision detection works ...
0
votes
0answers
36 views

StateBasedGame using Slick2D flickers 3-4 times during startup

I am having issues with my StateBasedGame using Slick2D. My GameContainer is an AppGameContainer. Whenever I begin the program the window flickers and moves 3-4 times before loading my first state. ...
0
votes
1answer
31 views

Writing and reading from an XML file with Slick2D

I was wondering how you would go about writing and the reading from an .XML file using the Java library Slick2D. I have googled for the last couple of days and have found nothing succinct and simple ...
0
votes
0answers
57 views

Textfield in Slick2D with BasicGameState does not answer

I'm currently developing a simple multiplayer game with Slick2D in Java. It's going to be a little more complex with the menu structure because I need several textfields to get the information which ...
0
votes
1answer
41 views

Should each object handle its own rendering, or should a seperate class handle all rendering?

The title isn't very clear, but I don't know how else to formulate it. So feel free to suggest a new title. I'm currently making a game in Java, with the Slick2D library. First, I was handling all ...
1
vote
1answer
220 views

Slick2d | Entity collision detection

The problem: I know this has been asked for many times, but I didnt find any good answers. So I have got some entities for my game, now what is the best way for checking collisions? Links: The ...
13
votes
2answers
5k views

Slick2D vs Straight LWJGL

I've been delving into game programming with Slick2D, and I've began to wonder if in the long run, knowing LWJGL would be more helpful. On one hand, Slick2D is fast and simple, but it seems LWJGL is ...
4
votes
3answers
70 views

How to debug a runnable jar, when crash doesn't happen in debugger?

When I debug the game in eclipse the game works fine. However, when I make runnable jar out of it the game crashes when enemy gets hit, the rest of the game works fine except that part. What do I do, ...
1
vote
1answer
90 views

Slick2d | Best way to render & update

The problem: What do you think what is the best way to render and update entities? Currently im using a world class to do this. Links: The game (always the latest version) All sources ...
0
votes
1answer
50 views

Java Image Point To Mouse

I'm having a problem where an image rotates based on the difference between the players position and the mouse position which works but the image isn't actually pointing at the mouse. I want the top ...
0
votes
1answer
47 views

Drawing strings with slick2d and TTF

I've been experimenting with String printing in LWJGL using slickutils. Generally when browsing the web I found two approaches to this. First being bitmaps where you have an entire alphabet and print ...
0
votes
2answers
157 views

How can I delay each bullet? (Java -Slick2d - Game)

(The event listener is in another class) When Game.render = true, i get a constant stream of bullets that look more like a laser-beam, i want there to be gaps. What I mean is that I would like the ...

1 2 3 4 5 6