android 保存游戏状态
我正在开发一款游戏,遇到了一些有关保存和恢复游戏的问题。 假设我每帧绘制 10 个动画精灵(从一侧移动到另一侧),每次我按下主页按钮或后退按钮然后返回游戏时,它都会开始在起始位置而不是之前的位置绘制精灵按后退/菜单。
- 我是否必须保存每个精灵和动画位置才能从中断处恢复游戏(使用 Bundle、onSaveInstanceState 和 onRestoreInstanceState())?或者可以通过其他更简单的方法来实现这一点。我正在使用lunarlander 示例。
感谢您的回复。
问候, J。
I'm developing a game and i've ran into some questions about saving and resuming the game.
Let's say i have 10 animated sprites drawn every frame (which move side to side) and everytime i press the home button or back button and then go back to my game, it starts drawing the sprites at the starting position rather than in the position before the back/menu press.
- Do i have to save every sprite and animation position in order to achive resuming the game where i left off (using Bundle, onSaveInstanceState and onRestoreInstanceState())? Or can this be achived some other simpler way.I'm using the lunarlander example.
Thanks for the reply's.
Regards,
J.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请务必检查此链接:数据存储
您不能使用 Bundle 存储数据,因为 Bundle 仅在应用程序运行时存储数据,因此当您的应用程序被销毁时,Bundle 中的所有信息都将丢失。我使用的方式是共享首选项,这是解决您的问题的一种简单而舒适的方式。您可以通过上面的链接阅读更多相关信息。希望这对您有帮助。祝你好运!
Be sure to check this link: Data Storage
You can't store your data using Bundle, cause Bundle is storing data only when the application is running, so when your application is destroyed all information from Bundle will be lost. The way that I'm using is Shared Preferences, it's a simple and comfortable way to solve your problem. You can read more about this following the link above. Hope this was helpful to you. Good luck!