Search found 58 matches

by hiker
Thu Dec 30, 2010 10:52 pm
Forum: Bug reports
Topic: [fixed]XML reader can't read files produced by XML writer
Replies: 24
Views: 4940

Hi, ... But will have to check if this still compiles (I learned once that the templates used in xml are very sensitive to innocent changes). No, it doesn't (I should have mentioned that I tried something like your patch before finding this thread :) ). g++ -Wall -pipe -fno-exceptions -fno-rtti -fst...
by hiker
Thu Dec 30, 2010 1:27 am
Forum: Bug reports
Topic: [fixed]XML reader can't read files produced by XML writer
Replies: 24
Views: 4940

Hi, this is still an issue with irrlicht 1.7.2: we have recently changed one of the config files in SuperTuxKart to be in utf (to support people entering names that might contain non-ascii characters), and at least on 64 bit Linux systems (and some Macs at least) the config files can not be read any...
by hiker
Tue Dec 21, 2010 4:12 am
Forum: Project Announcements
Topic: SuperTuxKart 0.7 - official release
Replies: 83
Views: 25655

Hi all, after over a year of work, dozens upon dozens of new and fixed bugs, over 3000 commits, a lot of work from artists, restless testing from our faithful followers, and translations from contributors all over the world, we are thrilled to offer you SuperTuxKart 0.7 just in time for Christmas. B...
by hiker
Wed Dec 15, 2010 12:54 am
Forum: Project Announcements
Topic: SuperTuxKart 0.7 - official release
Replies: 83
Views: 25655

Hi, we have just uploaded a second release candidate . Major changes: Asian fonts are now included in the package. Several memory leaks have been fixed (which had caused problems with music and sound effects) Some tracks were improved to disable unintentional shortcuts and incorrect rescues. Some mi...
by hiker
Tue Dec 07, 2010 2:58 am
Forum: Project Announcements
Topic: SuperTuxKart 0.7 - official release
Replies: 83
Views: 25655

I played it some more and got the bug with freezing on replay a few more times. I think usually in challenge (and doesn't matter if clicked with mouse or joypad). Not always... maybe when I do that in the last race when there are several races. So far we have not been able to reproduce the problem ...
by hiker
Sat Dec 04, 2010 4:16 am
Forum: Project Announcements
Topic: SuperTuxKart 0.7 - official release
Replies: 83
Views: 25655

Hi, thanks all of you for your feedback. I'll try to add some comments in one mega posting: Try adding some shadows in there if you can Atm the performance of STK is not that good (partly due to kart animations, which can be disabled in the GUI; partly because of the tracks not being too optimised)....
by hiker
Fri Dec 03, 2010 1:23 am
Forum: Project Announcements
Topic: SuperTuxKart 0.7 - official release
Replies: 83
Views: 25655

So what engine did you use before you saw the light that is irrlicht? :lol: I'll be sure to check out the demo once I have time, the screenshot looks very promising though. STK used plib before, but that's quite outdated, more or less unmaintained. Irrlicht replaced plib, sdl (and for physics debug...
by hiker
Thu Dec 02, 2010 11:28 pm
Forum: Project Announcements
Topic: SuperTuxKart 0.7 - official release
Replies: 83
Views: 25655

SuperTuxKart 0.7 - official release

Hi, I just quickly wanted to announce that we have a first release candidate of SuperTuxkart 0.7 - the first version to use irrlicht: http://supertuxkart.sourceforge.net/persistent/images/5/58/Stk0.7_4.jpg For more details look at our web page at http://supertuxkart.sourceforge.net/ , a few more scr...
by hiker
Tue Oct 26, 2010 11:05 pm
Forum: Bug reports
Topic: Crash on Mac OS when specifying wrong window size
Replies: 9
Views: 3679

Hi, This is a known bug: http://sourceforge.net/tracker/?func=detail&aid=2472422&group_id=74339&atid=540676 Unfortunately, no one here works with OSX, and even fewer ones over here would know how to do this under OSX. Maybe someone can provide a patch? thanks, I've missed that report. I'...
by hiker
Sun Oct 17, 2010 10:20 pm
Forum: Bug reports
Topic: Crash on Mac OS when specifying wrong window size
Replies: 9
Views: 3679

Hi, Anyone who can do a patch for that? Getting it in 1.7.2 might be tricky as that should be released in a few days (would have been released already if someone would have found the time for it the last days). ah, sorry - I wasn't aware that you are that close to a release. No need to postpone your...
by hiker
Thu Oct 14, 2010 3:55 am
Forum: Bug reports
Topic: Crash on Mac OS when specifying wrong window size
Replies: 9
Views: 3679

Crash on Mac OS when specifying wrong window size

Hi, in STK we recently had the following crash report: #1 0x943b60c1 in -[NSWindow _confirmSize:force:] #2 0x9424014f in _NXMakeWindowVisible #3 0x9423faa7 in -[NSWindow constrainFrameRect:toScreen:] #4 0x9422b997 in -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] #5 0x...
by hiker
Thu Oct 14, 2010 3:31 am
Forum: Advanced Help
Topic: Transparency rendering in Irrlicht
Replies: 11
Views: 3957

Hi, Yes. The sorting is done per node afaik, not per triangle. Turning the window into a separate mesh(buffer) should make it work. I had a look and just to be precise: the order is done per mesh buffer, not per node (each scene node might render itself twice: non-transparent parts and the transpare...
by hiker
Tue Sep 14, 2010 12:26 am
Forum: Bug reports
Topic: [fixed]Valgrind warning in heapsort
Replies: 1
Views: 461

[fixed]Valgrind warning in heapsort

Hi, it's only a false positive, but for people wanting to have clean valgrind runs: Lines 58-64 of heapsort.h are: for (i=size-1; i>=0; --i) { T t = array_[0]; array_[0] = array_[i]; array_[i] = t; heapsink(virtualArray, 1, i + 1); } The assignments can use memcpy. But for i==0 you have: array_[0] =...
by hiker
Fri Sep 10, 2010 3:56 am
Forum: Bug reports
Topic: [fixed]Additive blending not reset
Replies: 12
Views: 1678

Hi hybrid, do you have a rough idea when the next release (that fixes this bug) comes out - be it a 1.7*, or something newer? We are currently trying to get all bugs fixed in SuperTuxKart to get a RC out, and we have to know if we should use a work around for this bug, or can just wait for the next ...
by hiker
Wed Feb 03, 2010 12:30 am
Forum: Beginners Help
Topic: inserting File Archive
Replies: 2
Views: 296

hybrid wrote:Well, we have moveFileArchive in Irrlicht 1.7. Don't know if this already existed in previous versions.
Ah - I missed that when searching through IFileSystemh - great, that should be all I need.

Thanks!
Joerg