Post Your Irrlicht Screenshots / Render Here.

Post your questions, suggestions and experiences regarding to Image manipulation, 3d modeling and level editing for the Irrlicht engine here.
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Re: Post Your Irrlicht Screenshots / Render Here.

Post by randomMesh »

Mel wrote:What is your game about?
It's gonna be a Realm of the Trolls clone.

Basically you have to make your way trough a troll infested dungeon and collect treasure and avoid traps. What makes it different from all the other platformers is the fact ,that you are able to 'melt' the ground floor with magic energy (limited) and create holes in order to prevent the trolls from reaching you or find different ways out.

I am currently working on both the editor and the gui element which renders the map. Some pixel pushing, you know.
"Whoops..."
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

Not half bad :) At least it will have more than 16 colors. Looks promising.
randomMesh wrote:You have to make your way trough a troll infested dungeon and collect treasure and avoid traps.
So, basically, it is like browsing through some groups of Facebook... :lol:
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hendu »

Image

As requested ;)

Pathfinding itself moved from raycasting to moving a ghost sphere around. Optimization using raycasting added. I don't think smoothing is even needed anymore.
REDDemon
Developer
Posts: 1044
Joined: Tue Aug 31, 2010 8:06 pm
Location: Genova (Italy)

Re: Post Your Irrlicht Screenshots / Render Here.

Post by REDDemon »

randomMesh wrote:
Mel wrote:What is your game about?
It's gonna be a Realm of the Trolls clone.

Basically you have to make your way trough a troll infested dungeon and collect treasure and avoid traps. What makes it different from all the other platformers is the fact ,that you are able to 'melt' the ground floor with magic energy (limited) and create holes in order to prevent the trolls from reaching you or find different ways out.

I am currently working on both the editor and the gui element which renders the map. Some pixel pushing, you know.
oohh really nice remember me loder runner 2.
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Granyte »

Image

i updated my planetary engine again
http://granyte.blogspot.ca/2012/06/plan ... ne-v3.html

i should probably submit a picture to the picture of the month contest
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hendu »

What's the green thing?
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Granyte »

it's a place holder grass texture
REDDemon
Developer
Posts: 1044
Joined: Tue Aug 31, 2010 8:06 pm
Location: Genova (Italy)

Re: Post Your Irrlicht Screenshots / Render Here.

Post by REDDemon »

i think you should try to submit a post :) try to fix seams between tiles is worth. Really good looking.
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Granyte »

i fixed the seams since yesterday but now i'm having trouble alining the tiles properly and also the looping texcoord is giving me nightmares

i fixed that to now the only complain i have is that irrlicht does not suport floating point image format.
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hendu »

Float textures or RTT? Float RTTs are supported.
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Granyte »

Yes floating point RTT are suported but CIMage class cannot suport it so when i read the RTT to build a mesh i need to convert it to an image and i simply can't so because of it i'm stuck with an 8 bit heightmap
Mel
Competition winner
Posts: 2292
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Mel »

You can use normalized floating point values (that is, values in the range (0,1)) and then, pack and unpack the floating point values into a rgba 32 bit texture
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
hendu
Posts: 2600
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hendu »

Wait, you're generating things on GPU and then reading them back to the CPU to create a mesh? Interesting, if that's so.

For info on how to pack 32-bit floats without losing accuracy, see Aras' blog.
Granyte
Posts: 850
Joined: Tue Jan 25, 2011 11:07 pm
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by Granyte »

yes i'm generating the heightmap for each texture on the gpu then uploading it back to the cpu to generate a mesh because there is geometry shader in dx currently


I what is that blog?

Edit i just found it the theory is interesting ill have to find how the depcking works and ill also need to push the number of texture suported by irrlicht over 8/
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Re: Post Your Irrlicht Screenshots / Render Here.

Post by hybrid »

Admin note: I've split the discussion about vertex shader textures into a new thread in "Open discussion"
Post Reply