0
votes
0answers
20 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?
0
votes
0answers
40 views

Slick2d : trying to optimize off screen rendering

I'm working with slick2d and i'm trying to display images made "on the spot". I need to fill "tile map like" images with .png tiles and then display these tile maps. I tried creating empty images and ...
1
vote
1answer
287 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
271 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
177 views

How can I create multiple images in an array in java using a for statement?

I wish to link to the 52 card images to an array, but without adding them individually. I was thinking something like creating an array and using a piece of code something like this. Image[] card; ...
0
votes
1answer
58 views

How can I attach images to 2 variables in a card game?

I wrongly worded my last question so I'm going to retry this. I am making a card game in java, and currently I have the code to print 4 random cards in an arraylist for x number of players. I am using ...
0
votes
1answer
120 views

How toggle an image with a button event in Slick?

So I am trying to get a simple GUI setup for my teams game we are starting and I'm trying to make a drop down inventory using "I" as the hot key for it and it drops fine but I can't seem to figure out ...
0
votes
1answer
86 views

Stopping image movement

okay, so i have my image move straight down along the y axis whenever i click the mouse, my only problem is i don't know how to get it to stop when it hits the bottom of the screen, can someone please ...
0
votes
0answers
81 views

Slick2D: Why doesn't my code work with sub classes?

I have a sub-class(let's call it sub) and it contains all the functions of an object in my game. In my main class(Let's call it main), I connect my sub to main. Example sub Code: s = new sub(); ...
0
votes
2answers
399 views

Why is my image rotating off center?

I'm using Java/Slick 2D to play with graphics and using the mouse to rotate an image. Something strange happens though: the image doesn't necessarily face the mouse. At 45 degrees from the normal line ...
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) ...
1
vote
1answer
182 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
1answer
358 views

Slick2d Can't find image even though it's in the right area

I'm following the tutorials found on the Slick2D website, and upon loading Images to my program, I get an error that says: Tue Nov 01 14:12:47 EDT 2011 INFO:Slick Build #274 Tue Nov 01 14:12:47 EDT ...