views:

410

answers:

3

Is there a way to run an xna game from a web page without installing anything? Something similiar to java, silverlight or very close to a wpf browser applications (XBAP).

Scenario:

Go on webpage, Get asked to install the game. Game installs, game screen shows up in webpage. Can full screen, etc.

The game is a full blown xna framework game, using 3d, has access to the system calls such as directx and other low level networking api. This is probably more of having javascript working with windows system if anything.

+5  A: 

SilverSprite seems to do what you want. I have never used it but see XNA 2D games come to the browser via Silverlight.

Essentially it allows XNA game developers to run their games in Silverlight 2, though there is a limitation: the games that can be converted may only have SpriteBatch-based graphics, meaning no 3D games.

eed3si9n
The article is referring to SilverSprite.
Larsenal
Its a complete xna game, not silverlight. Uses directx 3d api, etc.
Shawn Mclean
You should read the article. SilverSprite is a framework that mirrors the XNA framework. Using SilverSprite you can create a SilverLight browser game based on your already created XNA game.
Casey
But since you are using 3D it doesn't matter as SilverSprite only has support for SpriteBatch drawing.
Casey
A: 

You can use a ClickOnce installer to launch your came FROM a web page, but not run it IN a webpage.

Adam Kane
+1  A: 

If your game needs access at the level you describe then it can't really run from within the browser. It will need to be properly installed on the users machine.

ChrisF