An IDE for C++

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
thbp
Chaos Rift Regular
Chaos Rift Regular
Posts: 132
Joined: Tue Dec 08, 2009 5:32 pm
Current Project: Learn
Favorite Gaming Platforms: PC/PS/GC/DC
Programming Language of Choice: C(++)/Perl
Location: wrestling matts
Contact:

An IDE for C++

Post by thbp »

Ok, i'm looking into getting into game programming for DreamCast and Playstaion One PC and maybe PSP (maybe). But i was wondreing what was a good IDE for programming in and a good Compiler to compile to code to run on all or well at least one?
XNA ========== eXtreme Nuclear Atomic
Image
Image
Image
Wrestlers have three motion: side 2 side , circle, and stalk
User avatar
hurstshifter
ES Beta Backer
ES Beta Backer
Posts: 713
Joined: Mon Jun 08, 2009 8:33 pm
Favorite Gaming Platforms: SNES
Programming Language of Choice: C/++
Location: Boston, MA
Contact:

Re: An IDE for C++

Post by hurstshifter »

Could you give us a bit more information? The IDE actually has nothing whatsoever to do with which platform you are developing for.

Do you already know how to program in C++? (console applications, basic/advanced concepts of the language itself, etc...)?
What operating system do you wish this IDE to run on? (Windows, OSX, Linux, etc...)
Do you have any experience in game development whether it be within a Game Maker program or another language?

The more information you can provide us with. The better we can help you.
"Time is an illusion. Lunchtime, doubly so."
http://www.thenerdnight.com
User avatar
RyanPridgeon
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 447
Joined: Sun Sep 21, 2008 1:34 pm
Current Project: "Triangle"
Favorite Gaming Platforms: PC
Programming Language of Choice: C/C++
Location: UK
Contact:

Re: An IDE for C++

Post by RyanPridgeon »

A nice easy, simple IDE for Windows,Linux and Mac is Codeblocks.

http://www.codeblocks.org/

I recommend it
Ryan Pridgeon
C, C++, C#, Java, ActionScript 3, HaXe, PHP, VB.Net, Pascal
Music | Blog
User avatar
thbp
Chaos Rift Regular
Chaos Rift Regular
Posts: 132
Joined: Tue Dec 08, 2009 5:32 pm
Current Project: Learn
Favorite Gaming Platforms: PC/PS/GC/DC
Programming Language of Choice: C(++)/Perl
Location: wrestling matts
Contact:

Re: An IDE for C++

Post by thbp »

Do you already know how to program in C++? (console applications, basic/advanced concepts of the language itself, etc...)?
No i do not, i am learning and looking for an ide to use while i learn. And I asked for a compiler to comple to code for the console (preferbl inttergrate into the ide)


What operating system do you wish this IDE to run on? (Windows, OSX, Linux, etc...)

MIcrosoft Windows, But if it runs on linux also would be plus (

Do you have any experience in game development whether it be within a Game Maker program or another language?

No i do not have any game development experience but i do understand the basics of some languages like i Know what a loop is/does and usually how long it will run and i know what variables are and if (else) things. I know these are very basic but i think that this may help me out (i'm coming from html/js/php and very basic qbasic (not alot))
XNA ========== eXtreme Nuclear Atomic
Image
Image
Image
Wrestlers have three motion: side 2 side , circle, and stalk
User avatar
hurstshifter
ES Beta Backer
ES Beta Backer
Posts: 713
Joined: Mon Jun 08, 2009 8:33 pm
Favorite Gaming Platforms: SNES
Programming Language of Choice: C/++
Location: Boston, MA
Contact:

Re: An IDE for C++

Post by hurstshifter »

Code::Blocks is nice. I use Microsoft Visual Studio 2008 Professional myself but the free version of the same IDE is also very good and easy to use.
"Time is an illusion. Lunchtime, doubly so."
http://www.thenerdnight.com
User avatar
Bludklok
Chaos Rift Junior
Chaos Rift Junior
Posts: 241
Joined: Tue Apr 14, 2009 1:31 am
Current Project: EnigmaCore
Favorite Gaming Platforms: PC, N64, Playstation1, Playstation2
Programming Language of Choice: C++
Location: New Jersey
Contact:

Re: An IDE for C++

Post by Bludklok »

I use MSVC 2008 and it's done it's job quite nicely for me. But I'm not too sure if you can get MSVC on Linux.
Youtube
Website
Current project: Enigma Core
User avatar
thbp
Chaos Rift Regular
Chaos Rift Regular
Posts: 132
Joined: Tue Dec 08, 2009 5:32 pm
Current Project: Learn
Favorite Gaming Platforms: PC/PS/GC/DC
Programming Language of Choice: C(++)/Perl
Location: wrestling matts
Contact:

Re: An IDE for C++

Post by thbp »

i'm looking into codeblocks but should i use GCC as the compiler theen? (the linux thing was becuase evernow and then i boot (after christmas) slax from a usb drive.


What about DEV C++? but is code blocks the way to go then?
XNA ========== eXtreme Nuclear Atomic
Image
Image
Image
Wrestlers have three motion: side 2 side , circle, and stalk
User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: An IDE for C++

Post by Falco Girgis »

The vast majority of console development happens with GNU tools from the Linux/Cygwin terminal. Generally speaking, you write your code in the IDE, and compile by invoking make from the command line.

Of course you can set up your own specific make rules for console-based projects (like what we were doing in ESRev1), but it's a complete pain in the ass.

And you should really get good at coding on and for a PC before you even look at Dreamcast or PSP. It's a long road ahead of you to even make your first program with graphics. It's even longer to do that for another piece of hardware.
User avatar
RyanPridgeon
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 447
Joined: Sun Sep 21, 2008 1:34 pm
Current Project: "Triangle"
Favorite Gaming Platforms: PC
Programming Language of Choice: C/C++
Location: UK
Contact:

Re: An IDE for C++

Post by RyanPridgeon »

thbp wrote:i'm looking into codeblocks but should i use GCC as the compiler theen?
Yes, that would be easiest. When you go to download Code::Blocks, there are two versions, one which contains the MinGW compiler. I suggest you choose the one which comes bundled with the compiler if you're a beginner.
Edit: MinGW is basically a port of GCC for Windows
Ryan Pridgeon
C, C++, C#, Java, ActionScript 3, HaXe, PHP, VB.Net, Pascal
Music | Blog
User avatar
thbp
Chaos Rift Regular
Chaos Rift Regular
Posts: 132
Joined: Tue Dec 08, 2009 5:32 pm
Current Project: Learn
Favorite Gaming Platforms: PC/PS/GC/DC
Programming Language of Choice: C(++)/Perl
Location: wrestling matts
Contact:

Re: An IDE for C++

Post by thbp »

Thank you all i'm gonna use MSVC i actually like it somewhat (and got like a little experiance with it)

and thank you GyroVorbis. i was planning on doing this route anyway but i wanted to have everything ready for when i felt "compitant" enought to tackle it
XNA ========== eXtreme Nuclear Atomic
Image
Image
Image
Wrestlers have three motion: side 2 side , circle, and stalk
Post Reply