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

learn more… | top users | synonyms

0
votes
1answer
36 views

Java Input won't recognize right key or down key

So I have just started using LWJGL with Slick2D and for some reason my code won't work for the right and down keys to move my player. However, the up and left keys do work. Here is my code: @Override ...
0
votes
1answer
32 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 ...
0
votes
0answers
14 views

Slick2D Only drawing when the cursor isn't focused on it

When I draw something with Slick2D the drawing only shows up when I select another window but the screen is black otherwise. Is this a known issue, glitch, or did I do something wrong?
1
vote
2answers
70 views

What does theta do?

So I've found this class called Vecter2f in Slick2D and inside of it there is a method called getTheta. I don't know what this does but I got the source to the method if that will help. And what use ...
0
votes
1answer
38 views

Slick2d Cannot instantiate the type Game?

Hey guyes i just started creating some programs or games with Slick2d.So the problem is that i am getting error like this: instantiate the type Game. The code: public HelloWorld() public static ...
0
votes
0answers
20 views

slick frame size independent rendering

Is there a way to set a virtual canvas size in slick then have it stretched to fill arbitrary dimensions? The goal is to support full screen on different sized screens without how much you are able to ...
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 ...
0
votes
1answer
60 views

Messages Between Two Distant Classes In Java

I have been working on a Java game for a few months now and I've run into a problem. My Player walks around in an Environment, which is comprised of tiles that all have their own CollisionBox. Put ...
0
votes
0answers
35 views

slicks2d UnicodeFont renders incorrect characters

Not sure what's going on here, but I have a strange problem with Slick2D's UnicodeFont. My code works correctly most of the time, but occasionally (about 14% of the time, measured over 50 runs) it ...
0
votes
2answers
281 views

Parse XML File within Jar

I am having troubles loading an XML file within my java game. Here is where the file is located, (from Eclipse): I have been doing research, and apparently to use the xml file in a JAR file, I need ...
2
votes
0answers
85 views

“java.lang.NoSuchMethodError” Exception when drawing text to screen [closed]

When I'm drawing text to the screen, I seem to get a NoSuchMethodError exception. I don't understand why.. Font f = new Font("Times New Roman", Font.BOLD, 20); UnicodeFont uf = new UnicodeFont(f); ...
0
votes
2answers
80 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 ...
0
votes
2answers
194 views

Slick2D Collision Detection - Strange Movement

The collection detection method I'm using currently can interpret a collision, but causes strange effects depending on the direction. It will: Always work if the player is hitting the right side of ...
0
votes
0answers
145 views

Rendering collision-polygon around incoming enemy object [closed]

I´m trying to make a simple 2D scrolling game for a school-project, and I've got a player, a background (scrolling) and a couple incoming objects. The enemy is being rendered at a random X-position ...
-1
votes
1answer
127 views

Slick 2D: Render Null Pointer Exception

So my problem is when a state that I've created gets called, I get a NullPointerException. Thing is, it's not null, at least I think so. Could someone tell me where the NPE is coming from? PS: This ...
0
votes
0answers
48 views

java devlopment game in netbeans with slick

i write throws SlickException but i got an error and this the massage "requrid throwable found SlickException " i don't know what is the wrong and this is my method public void ...
0
votes
0answers
84 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
0answers
87 views

Slick2D - Could not locate OpenAL library (Netbens)

I'm using netbeans 7.2.1, Java 7, Slick2D and LWJGL 2.8.5 when I'm running my game with NetBeans (F6) it's showing me "Could not locate OpenAL library" but, when I build my program (F11) and running ...
-2
votes
1answer
34 views

Ant Evolution Project [closed]

I am trying to create an evolution simulator. I have everything for one type of ant done, apart from the fact the breeding does not work. Here is my code: Main: package com.ncom.evo.src; import ...
1
vote
1answer
128 views

How to verify Java version on my program launch ?

My java/LWJGL game/application requires users to have Java 7 installed. However, if they don't, nothing is displayed or returned to the user unless they started the application from the console. The ...
1
vote
1answer
280 views

Slick2D get image x and y

Ok, so i have a car that you can drive around in my game. It's basically an Image that drives around on a background, a and d turns it, w and s drives back and forth. But i want to make some borders ...
0
votes
1answer
111 views

What is a simple way to stop a Entity when it collides into another?

I have two Entities, a Player and a Block. The player and the block are both squares. I want the player to stop moving when it runs into a block. I have some of the code done but it only work's for ...
0
votes
0answers
95 views

Exception when running program

I get this error when trying to run my program MOBGame. Exception in thread "main" java.lang.NoSuchMethodError: org.newdawn.slick.Font.drawString(FFLjava/lang/CharSequence;)V at ...
2
votes
3answers
98 views

How To Encrypt Resource Files?

Hi I have a game made in Java and Slick2d and I have a folder that contains all of my resources (images, sounds, etc) and I was wondering how to encrypt them so people can't edit them? I tried MD5 ...
0
votes
0answers
81 views

Slick2D - Graphics:oval - not rendering THICK oval properly

I want to use the Graphics class of Slick2D to render a thick oval by the method Graphics:oval but it only renders it properly with a line width of 1. When i use a thicker line width via ...
0
votes
1answer
46 views

Unsmooth movement of sprite

I am developing a 2D platformer game in Java/Slick2D. Up until now my character moved a constant amount of pixels per frame. I've tried switching to using the 'delta' variable (amount of time between ...
0
votes
1answer
103 views

lwjgl fps drawing issue

