954,124 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How do I start the program I just installed it it gives a console writes the files and then what/

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 
And if I am making people that LOOK as good as halflife too I still use opengl


The graphics library hardly has anything to do with how the graphics look on screen. It's all on how much skill and work the programmer(s) will put into the game.

Have you ever played Myst? The first version of Myst was created on Apple's HyperCard, which was more of a presentation-creation program, but somehow the 2 guys who created it in their basement managed to do it. Which shows that it's not the tools that make the great game, it's the people who create them.
-edit-
How do I start the program I just installed it it gives a console writes the files and then what/
Do you mean the OpenGL SDK installer, or the NeHe tutorial? The NeHe tutorial should at least open a window. If not, make sure you've created a Win32 project (not Console app).

John A
Vampirical Lurker
Team Colleague
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
 
Which shows that it's not the tools that make the great game, it's the people who create them.


Exactly.

mattyd
Posting Maven
2,607 posts since Oct 2006
Reputation Points: 105
Solved Threads: 1
 

No... I mean i nstalled the opengl95 it bring open a console and thens closes now what?

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 

Some quicker support would be good lol..

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 

I guess I am going to give up its not really worth it I dont know how the hell to do sdk I only understand c++ I will not waist my time learning how to do Some stupid ass thing like this I waisted my time reading ALL about visual c this will prolly be a waist I am gussing

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 
Some quicker support would be good lol..


This is not a chatroom. There's no obligation to post, and so if we do so, we're doing it voluntarily.I guess I am going to give up its not really worth it I dont know how the hell to do sdk I only understand c++ I will not waist my time learning how to do Some stupid ass thing like this I waisted my time reading ALL about visual c this will prolly be a waist I am gussing
Which is what we were trying to tell you. Plus, I just said that the OpenGL SDKprobably doesn't need to be installed, as it should be installed by default.

John A
Vampirical Lurker
Team Colleague
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
 
Some quicker support would be good lol..


It's difficult to even comment on this statement. :rolleyes:

mattyd
Posting Maven
2,607 posts since Oct 2006
Reputation Points: 105
Solved Threads: 1
 

http://www.daniweb.com/techtalkforums/thread59835.html
First an OS, and now a game.

I guess I am going to give up its not really worth it I dont know how the hell to do sdk I only understand c++ I will not waist my time learning how to do Some stupid ass thing like this I waisted my time reading ALL about visual c this will prolly be a waist I am gussing


Yep, that seems to sum you up quite nicely.

This isn't the matrix, there is no quick way to "learn kung fu". There is a huge amount to learn, and none of it will be wasted despite your inability to see how something might be relevant in future.

Programming is a skill built up over many years of practice. The skills you might need for a game are not EXCLUSIVE to game programmers.

Since you've yet to post a single line of code which would compile, I'd say that you're 5 years away from being able to do this kind of stuff.

And despite your bluster, I don't think you have the patience to stay the course.

> Some quicker support would be good lol..
Ok, now you're verging on being a time-wasting sponger incapable of doing anything for themselves.

Salem
Posting Sage
Team Colleague
11,531 posts since Dec 2005
Reputation Points: 5,862
Solved Threads: 953
 

And were is OpenGL Pre installed then

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 

Ok I got something Visual C++ is that alright

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 
iamthwee
Posting Expert
5,950 posts since Aug 2005
Reputation Points: 1,543
Solved Threads: 439
 

OoO ORGE is sweet

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 

But the question is where Can I downlooad it with out having to run bunch of stuff?? like pre compiled

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 

Well... What I mean is like where I can just do the graphicing ? Any pre mades? Which one should I download tehres SDK and anthoer

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 

The info is all there on the site. I'm using blender's game engine at the moment but only cos i'm already versed in creating models and familar with the interface.

iamthwee
Posting Expert
5,950 posts since Aug 2005
Reputation Points: 1,543
Solved Threads: 439
 

Well... I cant get this to work...

Tauren
Junior Poster
108 posts since Oct 2006
Reputation Points: 9
Solved Threads: 0
 
Well... I cant get this to work...


*Sigh*...

When you say "I can't get this to work" and expecting us to find the solution, that just doesn't help.

When you write a game, you usually create the 3D models with a 3D modelling program such as Blender. These are then saved for later use.

Then in the program's code, it loads the model from the file when it needs it, parses the data, and saves the resulting data into memory. This data is then used to draw the model to the screen.

The OpenGL SDK will be installed in:
/include/gl.h glu.h glut.h
/libs/glut32.lib glu32.lib

If you may have noticed, GLUT is not part of the OpenGL SDK and may have to be downloaded, as it's very helpful when creating OpenGL windows and other interface tasks.

The most important tip when compiling OpenGL apps is to make sure that the lib files (glut32.lib/glu32.lib) are linked with the project. Instructions for adding these files to the link list are compiler-specific, so look for a list of .lib files, and just add glu32.lib and glut32.lib to that list.

John A
Vampirical Lurker
Team Colleague
7,630 posts since Apr 2006
Reputation Points: 2,240
Solved Threads: 339
 
You just managed to create a "Hello World" program, and now you're trying to create an MMORPG? Be realistic. To write a game you need:
  • Be proficient in C/C++. This means you need to know how to write complex classes without runnining to a forum for help.
  • Learn a graphics library such as OpenGL or DirectX. Without them, you'd be forced to write your own graphics library just to draw something like a square. OpenGL and DirectX are a whole new can of worms, though.
  • To write a 3D game, you need to have good 3D math skills. You should be completely comfortable with vectors, matrices, and the like.
  • And the list goes on...
Don't want to discourage you or anything, but I'm just saying you're biting off a bit more than you can chew. Please, PLEASE learn C++ well, and then you can start learning OpenGL (and starting in OpenGL means 2D games, too).


exaclty....

letsjoy
Newbie Poster
24 posts since Aug 2006
Reputation Points: 11
Solved Threads: 0
 

i mastered vb for concepts then c++ console apps, then i leart basic win32/mfc then i got a book on directx game making which came with tutorials, modelling software and an IDE

jbennet
Moderator
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,820
Solved Threads: 600
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You