Search found 194 matches

by elander
Sun Dec 24, 2006 10:28 pm
Forum: Off-topic
Topic: Dungeon set inspired in Oblivion art pipeline
Replies: 0
Views: 352

Dungeon set inspired in Oblivion art pipeline

I made a dungeon set for this concept (link bellow) inspired on the Oblivion pipeline. http://institute.no.sapo.pt/ca/ph-c.jpg I was interested in doing some blender blocks for this structure and at the same time study the way they have done it in Oblivion. As you may or may not know Oblivion dungeo...
by elander
Mon Dec 04, 2006 10:07 pm
Forum: Irrlicht.NET
Topic: The Starflight3 project needs Irrlicht.NET programmers
Replies: 0
Views: 1256

The Starflight3 project needs Irrlicht.NET programmers

Information about the Starflight3 project can be found here: http://www.starflight3.org/ The project forums: http://icc.starflight3.org/ If you are interested in contributing please join the forums and ask for Opie (i'm zingbat in the same forums). Some information about the project. The project wil...
by elander
Fri Aug 18, 2006 7:06 pm
Forum: FAQs, Tutorials, Howtos, and external tool lists
Topic: Don't you find math conventions annoying?
Replies: 0
Views: 786

Don't you find math conventions annoying?

In case you are annoyed with math conventions like me you can find all of it explained in the euclideanspace site: http://www.euclideanspace.com/maths/standards/index.htm The ones that apply to Irrlicht are the DirectX ones if im not mistaken. For Euler angles there are usualy lots of synonims to me...
by elander
Sat Aug 12, 2006 6:39 pm
Forum: Open Discussion and Dev Announcements
Topic: Blender GLSL steep parallax bump mapping
Replies: 12
Views: 3205

No it isn't. The Irrlicht example that shows parallax mapping doesn't use a shader directly and is not as good as the one shown by noreg. If you want to try the SteepParallax shader modify the Shaders example to know how to create and setup a shader.
by elander
Fri Aug 11, 2006 2:44 am
Forum: Open Discussion and Dev Announcements
Topic: What about a hashmap in irr::core?
Replies: 3
Views: 825

It's easier if you just study these that are already made in a pro way and add whatever you want:

http://www.cs.fiu.edu/~weiss/dsaa_c++3/code/
http://www.cs.fiu.edu/~weiss/#dsaac++3

No need to reinvent what is already invented.
by elander
Thu Aug 10, 2006 7:59 pm
Forum: Open Discussion and Dev Announcements
Topic: irrAllocator unnecessary?
Replies: 7
Views: 699

There may be other reasons for the use of an allocator. The std c++ library also uses allocators for strings and other containers.
by elander
Thu Aug 10, 2006 12:39 pm
Forum: Open Discussion and Dev Announcements
Topic: irrAllocator unnecessary?
Replies: 7
Views: 699

But what about Irrlicht for mingw compiler, linux and macosx?
by elander
Thu Aug 10, 2006 11:52 am
Forum: Open Discussion and Dev Announcements
Topic: Blender GLSL steep parallax bump mapping
Replies: 12
Views: 3205

Did you just read the word parallax in the article and nothing else? This is a picture showing the differences: http://graphics.cs.brown.edu/games/SteepParallax/compare.jpg The first two are texture and normal mapped, the third is parallax (the one in your shader), the last one is steep parallax. I ...
by elander
Wed Aug 09, 2006 9:20 am
Forum: Open Discussion and Dev Announcements
Topic: How much time does it takes you to compile Irrlicht?
Replies: 21
Views: 1884

I agree 100% with Vitek on this. It helps you making better code by controlling include dependencies and reducing them to the minimum. If you want to include everything then just have: #include <irrlicht.h> Or even, for a more fine control: #include <irrCore.h> #include <irrIO.h> #include <irrXml.h>...
by elander
Tue Aug 08, 2006 7:01 pm
Forum: Open Discussion and Dev Announcements
Topic: Interchange mesh format and binary dependent format strategy
Replies: 1
Views: 451

Interchange mesh format and binary dependent format strategy

The typical way of working to handle the mess of different mesh formats that i see in many engines is supporting an interchange format and a binary format that is dependent on each engine version (almost like a serialization of the engine classes) for the fastest loading possible, then either have a...
by elander
Tue Aug 08, 2006 6:46 pm
Forum: Open Discussion and Dev Announcements
Topic: How much time does it takes you to compile Irrlicht?
Replies: 21
Views: 1884

I hope this posting is meant to be a joke in some way. Are you really concerned about compilation time? Only for curiosity don't worry. Im quite happy with Irrlicht compilation time. This is probably the samller and faster to compile engine (with a good set of features) on the net as you may very w...
by elander
Tue Aug 08, 2006 2:04 pm
Forum: Open Discussion and Dev Announcements
Topic: How much time does it takes you to compile Irrlicht?
Replies: 21
Views: 1884

How much time does it takes you to compile Irrlicht?

I have compiled it with with CodeBlocks in 4 minutes and 30s with a P4 3Ghz and 2Gb ddr ram. The biggest ofenders to compilation time are the mesh loaders. Can we get this value even lower than this? Heres one sugestion Ogre and Panda3d use its own mesh format and any other format is converted to th...
by elander
Mon Aug 07, 2006 2:19 pm
Forum: Open Discussion and Dev Announcements
Topic: Blender GLSL steep parallax bump mapping
Replies: 12
Views: 3205

Well if you use this shader for example. Someone used it with Blender but i don't remenber the thread.

http://graphics.cs.brown.edu/games/Stee ... x/#shaders
by elander
Mon Aug 07, 2006 1:47 pm
Forum: Open Discussion and Dev Announcements
Topic: Animation requirements to support inventory swaping
Replies: 0
Views: 797

Animation requirements to support inventory swaping

I have some hard animation requirements for a remake im working on. I don't mind to wait until someone implements this stuff if Irrlicht can't do it so lets get on with the requirements. The creatures tha need to be animated are these: http://institute.no.sapo.pt/dfmonst.png I haven't choose the bon...
by elander
Sat Aug 05, 2006 4:32 pm
Forum: Open Discussion and Dev Announcements
Topic: Blender GLSL steep parallax bump mapping
Replies: 12
Views: 3205

It should as Irrlicht claims to support GLSL shaders. Just copy that shader from that Blender file and use it on the Irrlicht shader demo. Don't know if it works with the download on the main site or if you need to use the latest svn version. Edit: Just downloaded the file and tried. This is a norma...