读取花栗鼠目标 C 中的坐标
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为最好的方法是使用
.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 usingNSArray * cArray = [NSArray arrayWithContentsOfFile:plistPath]
我也会选择 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.