Tagged Questions
The Lightweight Java Game Library (LWJGL) allows access to high performance crossplatform libraries such as OpenGL and OpenAL to write state of the art 2D and 3D applications with Java.
10
votes
1answer
377 views
Horrible performance loss when using Opengl FBO
I have successfully implemented a simple 2-d game using lwjgl (opengl) where objects fade away as they get further away from the player. This fading was initially implemented by computing distance to ...
7
votes
5answers
3k views
Revisiting the issue of LWJGL vs JOGL for game programming [closed]
There exists the question, "Java Game Programming: JOGL vs LWJGL?" but it's not exactly what I'm looking for, and it's over a year old (in which time JOGL has gone through some changes) so I'd like to ...
5
votes
2answers
6k views
LWJGL Game Engine Tutorial (Java)
I'm looking to create 3D games with LWJGL, but can't find any good tutorials for my skill level. Anybody have any suggestions?
4
votes
2answers
76 views
JMonkeyEngine crash on Intel video adapter
I am using JME in my application and sometimes it crashes with the following message:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) ...
4
votes
2answers
352 views
Java bitmap font: blitting 1-bit image with different colors
I'd like to implement a simple bitmap font drawing in Java AWT-based application. Application draws on a Graphics object, where I'd like to implement a simple algorithm:
1) Load a file (probably ...
4
votes
2answers
213 views
LWJGL and Ogg/Mp3
I want to ask for resources on how to load ogg/mp3 files and play them using the OpenAL facilities in LWJGL. The problem is
I want/need a pure java solution
Would nice if necessary libs are in a ...
3
votes
1answer
284 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 ...
3
votes
2answers
115 views
Java / OpenGL: Getting the image of a Canvas as a BufferedImage
I've got some code that initializes OpenGL to render to a java.awt.Canvas.
The problem is, I can't figure out how I can get the buffer of the canvas and turn it into a BufferedImage.
I've tried ...
3
votes
1answer
132 views
Eclipse: Packaging a JAR with natives
I have made a Java game using LWJGL, which requires some native files. It all works fine in Eclipse. I want to include the .dll files inside a JAR file, but everytime I try, LWJGL can't find the ...
3
votes
2answers
875 views
LWJGL port to android
Is there a LWJGL port for Android available (does not matter if the phone needs to rooted)
3
votes
3answers
387 views
What am I doing wrong when trying to run the this java test command for LWJGL?
I'm attempting to use the lwjgl library and I'm starting from scratch on a new Windows 7 install.
I downloaded the latest JDK 6 from the Oracle website. After installing it, I found that commands ...
3
votes
1answer
147 views
Noob question: Draw a quad parallel to the view
ok what I want to do is to draw a quad in the scene that lays on a plane parallel to the view. So it should appear flat.
More in particular, I think I didn't get very well how the mechanism of ...
3
votes
1answer
656 views
Opening a LWJGL window from a SWT app on Mac
I have a SWT app that opens a OpenGL window (using the LWJGL library) after a button is pressed. It is supposed to close it's main SWT window and open a new one with an OpenGL context. Works fine on ...
3
votes
2answers
945 views
opengl frustum culling without glGet* calls
Various examples of view frustum calculations are using glGetFloatv() to get the current projection and modelview matrices (GL_PROJECTION_MATRIX, GL_MODELVIEW_MATRIX), and based of that do some view ...
2
votes
1answer
21 views
Java: How exactly are character models and the like created in LWJGL?
Think about the games like Spiral Knights and Minecraft(Which I believe both use LWJGL) - How are the characters created? Does, at least Spiral Knights, use some other outside program to make them, ...
2
votes
0answers
74 views
problems getting the angle of two quaterions
Okay, so I'm trying to get the angle of two quaternions, and it almost works perfectly, but then it jumps from
evec angle: 237.44999653311922
evec angle: 119.60001380112993
and I can't figure out ...
2
votes
2answers
55 views
Get position of object in opengl after transforms
I would like to get the coordinates of an object in OpenGL. I draw a quad. And after that I do some transforms like GL11.glTranslatef() and GL11.glRotatef().
GL11.glBegin(GL11.GL_QUADS); // draw ...
2
votes
1answer
102 views
Slick2D Movement Issue
So, I converted a game to Slick2D. The movement is broke, and I am at a loss. Before, we used KeyPressed and keyReleased methods, but now with Slick2D movement isn't working right.
Yea, nothing has ...
2
votes
0answers
102 views
Passing matrices to glsl just won't work?
Im currently using lwjgl and programming glsl 1.20.
This is how the code that tries to send the 4x4 float matrix to the shaders looks like:
int normalMatrixLocation = ...
2
votes
2answers
88 views
Need some help implementing VBOs with Frustum Culling
i'm currently developing my first 3D game for a school project, the game world is completely inspired by minecraft (world completely made out of cubes). I'm currently seeking to improve the ...
2
votes
3answers
67 views
A vector (0,0,0) faces in what direction?
In OpenGL (LWJGL to be more specific), if the camera's facing direction is defined by the vector (0,0,0), where does it face?
EDIT:
So guys, I've read your comments and answers and I can proudly say ...
2
votes
2answers
107 views
Why is my Canvas not drawable after adding it to my JFrame?
I am writing a little game that uses a Canvas instance to draw on (in case it is familiar; I use the game library LWJGL).
Now I have created a main menu for my game that consists of a single JPanel, ...
2
votes
2answers
77 views
More struggles with 3d graphics using the lightweight java gaming library
I am having more trouble with rendering 3d objects in java, heres my new problem I have managed to import the needed libraries (gluPerspective, etc.) however when I run my java application in the ...
2
votes
2answers
83 views
glBufferDataARB or glBufferSubDataARB?
I am developing a tile-based physics game like Falling Sand Game. I am currently using a Static VBO for the vertices and a Dynamic VBO for the colors associated with each block type. With this type of ...
2
votes
1answer
110 views
OpenGL alpha blending
I've found 5349574673 pages on alpha blending and I still can't get the desired result.
I'm trying to make gif/png files display properly (WITH transparency/translucency) using opengl.
Here's my ...
2
votes
1answer
80 views
Tiling a background in OpenGL
I'm sure this is a relatively simple question, it's just one thing I've always had trouble wrapping my mind around.
I have a 512x512 background I'd like to tile "infinitely." I've searched around and ...
2
votes
0answers
138 views
LWJGL - Problems implementing 'roll' in a 6DOF Camera using quaternions and a translation matrix
I've spent a couple weeks on this issue and can't seem to find a proper solution and need some advice.
I'm working on creating a Camera class using LWJGL/Java, and am using Quaternions to handle ...
2
votes
2answers
103 views
Strange issues with texture mapping
I am attempting to use texture coordinates from a pre-generated PNG file on a 3d world of quads loaded into Java with LWJGL's slick-util extension.
The texture file is 192x96pixels, and properly ...
2
votes
1answer
126 views
Using the stencil buffer to merge dynamic shadow
I'm making a splitscreen coop 2D from-the-top game with LWJGL. I'm currently trying to figure a smart way of merging two field of vision with the stencil buffer.
The whole point is that you are able ...
2
votes
7answers
91 views
Instantiate a class or not?
I'm looking at some lwjgl's tutorials and occurred to me instead of keeping the class instantiated in a variable, instantiate it and call the method directly without saving the object.
I was ...
2
votes
1answer
271 views
Passing values from my Java program into GLSL using lwjgl
Lets say I have a fairly complex frag shader for figuring out just how much light goes to each pixel:
//shaders/screen.frag
varying vec4 vertColor; //unlit color
float intensity = 1.0; //lighting ...
2
votes
3answers
301 views
I need a solution to starting Slick 2D/LWJGL Java project via command line. Help?
Currently I am starting my Slick 2D application via this batch file-
java -Djava.library.path=lib -Xms512m -Xmx512m -jar myapp.jar %1
Where lib is the folder that contains the LWJGL/Slick libraries ...
2
votes
5answers
609 views
Can Java2D be as fast as LWJGL and JOGL?
I've heard that Java2D uses OpenGL behind the scenes to do it's rendering, and I've wondered if it's worth it to use JOGL and all it's native libraries for my program which is simply a 2D side ...
2
votes
1answer
278 views
Taskbar icon with lwjgl?
I want to add a taskbar icon for my running lwjgl process on Windows 7.
Display.setIcon changes successfully the icon in the topleft of the window, but not in the taskbar.
What do to?
My code, ...
2
votes
1answer
231 views
Getting object coordinates from camera
I've implemented a camera in Java using a position vector and three direction vectors so I can use gluLookAt(); moving around in `ghost mode' works fine enough, but I want to add collision detection. ...
2
votes
2answers
780 views
LWJGL OpenGL sprite sheet
I am new to OpenGL and am currently trying to render a cube with four faces, each with a different texture.
As you all know, having a separate texture for each face type is very memory intensive and ...
2
votes
3answers
327 views
Avoid Flickering with LWJGL
In the context of a Java Rubik's Cube application I am trying to animate the cube actions performed by the end user.
To do that I am just using rotations and many redraws as following:
...
2
votes
1answer
982 views
Browser based 3D games with LWJGL in Java
I want to create a browser based 3D game using LWJGL with the Java programming language.
Can anyone please provide me with a small example of creating a window and a box in it?
2
votes
3answers
1k views
Where can I find sample uses of LWJGL?
I have seen the official demos on lwjgl.org but I would like to see some more tutorial level examples.
1
vote
1answer
47 views
Libgdx not using Opengl ES 2.0
Preferably, I'd like to use OpenGL ES 2.0 for a new 3d game I started making. Anyway, I've been developing it on an Ubuntu PC (not top-of-the-line but decent) I bought in 2010.
...
1
vote
0answers
34 views
Java LWJGL: When I call “GL11.glEnd” the polygon disappears?
When I call "GL11.glEnd" the polygon disappears. If I leave that one line "GL11.glEnd" out, then it stays on the screen, but when I put it in, the polygon I was drawing disappears.
package package01;
...
1
vote
1answer
32 views
Java: Modeling/Rendering an interactive hexagon-shaped graph/chart w/ LWJGL
How do I go about creating a hexagon-shaped graph / chart, viewable on the display window, similar to the one in the middle of this screen-shot?
Clicking on one of the buttons on the outer edge of ...
1
vote
1answer
27 views
View mesh in OpenGL (lwjgl)
I'm using LWJGL. I'm trying to create a simple 3D map using GL_TRIANGLE_STRIP and it works fine. But now OpenGL automatically fills up every triangle. I was wondering if it is possible for OpenGL to ...
1
vote
1answer
30 views
Basic LWJGL triangle w/ OpenGL
I'm trying to get a simple triangle drawn in Java using LWJGL. I've had a little experience with OpenGL (in C++), but that was also a while ago.
I'm trying to get a simple triangle up, each with a ...
1
vote
1answer
55 views
Color picking in the openGL
i've been trying to implement color picking and it just aint working right. the problem is that if initially paint my model in the different colors that are used for the picking (i mean, i give each ...
1
vote
1answer
41 views
OpenCL kernel arguments
I've just started fiddling around with OpenCL and I've come across a problem: I do not know how to pass complex data structures as arguments. I'm using LWJGL's OpenCL binding, and the example provided ...
1
vote
1answer
43 views
LWJGL / OpenGL Rendering Questions (Center Render/Bending Polygons)
So I am creating a simple 3d render engine in the LWJGL, and I am having issues with the fact that when I back up from an object, it travels to the left and upwards (towards 0,0) when I really need it ...
1
vote
1answer
68 views
LWJGL not rendering textures correctly?
I use LWJGL to render everything in my game I am making, and I use it to render backgrounds, which is okay, but when I render things less than the full size of the display, it shows random lines and ...
1
vote
0answers
45 views
Best way to render and update an image each frame?
What is the best way to edit singular pixels of an texture multiple times per frame? I have tried using a couple ways to no avail. What is the most optimal way to do this? I have tried using ...
1
vote
2answers
37 views
java.io.IOException Difficulty when adding “player” texture into screen
I get this strange error from loading "Player.png" file from the Player Class.
I understand that my organization of the code is very sloppy and the methods I use are terrible. half of the code is ...