Rendering and Texturing Technology for 3D Game Performance

Started by
7 comments, last by BCullis 11 years, 6 months ago
Good day, folks smile.png

Blender is the focus program, but I want to get viewpoints for Wings 3D ray plug-ins, too. It's time for me to go game performance for long term strategy. I'll start 3D game creation by the end of the year, after working with 2D games this autumn, progressing nicely - much thanks to this community! biggrin.png

Background is that I am learning C# and Python. I have over two years experience in creating 3D content for a couple games being developed. Light weight rendering with performance in mind will be used sparingly in my future games.

Kerkythea and PovRay are being considered by me. I want liberally free, no cost, and open source rendering technology to plug into Blender and Wings 3D. One out there I already elliminated due to being too slow, so I will keep that one quiet and see who knows their stuff here. ph34r.png

laugh.png



EDIT:[color=#000080] [color=#000080]Given: I sometimes see realistic glass and metal in games alongside conventional image textures, shaders, and so on, sometimes in the same model. I am looking for the most performance friendly technologies for including such feaures in game 3D models.

[color=#000080]Question: Are things like raytracing feasible for this goal and which open source plugins would get me there?


[color=#000000]As always, any and all comments, criticism, and praises are welcome! laugh.png

[color=#000000]Love and peace!

[color=#000000]Clinton

Personal life and your private thoughts always effect your career. Research is the intellectual backbone of game development and the first order. Version Control is crucial for full management of applications and software. The better the workflow pipeline, then the greater the potential output for a quality game. Completing projects is the last but finest order.

by Clinton, 3Ddreamer

Advertisement
This question is sort of vague. You say you want to start 3D game creation, but then you talk about wanting ray rendering engines for Blender. Creating 3D assets for games isn't so much a function of Blender's ray tracing, as it is an assorted bag of techniques for generating geometry, shaders and texture/normal/spec maps for import into the 3D engine. Blender's renderer, whichever you choose, really has little to do with the process, outside of generating preview renders so you know what the model looks like. Once the model is exported, Blender no longer factors into the equation.

That being said, I like Blender Cycles. It represents a move on Blender's part toward eliminating "fixed function" in favor of "shader based" rendering, and with a good Cuda card it can achieve some pretty decent performance. It's easy enough to support different materials on the same model, even on the same face, using mix shaders and a mix source such as a texture map. One drawback of it is that baking is disabled, so you can't bake from your pretty node materials to a texture map. You can still use Blender Internal material nodes and baking, however.

Other alternatives include LuxRender and Aqsis, which both include plugins for Blender. I haven't played with either, so I can't really say how useful they are.

Perhaps a few more details on exactly what it is you are trying to accomplish would be in order...
Yep, okay...

The goal is: 3D Game Models allowing high performance which include both textures and ray technology, really as much techology as I can get into a model and still keep performance high. blink.png

Some things I know and others I will learn! So far I followed my leader who is a game designer but now I venture into the world of game development on my newbie happy way. smile.png

Thanks for replying, JTippetts.


Clinton

Personal life and your private thoughts always effect your career. Research is the intellectual backbone of game development and the first order. Version Control is crucial for full management of applications and software. The better the workflow pipeline, then the greater the potential output for a quality game. Completing projects is the last but finest order.

by Clinton, 3Ddreamer

What exactly do you think you mean when you talk about "models including ray technology"? That doesn't really make sense...

Are you wanting to pre-render scenes or assets, are you trying to create assets for a game, or are you actually using the blender game engine to create your game?

- Jason Astle-Adams

JTippetts and jbadams,


The question for more specific goal is fair.

Given: I sometimes see realistic glass and metal in games alongside conventional image textures, shaders, and so on, sometimes in the same model. I am looking for the most performance friendly technologies for including such feaures in game 3D models.

Question: Are things like raytracing feasible for this goal and which open source plugins would get me there?

Thank you for challenging me to improve my communication, first post edited again. smile.png

Clinton

Personal life and your private thoughts always effect your career. Research is the intellectual backbone of game development and the first order. Version Control is crucial for full management of applications and software. The better the workflow pipeline, then the greater the potential output for a quality game. Completing projects is the last but finest order.

by Clinton, 3Ddreamer


JTippetts and jbadams,


The question for more specific goal is fair.

Given: I sometimes see realistic glass and metal in games alongside conventional image textures, shaders, and so on, sometimes in the same model. I am looking for the most performance friendly technologies for including such feaures in game 3D models.

Question: Are things like raytracing feasible for this goal and which open source plugins would get me there?

Thank you for challenging me to improve my communication, first post edited again. smile.png

Clinton


3D models are just pieces of data, they describe geometry with which you can associate materials, textures, etc. How these are actually represented depends on the application which you load them into, be it blender, some other modelling package, or your game application.
Ray tracing is a technique mostly used for generating an image off-line and can take data from 3D models as input to build your scene. Ray tracing itself has absolutely nothing to do with the creation of 3D models, textures or materials or the performance of using said models.

If you want fancy materials in your game you'll have to write the material system and shaders to render these all by yourself. Your geometry will be built in blender, your textures in some image editing software and your material definitions will be in some format your game can read. How to get a nice effect like glass or metal will then be all up to you.

I gets all your texture budgets!


What exactly do you think you mean when you talk about "models including ray technology"? That doesn't really make sense...

Are you wanting to pre-render scenes or assets, are you trying to create assets for a game, or are you actually using the blender game engine to create your game?


Is ray technology such as raytracing in 3D models feasible for good performance of a game?

Until the end of 2013, I have chosen Axiom 3D rendering engine (C#) upon which to build my main game engine during that period. Blender 3D game engine (Python) will be a secondary effort as extra time allows.

I know that it all seems too ambitious for a newbie game developer but I am learning fast, have much time available, working hard, and making steady progress! biggrin.png

If by the end of 2013 I can have several simple games, the last one having all the basic game features (sound, collision, etc.), then I will be even happier than now! biggrin.png

Guys, give me your best, even if the news is inconvient for me, please.


Clinton

Personal life and your private thoughts always effect your career. Research is the intellectual backbone of game development and the first order. Version Control is crucial for full management of applications and software. The better the workflow pipeline, then the greater the potential output for a quality game. Completing projects is the last but finest order.

by Clinton, 3Ddreamer


[quote name='jbadams' timestamp='1349243630' post='4986293']
What exactly do you think you mean when you talk about "models including ray technology"? That doesn't really make sense...

Are you wanting to pre-render scenes or assets, are you trying to create assets for a game, or are you actually using the blender game engine to create your game?


Is ray technology such as raytracing in 3D models feasible for good performance of a game?

Until the end of 2013, I have chosen Axiom 3D rendering engine (C#) upon which to build my main game engine during that period. Blender 3D game engine (Python) will be a secondary effort as extra time allows.

I know that it all seems too ambitious for a newbie game developer but I am learning fast, have much time available, working hard, and making steady progress! biggrin.png

If by the end of 2013 I can have several simple games, the last one having all the basic game features (sound, collision, etc.), then I will be even happier than now! biggrin.png

Guys, give me your best, even if the news is inconvient for me, please.


Clinton
[/quote]

Ray tracing is barely used in realtime applications, I've seen some experiments using GPGPU solutions to do realtime ray tracing but they get very slow performance for even the simplest scenes.

If you want realtime performance you should stick with rasterization engines

I gets all your texture budgets!


Given: I sometimes see realistic glass and metal in games alongside conventional image textures, shaders, and so on, sometimes in the same model. I am looking for the most performance friendly technologies for including such feaures in game 3D models.

Question: Are things like raytracing feasible for this goal and which open source plugins would get me there?


More than likely, that in-game model is composed of multiple meshes with multiple material types applied. The material is a catch-all term that refers to the collection of shaders and in-game variables dictating how the mesh geometry is converted to visible pixels. One material might be "chrome" (arbitrarily named by a technical artist) which calculates specular reflection and uses an environment map for additional realistic reflections on top of a simple grey diffuse color.

I think the main problem here is you're attributing too many features to the 3D model. Things like glass, water, and other transparent and/or unique-looking elements are either created programmatically (i.e. someone writes shader code that generates a choppy ocean surface, but no one sat down and made a model of the ocean) or they have very simple geometry and custom shaders and draw order (like transparent, breakable glass: probably just a single quad in the modeling tool).

And ray tracing is not a real-time solution for rendering. This is why things like SSAO and projective textures/shadows became popular: you get the appearance of more natural lighting phenomenon without paying for universal ray-tracing calculations.

Hazard Pay :: FPS/RTS in SharpDX (gathering dust, retained for... historical purposes)
DeviantArt :: Because right-brain needs love too (also pretty neglected these days)

This topic is closed to new replies.

Advertisement