Hey, I'm Simon and I'm making a game!! :)
Support me: Wishlist & Play Demo on Steam

Nox had a very nice feature: dynamic view cones! When the player moved, they were updated in real time. What an eye catcher!

The indie game Teleglitch also has this feature. “Awesome Simon, thank you for pointing this out. Next!”. Not so fast, little Padawan! I mention this, because they fake the view cones in a very interesting way! At first I also thought “Oh ok, they have this Nox-Effect nice.” but after a while i noticed, that they move a bit differently. And then i saw how it works.

No I didn’t! Twice. I was corrected via mail and also now via a comment from johann and i have no idea why i didn’t updated the article… but better later then never, right? *correct mode on*

The code extrudes black “walls” above some objects and the walls upwards to the camera. Simple but awesome. But they don’t let the black walls start directly at the top of the objects. There’s a small gap in between so you can still see the top areas of the objects/walls. I love it.

Here’s the quote of the mail i got:

Actually, the line of sight shadows aren’t done with perspective. They are just black polygons extruded from the walls away from the player. The math is similar to black 3d walls extruding towards the camera, but if you really look at them, they aren’t.

Since my originally thoughts are at least similar to the actual technique, i think i can let the following stay in the article:

Because i have no idea about math and coding, and it’s hard for me to imagine things which i can’t see. So i checked the difference of “real” view cones vs. extruded walls (which isn’t what they actualy did, but at least it’s similar). What i saw was, that the columns aren’t 100% correct, but definitely good enough. Have a look Mr. Bond:

I can only speak for myself but this impressed me a lot. This is a great idea to save the time which would be necessary to code “real” view cones. Oh and if you’re a coder and interested, one of the developers sent me a link to the code.

Update 1
I thought about Diablo 2 one day and they had also some of these view cones. Really interesting because they don’t have any 3D information to calculate these.

Source: Diablo 2

Update 2
Eric Tahiri created the effect in Unreal and showed his results here. Nice! :)

22 thoughts on “Teleglitch – Viewcones

  1. Anonymous

    The problem with teleglitch pseudo view cones system is that I can’t help but see them as giant black 3D geometry hovering above the play field.

    Reply
    1. Simon

      Which is like it is…but i think it’s a cool work around because implementing “real” view cones could be more complicated.
      But you’re right! It looks…weird :D

      Reply
  2. Anonymous

    I never saw teleglitch “walls” as view cones… But just as.. well, black super high walls.
    And it’s super fine by me, makes the small areas much more interesting.

    Reply
  3. adam

    You say D2 didn’t have 3D info, but it did. Remember there was a “3D mode” you could enable, where it used the GPU to do a perspective “bend” of the world, as though you were on a very small planet with visible curvature.

    From some angles, it gave you greater view distance, from others: less. I remember flipping it on and off between different levels. It looked nicer, but sometimes was lethal :)

    Reply
    1. Simon Post author

      Yes you’re right and i just wait for the right time to do a small article about D2-Perspective-Mode. It was a bit…”wobbly” but still impressive :) Do you know more about it? Just wonder how the interpreted the 2D-Data…

      Reply
        1. Simon Post author

          Yeah, i saw this on the website from Paul and it’s crazy. It would be really interesting to see the original tools which where used by Blizzard.

          Reply
  4. Allicorn

    In Droid Assault we use a similar technique but we only cast the shadow over objects within rooms – including enemies – and not over the walls and floor texture. This means you can still see the basic layout of the adjacent areas but you simply can’t see what’s in them until you go look.

    Reply
    1. Simon Post author

      Awwww i love the style of your games! These droids are sooo cool :) Thanks for mentioning your tech – but unfortunately i wasn’t able to see it too well in your trailer because all moves soooo fast :) Do you have some dev papers or examples?

      Reply
  5. johann

    This article is incorrect. If you actually try to extrude walls upward you’ll end up with something a bit different.

    Reply
      1. johann

        teleglitch doesn’t extrude the shadows upwards, it extrudes them away from the player.
        this makes them look a bit more uneven and organic

        Reply
  6. WeslomPo

    Hi. There no need 3d dimension to calculate this shadows. Because they are have infinite length. And you can create finite length, if you add some height value for objects to calculate length of shadow.
    Nox, I think, uses a raycast technique. But not a realy honest raycast, only on “visible” (visible by PC) verticles.
    In teleglitch likely used a GPU shader, which calculate a shadow on some shader standart techniques. I read article about something like this, but on russian.

    Reply
    1. Simon Post author

      That’s a great shot, but how did you reduce the extrusion? Would be awesome to know so i can update my article.

      Reply
      1. Felix Kaaman

        I attached a debugger to the game and edited the shader in real-time. Alternatively you can change it in the application data directory, where the shaders are in text-form (shadow_v.glsl).

        Reply
        1. Simon Post author

          Thanks for the hint! Have to try it out as soon as i find some time – currently the Render Hell Update sucks in all my spare time :D The coolest thing would be to modify the camera in teleglitch. But i guess this isn’t easily done :(

          Reply
  7. Portponky

    To me the Teleglitch lighting effect always seemed like they almost nailed it but missed a few tricks. The extrusions clearly look like black geometry, with a case of “once you see it, you can’t unsee it”. They also bend away from the player in an effort to show the tops of things which unfortunately gives the trick away.

    I feel they should have extruded black areas vertically up from the obstructing geometry, and then rendered the black areas inverted, so they appear inside-out. This would match shadows better and also hide the structure of the black stuff (inside-out geometry is always difficult for the brain to work out). It would also allow the tops of things to be seen.

    I would also make it render the light results in an offscreen buffer and be mixed in with the render so the camera could be moved away from the player slightly, that would help seal the deal. Other lighting could be mixed in, like a slight darkening for distance from player, perhaps weighted by vertical height. Mixing multiple light sources could also be an option.

    Reply
    1. Simon Post author

      thanks, these are very interesting thoughts! one could argue that from the perspective of the character the upper parts of the walls would be invisible but yes, seeing the could be a nice addition :)

      Reply
  8. Zeratu Jiang

    I think Diablo’s way is like that, Every property in map, like wall, box, post, they have a different render layer from BG. And every property has a “shadow map” which could be stretched by the view vector from character to the property. By doing this, the property draw in the top layer, shadow draw to the middle layer, and BG draw on the base layer. The effect finished. I don’t know if it’s correct. I think it should work.

    Reply

Leave a Reply to Simon Cancel reply

Your email address will not be published. Required fields are marked *