Search found 16 matches

by jolindien
Thu Nov 16, 2006 6:29 pm
Forum: Bug reports
Topic: [fixed] .x loader messing up frame hierarchy
Replies: 1
Views: 501

[fixed] .x loader messing up frame hierarchy

hi guys, i think there's a bug in the .x loader, destroying the frame hierarchy.

in CXFileReader.cpp, bool CXFileReader::parseDataObject()

code is :
if (objectName == "Frame")
return parseDataObjectFrame(RootFrame);
else

and should be :

if (objectName == "Frame")
{
RootFrame.ChildFrames ...
by jolindien
Fri Nov 03, 2006 2:20 pm
Forum: Bug reports
Topic: [not a bug] [WIN32] getVideoModeList bug
Replies: 1
Views: 442

what about color depth ? with your 3x resolution ... wouldnt be : w x h 8bit,
w x h 16bit, w x h 32bit ?
by jolindien
Thu Nov 02, 2006 12:43 am
Forum: Bug reports
Topic: CCursorControl of CIrrDeviceWin32.h
Replies: 0
Views: 237

CCursorControl of CIrrDeviceWin32.h

There s problem in this cursor class that is messing up positions of the cursors on resizable windows under win32.

2 variables of CCursorControl are not updated on a window resize and thus are wrong :
core::dimension2d<s32> WindowSize;
core::dimension2d<float> InvWindowSize;

Personnally i did a ...
by jolindien
Wed Oct 25, 2006 3:52 pm
Forum: Bug reports
Topic: [fixed] getElementFromPoint(), what do you think ?
Replies: 0
Views: 513

[fixed] getElementFromPoint(), what do you think ?

Here is something looking like a side effect bug :

shouldnt this function be :

IGUIElement* getElementFromPoint(const core::position2d<s32>& point)
{
IGUIElement* target = 0;

// we have to search from back to front.

core::list<IGUIElement*>::Iterator it = Children.getLast();

if ...
by jolindien
Wed Oct 25, 2006 2:21 am
Forum: Code Snippets
Topic: CGUITextBox, scrolling, static text.
Replies: 34
Views: 19052

If you want to scroll the text in the CGUITextBox with your mouse wheel , just add this code in the bool CGUITextBox::OnEvent(SEvent event) of CGUITextBox.cpp.
This code comes from CGUIListBox.cpp.

switch(event.EventType)
{
case EET_MOUSE_INPUT_EVENT:
{
switch(event.MouseInput.Event)
{
case ...
by jolindien
Wed Aug 09, 2006 1:56 am
Forum: Bug reports
Topic: '\r' bug with xml reading & render
Replies: 5
Views: 1153

Thx to this post and because I also had those "black boxes" in GUI elements at the end of sentences read from and xml file, i have fixed it as follow :

in bool CXMLReaderImpl::setText(char_type* start, char_type* end) :

i replaced :

// set current text to the parsed text, and replace xml ...
by jolindien
Tue Aug 08, 2006 10:51 pm
Forum: Bug reports
Topic: const correctness thread
Replies: 9
Views: 1034

Another const problem, giving errors if you use common const "char*" retrun functions as argument :

files :
IGUITabControl.h
CGUITabControl.h
CGUITabControl.cpp

virtual IGUITab* addTab(wchar_t* caption, s32 id=-1) = 0;

as it should be :

virtual IGUITab* addTab( CONST wchar_t* caption, s32 id ...
by jolindien
Sun Aug 06, 2006 8:41 pm
Forum: Open Discussion and Dev Announcements
Topic: Project Annoucements SubDirectories ??
Replies: 4
Views: 1091

ok, so no solution yet :D.
by jolindien
Sun Aug 06, 2006 8:19 pm
Forum: Bug reports
Topic: Bug fix problems ? matrix4::transformBox, projection matrix
Replies: 6
Views: 567

ok, no more THIS or this! :D, i should have used "bold" instead on "2005". Sorry.

As for tested code, i do agree, and be sure i wont post anything untested nor wont post anything before being sure of the problem. Althought i can only test with the limitations of the appliaction i m developping ...
by jolindien
Sun Aug 06, 2006 8:08 pm
Forum: Bug reports
Topic: Bug fix problems ? matrix4::transformBox, projection matrix
Replies: 6
Views: 567

Thats ok for bug tracking, if i find sthg new i ll double post here and on the tracker on sourceforge.

Should i do it for those 2 bugs ? or are you in charge ?
by jolindien
Sun Aug 06, 2006 7:53 pm
Forum: Bug reports
Topic: Bug fix problems ? matrix4::transformBox, projection matrix
Replies: 6
Views: 567

Posting bugs and also remembering their existence from time to time is ok but you should reconsider your style of posting.
You mean you think i was shouting ? i actually wasnt, but i thought that asking again and again for major bugs fix could be taken like so.

So whats wrong with my posting ...
by jolindien
Sun Aug 06, 2006 2:44 pm
Forum: Open Discussion and Dev Announcements
Topic: Project Annoucements SubDirectories ??
Replies: 4
Views: 1091

thx for the tip.

But having things well sorted would be good also isnt it ?
The more projects there will be, the more mess.

I mean, if its possible for administrators to create new forums in this one, and to move posts... i d do that for you if you thinks its boring if you want. I just want to be ...
by jolindien
Sun Aug 06, 2006 2:28 pm
Forum: Bug reports
Topic: Bug fix problems ? matrix4::transformBox, projection matrix
Replies: 6
Views: 567

Bug fix problems ? matrix4::transformBox, projection matrix

Hi guys,

Once again i m about crying... but i promise, last time i do that.

I'm talking about the SVN version 1.1alpha.

* matrix4::transformBox is wrong and messing up collisions and culling !

The problem isnt really that there s bug, bugs are normal in developpement. Problem is that someone ...
by jolindien
Sat Aug 05, 2006 5:59 pm
Forum: Open Discussion and Dev Announcements
Topic: Project Annoucements SubDirectories ??
Replies: 4
Views: 1091

Project Annoucements SubDirectories ??

Hi guys, moderators and co...

I know it s the second post where i will annoy ppl about the forum, but because this is the main "ressource" finder for irrlicht things, the first help, i have something else (again) to ask about this forum.

i dont know exactly where to post this, and who to ask but ...
by jolindien
Wed Jul 26, 2006 6:06 pm
Forum: Open Discussion and Dev Announcements
Topic: Search feature of the forum !!!
Replies: 3
Views: 532

yeap good tip, but having a proper search feature in the forum would be "nice" tho.