Thread: engine screenshot (Clockwork)

  1. #1
    The Right Honourable psychopath's Avatar
    Join Date
    Mar 2004
    Location
    Where circles begin.
    Posts
    1,071

    engine screenshot (Clockwork)

    After many hours of work, I finally have a spiffy GLSL bumpmapping shader working. As always, it still needs a little work, but i'm satisfied for now.

    (quality reduced from bmp to jpeg conversion)
    M.Eng Computer Engineering Candidate
    B.Sc Computer Science

    Robotics and graphics enthusiast.

  2. #2
    ---
    Join Date
    May 2004
    Posts
    1,379
    Wow, that's purrty

  3. #3
    Supermassive black hole cboard_member's Avatar
    Join Date
    Jul 2005
    Posts
    1,709
    Looks like it's coming on nicely - keep it up man
    Good class architecture is not like a Swiss Army Knife; it should be more like a well balanced throwing knife.

    - Mike McShaffry

  4. #4
    Call me AirBronto
    Join Date
    Sep 2004
    Location
    Indianapolis, Indiana
    Posts
    195
    very very nice

  5. #5
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    Looks very good. Keep up the good work.

  6. #6

    Join Date
    May 2005
    Posts
    1,042
    Lookin' good!
    I'm not immature, I'm refined in the opposite direction.

  7. #7
    Crazy Fool Perspective's Avatar
    Join Date
    Jan 2003
    Location
    Canada
    Posts
    2,640
    Nice, makes me wish my card had shader support

  8. #8
    lv.42 Berserker Drake's Avatar
    Join Date
    Jun 2005
    Posts
    67
    I Love You

  9. #9
    The Right Honourable psychopath's Avatar
    Join Date
    Mar 2004
    Location
    Where circles begin.
    Posts
    1,071
    Heh, thanks all!

    Only one more step to go with this: make it work properly with multiple lights.
    That's going to be the hardest part. To get more than three lights working at once, I need to use more than one rendering pass. Right now, the lowest framerate I've seen in my test level is 30fps. Rendering and blending the scene a second time would slow it to a crawl.

    Anyone know of any effective ways to solve this? I'm thinking portal/sector rendering at the moment; two passes a sector allowing 6 enabled lights. If the sector can't be seen, both rendering and lighting passes are skipped anway, and within the sector, frustum culling should ease the load of the second pass. If there's an easier way, please tell me!
    Last edited by psychopath; 02-13-2006 at 08:50 PM.
    M.Eng Computer Engineering Candidate
    B.Sc Computer Science

    Robotics and graphics enthusiast.

  10. #10
    Call me AirBronto
    Join Date
    Sep 2004
    Location
    Indianapolis, Indiana
    Posts
    195
    when making a costome light engine in lets say direct x. how much direct x light specific code would you acually use. direct x dose not do perpixle so whould you use any at all.

  11. #11
    The Right Honourable psychopath's Avatar
    Join Date
    Mar 2004
    Location
    Where circles begin.
    Posts
    1,071
    I'm not 100% sure how DX handles fixed-function lighting, but to do per-pixel, you would need to use shaders or lightmapping, neither of which requre DX functions. For my lighting, I just have a lighting manager that keeps track of light positions, colors, and attenuation. I have a sorting function that sorts the array of lights in order of highest diffuse contribution to the lowest for each object. The three highest on the list are rendered by the shader.
    M.Eng Computer Engineering Candidate
    B.Sc Computer Science

    Robotics and graphics enthusiast.

  12. #12
    Call me AirBronto
    Join Date
    Sep 2004
    Location
    Indianapolis, Indiana
    Posts
    195
    the bare minimum for doing perpixle shading with lightmapping would be to just have the texture and a normal map, right? but are you saying that you could also do perpixle without any thing but the texture and shaders, no need for specular, diffuse, normal, and ect lightmaps?

  13. #13
    The Right Honourable psychopath's Avatar
    Join Date
    Mar 2004
    Location
    Where circles begin.
    Posts
    1,071
    but are you saying that you could also do perpixle without any thing but the texture and shaders, no need for specular, diffuse, normal, and ect lightmaps?
    The shader would calculate the specular and diffuse lighting. For any lighting, the vertex shader has to have a vertex normal supplied to it. For bumpmapping (with normal maps), you would need to calculate the tangent and bitangent vectors (usually when you load the objects vertices), and pass those to the vertex shader as well.
    M.Eng Computer Engineering Candidate
    B.Sc Computer Science

    Robotics and graphics enthusiast.

  14. #14
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    DirectX will do per-pixel blending but not lighting w/o external shaders. DX FFP will do per-pixel bump-mapping and per-pixel blending.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Clockwork screenshot - GUI
    By psychopath in forum Game Programming
    Replies: 17
    Last Post: 03-20-2006, 05:40 PM
  2. In a game Engine...
    By Shamino in forum Game Programming
    Replies: 28
    Last Post: 02-19-2006, 11:30 AM
  3. Game Engine Link Prob
    By swgh in forum Game Programming
    Replies: 2
    Last Post: 01-26-2006, 12:14 AM
  4. Ultra chess engine contest
    By yodacpp in forum Projects and Job Recruitment
    Replies: 8
    Last Post: 11-21-2004, 07:58 AM
  5. Game structure, any thoughts?
    By Vorok in forum Game Programming
    Replies: 2
    Last Post: 06-07-2003, 01:47 PM