Anyone else run into the "idk what programs to make" issue?

Started by
33 comments, last by Anri 11 years, 2 months ago

Bill, my friend, lets be patient for a moment.

Answer the following questions, and just be honest so we can help( believe it or not, we are a nice bunch! happy.png )...

1) Have you ANY programming experience whatsoever?

2) How much math skill do you have?

3) Have you done any 3D stuff in packages like Maya, Max, Blender etc?

4) Do you have any education in the field of computing or IT?

...its a bit vague what your current situation is, and so I apologise in advance if those questions are in any way degrading to you. But just answer each question for me. And I will reply...

Regards. Steve.

Yes

I plan to refesh my memory on everything from algebra up to the stuff needed for 3D math.

No, but I am working towards learning Blender3D.

No, I am self teaching, I plan to go to college here soon though. Until then I am self teaching.

Okay, so you know a bit about programming(I will assume a beginner in C++ and use it as an example from here on), you don't know the maths involved or have forgotten it, and you have not loaded up any 3D program whatsoever...

1) Lets talk C++ and upcoming education. This should be your main priority and you need to learn programming like the back of your hand. Enrol in a course at College that teaches a computing language and the basics of computing. Does not matter if its teaching C++ or not - just do it. Now, in your own time, learn C++ from SAM's Teach Yourself C++ in 21 Days. So long as you've installed Visual C++ Express, you can work through it. If you really want to be able to program games then just see this advice through. Being self-taught is important, but if you can complement it with some formal education then you will learn it much quicker.

2) Maths. Second most important thing you need to learn. Definitely look at trigonometry first(find out what SohCahToa is!), and then basic substitution in Algebra. You might be able to mix in Maths with your college education, which would be a bonus. Start small and just keep at it, but don't avoid it.

3) Blender, Max, Maya and all things 3D modelling & animation. This is not an easy thing to do, although it has become much easier in recent years. If you can, learn either Max or Maya. They are the top dogs of that industry and a worthy addition to your CV. On the other hand, you can do the same stuff in other packages, and like programming, its 90% what you know about 3D in general rather than what tool you use. Which ever tool you use(I use Silo, Blender & Paintshop Pro), learn your skills in this order: polygon modelling, texture creation & mapping, rigging & animation, rendering. If you can only learn one of these, learn polygon modelling(I recommend Silo if you are a beginner). Like I say, learning this is time consuming(a task as great as learning programming) so only worry about it after you sort out your programming and math skills.

...so, you are a professional programmer first, a swanky mathematician second, and then a tree-hugging-hippy-3D-artist third. Bill, this is going to take some time, so accept you are in the learning stage for the next two years and keep in mind what I have said here as to what you need to do. If you look after your skill as a programmer, then it will look after you in turn.

That's really all I have to say. Well, there is more but I doubt you'd find it interesting...

( a load of GameDev subscribers now put pistols to there heads and fire away! o_O )

I appreciate some of the advice I guess.

I won't use Sams Teach yourself in 21 days because I've heard by a LOT of people it's a horrible resource.

I know what SOHCAHTOA is. Seriously, I'm not that stupid.

