Java +闪光=>事件驱动?
我刚刚收到在线双陆棋游戏引擎的请求。制作它应该不难,因为毕竟它本质上是一个移动棋子而不是显示文本消息的聊天程序。我基本上是一名 PHP 开发人员,但由于我需要事件驱动的东西(无池),我假设我可以将 java 构建的核心应用程序和 Flash 界面结合起来。我应该在哪里寻找一些实际例子和一些建议,有什么建议吗?
谢谢
I've just received a request for an online backgammon game engine. It shouldn't be to hard to make as after all is essentially a chat program that moves pieces instead of showing text messages. I am basically a PHP developer but as I need event driven stuff (no pooling) I assume I could combine a java built core application and a Flash interface. Any suggestions to where should I look for some practical examples and maybe some advices?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用 Adobe 的 Flex SDK 构建 Flash GUI。网络上有很多关于使用 Flash/Flex 进行游戏开发的教程。例如,这是我发现的一个有用的网站: 使用 Flex 和 ActionScript 进行 Flash 游戏开发
对于 Java 后端,您可以使用 BlazeDS 提供高度可扩展的远程访问和消息传递。
You can also build up the the Flash GUI with Adobe's Flex SDK. There are plenty of tutorials in the web for game developing with Flash/Flex. This, for example, is a useful site I found: Flash Game Development with Flex and ActionScript
For the Java backend you could use BlazeDS which provides highly scalable remote access and messaging.
另一个可能的答案可能是使用 red5 或 ElectroServer。客户端采用 Flash 语言,服务器插件采用 Java 语言。
Another possible answer may be using red5 or ElectroServer. Client is in Flash and Server plugins are Java.