我正在使用cordova / phonegap 3.4.0创建一个应用程序,我正在尝试实现多人游戏模式。该应用程序是一个得分游戏,其中得分最高的人获胜。我已经创建了游戏并需要一种方法来执行以下操作:
- Check when both people are connected
- Send the final score to each device (eg. Device A = 42 and Device B = 39 - Send them to each
other to compare scores)
- Recieve the other players score to determine who the winner is.
这可以是phonegap插件格式或javascript文件。
有没有人对如何实现这一点有任何想法。我试图找到一个没有成功的phonegap插件。
提前感谢大家的帮助。
答案 0 :(得分:2)
阅读WebSockets API,您还需要了解如何创建WebSocket服务器,然后您需要阅读NodeJS或您首选的服务器语言(PHP,Java,Python等)
在iOS 6中引入了WebSockets Api,请查看以下链接以获取参考http://caniuse.com/websockets,使用Phonegap将没有问题。