Show HN: 2D field of view demo
61–70 of 80 posts
Re: Show HN: 2D field of view demo
#62So... Can anyone explain what is so special or interesting about this? Both the idea and the algorithms are decades old and were already used in the 80s and 90s computer games like Wolf3D and Doom.
OP was clever enough to figure it out, and that's great, but it bugs me some every time I see them say that they couldn't understand other people's explanations of how it works.
Re: Show HN: 2D field of view demo
#63Similar technique used for a nice website background: https://web.archive.org/web/20140429043206/http://www.goodga...
Re: Show HN: 2D field of view demo
#64Earlier quoted context omitted.
Well done! It's almost the same algorithm I came up with in one sleepless night, 7 years ago. I used it in a game that was not finished: http://feiss.be/games/luxi (shameless Show HN)
This looks like something that could do well comercially today, you guys should pick it back up.
Re: Show HN: 2D field of view demo
#65Earlier quoted context omitted.
> the result is probably wanted by the CPU -- I think this is a good reason to do it in the CPU. > its not an obvious candidate for offloading the the GPU -- How? Shooting a ray to every vertex comes to my mind.
I did something even worse with WebGL, shooting a ray from every light source and view point to every pixel on the screen in the pixel shader (so something has to be in LOS and and lit to be seen). http://i.imgur.com/ZJhr4Ll.png The "player" is sitting on the "wall" of a room, to the right of it there are stairs going "downwards", it's all just a heightmap. Needless to say it's kinda slow, but I was surprised how nea…
I'm trying to build something that can be used across the DSM we have of SF for better planning our wireless links.
Re: Show HN: 2D field of view demo
#66Earlier quoted context omitted.
This looks like something that could do well comercially today, you guys should pick it back up.
I second this.
Re: Show HN: 2D field of view demo
#67Similar technique used for a nice website background: https://web.archive.org/web/20140429043206/http://www.goodga...
Re: Show HN: 2D field of view demo
#68So... Can anyone explain what is so special or interesting about this? Both the idea and the algorithms are decades old and were already used in the 80s and 90s computer games like Wolf3D and Doom.
Its not. We've been in the Eternal September of Hacker News for a bit now. This is interesting to all the people learning javascript/programming/graphics for the first time and they're a sizable portion of the users.
What's not ok is to grouse about it. If you know more than others, share some of what you know. Superciliousness is a degrading spirit, and if you don't want to see HN degrade, that's the kind of thing you should help us cut back on.
Re: Show HN: 2D field of view demo
#69So... Can anyone explain what is so special or interesting about this? Both the idea and the algorithms are decades old and were already used in the 80s and 90s computer games like Wolf3D and Doom.
And the discussion upthread is superb, so this was an excellent post for HN in every way.
Re: Show HN: 2D field of view demo
#70So... Can anyone explain what is so special or interesting about this? Both the idea and the algorithms are decades old and were already used in the 80s and 90s computer games like Wolf3D and Doom.
Even with a known algorithm, it can be cool to see a clean visualization of it. OP was clever enough to figure it out, and that's great, but it bugs me some every time I see them say that they couldn't understand other people's explanations of how it works.
> it bugs me some every time I see them say that they couldn't understand other people's explanations of how it works.
I think I need to explain. Most of them explain their work well, but I cannot reuse them as they all have 360° FoV, not limited by distance, while I wanted something else, hence this mini project.
The ones which had what I wanted were closed source.