Need a little suggestion for my game framework web-application. The games interaction would be more of similar to what is there in "mafia wars( zynga )", but with very less things to interact with ... The player merely would have to click to trigger an event and wait for the response, and then proceed for the next task...
The games I need to implement are mainly for the human behaviour studies... based on game theory ( "prisoners dilemma" / "chicken Game"/ Row-column based games )
The key things to keep in mind are as follows.
- Not more then 20 users at any instance.
- No Heavy Graphics / animation required.
- Framework should be expandable to add to new similar games
- There should be no latency issues, and in no circumstance the server should become unresponsive due to client requests.
The Alternatives for the framework I am thinking are
- Jquery ( ajax + UI ) + HTML + JAVA
- HTML5 + node.js + JAVA
- GWT ( Google Web Toolkit ) + JAVA
Please let me know if there are some other better alternatives or not ...
Currently I have created a prototype application based on Jquery ... I am yet working on n/w and multiplayer configuration... My main concern is how can I effectively display the other users state without latency issues.. Is there an existing framework which I can leverage ?
--- Pranav