Hello Guest

The uttmost step 1?

  • 11 Replies
  • 16381 Views
The uttmost step 1?
« on: February 28, 2011, 22:24:31 »
.
Hello All.
Intro.
I'm not a programmer, but I would like to be. For the past 7 years I've been a level designer in the source engine, so I have a lot of experience in game design.... Just not the programming side.

Question.
So,(For the past month) I've been running around in this huge world of Java trying to find the starting point for building a 3d engine. Every time I think I've found it, the tutorials start talking about something they never taught me, so I continue my search for the beginning.
I understood from the beginning that building a 3d engine is no easy task, and I boarder on the edge of stupidity for asking this kind of question.
And I now understand that the java language is a huge world all in it's own.

But can anyone throw me a link to that special place where it explains the most basic of things?
Like... a wiki for words. Something to tell me everything there is to know about the word "Method" or "class" or "Syntax"
The problem I am running into (I think) is that I am not finding a place to teach me the very most basic stuff. The meanings of key words. The way the computer is seeing the code. The reason commands and key words do things. etc etc....


Goal:
I've foolishly got the idea in my head that I might be able to learn how to program an engine. Not an advanced engine of any kind. Basically all I'm shooting for right now is to be able to walk over to a cube, and press the use key to make it disappear. Or walk up to it, press the use key, and a different cube appears.... just I/O work.

How basic is this?
http://java.sun.com/developer/onlineTraining/java3d/j3d_tutorial_ch1.pdf
Is J3D a good thing to start with?


*

Offline kappa

  • *****
  • 1319
Re: The uttmost step 1?
« Reply #1 on: February 28, 2011, 22:33:29 »
Java3D is basically dead, its not a project i'd recommend you pursue.

One of the best java games resources atm is the Java-Gaming.org forums, a large amount of the java gaming community gathers there.

LWJGL is a pretty low level library, it'll basically just give you raw access to OpenGL, OpenAL and OpenCL. So basically you've got to build everything on top of it but it is an excellent base for game engines. You should start with the lwjgl basics tutorials found here, also the lwjgl wiki is a useful resource. Then move onto general OpenGL tutorials, since lwjgl is just a binding to the c version you can pretty easily adapt opengl tutorials written for other languages.

hope that helps.
« Last Edit: March 01, 2011, 09:23:25 by kappa »

Re: The uttmost step 1?
« Reply #2 on: March 01, 2011, 13:23:51 »
Since you know nothing about programming, I would suggest starting by buying a book (i.e. a hardcopy from a bookstore ;D). Something named "Learn Java in 21 Days" or something like that.
Attempting to learn how to program a 3D engine without having any knowledge about programming in general sounds like a recipe for disaster to me. 3D engines (even simple ones) can be fairly complex if you have no knowledge about what you are doing.

Quick search found: http://www.amazon.com/Beginning-Programming-Java-Dummies-Barry/dp/0764588745/ref=sr_1_5?s=books&ie=UTF8&qid=1298985491&sr=1-5 (Note: I'm not saying you're a dummy. It looks like a good book that explains the basics about programming in general ;D).
Programmers will, one day, rule the world... and the world won't notice until its too late.Just testing the marquee option ;D

Re: The uttmost step 1?
« Reply #3 on: March 03, 2011, 19:12:44 »
.
@kappa
Even if Java3D is useless as a platform to build an engine on, Is it a good place to get an understanding of how 3d engines work?
I've been reading the first chapter for a few days. Very complex stuff, but I am understanding it.

@Fool Running
I have thought about buying a book. But sadly I think I'm one of those idiots who have to learn the hard way.  8)
But that's mostly just because the hard way is also the free way.... And it does have a small flavor of bragging rights to learn without spending a cent lol.

And though I'm not really a programmer... I do have (I think) a very good understanding for how complex it really is. Like... I've never designed a roller coaster track, but I have designed and ridden the roller coaster cars. So I've got a decent idea how the track would be built. But I've never tried it.

Thanks for your help guys.  :)



*

Offline kappa

  • *****
  • 1319
Re: The uttmost step 1?
« Reply #4 on: March 03, 2011, 19:21:52 »
@kappa
Even if Java3D is useless as a platform to build an engine on, Is it a good place to get an understanding of how 3d engines work?
I've been reading the first chapter for a few days. Very complex stuff, but I am understanding it.

Well it will be very difficult in getting help from other people, if you must use a 3d library like java3d, then I recommend that you pick one of the following instead Ardor3D, jMonkeyEngine, jPCT or Xith3D.

Re: The uttmost step 1?
« Reply #5 on: March 03, 2011, 21:49:45 »
.
Ahh, I see, thanks.

Re: The uttmost step 1?
« Reply #6 on: March 05, 2011, 18:53:54 »
.
New question;

I'm sitting here trying to follow this tutorial, as I have done before. And it tells me to "download LWJGL from its sites" To which I am redirected to here.
But the tutorial doesn't specify what I'm supposed to DL, so I download them all and try to keep going on the tutorial.
Then the tutorial just says "Extract the library to somewhere on your computer."
So, Still having no idea which file I was supposed to have downloaded in the first place, I search through All of them to find there are no folders with the name Library...

