Tagged Questions
-1
votes
0answers
12 views
Slick2D: Applet permissions
When I open up the applet in a browser I get this error in the Java console and it says 'Permission for Applet Refused' and it just stays like that:
This occurred while 'Determining packages to load'
...
0
votes
1answer
22 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
0answers
24 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
24 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 ...
1
vote
1answer
19 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
30 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
35 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
2answers
47 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
39 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
44 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 ...
0
votes
0answers
63 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 ...
0
votes
1answer
29 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
53 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
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 ...
2
votes
1answer
73 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 ...
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 ...
0
votes
0answers
55 views
Why won't Slick2D draw text strings past lower-case characters?
I am using Slick2D with LWJGL and I have a problem drawing TrueTypeFonts.
When I insert lower-case characters into the string of text to be drawn, the drawing stops before that character is drawn. ...
0
votes
1answer
38 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
71 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
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 ...
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
0answers
88 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 ...
1
vote
1answer
129 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 ...
0
votes
1answer
107 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
155 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
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
75 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:
...
-4
votes
1answer
186 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
82 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
67 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
1answer
90 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
138 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 ...
0
votes
1answer
150 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 ...
0
votes
1answer
116 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
0answers
104 views
LWJGL scrolling up and down
So I am trying to make a scrolling system in LWJGL and Slick2D that scrolls items up and down in order:
import java.util.ArrayList;
import org.newdawn.slick.AngelCodeFont;
import ...
-1
votes
1answer
69 views
OpenGL incorrect rendering basic textures [closed]
texture.bind();
glBegin(GL_QUADS);
glTexCoord2f(0, 0);
glVertex2i(1, 1);
glTexCoord2f(0, 1);
glVertex2i(1, 720);
glTexCoord2f(1, 1);
...
0
votes
3answers
76 views
In exported jar file textures are not loaded
I am using LWJGL and Slick2D. I export project to .jar and use JarSplice to generate executable, so I don't need library files in the location where executable jar is. My problem is that if I run ...
0
votes
1answer
282 views
textfield not working with BasicGameState
I've tested TextField on a clean BasicGame and it worked. (I see the border and i can type.)
The code:
TextField lanText;
TrueTypeFont font;
public void ...
0
votes
2answers
57 views
How to set entity texture
I have problem with texturing entity, I have no errors or exception when loading texture but texture is not showed. Here is my code:
public class StartClass {
private static class Button extends ...
0
votes
1answer
68 views
Sorting LWJGL in Eclipse
I'm having a problem with LWJGL and I just can't seem to find a working solution. I'm developing a game for my university project and when I run the 'SimpleGame' code, I keep getting this error: ...
0
votes
2answers
1k views
No OpenGL context found in the current thread, how do i fix this error?
I'm working on a card game, and currently have a good foundation but I'm running into an error when I run it in eclipse. I'm also using slick 2d.
I can't post a picture yet so here is the error from ...
-4
votes
1answer
64 views
Error when trying to run simple program
I just installed slick2d and lwjgl. I tried to run a simple game and get the following error in the console:
Exception in thread "main" java.lang.ClassCastException: java.lang.NullPointerException ...
0
votes
0answers
119 views
Java LWJGL Slick TTF blur
I'm having a bit of trouble rendering textures and true type fonts at the same time.
The following screenshots portray my problem:
This shows the font rendering perfectly. This was before I was ...
0
votes
4answers
650 views
Textures not binding in OpenGL (LWJGL/Slick-util)
I have a problem with what seems to be binding the textures to a shape. When I do so, I get a white shape of the correct dimensions, the color given to it by Color.white.bind().
GraphicsManager.java
...
0
votes
2answers
89 views
Why do I need to disable GL_TEXTURE_2D after drawing string in order for shapes to render?
I'm using the Slick2D library in order to render text to the screen but in order to render gl shapes like Rect, I need to first disable GL_TEXTURE_2D. I'm just curious as to why that is needed. Why ...
2
votes
1answer
121 views
Java LWJGL blinking states
I have a problem, that when i hit the Return key, in the state INTRO (as default) it have to switch to GAME state. It does, but when it does, it blinks between INTRO and GAME State. The Text blinks, ...
0
votes
0answers
108 views
Java Slick making character rotate to selected degree {resolved}
So I have run into a issue while coding my game. I am using Slick Libraries and Light Weight Java Games libraries. I am trying to make my player (Plane) go to a certain area on the map. For example if ...




