DeleD DMFLoader for Irrlicht

Announce new projects or updates of Irrlicht Engine related tools, games, and applications.
Also check the Wiki
laforced
Posts: 39
Joined: Tue Feb 01, 2005 5:07 am
Location: South Carolina,USA
Contact:

Post by laforced »

Ilbuzzo;

Sounds great!! I will wait for the Easter code. Anything I don't have to
write leaves more time to work on something else!! Great work and
look forward to update.
If you're not making GREAT games
you belong in an institute!
The Game Institute.
www.gameinstitute.com
ilbuzzo
Posts: 71
Joined: Sat Mar 05, 2005 4:00 pm
Location: Italy

Post by ilbuzzo »

Hi,
Are you ready for new release?
I'll fix a new release before this Sunday (I've an exam thursday) ;).
It's just now in beta testing.
Bye ;)
afecelis
Admin
Posts: 3075
Joined: Sun Feb 22, 2004 10:44 pm
Location: Colombia
Contact:

Post by afecelis »

compatible and tested with 0.9?

of course I'd love to try it!
laforced
Posts: 39
Joined: Tue Feb 01, 2005 5:07 am
Location: South Carolina,USA
Contact:

Post by laforced »

Are we there yet? :lol: :lol:
If you're not making GREAT games
you belong in an institute!
The Game Institute.
www.gameinstitute.com
Guest

Post by Guest »

Hi All,
I've just downloaded Irrlicht 0.9 version so I've not tried yet.
I'll make some tests in the following days.
Bye :)
ilbuzzo
Posts: 71
Joined: Sat Mar 05, 2005 4:00 pm
Location: Italy

Post by ilbuzzo »

Hi Guys,
really sorry but the guest was me.
;)
Chris
Posts: 18
Joined: Wed Jan 26, 2005 11:17 pm
Location: England
Contact:

Post by Chris »

I guessed, the "Bye :) " gives you away, I've seen it way to many times, yet I'm never dissapointed.

I'll be testing out you DMFLoader myself toworrow as I'm starting some serious work on my project and Khris'll want to see what he makes. Keep up the good work and thanks again, you've saved me a job.
Joe_Oliveri
Posts: 448
Joined: Tue Oct 05, 2004 3:24 am
Location: Boston, MA

Post by Joe_Oliveri »

I guess a lot of use plan on doing work tomorrow. I will also be implamenting the IrrDMF Loader into my project tomorrow! :D
Irrlicht Moderator || Game Designer
Learn the basics at </dream.in.code>
Joe_Oliveri
Posts: 448
Joined: Tue Oct 05, 2004 3:24 am
Location: Boston, MA

Post by Joe_Oliveri »

Well it works, but now I get a run time error! It compiles perfectly no errors or warnings. I think it has something to do with DeleD becouse everytime I rename my lights with the dynamic_ pointer in the front of it. I save and when I reopen DeleD the lights are back to a pointlight name!
Irrlicht Moderator || Game Designer
Learn the basics at </dream.in.code>
Chris
Posts: 18
Joined: Wed Jan 26, 2005 11:17 pm
Location: England
Contact:

Post by Chris »

Hey, I just realised that in using MSVS6 DX9 support will be disabled, so would someone be so kind as to compile me a version of Irrlicht9 with the DMFLoader, and e-mail it to me?

Thanks (possibly) in advance. Chris.
ilbuzzo
Posts: 71
Joined: Sat Mar 05, 2005 4:00 pm
Location: Italy

Post by ilbuzzo »

Hi Guys,
I've done a little testing on DMFLoader beta (new version) with Irrlicht 0.9 and it works really well.
I'll release the source and new binaries this week-end or in the worst case tuesday (I need a faster connection ;) ).
This time I'll implement in binaries physics with Newton++ (a wrapper for Newton to use with Irrlicht).
Now I'll pass to troubles:
@SkaterX29527
DeleD 1.1 version has a bug, in fact when you reopen and then resave a light you'll never obtain dynamic_ in front of name.
You must rename your lights another time and then resave.
This bug has been fixed and will be corrected with DeleD 1.2 update as Paul-Jean written in DeleD forums.
Anyway let me know more of your project or mail me your dmflog.txt file generated so I can give you more infos.Let me know what compiler are you using cause some errors could occurr with Visual C++ so you need a fixed version.
@Chris
I've Visual C++ toolkit 2003, so I can try with this, but let me know if it's the same for you.
Bye
;)
Joe_Oliveri
Posts: 448
Joined: Tue Oct 05, 2004 3:24 am
Location: Boston, MA

Post by Joe_Oliveri »

Ok well I narrowed the error down to this code. What did I do wrong? and Im using Dev-C++! :D

Code: Select all

    
int dyn=DMFLoader.loadLights("sample.dmf",irrSceneMgr);
    
    for (int i=0;i<dyn;i++){
    ISceneNode *light=0;
    light=irrSceneMgr->getSceneNodeFromId(1000+i,0);
        
    //this animation moves lights in circle with some variations!!
    if (light) {
        ISceneNodeAnimator* anim=irrSceneMgr->createFlyCircleAnimator  (  core::vector3df(0.0f,((i+1)%3-1)*50.0f,0.0f),((i%3))*100.0f-50.0f); 
        light->addAnimator(anim);
        anim->drop();
        }
     }
     */
Irrlicht Moderator || Game Designer
Learn the basics at </dream.in.code>
ilbuzzo
Posts: 71
Joined: Sat Mar 05, 2005 4:00 pm
Location: Italy

Post by ilbuzzo »

Hi All,
New version is quite done, here you a screenshot (I'll upload tomorrow on my site ;) ).

Image

It now loads water plains from within DeleD. I'll give you more details on release.
It works correctly with Irrlicht 0.9 and 0.8, Dev-C++ (MinGW 3.4.2) and Visual C++.

@ Skater
Please use loadLights in its complete form so:

Code: Select all

int dyn = DMFLoader.loadLights("sample.dmf",irrSceneMgr,0,1000)
So you are sure that scene nodes are correctly initialised, and be sure you have no other nodes with the same ID (you can set what base ID you want).
If this doesn't help you (your code works anyway for me) please send me your dmflog.txt file generated when you try DMF file loading.

Bye Guys :D
condrula
Posts: 44
Joined: Wed Mar 10, 2004 11:51 pm
Location: italy

Post by condrula »

:roll:

Is possible to make another kind of shape for the water?
niko
Site Admin
Posts: 1759
Joined: Fri Aug 22, 2003 4:44 am
Location: Vienna, Austria
Contact:

Post by niko »

Cool, very nice. Looks like we really need some reflections in the water. ;)
Post Reply