德州扑克中的客户端/服务器通信

发布于 2024-11-02 07:44:03 字数 177 浏览 1 评论 0原文

我目前正在用 Java 编写德州扑克 LAN 游戏。我的问题是如何进行客户端/服务器通信。

每次餐桌上发生事情时,都需要通知客户,以便他们可以重新绘制 GUI。此外,当玩家轮到时,他们需要能够弃牌、跟注等。

我如何最好地实现这一点?我研究过回调/RMI,但从我读到的内容来看,这可能会导致防火墙出现问题(?)

I am currently programming a Texas Hold'em LAN game in Java. My problem is how to do the client/server-communication.

Each time something happens at the table, the clients need to be informed of this so they can repaint their GUIs. Also when a players turn is up, they need to be able to fold, call etc.

How do I best implement this? I've looked at callbacks/RMI, but from what I've read, that may cause problems with firewalls(?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

捶死心动 2024-11-09 07:44:03

当您担心防火墙时,最好的方法是使用 HTTP,就像 Web 浏览器一样。好处是:

  • 该协议是众所周知的
  • 有许多可用的客户端和服务器库,它们都经过充分测试
  • HTTP 不限于 Web 浏览器。任何程序都可以使用 HTTP。

缺点是服务器推送消息并不常用。当然,您可以只从每个客户端打开一个 HTTP 连接,等待来自服务器的数据。

When you are concerned about firewalls, the best way would be to use HTTP, like a web browser. The benefits are:

  • The protocol is well-known
  • There are many client and server libraries available, which are well-tested
  • HTTP is not restricted to web browsers. Any program can talk HTTP.

The downside is that push messages by the server are not commonly used. Of course you can just open an HTTP connection from each client that will wait for data from the server.

如果没有你 2024-11-09 07:44:03

我建议有关套接字的 Java 教程:

http://download.oracle.com/javase /tutorial/networking/sockets/

给出了一个客户端/服务器示例。

I would suggest the Java tutorials on sockets:

http://download.oracle.com/javase/tutorial/networking/sockets/

An example client/server is given.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文