Search found 51 matches

by Saalen
Sat May 08, 2004 2:35 pm
Forum: Open Discussion and Dev Announcements
Topic: New Article at freshmeat.net
Replies: 14
Views: 1612

New Article at freshmeat.net

Hi, a short article was released today at freshmeat.
It covers the strengths and some lacks of Irrlicht : http://freshmeat.net/articles/view/1182/
by Saalen
Sun Mar 21, 2004 9:46 am
Forum: Off-topic
Topic: 10000 - Write a story
Replies: 14
Views: 2569

fix for the IUnknown error was found, and no one wanted to give bucks. That's why...
by Saalen
Wed Feb 25, 2004 12:59 pm
Forum: Off-topic
Topic: Who is everybody?
Replies: 358
Views: 495610

Name: Larry Ficken LOL, you know what your name means in German :oops: I was born in 1980, living in good old Europe (Western Germany). I started programming with Turbo Pascal very late in 1997, tried Basic and a bad scripting language (RGH Profan) to make silly windows games ;) Now I am earning mo...
by Saalen
Fri Feb 13, 2004 1:52 pm
Forum: Open Discussion and Dev Announcements
Topic: Irrlicht License?
Replies: 5
Views: 1490

The Irrlicht license is less restrictive than the GPL, you may use it in GPL releases.
But you have to take care of the original copyright, which is possessed by the author of Irrlicht.
by Saalen
Fri Feb 13, 2004 1:37 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: DW's Freeware Utitlities List
Replies: 39
Views: 16385

Two installer tools to make w32 setup executables:
http://www.jrsoftware.org/isinfo.php
http://nsis.sourceforge.net/
by Saalen
Fri Jan 16, 2004 8:05 am
Forum: Off-topic
Topic: Deutsches Forum
Replies: 18
Views: 5332

Image

This thread good stuff.
by Saalen
Thu Jan 08, 2004 7:05 am
Forum: Beginners Help
Topic: can't compile with DevC++
Replies: 2
Views: 1157

Something is wrong with your project settings?
Setup a new one, and follow the steps of the dev cpp tutorial on the irrlicht site.
by Saalen
Wed Jan 07, 2004 6:55 am
Forum: Open Discussion and Dev Announcements
Topic: Irrlicht source code highlighting
Replies: 0
Views: 961

Irrlicht source code highlighting

If you want to to produce source code documentation of your Irrlicht programs with the highlight tool , you can use he following language definition. Just replace the content of the distributed c.lang file with this text: # C and C++ language definition file; supplied with Irrlicht class names # # A...
by Saalen
Mon Jan 05, 2004 2:19 pm
Forum: Beginners Help
Topic: I don't know C++....help.....!!!!!!!!!!!!!
Replies: 15
Views: 1796

Ok, basically you need to know that you have to delete all objects which are results of createXxx-Methods.
But you have to know how to access methods by pointers, since almost every get Method of irrlicht returns pointers. You do not have to calculate with them, of course. :oops:
by Saalen
Mon Jan 05, 2004 11:52 am
Forum: Open Discussion and Dev Announcements
Topic: Irrlicht isnt just a good engine , it is the best engine!!
Replies: 12
Views: 2814

Hi, I just made my diploma the week before christmas.
Thats why I am not a frequent visitor of this forum :)
Just want to say that you should by all means finish your studies,
you already have proven that you are a very good coder.
Grade sells better than knowledge. Unfortunately.
by Saalen
Mon Jan 05, 2004 11:37 am
Forum: Beginners Help
Topic: I don't know C++....help.....!!!!!!!!!!!!!
Replies: 15
Views: 1796

You definitively need knowledge about pointer arithmethic.
Irrlicht uses it extensively.
by Saalen
Thu Nov 27, 2003 11:07 am
Forum: Off-topic
Topic: Which is the Linux Distribution you prefer?
Replies: 14
Views: 3353

I use rh9.0 too but they often distribute messy packages (like the inofficial gcc 2.9? in Redhat 7.2). In 9.0 Kdevelop 2.15 is messed up.
And it doesn't like my usb stick.
by Saalen
Tue Nov 25, 2003 7:35 am
Forum: Beginners Help
Topic: Comiling the demos using Dev-C++ on a Windows-System
Replies: 5
Views: 1013

:shock:
by Saalen
Tue Nov 25, 2003 7:33 am
Forum: Beginners Help
Topic: C++ question: How to keep track of many bullets?
Replies: 9
Views: 1454

Instead of searching a free slot in the list, I would rather delete invalid bullets and create a new one when needed. Runtime behaviour improved from O(n) to O(c) 8)