This is a Javascript client project for jetserver library. An example html which can connect to a locally running Jetserver is located at test/jetclient.html.
Click on Start War!
button after loading jetclient.html in a websocket compatible browser to start the game. Assumption is that Jetserver is running and jetclient.html is using accurate hostname and port number.
The general usage steps could be as outlined below.
- Create a
config
object containing theuser
,password
andconnectionkey
to connect to game room. If you are using a different protocol, then add the appropriateCodeChain
's also to theconfig
object. By defaultJSon
encoding/decoding is used. - Create a
session
(s) using theSessionFactory
by passing in aurl
for the remote jetserver,config
object and acallback
function which will receive thesession
object after successful login to remote jeteserver. - Add necessary handlers to the session using
addHandler
function. The default events are provided thejet
class for e.gjet.lOG_IN
. At the very least you would want to add a handler for thejet.SESSION_MESSAGE
event to receive incoming events from jetserver. - Event objects to be sent to server can be created using the
jet.nevent
function. - Data can be send to remote server using
session.send
function.
Happy Coding!!