Best Frameworks/libraries/engines for 2D multiplayer C# Webbased RPG

Posted by Thirlan on Game Development See other posts from Game Development or by Thirlan
Published on 2011-11-26T15:42:01Z Indexed on 2011/11/26 18:11 UTC
Read the original article Hit count: 245

Filed under:
|
|
|
|

Title is a mouthful but important because I'm looking to meet a specific criteria and it's complex enough that I need a lot of help in finding what I'm looking for. I really want people's suggestions because I trust it a lot more than anything else, so I just need to clearly define what it is I want heh : P

  1. Game is a 2D RPG. Think of Secret of Mana.
  2. Game is online multiplayer, but not MMO sized.
  3. Game must be webbased! I'm looking to the future and want to hit as many platforms as possible. I'm leaning to Webgl because of this, but still looking around.
  4. Since the users are seeing the game through the webbrowser the front-end should be mainly responsible for drawing, taking input and some basic checking such as preliminary collision detection. This is important because it means the game engine is NOT on the client's machine.
  5. The server should be responsible for the game engine and all the calculations.
  6. This means the server is doing all the work and the client is mostly a dumb terminal.
  7. Server language is c#
  8. I'm looking for fast project execution so I want to use as many pre-existing tools as possible. This would make sense because I'm making a game here, not an engine. I'm not creating some new revolutionary graphics or pushing the physics engines to the next level.
  9. Preference for commercially supported tools.
  10. For game mechanics reasons and for reasons 4 and 5, don't think I can use existing 2D rpg engines. I've seen them out there and I fear that if I try and use them they will have too many restrictions, but will be happy to hear out suggestions.

So all this means I need a game engine on the server, or maybe just a physics engine, and then I need another engine/library to draw everything that the server is sending to the client on the webbrowser. Maybe this is how 50% of games work on the web and there are plenty of frameworks that support this! I wouldn't actually don't know : ( but my gut is telling me that most webgames are single player and 90% of the game is running on the client.

So... any suggestions?

© Game Development or respective owner

Related posts about c#

Related posts about 2d