Click to See Complete Forum and Search --> : web games


luvcloud
September 22nd, 2002, 11:12 AM
I'm thinking of writing a game which can be played using the web browsers, sort of like Java applets.

Would the user's need dotnetfx.exe installed on the pc if they were to view and play the game?

Arild Fines
September 23rd, 2002, 05:32 AM
Yes. You would also be restricted to IE only - at least for now.

luvcloud
September 24th, 2002, 08:04 AM
whoaa...that means it not many users would be able to access them then. In that case, developing .Net games would not be such a good idea wouldn't it?

i though .Net applications are supposed to be portable?

GAT
September 24th, 2002, 09:01 AM
.NET games in the browser is currently for a limited audience...
But do you need to run it in a browser?

Today .NET applications are not portable... but maybe these guys will change that http://www.dotgnu.org/

GAT

luvcloud
September 24th, 2002, 09:42 PM
i don't really need to run it in the browser. But i want to be able to reach out to more audience, so i though putting it in a browser (like Java applets) would be more suitable. But it looks like any applications in .Net would not be able to reach out to a lot of people.

So my best bet is still to use Java then..u think?

GAT
September 26th, 2002, 08:44 AM
yes, I think java is the best solution in your case...

Brad Jones
September 30th, 2002, 04:53 PM
Would the need for .NET on the client really depend on the complexity of the game. While the server needs to have .NET to run the application, you can create an application that generates standard HTML and supported script. You can use .NET on the Web server to support some of the more intense functions. As long as the generated output from the ASP.NET application is HTML and browser compatible, you should be okay.

GAT
October 1st, 2002, 02:13 AM
But.... how many cool HTML games have you ever seen?

ChristianG
October 2nd, 2002, 08:46 PM
You can write pretty decent web browser games using SVG and the Javascript DOM to manipulate the XML. That's the way to go for web games IMO. Your users will need to get the plugin from Adobe, but it's only 2 meg.

Arild Fines
October 3rd, 2002, 12:42 PM
How about Flash?

ChristianG
October 3rd, 2002, 05:31 PM
Flash is more capable than SVG AFAIK, but it's also a proprietary standard and 'heavier' than SVG. It depends what you want to do, I've not pushed SVG yet, but it's working well for what I have done with it.