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

learn more… | top users | synonyms

1
vote
1answer
269 views

Slick-2D: Change back to default OS cursor

I have modified my cursor with cotainer.setMouseCursor(Image image, int hotSpotX, int hotSpotY) How do I change it back to the system default after I've set it? Thanks.
0
votes
0answers
201 views

Slick-2D TiledMap: Find location of tile from ID

I am using Slick-2D and a TiledMap. The map contains 1 unique tile in a location on the tiled map. I would like to find the location of that specific tile from its Tile ID. I though this method in ...
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 ...
0
votes
0answers
43 views

Error Running Jar File of game Developed using slick2d

I developed a game using slick2d. And Created jar file for that. JAR file is running fine on my system. But When I ported jar file to My Friend's System. It is giving following expection. LWJGL ...
1
vote
3answers
82 views

How to pass type of object to class?

I am currently making a game in java using slick2D. The game is tile based and I am trying to make the random map generation. I am generating a room and the a hallway attached to that room and keep ...
0
votes
1answer
99 views

ArrayIndexOutOfBoundsException on getColor() method in Slick

I have this code to create an ArrayList with all the pixel locations where there is actually a pixel (alpha != 0). The code is as follows: public ArrayList<Point> getPixels() { ...
0
votes
1answer
2k views

Changing Default Font in Slick Graphics API

I am attempting to change the default font for the Slick Graphics API to simply draw the title of a game I'm writing, but I can't seem to get it to work (it doesn't draw anything, just leaving the ...
0
votes
0answers
75 views

Tile engine changing number in array not changing texture

I draw my map from a txt file. Would I have to write to the text file to notice the changes I made? Right now it changes the number in the array but the tile texture doesn't change. Do I have to do ...
-1
votes
1answer
257 views

why does my animation blur when I move the character in slick2D Java?

ok So ^^ is a picture of two sprites side by side. The left sprite is the character after it has completed an animation.. The right sprite is the character as a static image.. As you can see, for ...
-2
votes
1answer
158 views

Visual Programming Software like Microsoft Robot Studio using Java? [closed]

Right now, I am creating this by creating custom JPanels for "IF","WHILE" etc blocks, on a JScrollPane. But as I am advancing, it is appearing a difficult task to make all of them work as I want. ...
1
vote
1answer
223 views

Are my programming methods for java games sufficient [closed]

so I'm making a 2d Java game with the slick2d and MarteEngine libraries. This is the biggest project since I made checkers for my Java class. I am still pretty new to programming concepts and using ...
0
votes
1answer
385 views

Java Slick2D and Jbox2D

I have recently started to develop games in java using the Slick2D library and am really enjoying it. I have come to a problem where my game need physics and after browsing the web I have decided to ...
0
votes
1answer
400 views

How to use JBox2D debug-draw in Slick2D?

JBox2D, the Java port of the Box2D physics engine, features an extensible module for creating debug drawing of shapes. How can I use this with the Slick2D game library?
4
votes
1answer
376 views

Leiningen and Clojure dependencies

I'm fairly new to clojure but I've been having trouble finding good resources and examples online, so hopefully someone could point me in the right direction. I've started a project with lein, ...
0
votes
1answer
789 views

Slick GUI tutorial?

So I'm kind of new to Slick, and I've only seen thenewboston's tutorials. I'm trying to build a button, but I can't seem to find any tutorials. I've looked through the Javadoc and found a few classes: ...
0
votes
1answer
1k views

Slick cannot load the image?

So I'm following thenewboston's tutorials on Slick 2D. I'm loading the Image exactly as he said: private org.newdawn.slick.Image playNow; ... public void init(GameContainer gc, StateBasedGame sbg) ...
-3
votes
1answer
265 views

Java - Slick2d: Very low framerate

This problem is not mine, so I will need some time to provide details. XY sets up the Java environment for Slick2d programming based on a tutorial video series. XY uses same code as the tutor, but ...
0
votes
1answer
229 views

Java Slick2D Shooting Issue

I am generally new to both Java and Slick2D, and even after browsing Google, I couldn't find the answer to my question. In my game I have a character that can currently run back and forth, and jump. ...
0
votes
1answer
145 views

Stop sprite from ghosting through another sprite

Ok so I've just started learning java (I usually program in Objective-C). My first game is a game similar to Pokémon, however, its a lot more simplified obviously... The trouble I'm having is I ...
0
votes
1answer
190 views

No smoothing using UnicodeFont

I am attempting to draw a string using Slick2D's UnicodeFont. Unfortunately it looks Is there anyway to make it look nicer (with smoothing or antialiasing)? Here is my code ...
-2
votes
1answer
372 views

How do I draw text with UnicodeFont with Slick?

I need to know how to draw text with UnicodeFont and Slick. I don't want to make a class that extends by BasicGame or BasicGameState, I just want to implement it straight into my main-class. Thanks.
1
vote
1answer
149 views

Game window flickers

Every couple seconds, the window in which my game is playing will briefly disappear and then reappear. I'm on Windows 7 with the latest version of Slick (a game library for Java). Here's the code I'm ...
3
votes
3answers
2k views

How can I display text with Slick?

I have been trying to display text with ninjacave's tutorials and lot's of others but I can't get it to work. Could someone give me a link to a tutorial that works? Thanks. The code is below: Main ...
0
votes
1answer
133 views

endless background for the level

Could you please help with the endless background for the level? I'm currently writing a primitive game using slick2d, the gameplay is similar to Mario. I have two pictures - img1 and img2 (both ...
1
vote
1answer
288 views

image vs texture size LWJGL

First Scenerio Loaded a texture with Stick-util.jar, where the image size = 50x50 & texture size =64x64. Bound the texture & drew a Quad of size 64x64. And gives out an Image of size 50x50. ...
0
votes
1answer
288 views

How to make slick2d resizable

Hey guys I was wondering if there was a way to make slick2d resizable by the user.(I have researched this and only found out how to make the program resizable within the program) Here is my code and ...
0
votes
1answer
393 views

Stopping the animation after you let go of a key

What I have right now is an animation that starts when I press space: if(input.isKeyDown(Input.KEY_SPACE)) player = movingRightSwingingSword; However when I stop clicking space my animation ...
1
vote
1answer
357 views

How to change slick2d upper left icon

Hey guys I was wondering if there was a way to change he upper left icon in slick2d. Thanks in advance.
1
vote
0answers
1k views

bootstrap class path not set in conjunction with -source 1.6 Java error

I am making a game based of of slick right now but every time I compile it I get a bootstrap class path not set in conjunction with -source 1.6 error. It compiles though and I can find it in the dist ...
0
votes
1answer
624 views

How to install slick in Netbeans

I have been searching for quite a bit now but I have never been able to figure out how to install slick into netbeans 7 on windows. Every search I have done has given me bad results and errors in my ...
1
vote
1answer
357 views

Game can't find a native library - jinput-linux64

I'm currently working on a game based on Slick2D, but I ran into a problem. When I try to run my game (no matter whether from dist or ide), I get the following error: java.lang.UnsatisfiedLinkError: ...
0
votes
0answers
192 views

Java Slick image color modulation

How can I modulate the color of a grayscale image so that I can have red, green, yellow, blue etc "versions" of the image to draw? One way I've thought of is to get the graphics context of the image ...
1
vote
2answers
666 views

With Slick2D, how to change the resolution during gameplay?

I am developing a tile-based strategy game using Java and the Slick2D API. So far so good, but I've come to a standstill on my options menu. I have plans for the user to be able to change the ...
1
vote
1answer
179 views

Why is Slick giving me this warning regarding PNG data?

I'm getting this warning in the console: WARN:class org.newdawn.slick.opengl.PNGImageData failed to read the data After switching between png files, it seems the warning is appearing because I was ...
0
votes
0answers
112 views

JRuby Slick CanvasGameContainer using too much heap memory

I'm using Java's Slick library (great, by the way) just fine from JRuby. To start a game, I use AppGameContainer which works completely fine and as expected, but if I try to use CanvasGameContainer ...
3
votes
1answer
1k views

Java Slick scale Image without anti-aliasing

In the Slick library (based off of LWJGL), you can scale images after you load them with getScaledCopy, but it will apply anti-aliasing. I want the edges to stay rough; I'm making pixel art. How can I ...
3
votes
2answers
705 views

Maven assembly plugin redownloading dependencies in jenkins

For some reason, maven seems to be attempting to download my project's dependencies every time I try to build it with Jenkins. There are a few problems. The first one is it shouldn't be doing this at ...
0
votes
0answers
1k views

Entity based sprite movement in Slick

I am following this tutorial: http://slick.cokeandcode.com/wiki/doku.php?id=entity_tutorial The tutorial I linked shows how to create an entity based game using components and Entities. At the end of ...
0
votes
0answers
228 views

Slick2D NiftyGUI integration: zoom slick2d but not niftygui

i've integrated nifty with slick2d correctly but i want to add a zoom functionality on the map. I tried to use g.scale(int x, int y) method but it scales the nifty gui too. I would like to scale the ...
0
votes
2answers
1k views

java Slick 2D how to set color

I'm getting crazy trying to draw a very simple rect and a text in order to just understand how it works with the slick 2d java library. This is what I try: g.setColor(Color.green); g.fillRect(50, ...
0
votes
0answers
347 views

Random level generation for sidescrolling platformer [closed]

I'm creating a game in Java with Slick and I've gotten to a point where I want to make my levels randomly generated. That's the problem. I've been fiddling with creating random levels using a ...
0
votes
1answer
394 views

Slow angle rotation

So apparently, even though I've been through calculus 3, my trig is horribly failing me (I probably can't even call this trig, it's just basic math). So basically I have a bunch of images that rotate ...
1
vote
1answer
315 views

Java 2d game not using a tiled map

I decided to make a 2d game in Java (using the slick2d library and MarteEngine) and I attempted to do it without a tiled map. It seems like my upcoming tasks are going to be very difficult without ...
0
votes
2answers
3k views

Camera for 2d game

I'm currently making an awesome (in my mind) zombie game and I need to know a good way to make a camera. I am using the Slick2d library along with MarteEngine for java. I'm kinda new to java and ...
1
vote
3answers
87 views

testing for the color red

I am attempting to write a collision map for an old school RPG. I created an Image using the color red (255, 0, 0) where collisions should occur and am trying to test for when my sprites positions ...
2
votes
0answers
215 views

Use images having unique .jar file (Slick 2D)

Im trying to create an executable jar file of my mini game created with the library slick2D. I found out that using JarSplice we can merge multiple jar into just one "fat jar" The problem is: when I ...
0
votes
2answers
456 views

Can't create runnable LWJGL jar with JarSplice

I created a runnable JAR with Eclipse for a small SLick2D game. No matter what settings I tried, I always received some sort of error, whether it be UnsatisfiedLinkError, or some class not being ...
2
votes
2answers
2k views

Rotate image to 'point' to mouse position

I have a gun image on top of a tank image. I want the gun to point towards the mouse position so the mouse can be used to aim. The original gun image will be pointing upwards. I'm using Slick2D and ...
0
votes
1answer
589 views

java slick cannot load tmx tilemaps

I just started using Slick2D and learned how simple it is to load in a tilemap and display it. I tried atleast a dozen different tmx files from numerous examples to see if it was the actual file that ...
1
vote
1answer
333 views

LWJGL & Slick Coloring Quads Incorrectly

I'm working on a basic GUI for a map editor for a game engine. Everything works correctly except the program is only coloring some of the quads the color I want (gray), and it's coloring some others ...