CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 11 of 11

Thread: web games

  1. #1
    Join Date
    Mar 2002
    Posts
    44

    web games

    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?

  2. #2
    Join Date
    Oct 2001
    Location
    Norway
    Posts
    265
    Yes. You would also be restricted to IE only - at least for now.

  3. #3
    Join Date
    Mar 2002
    Posts
    44
    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?

  4. #4
    Join Date
    Mar 2002
    Location
    Oslo, Norway
    Posts
    7
    .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

  5. #5
    Join Date
    Mar 2002
    Posts
    44
    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?

  6. #6
    Join Date
    Mar 2002
    Location
    Oslo, Norway
    Posts
    7
    yes, I think java is the best solution in your case...

  7. #7
    Join Date
    Sep 2000
    Location
    Indianapolis
    Posts
    6,758
    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.

  8. #8
    Join Date
    Mar 2002
    Location
    Oslo, Norway
    Posts
    7
    But.... how many cool HTML games have you ever seen?

  9. #9
    Join Date
    Mar 2001
    Location
    Tasmania, Australia
    Posts
    64

    SVG

    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.

  10. #10
    Join Date
    Oct 2001
    Location
    Norway
    Posts
    265
    How about Flash?

  11. #11
    Join Date
    Mar 2001
    Location
    Tasmania, Australia
    Posts
    64

    Flash - he'll save every one of us

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured