-
-
Notifications
You must be signed in to change notification settings - Fork 651
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LWJGL3 Starter Kit #199
Comments
I think your post touches two things, which I'd like to address separately.
Another aspect which I read between the lines is: Learning OpenGL. Regarding what demo to pick: With the complexity and versatility of OpenGL comes the fact that different people want to learn different things, based on what they want to achieve or already know. In my opinion, the only point that can be addressed successfully is providing scaffolding/setup, so that people at least don't have to fight with their IDEs anymore. :) |
I know what you mean and I fully agree, there will be no "one fits all solution", but I think that's not necessary. JMonkeyEngine used a colored cube as the initial setup and i think that's a good place to start. It should just bring people to the point where they can try around with stuff, like change the cube colors, make two cubes, rotate one of them, etc. That's how I would have wanted to start learning, instead of spending the first few hours going through crash reports and looking at empty screens. And from that point on, I would be much more eager to experiment knowing that I could always start with a fresh copy when I would mess everything up. I would love to know what other people would consider a good starting setup, but for me it would basically be what I would have after working through the first half of the lwjglwook: Basic classes for
Aaaand yeah, optionally package the whole thing with a good build script. I did not find the setup that complicated, but adding the native dependencies might help some people. Also, I would not mind putting a dependency on JOML into the Starter Kit, since that's probably the first thing I install anyway. ;) |
I'd like to also throw JOML's demo repository in here. It contains some "camera" demos, such as the FirstPersonCameraDemo where you can walk around or the ShaderExample with a rotating cube. |
Another thing to consider would be the OpenGL version. But I like the idea and it shouldn't be too complex to create some boilercode with some basic classes and a default vertex and fragment shader. |
I agree. Also in order to fully implement #100 the way I envision it, we would need some small start project packed alongside the packaged modules/dependencies to get people going. |
The JOML stuff looks neat, such a shame I did not find that earlier... I was assuming LWJGL3 was not really intended to be used with Legacy OpenGL anyway. I would at least not make the Starter Kit support using Legacy stuff. But maybe that's just my impression. Looking at the labels...I would love to contribute, I'm just not really sure how. I suspect with my current knowledge about most of the stuff involved, I would break more than help. :/ |
@TheOnlySilverClaw Maybe this project can be interesting for you: In Release 0.0.4 pre-alpha you have an working triangle example. |
@JuKu I skimmed over it and I'm not entirely sure what it is supposed to be. Looks like a small game engine? |
@TheOnlySilverClaw It should be an little game engine prototype, but its Work in Progress. What do you want? |
In my opinion, the goal should not be to provide people with whole render or game engines. Neither should the goal be to teach people OpenGL/OpenAL/Vulkan/.... There are better resources for this.
We should focus on getting people to understand the design decisions made by LWJGL 3 so that they can feel comfortable using the various libraries without being surprised by unknown constructs/concepts. |
I think it should be as little as possible, but show what Kai mentioned. |
@TheOnlySilverClaw But as @httpdigest said, LWJGL isnt an game engine. jMonkeyEngine ist an 3D game engine, based on LWJGL and other tools. There are many abstraction, so you dont need to use OpenGL anymore, only for extensions. If you want to know, how you can draw an triangle (an rectangle is only 2x triangle), take a look of this classes on my project: In my project i have added more abstraction, so class Triangle holds data of triangle (coordinates of all 3 edges and color) and class GPUTriangle contains the specific OpenGL calls for this, so i want to add support for other graphic pipelines without changing your program code. |
For the second or third time... I know how to create a triangle. I also know that LWJGL is not a game engine. I'm just saying it would make sense to have a clean example to show how the work-flow for rendering something would be and rendering a cube would be a good starting point for a lot of users. That assumption might be biased, but it's usually one of the examples all OpenGL tutorials go through, too. From my experience, OpenGL is intimidating, because you spend a lot of time going through boilerplate code before see any visible result and you cannot use System.out.println or anything inside of shaders to figure out why it does not work. Giving a good starting point would probably help a lot of users. |
We never got around to implementing this request, but many years have passed and there are plenty of resources available now for people getting started with LWJGL3. Even the projects mentioned in the original post (lwjgl3-demos and lwjglbook) are still active and rich with content. |
Goal
The boilerplate code that is written in most LWJGL3-applications should be put in a separate repository, so new users have a base to start with. They could pull the repository, import the code into their favorite tool, run it and see a simple example, like a triangle. Or even a textured cube that can be rotated.
Motivation
First of all, I know, LWJGL3 is supposed to be lightweight and low-level and all, and people can try to find a higher level framework/engine. But some people, like me, would actually love to use it, while not being experts in OpenGL right from the start. With the help of some tutorials and hours of trying around, I finally managed to get a quad on the screen, but I do not see why everyone has to go through that frustrating process. One mistake, like picking the wrong one out of a few dozen GL_SOMETHING constants or methods can cost hours of debugging, because there is no exception thrown and all you can see is a blank screen.
Also, I know it helps to understand the basics, but I usually learn much better from reading code. So, why not just give new users some working code to start with? If they do not like it, let them change it. If they do not need the training wheels, let them use the bare bones LWJGL3 as usual. This suggestion is meant for the noobs like me, who are willing to learn, but would like to see some progress before going through 20 pages of tutorial, creating a window, writing a shader, creating a program, creating a mesh, etc.
How to do it?
Technically, most of the suggested things already exist in the demo suite, SilverTigers's tutorials, the glorious lwjglbook and a lot of other places. So, maybe pick the best and most used parts, arrange them to work as a minimal "cube in the void" scene, put those into an official repository and ensure that it's still working as intended after every update. I would volunteer to do it, but as mentioned, I'm still a beginner myself.
The text was updated successfully, but these errors were encountered: