在智能手机上制作多人游戏意味着什么?
在 Blackberry 和 Android 等智能手机上制作多人游戏究竟需要什么?我知道我必须使用Java中的套接字来实现服务器。如何?有人可以指导我吗?
What precisely do I need to make a multi-player game on smartphones like Blackberry and Android? I know that I have to implement a server by using sockets in Java. How? Can anyone guide me on that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
了解点对点或星形拓扑网络编程,并且至少可能绘制 2D 图形。
C++ ACE 库有两本书,体现了网络编程的知识非常详细。您可能不需要这种水平的知识。我的下一个建议有所缓和,但仍然是网络编程的低级C 接口。你可以从中学到很多东西。然而,它比我最初的建议更乏味。
注意:我并不提倡在你的工作中使用 C++ 或 C。上面的参考资料仅体现了网络编程的知识。
如果您的游戏不是基于标准 GUI 元素构建的,即它必须绘制场景。那么你需要学习计算机图形学。 标准书籍 应该做的。
Understand peer-to-peer or star-topology network programming and probably drawing 2D graphics at minimum.
The C++ ACE library has two books which embodies the knowledge of network programming in great detail. You probably don't need this level of knowledge. My next suggestion is toned down but still a low-level, C interface, to network programming. You can learn a lot from that. However, it is more tedious than my initial suggestion.
Note: I am not advocating the use of C++ or C for your work. The references above merely embody the knowledge of network programming.
If your game does not build on standard GUI elements -- i.e., it has to draw scenes. Then you need to learn about computer graphics. A standard book should do.