As for modeling, I understand, but aside from the things you listed, there are a million concepts I need to learn about involving it, (I already know about topology, to an extent, theres more, but I just woke up and can't remember the ons I know). Other than the ones I know, idk how many 3D concepts there are exactly

Advertisement

So I should forget OpenGL altogether?

I've been trying to figure out all of the crap I need to download aside from SDL for OpenGL.

I see a million things like FreeGLUT, GLFW, GLSL.

I figured DirectX was a microsoft only thing.

OpenGL vs directx depends on what you want to build.

directx is the 3d extensions to windows, an add-on component of the OS itself. as of windows 8 directx IS the os graphics engine.

the capabilities of both poly engines are similar, with similar APIs.

the question boils down to what does you user have, or what is easiest for them to get. The answer is usually directx for a PC title running under windows.

If your app is targeting linux (for example), then openGL is the only way to go.

after you learn one, the other will be pretty easy to learn. i can follow openGL code with little difficulty, just from my directx experience.

figure out your target platform(s) and operating system(s). this will pretty much decide the best choice for poly engine.

Norm Barrows

Rockland Software Productions

"Building PC games since 1989"

rocklandsoftware.net

PLAY CAVEMAN NOW!

http://rocklandsoftware.net/beta.php

for languages, you'll need to stick with c++ for hardcore real time stuff. Skyrim don't run on Java!

i started in basic, then went to pascal, then c, all driven by the need for speed.

don't mess around and waste time with low performance languages. learn C and be done with it. PCs are so fast, assembly doesn't even get mentioned anymore.

if you're not doing real time stuff, then any language will do, and may be faster/easier to develop THAT PARTICULAR TYPE OF GAME with (notice the emphasis on that particular type of game). this will vary on a case by case basis. same games may not need speed, and can be done with flash, or hypercard, or java, or whatever faster and easier than with C. They will run slower, but you can write them faster.

as stated elsewhere, modeling packages (3ds max, blender, etc) are all similar in their basic capabilities. However, blender does have a somewhat intimidating interface compared to most. But then again, modeling software is inherently big and complex, and the interfaces of all of them reflect that. 3ds max is the most commonly used tool. and most models you find online are that format. however there is that price tag. I learned on 3ds max, but when i recently restarted my company on a shoestring, i settled on truespace, as it had the basic capabilities, easy export to directx formats, and an unbeatable price (free). with a little searching, i found all the docs, all the video tutorials, everything.

Norm Barrows

Rockland Software Productions

"Building PC games since 1989"

rocklandsoftware.net

PLAY CAVEMAN NOW!

http://rocklandsoftware.net/beta.php

I appreciate some of the advice I guess.

I won't use Sams Teach yourself in 21 days because I've heard by a LOT of people it's a horrible resource.

I know what SOHCAHTOA is. Seriously, I'm not that stupid.

As for modeling, I understand, but aside from the things you listed, there are a million concepts I need to learn about involving it, (I already know about topology, to an extent, theres more, but I just woke up and can't remember the ons I know). Other than the ones I know, idk how many 3D concepts there are exactly

SAM's TYC++I21 Days is a beginners book, not an in-depth resource on the C++ programming language. Its a good start, nothing more. After one works through it, they should then move on to Herbert schildt's "The Complete C++ Reference" which is one of the best books one could buy on the language. So, think once again about my recommendations on the books and whatever you choose to go with...good luck.

Not everyone who programs knows what SohCahToa is nor is good at maths. Strange, but true. Give that some thought as we are a community here after all...if you see where I am coming from...

Back to the 3D modelling issue...best way in is to get Antony Ward's "Game Character Development" as it is written so that you can use any 3D application so long as it has a basic modelling tool set. The author uses Silo, Maya and Mudbox, but he doesn't give instructions that are constrained to those packages, nor versions. Personally, though, I have to recommend Silo as it focuses on the Modelling stage alone, is dirt cheap and of course beginner friendly whilst offering enough features to make it a professional tool. But anyway, you'll find there are so many camps as to which package is better...so, once again, good luck with whatever you choose to go with.

Anyway, that's the advice I wish I had been given back in 2000 when I first bought a book on a subject called "C". Best of my knowledge back then, one had to fork out money for the apps to get started or result to "other means", which I do not condone. In today's world, you have the likes of MS C++ Express, Netbeans, Ecllipse, Blender and GIMP which are free and legal downloads. Also, today's "crap" computers are like F1 cars compared to the Robin Reliant back in the day...

Best of luck.

Languages; C, Java. Platforms: Android, Oculus Go, ZX Spectrum, Megadrive.

Website: Mega-Gen Garage

as stated elsewhere, modeling packages (3ds max, blender, etc) are all similar in their basic capabilities. However, blender does have a somewhat intimidating interface compared to most. But then again, modeling software is inherently big and complex, and the interfaces of all of them reflect that. 3ds max is the most commonly used tool. and most models you find online are that format. however there is that price tag. I learned on 3ds max, but when i recently restarted my company on a shoestring, i settled on truespace, as it had the basic capabilities, easy export to directx formats, and an unbeatable price (free). with a little searching, i found all the docs, all the video tutorials, everything.

Aye, I first started my 3D shenanigans in TrueSpace. It usually came free with 3D World magazine, which was a bloody good deal considering Blender wasn't as functional back in those days. Moved on to Maya and then Max afterwards, but they never as much fun as TS. ^_^

Languages; C, Java. Platforms: Android, Oculus Go, ZX Spectrum, Megadrive.

Website: Mega-Gen Garage

This topic is closed to new replies.

Advertisement