android 保存游戏状态

发布于 2024-11-14 00:46:08 字数 294 浏览 7 评论 0原文

我正在开发一款游戏,遇到了一些有关保存和恢复游戏的问题。 假设我每帧绘制 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 技术交流群。

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

发布评论

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

评论(1

瞄了个咪的 2024-11-21 00:46:08

请务必检查此链接:数据存储

您不能使用 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!

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