Search found 29 matches

by CmdKewin
Fri Dec 22, 2006 10:37 am
Forum: Competition Time!
Topic: Newyears challenge 2006/2007
Replies: 54
Views: 35024

Uhm. :) Nice. I *think* I can manage to find enough free time ot participate in it. Is there any "subscription" deadline or just the finishing one?
by CmdKewin
Thu Dec 21, 2006 10:32 am
Forum: Project Announcements
Topic: Top 5 Irrlicht Projects of 2006
Replies: 24
Views: 19003

:) Nice list. And it's nice to see ones codes featured in it :D
by CmdKewin
Wed Dec 06, 2006 11:46 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: [How-To]Use Irrlicht with code::blocks and win32 dlls/libs
Replies: 10
Views: 4374

Uhm. Seems like a good reason... ;) Mostly because i've got the same problem with opengl. My integrated work-laptop refuses to run opengl properly (the video card crashing on me every 10 minutes) while on my home-desktop i've got no problems at all. No difference by using gcc or win32. So i'll stick...
by CmdKewin
Tue Dec 05, 2006 12:02 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: [How-To]Use Irrlicht with code::blocks and win32 dlls/libs
Replies: 10
Views: 4374

Aren't you supposed to be using Nightly Builds for the VS2003 compiler to worK? Anyways, how is the GCC library "worse" than the WIN32 one? Aside from pure size (which i'm not entirely sure either), the are practically identical. Besides the fact that MingW is fully POSIX compliant. Which ...
by CmdKewin
Thu Nov 30, 2006 4:50 pm
Forum: Off-topic
Topic: itching to try irrlicht on vista...
Replies: 15
Views: 1571

Yep. Both DirectX9 AND OpenGL work with the lastest ati drivers.

The *only* problem, is getting MingW to work... other than that, compiled exes from previous versions of windows, work like a charm.
by CmdKewin
Thu Nov 30, 2006 4:47 pm
Forum: Open Discussion and Dev Announcements
Topic: Who use the XML provided by irrLicth ??
Replies: 9
Views: 802

Provide the diff, and stop bitching! :) It's not like they are ignoring you. They are simply working on other stuff. And, besides, it's not like irrXML is the most fundamental part of Irrlicht. If CXMLWriter is buggy, then DON'T use it. There are many others MORE flexible librarys out there. p.s.: a...
by CmdKewin
Wed Nov 15, 2006 4:00 pm
Forum: Beginners Help
Topic: How can i display float variable value in irrlicht?
Replies: 2
Views: 210

Well. Windows Way: - Console Application printf("%f\n",float_variable); -Win32 Executable - MS C++ Compilers use the MessageBox function. i.e int result = MessageBox(HWND hWnd,LPCTSTR lpText,LPCTSTR lpCaption,UINT uType); hWnd is the handle to the parent window. Just use NULL. lpText is th...
by CmdKewin
Wed Nov 15, 2006 2:21 pm
Forum: Code Snippets
Topic: (C++) RTSCamera
Replies: 39
Views: 31820

(C++) RTSCamera

[EDIT 22.05.2007] Latest version http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=17066#117579 [EDIT 12.04.2007] Latest version http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=17066#112891 I felt like it was about time to give back something to Irrlicht's users... A nice and shiny Camer...
by CmdKewin
Thu Oct 05, 2006 7:57 am
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: RTS style camera
Replies: 20
Views: 8368

It is usable with 1.1. But the demo is compiled with 1.0 so you need the old DLL to run it.
And, if you try to compile it in Dev-CPP, just make sure to use the gcc dll.
by CmdKewin
Thu Sep 28, 2006 7:46 am
Forum: Code Snippets
Topic: (C++)chatQue class [v0.2.3] Alpha Fade works w/ 1.2
Replies: 41
Views: 17702

Again?... :D Oh well....

*diff is my friend*
by CmdKewin
Mon Sep 25, 2006 3:03 pm
Forum: Code Snippets
Topic: (C++)chatQue class [v0.2.3] Alpha Fade works w/ 1.2
Replies: 41
Views: 17702

Good! :D

I did just finish adding a full command interpreter to your old chatQue class.
I will start working on porting it over to the new version. Won't take too long (hopefully). Then I'll post the modified code.
by CmdKewin
Wed Sep 20, 2006 3:47 pm
Forum: Code Snippets
Topic: (C++) chatQue class [v0.1 OLD]
Replies: 9
Views: 3886

Nice Class, really nice :)

I changed it a bit (mainly remaning stuff), and added a Console_backColor parameter (and relative get/set methods).

Next thing on my list is a Console_Dump function.
by CmdKewin
Fri Aug 18, 2006 7:29 am
Forum: Beginners Help
Topic: Camera Question
Replies: 3
Views: 387

That's what I tought in the first place... But i seem to have problems with setTarget. As i understand it, position and target functions are always relative to the current point, not to a global position (starting from say [0,0,0], the origin). I will give it a try another time and see how far i can...
by CmdKewin
Thu Aug 17, 2006 2:18 pm
Forum: Beginners Help
Topic: Camera Question
Replies: 3
Views: 387

Camera Question

Yes, again... I've spent the last few hours looking trough the 50 or so pages of the search result without finding any hint. I want to implement a camera who does the following: 1. Rotates around a specified node. 2. Zooms with the mouse wheel. 3. Pans left,right,up and down when the cursor is withi...