What are the plans for Irrlicht 1.8 and further?

Discuss about anything related to the Irrlicht Engine, or read announcements about any significant features or usage changes.
Post Reply
B@z
Posts: 876
Joined: Thu Jan 31, 2008 5:05 pm
Location: Hungary

Post by B@z »

and if we talk about ogre, what about setting different animations for joints in the same node? e.g. running while shooting. thats an important feature for almost all kind of games where u control a human.
i have a solution for that, but that isn't too good for performance i think...
Image
Image
ent1ty
Competition winner
Posts: 1106
Joined: Sun Nov 08, 2009 11:09 am

Post by ent1ty »

It might be a good idea to have ITimer work with microseconds instead of miliseconds. This is sometimes just not precise enough.
irrRenderer 1.0
Height2Normal v. 2.1 - convert height maps to normal maps

Step back! I have a void pointer, and I'm not afraid to use it!
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Some people are already suggesting to remove the one millisecond precision and come back to 10-15 ms, due to the problems with HighPrecisionTimer or whatever this is called. But how would one go beyond this 1ms limit?!
ent1ty
Competition winner
Posts: 1106
Joined: Sun Nov 08, 2009 11:09 am

Post by ent1ty »

hybrid wrote:But how would one go beyond this 1ms limit?!
Well I suppose there are some libraries out there that can do it, just try google.
Or did you mean something else?
irrRenderer 1.0
Height2Normal v. 2.1 - convert height maps to normal maps

Step back! I have a void pointer, and I'm not afraid to use it!
CuteAlien
Admin
Posts: 9693
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

ent1ty wrote:Well I suppose there are some libraries out there that can do it, just try google.
The high resolution timer is the best you can get from Windows on PC's. But well, maybe there are tricks to get beyond that of which I never heard.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
ent1ty
Competition winner
Posts: 1106
Joined: Sun Nov 08, 2009 11:09 am

Post by ent1ty »

Ok, so it might be harder to implement than I thought, if at all, but I would still love this.
irrRenderer 1.0
Height2Normal v. 2.1 - convert height maps to normal maps

Step back! I have a void pointer, and I'm not afraid to use it!
BlindSide
Admin
Posts: 2821
Joined: Thu Dec 08, 2005 9:09 am
Location: NZ!

Post by BlindSide »

It's not hard, it's unreliable, read more from our friend at VirtualDub: http://www.virtualdub.org/blog/pivot/entry.php?id=106
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
ent1ty
Competition winner
Posts: 1106
Joined: Sun Nov 08, 2009 11:09 am

Post by ent1ty »

Maybe you could add a setScale func that takes as parameter a float and sets x,y and z scale of the object to the value. This should be easy to implement and would make my code much more readable on many places.

Code: Select all

ISceneNode::setScale(f32 nscale)
{
  this->setScale(nscale, nscale, nscale);
}
irrRenderer 1.0
Height2Normal v. 2.1 - convert height maps to normal maps

Step back! I have a void pointer, and I'm not afraid to use it!
Lonesome Ducky
Competition winner
Posts: 1123
Joined: Sun Jun 10, 2007 11:14 pm

Post by Lonesome Ducky »

entity, you could just do this:

Code: Select all

node->setScale(vector3df(2));
ent1ty
Competition winner
Posts: 1106
Joined: Sun Nov 08, 2009 11:09 am

Post by ent1ty »

which is still longer than

Code: Select all

node->setScale(2);
irrRenderer 1.0
Height2Normal v. 2.1 - convert height maps to normal maps

Step back! I have a void pointer, and I'm not afraid to use it!
Lonesome Ducky
Competition winner
Posts: 1123
Joined: Sun Jun 10, 2007 11:14 pm

Post by Lonesome Ducky »

Informing you in case you didn't know
3DModelerMan
Posts: 1691
Joined: Sun May 18, 2008 9:42 pm

Post by 3DModelerMan »

I think we need custom particle affector and emitter serialization support.
That would be illogical captain...

My first full game:
http://www.kongregate.com/games/3DModel ... tor#tipjar
CuteAlien
Admin
Posts: 9693
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

3DModelerMan wrote:I think we need custom particle affector and emitter serialization support.
Plus custom font and custom skin serialization support. And probably should go through other classes to check if we miss some more.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
3DModelerMan
Posts: 1691
Joined: Sun May 18, 2008 9:42 pm

Post by 3DModelerMan »

Yeah, that would be awesome. We could do nearly anything from an editor.
That would be illogical captain...

My first full game:
http://www.kongregate.com/games/3DModel ... tor#tipjar
stefbuet
Competition winner
Posts: 495
Joined: Sun Dec 09, 2007 4:13 pm
Location: france

Post by stefbuet »

I saw 3DmodelerMan asking if you'll add cube map support.
I "up" this question, because it would be really cool to produce shadows fastly.
Post Reply