The Lightweight Java Game Library (LWJGL) allows access to high performance crossplatform libraries such as OpenGL, OpenCL and OpenAL to write state of the art 2D and 3D applications with Java.

learn more… | top users | synonyms

0
votes
0answers
25 views

how to implement a moving road in car racing game using java/lwjgl? [closed]

I am trying to understand the concept of racing game. While playing games, I have noticed that the car stays in the same position(in the y axis), rather the background road seems to move backward.If I ...
0
votes
1answer
23 views

Learning LWJGL Game creation?

I would like to learn LWJGL, but I've been having a hard time locating any good tutorials. I've been trying to find tutorials on creating the actual game objects. I've pretty much figured out how to ...
1
vote
1answer
22 views

LWJGL: Applying a “curve” to a landscape

I am interested in creating a shader effect similar to that of the game (don't shoot me for using this example) Animal Crossing. As you move forward and backward along the terrain, the world "curves" ...
0
votes
0answers
8 views

(LWJGL) How to render a plain colored object with glBlendFunc() on

I've put the line glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); in my OpenGL initialization code so the transparent parts of my textures stay transparent. Now I want to add a simple colored ...
0
votes
1answer
28 views

LWJGL glOrtho and drawing axies

This is on a 2d canvas. Ok i want to make glOrtho add to x when going right and minus when going left and i want to add when going up and minus when going down. But when i draw it draws the objects ...
0
votes
0answers
14 views

adding texture to VBO with png texmap in LWJGL not working well

I was doing a VBO and able to load all the data of OBJ file but now I have problem adding texture to it. what i did is that I use the slick library to get the texture file and bind it to the VBO ...
1
vote
1answer
46 views

Pointers - decreasing memory consumption

I have been writing a Minecraft replica for OpenGL practice (as many do I guess), however after writing the basic rendering API I noticed the real Minecraft uses a lot or memory - around 800MB! I can ...
0
votes
1answer
57 views

Wrong usage of OpenGL?

I wrote a small particle system in Java with the LWJGL. So therefore I am using openGL. Now I read, that changing a texture is very slow. So I make sure, that I only change a texture which is used for ...
1
vote
0answers
17 views

How do i make 3D collision detection with my terrain and my character? LWJGL

I have a problem with collision detection 3D. I made a heightmap as a .bmp image, and im loading it in the game. Then i have a .obj model as my player. But how would i check for collision with the ...
0
votes
1answer
21 views

How do you use a texture after releasing it?

This may sound like an odd question, but I can't figure out textures in this situation. I am making a game for class where you get a mouse through the maze and lose if you touch a wall. After the ...
-1
votes
0answers
36 views

Can I use unity 3d or udk while learning LWJGL?

I am learning LWJGL. unity 3d and UDK are the best game engines I notice when I Google. But game engines for java or LWJGL are j Monkey engine, adore 3d, libgdx etc. Can I use unity 3d or udk while ...
-1
votes
0answers
30 views

Is there a scripting language to embed on a Java app that has a common interface in PC and Android? [closed]

My current project is a multiplatform application developed in Java using libgdx for a common framework for graphics. The app that should allow extensibility by users to script their own "character ...
0
votes
1answer
26 views

Changing states when entities intersect

I am making a maze that the player has to navigate with the mouse, but they lose when the hit a wall. I want to make sure the player has the mouse in the right place to start, so I am trying to switch ...
0
votes
1answer
11 views

Including LWJGL on Netbeans via Maven

I have a problem with including LWJGL on Netbeans via Maven 2. I create my own project, and I added new depency. I haven't problems with writting code, but when I try to compile and run it I always ...
1
vote
1answer
32 views

How to generate a simple terrain using for loop [voxel]

I'm trying to generate a 10*10*10 chunk of blocks for my voxel game, rendering 1 block is perfectly fine but when I use a for-loop it messes up, is the following correct?: final int chunk = 10; ...
0
votes
0answers
10 views

LWJGL - Help moving textured cube

package com.idonedid.game; import org.lwjgl.LWJGLException; import org.lwjgl.opengl.Display; import org.lwjgl.opengl.DisplayMode; import org.lwjgl.opengl.GL11; import org.lwjgl.input.Keyboard; import ...
0
votes
0answers
11 views

Java LWJGL get sound output amplitude

I was wondering, is it possible to play music and react on the amplitude(or pitch), like how hard the music is, while it is playing. I managed to play sound using the tutorial on the LWJGL wiki, but ...
1
vote
0answers
18 views

drawing from a byte array in java LWJGL

I am creating a raycaster using java, LWJGL and Slick2D. The problem is that I can't seem to figure out how to draw from this byte array correctly. This is how I put my texture into the colorbuffer. ...
0
votes
0answers
6 views

2 or more lightings in lwjgl?

How can I make multiple lights in lwjgl? example ligthing from north ,west,east,and south on a 3d dimension. I tried to do this but it didint work on my render method glLight(GL_LIGHT0, GL_POSITION, ...
0
votes
0answers
14 views

Trouble Texturing a Rectangle Entity

While learning how to use lwjgl, I followed a tutorial where we textured quadrilaterals using code like this: lBegin(GL_QUADS); glTexCoord2f(0, 0); glVertex2i(0, 0); //top ...
0
votes
2answers
50 views

Easiest way to do collision LWJGL JAVA

Ok so I have a ArrayList which contains all the tiles that need to be drawn to the screen and I have the player that is moved with the arrow keys, but I am unsure how I could implement collision ...
1
vote
0answers
17 views

lwjgl double-click mouse events

I'm currently teaching myself LWJGL's mouse class, but there is something I still don't know how to do. I want to be able to handle double-click mouse events, but I don't know how.
-3
votes
1answer
26 views

LWJGL - 2D Text on the window [closed]

I'm trying to have an information section on my screen that will show score and other variables. How do I display text in the window? I googled it and I understood you have to make a bitmap of the ...
2
votes
2answers
51 views

Get original texture color in a Fragment Shader in OpenGL

So, I need to make a shader to replace the gray colors in the texture with a given color. The fragment shader works properly if I set the color to a given specific one, like gl_FragColor = vec4(1, 1, ...
0
votes
0answers
21 views

LWJGL Test Error - Could not find or load main class java

I've just downloaded the LWJGL archive and unzipped, and am testing via command line as specified on the site. However, I can't seem to get it to run. java -cp ...
0
votes
0answers
8 views

Multiple lighting in lwjgl?

Is there a way of doing a multiple lighting in lwjgl? I was planning to create a simulation of light that need multiple lighthing source like light from north , south , east and west in a 3d ...
0
votes
1answer
29 views

Java game crash twice on startup without error message

my friend's and I wrote a game in Java using LWJGL and Slick-Util. In the main function, the first line I have is System.setProperty("org.lwjgl.librarypath", System.getProperty("user.dir") + ...
0
votes
2answers
68 views

Java 2D Game Engine [closed]

Hopefully people can help me with this question as they have in the past. As the year nears its end, we have been assigned another rather open-ended programming assignment in our class. As to be ...
0
votes
1answer
15 views

Checking the wave key in LWJGL

How do I check the key "~" in LWJGL? I tried typeing "Keyboard.KEY_WAVE" but that didn't work. Any ideas? Also I'm using Slick2D with it, does that have support for the key?
0
votes
1answer
43 views

Switching from render buffer to depth texture

Here is my code for creating a new FBO. Right now, I am using a render buffer. /** * Creates a new FBO. * @param width The width of the FBO to create. * @param height The height of the FBO to ...
0
votes
2answers
57 views

LWJGL - Text's color changes background's color

I have a serious problem with my LWJGL program. If I set one of my text's colour, the background's color changes, too. I think I know why, I just put all of the drawing things in an infinite loop, ...
0
votes
0answers
16 views

LWJGL vs freeglut Keyboard

In LWJGL you are able to do the following: Keyboard.isKeyDown(Keyboard.KEY_X); And i was wondering if their is an equivalent in freeglut (yes I am aware of this glutKeyboardFunc(keyboard);)
0
votes
0answers
46 views

Graphics drawn onto Full Screen using LWJGL not the correct size

So I'm trying to learn to use LWJGL and I created this basic application which puts the application into full screen then draw some graphics which fill the screen. Heres the code: import ...
0
votes
0answers
25 views

LWJGL VBO Generates seemingly random vertices on Radeon HD 6670?

I was working on a block world with a chunking system and I encountered a bug with VBOs. My cube world seems to generate random vertices, but only on the Radeon HD 6670. I'm now wondering if this is ...
0
votes
0answers
22 views

How to multisample FBOS

Notice: I am using LWJGL. Here is my code for creating a new FBO: /** * Creates a new FBO. * @param width The width of the FBO to create. * @param height The height of the FBO to create. * ...
0
votes
0answers
58 views

OpenGL - Vertex Array Objects and Mapped Vertex Buffer Objects

I am using VAOs and Mapped VBOs together to get as much performance as I can. Now, my VBOs are interleaved in this form VCVCVCVCVCVC so there is vertex of 3 floats then a color of 4 floats. My ...
0
votes
1answer
15 views

LWJGL - loading sounds and fonts without slick

I'm writing Minecraft-like game. For loading Textures and fonts(currently there is no sound) I use slick. Slick is no longer developed and maven repository is unavaible. Is there any other library ...
0
votes
1answer
26 views

OpenGL failing to use glTranslate and glRotate properly

I'm making a little game here, but there is a small issue with OpenGL. When I translate the camera, and rotate the player's image hoping it would look the same except with a slightly titled texture ...
0
votes
1answer
42 views

Clarification about octrees and how they work in a Voxel world

I read about octrees and I didn't fully understand how they world work/be implemented in a voxel world where the octree's purpose is to lower the amount of voxels you would render by connecting ...
1
vote
0answers
17 views

Distributing LWJGL launcher

I recently created a launcher for LWJGL programs which downloads the LWJGL JARs and natives, the Slick JAR, and the main JAR for the program (all configurable in the global variables), and I'd like to ...
0
votes
1answer
23 views

Need help on how to make a sphere gradient on a gluSphere

Hello I've been trying to find out information on how i can add a gradient from the top of the sphere to the bottom. Is it possible or do i have to texture the sphere? Sphere sphere = new ...
0
votes
1answer
31 views

OpenGL perspective distorting scene much more than expected along z axis

I'm working in LWJGL and have been struggling for a while to write a program that allows for simple 3d viewing of a scene. The major issue that I'm running into is that whenever I apply perspective, ...
2
votes
2answers
60 views

OpenGL - Clipping in 3D space

I've been trying for so long now to find how to do this: Clipping outside a defined area in OpenGL. I don't want to clip using the viewport or scissors btw. I've been searching like crazy and all I ...
0
votes
1answer
20 views

LWJGL Camera streches and shrinks shapes

I've been looking around and i couldn't find an answer to this but what i have done is create a cube / box and the camera will squash and stretch depending on where i am looking at. This all seems to ...
0
votes
1answer
67 views

Is there a clear performance difference between GL_QUADS and GL_TRIANGLE STRIP?

So I was looking around for optimizations for my program and I was wandering if using QUADS is the most efficient way of doing it.. I am using Mapped interleaved VBOs for QUADS vertices and TEXTURE ...
0
votes
1answer
24 views

OpenGL lwjgl won't draw polygon

I was doing and creating a triangle in the lwjgl openGL but it doesnt display the square and the triangle that I specify. I am stuck and I cant seemingly make it work, I am new to openGL lwjgl. why is ...
0
votes
0answers
26 views

LWJGL change Cursor, BufferedImage to intBuffer?

I want to change the Cursor with LWJGL, but I dont know how to create the new Cursor because the Constructor dont want to have a Texture or BufferedImage, but a intBuffer: public Cursor(int width, ...
0
votes
1answer
69 views

Java - Slick2D - Dynamically Creating Objects

Okay, so I understand that Images can be rendered in the render statement. I do have one question, though. Is there a way I can create an object dynamically (e.g. Plane class) and have an Image be ...
1
vote
1answer
51 views

Enabling OpenGL extensions

I'm trying to perform some integer operations (division and modulo) in my GLSL shader, but they don't seem to work and I read that I need to enable EXT_GPU_shader4 in order to get integer operations. ...
1
vote
0answers
14 views

Acknowledged receipt of canvas death jme3

I am using JmonkeyEngine SDk 3 to develop a software simulation program. To cut the story short, I created a canvas in an internal frame inside a swing Jframe object. when I close the internal ...

1 2 3 4 5 18