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.

Re: Post Your Irrlicht Screenshots / Render Here.

Postby randomMesh » Thu Jun 28, 2012 2:15 pm

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.
"In fact, nearly every sequence of punctuation is used for something in Perl. So, if you get writer’s block, just let the cat walk across the keyboard, and debug the result."

Katastrophe - A free, open source flocking boids simulation
User avatar
randomMesh
 
Posts: 1138
Joined: Fri Dec 29, 2006 12:04 am

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Mel » Thu Jun 28, 2012 6:01 pm

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:
http://santiagong.daportfolio.com/
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
User avatar
Mel
Competition winner
 
Posts: 1783
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Postby hendu » Fri Jun 29, 2012 1:03 pm

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.
hendu
 
Posts: 1552
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby REDDemon » Sat Jun 30, 2012 1:25 pm

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.
OpenGL is not hard. What you have to do is just explained in specifications. What is hard is dealing with poor OpenGL implementations.
User avatar
REDDemon
 
Posts: 831
Joined: Tue Aug 31, 2010 8:06 pm
Location: Genova (Italy)

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Granyte » Sat Jun 30, 2012 8:54 pm

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
Granyte
 
Posts: 515
Joined: Tue Jan 25, 2011 11:07 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby hendu » Sat Jun 30, 2012 8:57 pm

What's the green thing?
hendu
 
Posts: 1552
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Granyte » Sat Jun 30, 2012 8:59 pm

it's a place holder grass texture
Granyte
 
Posts: 515
Joined: Tue Jan 25, 2011 11:07 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby REDDemon » Sat Jun 30, 2012 9:56 pm

i think you should try to submit a post :) try to fix seams between tiles is worth. Really good looking.
OpenGL is not hard. What you have to do is just explained in specifications. What is hard is dealing with poor OpenGL implementations.
User avatar
REDDemon
 
Posts: 831
Joined: Tue Aug 31, 2010 8:06 pm
Location: Genova (Italy)

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Granyte » Sat Jun 30, 2012 11:33 pm

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.
Granyte
 
Posts: 515
Joined: Tue Jan 25, 2011 11:07 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby hendu » Sun Jul 01, 2012 2:58 pm

Float textures or RTT? Float RTTs are supported.
hendu
 
Posts: 1552
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Granyte » Sun Jul 01, 2012 5:58 pm

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
Granyte
 
Posts: 515
Joined: Tue Jan 25, 2011 11:07 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Mel » Sun Jul 01, 2012 7:17 pm

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
http://santiagong.daportfolio.com/
"There is nothing truly useless, it always serves as a bad example". Arthur A. Schmitt
User avatar
Mel
Competition winner
 
Posts: 1783
Joined: Wed May 07, 2008 11:40 am
Location: Granada, Spain

Re: Post Your Irrlicht Screenshots / Render Here.

Postby hendu » Sun Jul 01, 2012 8:26 pm

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.
hendu
 
Posts: 1552
Joined: Sat Dec 18, 2010 12:53 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby Granyte » Sun Jul 01, 2012 9:41 pm

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/
Granyte
 
Posts: 515
Joined: Tue Jan 25, 2011 11:07 pm

Re: Post Your Irrlicht Screenshots / Render Here.

Postby hybrid » Wed Jul 04, 2012 11:28 am

Admin note: I've split the discussion about vertex shader textures into a new thread in "Open discussion"
hybrid
Admin
 
Posts: 13943
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany

PreviousNext

Return to Everything 2d/3d Graphics

Who is online

Users browsing this forum: No registered users and 0 guests