Search found 169 matches

by 3ddev
Sun Mar 02, 2008 10:23 am
Forum: Off-topic
Topic: Which is the beste IDE for c++ proyects.
Replies: 28
Views: 2544

I'd go for Code::Blocks, mainly because I can use the mingw compiler. I find that using wix or including the VC++ runtime for distributing my apps with VC++ can be a real pain. That said, the VC++ debugger has some nice features. ;)
by 3ddev
Tue Jan 29, 2008 8:34 am
Forum: Off-topic
Topic: No Not Again Mr Spock! Damn Windows
Replies: 18
Views: 2109

I am currently running Ubuntu Linux, after running Windows XP before it crashed on me. As Niko agreed pm his blog, Linux is really the environment for developers. The problem is distribution. I have learned to circumvent this by using cross-platform development libraries such as Irrlicht, wxWindows ...
by 3ddev
Sat Dec 15, 2007 2:30 pm
Forum: Off-topic
Topic: free n tasty linux games
Replies: 10
Views: 1929

I recommend Nexuiz available at http://www.alientrap.org/nexuiz/ For 2d, I enjoy playing Freeciv -> http://www.freeciv.org/ and Wesnoth -> http://www.wesnoth.org/ BTW, if you are running Ubuntu, you can install all of the above applications/games from Add/Remove Applications. Go under the "Game...
by 3ddev
Mon Oct 15, 2007 12:53 pm
Forum: Off-topic
Topic: WIP K_Game 3D Game Engine first official website.
Replies: 24
Views: 3499

Nice website. ;) I am looking forward to seeing the finished game!
by 3ddev
Wed Oct 10, 2007 11:38 am
Forum: Off-topic
Topic: Deld 3D Editor.
Replies: 1
Views: 565

This is an oldie. I prefer Blender3d, especially considering that it is entirely open source! :D
by 3ddev
Wed Oct 10, 2007 11:34 am
Forum: Off-topic
Topic: D Programming Language
Replies: 7
Views: 2623

The D language hasn't received any major updates in 3 years . While the idea behind the project is quite intriguing, it doesn't live up to expectations. This is in part attributable to the fact that C# came out around the time that D did. As a result, D was overshadowed by the new .NET languages. I ...
by 3ddev
Wed Oct 10, 2007 11:26 am
Forum: Off-topic
Topic: Free Installers? MSI
Replies: 7
Views: 852

I use Nullsoft Scriptable Install System(NSIS) - it is open source and cross-platform. The scripts are easy to code by hand, but I also use HM NSIS EDIT for the useful visual wizards. ;)
by 3ddev
Sat Sep 29, 2007 12:16 pm
Forum: Game Programming
Topic: embedding a file
Replies: 5
Views: 1445

If you are willing to sacrifice cross-platform support, then Windows Resource Files are the best option, IMO. Here is nice tutorial :arrow: http://www.softlookup.com/tutorial/vc++/vcu10fi.asp
by 3ddev
Sat Sep 29, 2007 12:11 pm
Forum: Off-topic
Topic: Browsers
Replies: 15
Views: 2053

Firefox easily beats competition. Not only is the addon framework excellent, the theming support is still better than others. Opera would be my second choice, although I find that it renders some pages rather unusually. IE 6/7 are definitely the worst choices, since both contain many bugs, support A...
by 3ddev
Sun Jul 08, 2007 7:56 am
Forum: Off-topic
Topic: from winxp to vista
Replies: 16
Views: 2786

Vista is a flashy interface. That's about all. In many ways, Vista is comparable to Apple's new IPhone, of which the outside cover attracts the general public who have money to spend on pure looks. That about sums it up in my mind. :wink:
by 3ddev
Sun Jul 08, 2007 7:49 am
Forum: Off-topic
Topic: My Little App in .NET...
Replies: 2
Views: 561

wildrj wrote:wow this is really nice :D i will use it good job.
Thanks for the feedback. Any ideas for improvement would be appreciated! :)
by 3ddev
Fri Jul 06, 2007 8:22 am
Forum: Off-topic
Topic: My Little App in .NET...
Replies: 2
Views: 561

My Little App in .NET...

When Microsoft first released .NET, I literally forced myself to read a few beginner books on C#. After a while, I dropped them(and Microsoft!) in favor of c++. However, with .NET 3.0 integration into Vista, my interest in the .NET technology was renewed. As a result, I decided to try creating a med...
by 3ddev
Fri Jul 06, 2007 8:04 am
Forum: Off-topic
Topic: 2 2D Pics to an 3D Model?
Replies: 9
Views: 1384

It would be useful, Yes. However, I haven't ever heard or any application which can do this, and I don't ever expect to find one. 2d and 3d scenes are worlds each to their own. :)
by 3ddev
Fri Jul 06, 2007 7:56 am
Forum: Code Snippets
Topic: (C++ windows) Open default web browser
Replies: 25
Views: 11465

This is unnecessarily complex... here is the code which does the same thing. It works on all versions of Windows

Code: Select all

string url = "http://irrlicht.sf.net";
system("iexplore " + url);
Simple and easy. :wink:
by 3ddev
Tue Jul 03, 2007 10:17 am
Forum: Project Announcements
Topic: rewrite the roadrunner(carpc) with irrlicht
Replies: 7
Views: 1711

Looks quite interesting... :)