读取花栗鼠目标 C 中的坐标

发布于 2024-11-06 02:38:05 字数 126 浏览 0 评论 0原文

我正在 iPhone 上开发一款游戏,我使用 Chipmunk 库来生成环境。所以我面临的问题是我正在从文件中调用障碍物的坐标。

我希望得到一些反馈,了解以 XML 或普通文本文件的形式存储每个级别的障碍物坐标的最佳方式。

I am working on a game in iPhone for which I use the Chipmunk library to generate the environment. So the issue I am facing is that I am calling the coordinates for the obstruction from a file.

I would like some feed back on what's the best way that I store the coordinates of the obstruction for each level either in the form of an XML or an ordinary text file.

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

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

发布评论

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

评论(2

茶色山野 2024-11-13 02:38:05

我认为最好的方法是使用 .plist 文件(当然是 XML),然后使用 NSArray * cArray = [NSArray arrayWithContentsOfFile:plistPath] 获取它们

I think the best way is to use a .plist file (which is of course XML) for it and then grab them using NSArray * cArray = [NSArray arrayWithContentsOfFile:plistPath]

回忆追雨的时光 2024-11-13 02:38:05

我也会选择 plist - 它简单又容易。如果你想要一些与代码更相关的东西,你可以使用 NSKeyedArchiver。只需确保要序列化的所有类都符合 NSCoding 即可。

I would also go with the plist - it simple and easy. If you want something more tied to the code you could go for NSKeyedArchiver. Just make sure all of the classes you want to serialize are NSCoding compliant.

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