Server Sided 3D rendering - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T08:51:17Z http://stackoverflow.com/feeds/question/623259 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/623259/server-sided-3d-rendering 3 Server Sided 3D rendering Paul 2009-03-08T08:11:54Z 2009-03-08T10:53:38Z <p><strong>My questions have to do with this very interesting article:</strong> <a href="http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/" rel="nofollow">http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/</a></p> <p><strong>What they say:</strong> In this article it is claimed that this company can do amazing server sided 3D rendering all the while displaying the output in the browser using Flash, Ajax, Java or Active X. It is also claimed that the fasted method is Ajax running on safari (up to 220fps).</p> <p><strong>What I have done:</strong> I have pondered about ideas like this before and I have even fooled around with three methods of rendering to the browser. To be clear I never implemented a 3D render but rather used already available images hosted at google, or randomly generate pixels.</p> <p>My first two attempts were involved hackishly trying to draw each pixel in the browser using div tags or the canvas tag. I used php to do so making it slow in the first place but looping through tens of thousands...millions of pixels would take years in any other language anyway, it took like 7 seconds in php. (the random pixel colors did not significantly increase execution time.</p> <p>My third attempt involved using multiple images to make the big picture, and I set up a test using a total of ten thumbnails hosted on google where the php script loops through all 10 to randomly display 48 total images on the web page. Every time you press a button the Ajax will call on the php script to re-arrange the images. Running this locally with your cache cleared takes about two seconds to display all the images (0.5 seconds after caching).</p> <p><strong>The WTF how the hell do those lairs do that?</strong> Because of my first hand experience and plain conventional logic, what this company claims has to be complete total BS. To do every thing they say and then pass the output over the internet has to take at least 0.5 seconds a frame even with better coding and a faster language. I don't think you could even rewrite a single pixel 220 times over the internet in one second.</p> <p><strong>So maybe there not lairs, how did they do it?</strong> I must know before I bust a capillary! How did they pass data so fast to the browser using Ajax, not even considering the 3d processing on the server side. Is it just one fast server constantly pushing out an image(s)? All I ever wanted was 30 fps and look at thos jerks hogign all the netz.</p> http://stackoverflow.com/questions/623259/server-sided-3d-rendering/623286#623286 -1 Answer by Rich Bradshaw for Server Sided 3D rendering Rich Bradshaw 2009-03-08T08:54:54Z 2009-03-08T08:54:54Z <p>They probably pass an array of coordinates using the server, then turn that to an image on the client.</p> http://stackoverflow.com/questions/623259/server-sided-3d-rendering/623287#623287 4 Answer by Virne for Server Sided 3D rendering Virne 2009-03-08T08:55:47Z 2009-03-08T10:24:21Z <p>Trick is that they convert real-time 3d rendered images to streaming video. So basically browser client is just a video player, not much different from for example YouTube.</p> <p>On server side, 3d application is propably native application that takes advantage of modern GPU's - like most PC games. It just listens input from client instead of physical input devices like keyboard. But as noted, latency will be problem.</p> <p>And horsepower: <a href="http://www.techreport.com/discussions.x/16205" rel="nofollow">http://www.techreport.com/discussions.x/16205</a></p> http://stackoverflow.com/questions/623259/server-sided-3d-rendering/623351#623351 2 Answer by Robert Gould for Server Sided 3D rendering Robert Gould 2009-03-08T10:03:34Z 2009-03-08T10:10:01Z <p>Paul relax, I'm quite sure it is BS. These guys have been saying this for 3 years already and I still haven't been able to get a live demo (and I work at a big game company). It's basically a scam like that Phantom console, or tons of other Vaporware.</p> <p>Now it should be possible to stream 3d images rendered on the server, but there is no way it's going to have a good response rate. Rendering client side is the way to go, but they're just trying to get people to throw money at them. They are clearly not transmitting over the Internet that's for sure...</p> http://stackoverflow.com/questions/623259/server-sided-3d-rendering/623398#623398 1 Answer by Henning for Server Sided 3D rendering Henning 2009-03-08T10:53:38Z 2009-03-08T10:53:38Z <p>If I remember correctly, Wired ran a story on these guys a while ago, and I couldn't help but think "WTF?".</p> <p>Sure you can render pretty video on the server and stream it out to a client, but quick interactive feedback is a different beast.</p> <p>Even when you leave latency aside, the requirement of "live" images diminish your options concerning video compression. Specifically, you can't use a <a href="http://en.wikipedia.org/wiki/Video%5Fcompression%5Fpicture%5Ftypes" rel="nofollow">B-frame</a> codec if you want decent response times, because you always have to wait for the next P-frame before you can stream out your data. As a result, you'll have to stream out massive bandwidth using an intra-frame or P-frame-only codec.</p> <p>So whatever their technology may be good for, games are not a viable application for this technology, even though - or maybe even because - Techcrunch thinks they are.</p>