What IDE do you guys use?
What IDE do you guys use?
As the title says, what IDE are you guys using? I saw in the first tutorial that Microsoft Visual Studio is what the developer uses, I looked it up and it costs $700 minimum! I tried downloading Netbeans, but you apparently need a "JDK" to install it so that won't work. I just downloaded Notepad++, and it seems to only work with some of the files (I tried editing the first tutorial and it didn't work). Is there a better program that I am missing or should I use one of these?
Google "Microsoft Visual Studio Express"
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Visual Studio is only on trial license, download only Visual C++.
Here is a link: http://www.microsoft.com/express/Downloads/
Select Visual C++ 2010 Express
Here is a link: http://www.microsoft.com/express/Downloads/
Select Visual C++ 2010 Express
Ok thanks, a million.akaz wrote:Visual Studio is only on trial license, download only Visual C++.
Here is a link: http://www.microsoft.com/express/Downloads/
Select Visual C++ 2010 Express
I prefer to use Code::Blocks. It lacks many features compared to Visual Studio\C++, but the main bonus, in my opinion, is the fact that it is open sourced, and uses gcc which is also open sourced. I have no intention of changing anything in the source code, but I like the idea that I can, if I want to, or I can find out exactly what is happening whenever I do something. Another bonus is that it is multi-platform, so if you have even the slightest hint that you may want to try something other than Windows, when you make the change, Code::Blocks will be the same IDE, options in the same places, etc. I don't know if your intended projects will be compatible with Mac or Linux, but this way you can also distribute your project file to help others who may want to compile your project.
The Open Descent Foundation is always looking for programmers! http://www.odf-online.org
"I'll find out if what I deleted was vital here shortly..." -d3jake
"I'll find out if what I deleted was vital here shortly..." -d3jake
I use codeblocks and I agree with d3jake. the only thing that I know of besides intellisense that codeblocks lacks is a M$ compression and a resource editor but you can simply hack an icon in harmlessly.
Last edited by Midnight on Wed May 12, 2010 3:23 am, edited 1 time in total.
I prefer using Code::Blocks as well. I had the problem with VC Express 2008 where the compiled programs won't run on another system because some DLLs are not of the same version. I know this can be changed somewhere, but I don't want to change the projects created by the IDE before distributing them. The Code::Blocks projects work fine without any tuning (links the necessary libs statically I guess).
Oh ... found out that the auto completion feature of Code::Blocks just has problems if you use the "using <namespace>" thing. If you reference the namespaces directly (e.g. scene::ISceneNode) it works great.
Oh ... found out that the auto completion feature of Code::Blocks just has problems if you use the "using <namespace>" thing. If you reference the namespaces directly (e.g. scene::ISceneNode) it works great.
Dustbin::Games on the web: https://www.dustbin-online.de/
Dustbin::Games on facebook: https://www.facebook.com/dustbingames/
Dustbin::Games on twitter: https://twitter.com/dustbingames
Dustbin::Games on facebook: https://www.facebook.com/dustbingames/
Dustbin::Games on twitter: https://twitter.com/dustbingames
-
- Posts: 1186
- Joined: Fri Dec 29, 2006 12:04 am
This was humor, but in the case of vim you could argue as you are able to do a lot of things from the editor (compiling browsing ctags).
In fact I began on VC++ (with visual assist, very nice if you want some REAL intellisense) moved to OSX -> Xcode and end on Linux using vim...
If you found how to use eclipse (CDT I suppose) I'd like to know how you did. I only achieved suffering and pain triing to master this "tool".
In fact I began on VC++ (with visual assist, very nice if you want some REAL intellisense) moved to OSX -> Xcode and end on Linux using vim...
If you found how to use eclipse (CDT I suppose) I'd like to know how you did. I only achieved suffering and pain triing to master this "tool".
-
- Posts: 1186
- Joined: Fri Dec 29, 2006 12:04 am
Oh, humor. Should have recognized.anirul wrote:This was humor,
I don't use Eclipse Classic + CDT but the 'Eclipse IDE for C/C++ Developers'.anirul wrote:If you found how to use eclipse (CDT I suppose) I'd like to know how you did.
It's pretty easy:
Just download it, decompress and you're done.
You need to install a compiler too, of course.
"Whoops..."