I'm having some troubles while trying to trace FPS on the screen using LWJGL. What's wrong in my code? I've got this all the time: Exception in thread "main" java.lang.NullPointerException at ...
0
votes
1answer
154 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
1answer
114 views

Slick2D runnable jar (JarSplice) cannot find sound asset? “Resource not found” error

I just started making a Slick2D game yesterday, and everything was going fine until I added sound. The game itself works fine within eclipse, and the sound plays as expected. However, when I compile ...
0
votes
2answers
103 views

Error when hitting Run in Eclipse 2D

I am a noob learning basic game programming in Slick 2D Using Eclipse and java I am following a tutorial at ...
0
votes
1answer
29 views

Random outofboundsexception being thrown for no reason?

I'm using LWJGL and Slick2D for a game I'm making. I can't seem to get it to draw the way I want it to be draw so I came up with an idea just to make my own drawing method. Basically it takes a image, ...
0
votes
1answer
70 views

Eclipse Runnable Jar Export Not Launching

I am currently working on a game in Java and tried to export my first release as a runnable jar. As Eclipse has a tool for this, I tried to use it. After trying many different ways, I could still ...
0
votes
1answer
71 views

When compiling my game into an Executable Jar, The game doesnt work

I have created a small game using Slick 2D and the LWJGL. When testing the program in Eclipse, everything works fine. As soon as I try to run my exported jar I get this message in the terminal: ...
0
votes
1answer
46 views

Hot swap render method from Slick2D

I'm trying to do code hot swapping in Eclipse using the Slick2D framework. The problem is that I cannot do it inside BasicGame#render(GameContainer gc, Graphics g), although I can do it in ...
-4
votes
1answer
181 views

Map render error slick2d [closed]

I have recently been programming a platforming game in java, and I have run into a problem when I tried to use a separate class to store my map (tiled). I then tried to fix it by moving the map into ...
0
votes
1answer
81 views

LWJGL allow negative mouse coordinates (outside window)

I'm trying to get the mouse coordinates with LWJGL Mouse class. By default, LWJGL clamps the values to [0, width] and [0, height], so the coordinates are always inside the window, even when the mouse ...
0
votes
0answers
64 views

Rendering text with Slick2D inside a LWJGL window?

How would I render a basic string using Slick2D inside a window created with Display.Create() from LWJGL?
0
votes
0answers
138 views

Parsing custom XML file, com.sun.org.apache.xerces.internal.dom.DeferredTextImpl cannot be cast to org.w3c.dom.Element

It seems I'm having another issue with my attempt at an XML parser. The full error I am getting is as follows: java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.DeferredTextImpl ...
0
votes
1answer
87 views

Slick2d/lwjgl Curve through Array of Points

I am trying to rewrite the Game "Achtung, die Kurve" (Attention, the Curve) Now, i am stuck with the Problem: How can i draw a Curve, which goes through N Points(x/y Coords) for(int i = 0;i < ...
0
votes
1answer
109 views

Slick2D Music Trouble

I'm new to Slick2D, LWJGL, etc. Anyway I've been trying to make a simple in-game menu when pressing the escape button. Everything works fine, however when I hit the escape button I would like the ...
0
votes
1answer
137 views

Transparent background behind font

With LWJGL and OpenGL, I want to draw a textured rectangle. Above that, I want to write some Text using the Slick Library. My Problem is that when I draw the Text before the rectangle, the font has ...
2
votes
1answer
350 views

Java slick statebased game - state returns null point error

I am trying to use java slick to create a basic state based game. The 3 of my stages work fine, but for some reason the other 5 cause a null point exception when I call the get state method. All ...
0
votes
1answer
146 views

Slick2D Music not working

I am currently testing Slick2D and thats why i am writing a Pong Game, Also, in this PongGame you can select Music Files, which are in the ./music Folder When i run it through Eclipse, all works ...
-1
votes
1answer
58 views

I cannot seem to find an answer to finding the point of collision between two objects with slick2d

I can find IF two objects collide, but not the point in which they DO, I have seen other posts asking similar questions, but the answers have always been too cryptic/made large assumptions on the ...
0
votes
1answer
265 views

How do I make my sprites have transparent backgrounds in Slick2D?

I've used GIMP to create a sprite using a transparent background. Once I put it in the Image Packer the transparent background disappears and the whole image is messed up. After a bit of googling ...
0
votes
1answer
113 views

lwjgl + slick2d + jinput error on 64-bit linux

I am using Linux (Ubuntu 12.04) with 64-bit java 7 and Eclipse (Indigo). On the game project we are using slick2d and along with it lwjgl. I was halted by the following errors. (fixes explained in the ...
0
votes
1answer
93 views

How can you make a player move to a point?

I was wondering how you can move a player to a specific point. I want the player to follow the mouse when the left button is down. Here is my code so far. Entity Class: public abstract class Entity ...
0
votes
0answers
60 views

Loading Slick2D texture inside a jar file

I exported my Game as a jar and the Texture loading won't work anymore. I have a class that provides the Spritesheet as a static variable public static Texture SPRITESHEET = ...
0
votes
0answers
118 views

Slick2d init running twice, update/render running infinite times

I'm creating a card game and using slick2d for graphics. When I call my method to draw a card from a deck in public void init it runs twice. Below method draws a card from the deck constructor ...
0
votes
4answers
105 views

How can I build a Mac OS X .app from an eclipse program

My program works fine in Eclipse. However, if I try to export it as a runnable jar, the jar doesn't open when I double click it. Is there a way, in Eclipse, to export directly to a .app?