如何在Android游戏中使用TMX地图
上周我使用andengine使用tmx地图格式作为游戏背景运行。 但引擎非常难以理解。 我想知道是否可以在没有任何引擎的情况下做到这一点。
所以请为我腾出一些时间并帮助我解决这个问题 谢谢你!
Last week i used andengine to use tmx map format to run as a game back ground.
but the and engine is pretty complex to understand.
i m wondering if could do it with out any engine.
So please spare some time for me and help me with this
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于游戏开发,使用游戏引擎会更好,AndEngine 非常好。您最好抽出一些时间学习如何使用该引擎,按照教程进行操作 - 它会在开发过程中得到回报,因为自己实现一切会带来一些麻烦。
无论如何,TMX 是一种易于阅读的 XML 格式,因此您可以阅读文档、使用 XML 解析、base64 解码,然后您将获得来自 TMX 的数据。然后你需要实现你的背景绘制引擎来绘制它。
For game development, you'll be better off with a game engine, and AndEngine is very good. You'd better spare some time and learn how to use that engine, follow the tutorials - it will pay off during the development, because implementing everything on your own will cause some headaches.
Anyway, TMX is a simple to read XML format, so you could read up on the documentation, use XML parsing, base64 decoding and you'll have the data from TMX. Then you will need to implement your background drawing engine to draw it.
正如 Axarydax 使用 Andengine 所提到的。
这是 Android 中 TMX 地图的示例
http://code.google.com/p/gcgame/
您还可以查看图块地图的所有引擎示例
As mentioned by Axarydax use Andengine .
here is example of TMX map in android
http://code.google.com/p/gcgame/
you can also see all andengine exapmles for tiles maps