在 python,我将如何着手为文本冒险创建一个保存系统?
In python, how would I go about creating a save system for a text adventure?
基本上,从停止系统继续...有点像任何游戏。
到目前为止,我的想法是将某些变量保存到一个文本文件中,如名称、健康、xp 等,并有一个位置变量来确定玩家在游戏中的位置,并将作为从停止开始的继续。
有没有更简单的方法来做这件事?
将所有这些信息保存在某种对象中并将其腌制。 https://docs.python.org/2/library/pickle.html
你可以使用 pickle or json or xml. See also this question. Or this one. Or just google data persistence.
基本上,从停止系统继续...有点像任何游戏。 到目前为止,我的想法是将某些变量保存到一个文本文件中,如名称、健康、xp 等,并有一个位置变量来确定玩家在游戏中的位置,并将作为从停止开始的继续。 有没有更简单的方法来做这件事?
将所有这些信息保存在某种对象中并将其腌制。 https://docs.python.org/2/library/pickle.html
你可以使用 pickle or json or xml. See also this question. Or this one. Or just google data persistence.