Skip to main content

OnLive - Gaming in the cloud

Thanks to the right star alignment and generous invitation from my co-worker I was lucky to be in the audience of the OnLive service announcement. After 7 years of secretly developing (can not imagine how anything related to game development could be hidden from public eyes and ears for so long), absolutely mind-blowing OnLive gaming service was finally announced today to the crowd of game developers.

It is hard to believe that high-end gaming experience will be available soon for most of the mortals who have simple PC, MAC, or TV with a small adapter.

Technology is, basically, high end game servers hosted in the data centers with low-latency compression boards and light-weight clients. Client could be either small (1Mb) browser plug-In on PC/MAC or game adapter for TV that connects to home-grade DSL/fiber/cable modem.
















Why OnLive is great? (at least on the demo, need to test myself at home):


  • unprecedented performance approaching realism

  • access to high-end games + games developed specifically for online experience

  • User hardware does not get obsolete

  • Extremely high-performance shared serves with 1-2 GPUs

  • Special card for HW video compression
  • 1 [ms] latency (can you believe that?)

Minimum requirements for the end-user hardware:

  • bandwidth 1.5 Mbps for regular video resolution
  • HDTV experience 5 Mbps downstream (very light for upstream, great for DSL)


Typical Social features (something that is really expected these days:

  • Arena
  • Brag clips
  • Spectating roles


Plenty of Games already available on OnLive:

  • Family games (LegoBatman is there)
  • Did not see any cooperative games but who cares – killing is more fun
  • Sport -spectator games are there. Are they more fun than “real” sport? Claim is that it will be possible to have 1 Mil people watching games. Hard to believe but - why not? Technologically it is possible these days


Gamers will love:

  • Simplicity
  • Gaming (and good gaming, finally!) on MAC
  • For Multi-player games – fast connection between game servers (LAN party environment)
  • OnLive makes easier to watch the game, why bother clicking and tapping when you can see masters at play.


Game Publishers will love it: rental model + exposure to bigger market. No surprise that big names are already there:


• Electronic Arts
• Ubisoft
• WB
• Take two
• THQ
• Epic Games
• Eidos
• Atari
• 2D Boy
• CodeMasters


Game developers will like it:

  • Single code – 3 devices
  • Social features integrated


Hardware Companies will hate it:

  • No need to buy and upgrade expensive game PC


Why I am still skeptical?

Networks are optimized for bandwidth – not latency, will that ruin the experience?

I am waiting (patiently) for the winter ’09 general service launch…

Comments

Popular posts from this blog

Posting to FaceBook feed using Graph API

Graph API was announced at F8 with a promise to dramatically simplify the FB API. I checked the read access over the new interface during the presentations and to my big surprise it worked flawlessly and from the first time. When I tried https://graph.facebook.com/facebook , JSON-formatted info about the FaceBook page was returned (as expected). Then I tried OAuth 2.0 way of accessing the API to post a message to the feed. And to my even bigger surprise it worked too! Here is what you need to do to access Graph API over OAuth: 1. Create a FB app, store app properties to a file: $appkey = '7925873fbfb5347e571744515a9d2804' ; $appsecret = 'THE SECRET' ; $canvas = 'http://apps.facebook.com/graphapi/' ; 2. Create a page that will prompt user the access permission (I am prompting for the publish_stream and offline_access permissions at the same time) //http://apps.facebook.com/graphapi/ require 'settings.php' ; $url = "https://graph.face...

Freebase Hack Day

Amazon Simple Email Service (Amazon SES) and PHP

This morning Amazon announced availability of a bulk email delivery service called " Simple Email Service ". Anyone who knows how much pain is it to set-up scalable email solution (and it is not just spammers who need it!) should celebrate the occasion. I know of a company that spent several years cleaning ip addresses it sends email and found itself locked into the contract with internet provider since it would take forever to reach required level of email deliver ability anywhere else. Anyway, this evening I decided to check the Amazon claim that the service is "simple". Found out that it is indeed simple! Since there is not much in terms of the documentation yet, here is my code where I used AWS PHP library : // Enable full-blown error reporting. http://twitter.com/rasmus/status/7448448829 error_reporting (- 1 ); // Set plain text headers header ( "Content-type: text/plain; charset=utf-8" ); // Include the SDK require_once '../sdk.class.php' ...