So I am very frustrated because I have no idea what I'm supposed to do.....
And I'm not mad at you guys.... It's just the thing that annoys me THE MOST when I'm trying to learn something, is when the tutorials tell me to press some button that doesn't exist, or tell me to do something I have no idea how to, or expect me to know things that were never explained before hand....
Sighs....



*

Offline kappa

  • *****
  • 1319
Re: The uttmost step 1?
« Reply #7 on: March 05, 2011, 19:02:23 »
you need to download lwjgl-2.7.1.zip and extract it somewhere.

The lwjgl.jar will be in 'jar' folder and the native files in the 'native' folder.

hope that helps.
« Last Edit: March 05, 2011, 19:04:54 by kappa »

Re: The uttmost step 1?
« Reply #8 on: March 06, 2011, 00:32:30 »
.
New question;

I'm sitting here trying to follow this tutorial, as I have done before. And it tells me to "download LWJGL from its sites" To which I am redirected to here.
But the tutorial doesn't specify what I'm supposed to DL, so I download them all and try to keep going on the tutorial.
Then the tutorial just says "Extract the library to somewhere on your computer."
So, Still having no idea which file I was supposed to have downloaded in the first place, I search through All of them to find there are no folders with the name Library...

So I am very frustrated because I have no idea what I'm supposed to do.....
And I'm not mad at you guys.... It's just the thing that annoys me THE MOST when I'm trying to learn something, is when the tutorials tell me to press some button that doesn't exist, or tell me to do something I have no idea how to, or expect me to know things that were never explained before hand....
Sighs....

The wiki probably has more up-to-date tutorials and more information:
http://www.lwjgl.org/wiki/index.php?title=Main_Page
cool story, bro

Re: The uttmost step 1?
« Reply #9 on: March 08, 2011, 17:28:35 »
I don't mean to discourage your interest in LWJGL, but are you sure that's where you want to start? I recently learned the basics of the library myself, and it's definitely not the easiest thing to learn on the fly. jMonkeyEngine in particular has good documentation.

My honest opinion is that you should learn how to code for a higher-level library and then utilize that experience to understand the low level. On top of that, I would definitely not recommend LWJGL if you have zero programming experience (I don't think scripting is applicable, either). For one thing, there are relatively few tutorials proper, and while the NeHe lessons are good, they're for a different language entirely and certain aspects are old. That language hump wouldn't be too bad if you knew Java inside and out, but it's not a way to begin fresh.

Why set your sights on one particular library over another when you aren't advanced enough to know/require particulars? The packages kappa suggested seem like they would be much better suited to what you're trying to do. If you go with LWJGL, you're trying to learn Java, OpenGL, OpenAL, and low level game programming before you can even get anything going. You'll accomplish these things much faster if you take it in steps - learn java, then game programming, then OpenGL/OpenAL.

Re: The uttmost step 1?
« Reply #10 on: May 08, 2011, 00:21:37 »
Learn Java first, then try to do 3D stuff. If you don't know jack about classes and methods it doesn't make a whole lot of sense to start with advanced stuff. You'll probably get nowhere and will give up after a week.

Learn programming first. It doesn't matter much which language. Basic? JavaScript? Whatever you like. http://smallbasic.com/ is pretty good  for beginners. When you've mastered the ins and outs of the language of your choice, learn Java. When you know that pretty well (i.e. you could write 1000+ lines programs without getting lost) then you could start doing 3D stuff.

And most important of all: Never give up. It's worth it :)
Download Cultris II, the fastest Tetris clone from http://gewaltig.net/

Re: The uttmost step 1?
« Reply #11 on: May 08, 2011, 01:32:09 »
Learn Java first, then try to do 3D stuff. If you don't know jack about classes and methods it doesn't make a whole lot of sense to start with advanced stuff. You'll probably get nowhere and will give up after a week.

Learn programming first. It doesn't matter much which language. Basic? JavaScript? Whatever you like. http://smallbasic.com/ is pretty good  for beginners. When you've mastered the ins and outs of the language of your choice, learn Java. When you know that pretty well (i.e. you could write 1000+ lines programs without getting lost) then you could start doing 3D stuff.

And most important of all: Never give up. It's worth it :)

In my opinion, I would suggest going ahead and learning Java first.  No reason to learn basic, javascript, etc. first.  I don't really think Java is that hard of language to go ahead and learn first anyway; just buy some good books (check out reviews on amazon and actually look through them).  It's also difficult (not impossible) to really mess up your computer, as Java uses garbage collection.  Even colleges will start you out in Java, even if you have no programming experience.  If you wanted to learn Chinese, I wouldn't say to learn Japanese first, even though there are similarities and Japanese is easier.  I would tell you to learn Chinese.  Just make sure that you're dedicated, have good resources, and actually take the time to do some programming everyday.
cool story, bro