使用 MVC 设计 iPhone 游戏的最佳实践?

发布于 2024-07-29 07:22:26 字数 107 浏览 3 评论 0原文

我已经为 iPhone 制作了两款游戏,第一个游戏很混乱,第二个游戏没那么混乱,但仍然不完美。

我很想听听是否有人有一些链接,可以在使用 MVC 创建游戏时提供良好的班级组织建议?

I have made two games for the iPhone already, the first one was a mess, and the second one is less messy but still, not perfect.

I would love to hear if someone had some links that pointed to good class organization advice when creating games using MVC ?

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

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

发布评论

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

评论(1

我最亲爱的 2024-08-05 07:22:26

控制器是将所有内容粘合在一起的粘合剂,它是 MVC 三重奏中可重用性最低的一个。 您应该集中精力使您的视图和模型可重用。 控制器处理所有特定于游戏的操作。 模型是控制器所操纵的。

也不要为未来而设计,只需要有一个良好的基本设计,并在坚持该设计的同时尝试编码即可。 不要避免重构。

请参阅我关于以正确方式实现 MVC 的问题。

You controller is the glue that holds everything together, it is the least reusable out of the MVC trio. Your views and models are what you should concentrate on making reusable. The controller handles all of the game-specific manipulation. The models are what the controller manipulates.

Don't design for the future either, just get a good basic design in place, and try to code while sticking to that design. Don't refrain from refactoring.

See my question on Implementing MVC the right way.

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