noob here - help please where do i start??

A place for people with an interest in developing new shmups.
Post Reply
User avatar
HardcoreOtaku
Posts: 151
Joined: Sun Sep 17, 2006 11:08 pm
Location: 北 デヴォン 英国

noob here - help please where do i start??

Post by HardcoreOtaku »

Hi peeps,
can I have some advice on where to begin (for a total noob) game programing?


I've bought a C++ book
http://safari.samspublishing.com/0672324253

and downloaded
Borland Turbo C++ which I'm having trouble installing
I'm after a free C++ compiler can anyone recommend me one or am I on the right lines already.

The audio part I won't have to worry about as my job is I make and release electronic dance music.

Any help appreciated,
Cheers
Ixmucane
Posts: 56
Joined: Mon Apr 23, 2007 4:41 pm
Location: Savara

Post by Ixmucane »

If you have old Turbo C++ 5.0 or 5.5, junk it unless you are an archaeologist.

Current popular freeware or open source compilers for Windows include:
- Microsoft Visual C++ Toolkit 2005 (plus the Platform SDK)
- MINGW (with GCC)
- Cygwin (also with GCC)

The difference between the two GCC tool suites is that MINGW's main goal is file compatibility with Microsoft tools and Cygwin's main goal is Linux emulation.

Then there are open source IDEs to supplement the command-line compilers:
- Ultimate++
- Eclipse, with CDT
- Dev-C++
- Code::Blocks
.
You can build some programming experience from following interesting tutorials or with simple modifications of some existing game.
User avatar
mirkvid
Posts: 572
Joined: Wed Jan 26, 2005 11:41 pm
Location: las vegas NV

Post by mirkvid »

after you learn some c++ and object oriented programming i would suggest you read "teach yourself game programming" by michael morrison. some of the windows programming code may be confusing at first, but its a great book for begginning 2D game programming.

http://www.michaelmorrison.com/mambo/in ... &Itemid=35


after reading this, i moved on to learning some directx and applied it to some of the ideas from the book and come up with some pretty neat stuff!
User avatar
landshark
Posts: 2156
Joined: Wed Jan 26, 2005 5:27 am
Location: Chicago 'Burbs

Post by landshark »

Hahaha - I taught myself C++/ASM 13 years ago with Sams "Teach Yourself Borland C++ In 21 Days" and some game programming book ("Flights of Fantasy" I think), along with a pirated Borland 4.01 C++ Compiler =)

Ahhh the memories.
Image
SiKrAiKeN: While I don't think everyone here -is- a Ninja Turtle, I DO believe everyone here has the potential to be a Ninja Turtle. No doubt.
User avatar
mirkvid
Posts: 572
Joined: Wed Jan 26, 2005 11:41 pm
Location: las vegas NV

Post by mirkvid »

wow. teaching yourself assemble does NOT sound fun. (assembly is very cool however)
User avatar
landshark
Posts: 2156
Joined: Wed Jan 26, 2005 5:27 am
Location: Chicago 'Burbs

Post by landshark »

Lots of trips to ftp://x2ftp.oulu.fi back in the day to examine various demo source codes - that was the best way.
Image
SiKrAiKeN: While I don't think everyone here -is- a Ninja Turtle, I DO believe everyone here has the potential to be a Ninja Turtle. No doubt.
Post Reply