Page 8 of 11

Posted: Wed Dec 27, 2006 1:12 am
by Acki
Ohh, I overlooked your post, sorry !!! :oops:

This should not happen !!!
But in your post you say that you copy the include folder into the source folder and then you say the project file is in source\Irrlicht ???
Is this correct ?!?!?
If so, the include folder is at the wrong place, it must be in source\Irrlicht !!!

Edit: I updated the help file, now it's clearer where to copy the include folder... ;)

Posted: Wed Dec 27, 2006 4:31 am
by AussieMike
Thank you for clarifying!

Looks like it works now!

Thanks again.

Posted: Fri Dec 29, 2006 4:55 am
by BlindSide
Acki what did you change in the camera? In my project it is zoomed out alot more now, and all I did was update to Irr 1.2 with your extensions.

PS: Its not really a problem unless you changed the persepective if so can you tell me how to change it back?

Posted: Fri Dec 29, 2006 12:04 pm
by Acki
No, I did not make any changes to any of the camera scene nodes !!! :shock:

But you're right, I recognised that the camera has another FOV with OpenGL than with DX...

I don't know what this causes, but it's not my work, sorry !!! :oops:
But to be really sure I make some tests with the not changed sdk... ;)

EDIT:
that's strange, I can't reconstruct this behavior !?!?! :shock:
I really have no clue !?!?!

EDIT2:
It seems that the AVIPlayer causes this !?!?!
But only with OpenGL, DX works as usual !!!
And if no AVIPlayer was created OpenGL works right, too... :shock:

Posted: Fri Dec 29, 2006 1:26 pm
by Acki
Wow, strange, there seems to be a bug with the AVIPlayer !?!?! :shock:
Look at this screenshots:

with DX
Image

with OpenGL
Image

the green part is the whole screen, the black part is the scene node with the avi played on it...
As you can see, both don't fit into the scene node !!! :shock:
So there is no problem with the camera !!!
But I still have no clue what this causes... :cry:

EDIT:
It seems I know what the error is: the avi's dimension must be in the power of 2 (like textures have to be) !!!
If they are not, it will be cut/streched !!! :roll:

Posted: Fri Dec 29, 2006 6:22 pm
by Acki
Well, to get the correct dimension of the video I now added the function getMovieDimension() to the IAVIPlayer !!!
Now you can draw only the video picture without the blanc area (with any driver) !!!

Image

Posted: Fri Jan 19, 2007 12:14 am
by Acki
Hi,
I saw a thread about changing the speed of the FPS camera...
And I found that this functinality should be added... ;)

So I added an extension for the FPS camera and now you can retrieve and change the speed for movement and rotation after the camera was created !!! 8)

Posted: Fri Jan 19, 2007 12:36 am
by bitplane
haha you beat me to it ;)
i'll add this to svn at next update too :)

Posted: Sat Jan 20, 2007 1:52 pm
by Halan
bitplane you should add a lot of ackis stuff ;)

Posted: Mon Jan 22, 2007 1:06 pm
by JPulham
here here. Maybe Acki should make a patch for the SVN that someone can make as part of 'main stream irrlicht' for 1.3

Posted: Mon Jan 22, 2007 1:11 pm
by hybrid
I always said that having a patch would make it much more likely to add these things. That said I must admit that the bones extension is also not part of Irrlicht yet, although I have it as a patch on my patch page. But this is mainly due to the animation stuff which neads much more than just some patches. And as it seems Luke might come up with something more general.

Posted: Fri Feb 16, 2007 9:28 pm
by Strong99
Acki? When i add two chatboxes or one chatbox and a filebrowser (and the same with the listboxes), the latest GUI element works ok but the first doesn't show a list any more instead of that i see a line wich inlcudes al lines of text. I see al line in the same place over each other.

i mean al lines start at the same place.

sorry, i can't post a screenshot.

Without the irrExtension the filebrowsers/listboxes work ok but when i add them it stops working right when i add a second or third.

Place 2 listboxes with for example 8 items and you will see.
I use Direcxt 9.0c for the device and compile with vs 2005

Posted: Fri Feb 16, 2007 10:32 pm
by Acki
Uhhh, that's strange !!! :shock:
Also if both list boxes are empty the program crashes when exiting... :shock:

Maybe there where changes made to the Irrlicht source in one of the latest versions, or I made an error, I don't know...

Unfortunately I have not much time at the moment... :cry:
But I will check this as soon as possible, promised !!! ;)

Posted: Sat Feb 17, 2007 2:04 pm
by Acki
Well, I was verry confused because I often use more than one list box and never had this problem...
And I found out why I not have this problem !!!

If you set the override font the problem is no longer !!!
So use setOverrideFont(...) on the list boxes...

Maybe this is because the internal font was changed, or maybe a combination of a bug I made and the internal font...

Of course this solves not the bug, but you can go on with your work until I found the bug... ;)

Posted: Sat Feb 17, 2007 2:25 pm
by Strong99
thanx :D