1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
|
=============================
Saving, Loading, and Rollback
=============================
Ren'Py has support for saving game state, loading game state, and rolling
back to a previous game state. Although implemented in a slightly different
fashion, rollback can be thought of as saving the game at the start of each
statement that interacts with the user, and loading saves when the user
rolls back.
.. note::
While we usually attempt to keep save compatibility between releases, this
compatibility is not guaranteed. We may decide to break save-compatibility
if doing so provides a sufficiently large benefit.
What is Saved
=============
Ren'Py attempts to save the game state. This includes both internal state
and Python state.
The internal state consists of all aspects of Ren'Py that are intented to
change once the game has started, and includes:
* The current statement, and all statements that can be returned to.
* The images and displayables that are being shown.
* The screens being shown, and the values of variables within those
screens.
* The music that Ren'Py is playing.
* The list of nvl-mode text blocks.
The Python state consists of the variables in the store that have changed since
the game began, and all objects reachable from those variables. Note that it's
the change to the variables that matters – changes to fields in objects will
not cause those objects to be saved.
Variables set using the :ref:`default statement <default-statement>` will
always be saved.
In this example::
define a = 1
define o = object()
default c = 17
label start:
$ b = 1
$ o.value = 42
only `b` and `c` will be saved. `A` will not be saved because it does not change once
the game begins. `O` is not saved because it does not change – the object it
refers to changes, but the variable itself does not.
What isn't Saved
================
Python variables that are not changed after the game begins will not be
saved. This can be a major problem if a variable that is not saved and one that is
refer to the same object. (Alias the object.) In this example::
init python:
a = object()
a.f = 1
label start:
$ b = a
$ b.f = 2
"a.f=[a.f] b.f=[b.f]"
`a` and `b` are aliased. Saving and loading may break this aliasing, causing
`a` and `b` to refer to different objects. Since this can be very confusing,
it's best to avoid aliasing saved and unsaved variables. (This is rare to
encounter directly, but might come up when an unsaved variable and saved field
alias.)
There are several other kinds of state that isn't saved:
control flow path
Ren'Py only saves the current statement, and the statement it needs
to return to. It doesn't remember how it got there. Importantly, statements
(including variable assignments) that are added to the game won't run.
mappings of image names to displayables
Since this mapping is not saved, the image may change to a new image
when the game loads again. This allows an image to change to a new
file as the game evolves.
configuration variables, styles, and style properties
Configuration variables and styles aren't saved as part of the game.
Therefore, they should only be changed in ``init`` blocks, and left alone
once the game has started.
Where Ren'Py Saves
==================
Saves occur at the start of a Ren'Py statement in the outermost interaction
context.
What's important here is to note that saving occurs at the **start** of a
statement. If a load or rollback occurs in the middle of a statement that
interacts multiple times, the state will be the state that was active
when the statement began.
This can be a problem in Python-defined statements. In::
python:
i = 0
while i < 10:
i += 1
narrator("The count is now [i].")
if the user saves and loads in the middle, the loop will begin anew. Using
Ren'Py script – rather than Python – to loop avoids this problem.::
$ i = 0
while i < 10:
$ i += 1
"The count is now [i]."
What Ren'Py Can Save
====================
Ren'Py uses the Python pickle system to save game state. This module can
save:
* Basic types, such as True, False, None, int, str, float, complex, str, and Unicode objects.
* Compound types, like lists, tuples, sets, and dicts.
* Creator-defined objects, classes, functions, methods, and bound methods. For
pickling these functions to succeed, they must remain available under their
original names.
* Character, Displayable, Transform, and Transition objects.
.. _cant-save:
What Ren'Py Can't Save
======================
There are certain types that cannot be pickled:
* Render objects.
* Iterator objects.
* Generator objects.
* Coroutine tasks and futures, like those created with ``async`` and ``await``.
* File-like objects.
* Network sockets, and objects that enclose them.
* Inner functions and lambdas.
This may not be an exhaustive list.
Objects that can't be pickled can still be used, provided that their use
is combined to namespaces that aren't saved by Ren'Py (like init variables,
namespaces inside functions, or ``python hide`` blocks.)
For example, using a file object like::
$ monika_file = open(config.gamedir + "/monika.chr", "w")
$ monika_file.write("Do not delete.\r\n")
$ monika_file.close()
Won't work, as ``f`` could be saved between any of the three Python statements.
Putting this in a ``python hide`` block will work::
python hide:
monika_file = open(config.gamedir + "/monika.chr", "w")
monika_file.write("Do not delete.\r\n")
monika_file.close()
(Of course, using the python ``with`` statement would be cleaner.) ::
python hide:
with open(config.gamedir + "/monika.chr", "w") as monika_file:
monika_file.write("Do not delete.\r\n")
Coroutines, like those made with ``async``, ``await``, or the ``asyncio``
are similar. If you have::
init python:
import asyncio
async def sleep_func():
await asyncio.sleep(1)
await asyncio.sleep(1)
then::
$ sleep_task = sleep_func()
$ asyncio.run(sleep_task)
will have problems, since `sleep_task` can't be saved. But if it's not assigned
to a variable::
$ asyncio.run(sleep_func())
will run fine.
Save Functions and Variables
============================
There is one variable that is used by the high-level save system:
.. var:: save_name = ...
This is a string that is stored with each save. It can be used to give
a name to the save, to help users tell them apart.
More per-save data customization can be done with the Json supplementary
data system, see :var:`config.save_json_callbacks`.
There are a number of high-level save actions and functions defined in the
:doc:`screen actions <screen_actions>`. In addition, there are the following
low-level save and load actions.
.. include:: inc/loadsave
Retaining Data After Load
=========================
When a game is loaded, the state of the game is reset (using the rollback
system described below) to the state of the game when the current statement
began executing.
In some cases, this may not be desirable. For example, when a screen allows
editing of a value, we may want to retain that value when the game is
loaded. When renpy.retain_after_load is called, data will not be reverted
when a game is saved and loaded before the end of the next checkpointed
interaction.
Note that while data is not changed, control is reset to the start of the
current statement. That statement will execute again, with the new data
in place at the start of the statement.
For example::
screen edit_value:
hbox:
text "[value]"
textbutton "+" action SetVariable("value", value + 1)
textbutton "-" action SetVariable("value", value - 1)
textbutton "+" action Return(True)
label start:
$ value = 0
$ renpy.retain_after_load()
call screen edit_value
.. include:: inc/retain_after_load
Rollback
========
Rollback allows the user to revert the game to an earlier state in
much the same way as undo/redo systems that are available in most
modern applications. While the system takes care of maintaining the
visuals and game variables during rollback events, there are several
things that should be considered while creating a game.
What Data is Rolled Back?
==========================
Rollback affects variables that have been changed after the init phase, and
objects of revertable types reachable from those variables. The short version
is that lists, dicts, and sets created in Ren'Py script are revertable as are
instances of classes defined in Ren'Py scripts. Data created inside Python
or inside Ren'Py usually isn't revertable.
In more detail, inside the stores
that Python embedded inside Ren'Py scripts run in, the object, list, dict, and
set types have been replaced with equivalent types that are revertable. Objects
that inherit from these types are also revertable. The :class:`renpy.Displayable`
type inherits from the revertable object type.
To make the use of revertable objects more convenient, Ren'Py modifies Python
found inside Ren'Py script files in the following way.
* Literal lists, dicts, and sets are automatically converted to the
revertable equivalent.
* List, dict, and set comprehensions are also automatically converted to
the revertable equivalent.
* Other python syntax, such as extended unpacking, that can create lists,
dicts, or sets converts the result to the revertable equivalent. However,
for performance reasons, double-starred parameters to functions and methods
(that create dictionaries of extra keyword arguments) are not converted
to revertable objects.
* Classes that do not inherit from any other types automatically inherit
from the revertable object.
In addition:
* The methods and operators of revertable types have been modified to return
revertable objects when a list, dict, or set is produced.
* Built in functions that return lists, dicts, and sets return a revertable
equivalent.
Calling into Python code will not generally produce a revertable object. Some
cases where you'll get an object that may not participate in rollback are:
* Calling methods on built-in types, like the str.split method.
* When the object is created in a Python module that's been imported, and
then return to Ren'Py. (For example, an instance of collections.defaultdict
won't participate in rollback.)
* Objects returned from Ren'Py's API, unless documented otherwise.
If such data needs to participate in rollback, it may make sense to convert
it to a type that does partipate. For example::
# Calling list inside Python-in-Ren'Py converts a non-revertable list
# into a revertable one.
$ attrs = list(renpy.get_attributes("eileen"))
Supporting Rollback and Roll Forward
====================================
Most Ren'Py statements automatically support rollback and roll forward. If
you call :func:`ui.interact` directly, you'll need to add support for rollback
and roll-forward yourself. This can be done using the following structure::
# This is None if we're not rolling back, or else the value that was
# passed to checkpoint last time if we're rolling forward.
roll_forward = renpy.roll_forward_info()
# Set up the screen here...
# Interact with the user.
rv = ui.interact(roll_forward=roll_forward)
# Store the result of the interaction.
renpy.checkpoint(rv)
It's important that your game does not interact with the user after renpy.checkpoint
has been called. (If you do, the user may not be able to rollback.)
.. include:: inc/rollback
Blocking Rollback
=================
.. warning::
Blocking rollback is a user-unfriendly thing to do. If a user mistakenly
clicks on an unintended choice, he or she will be unable to correct their
mistake. Since rollback is equivalent to saving and loading, your users
will be forced to save more often, breaking game engagement.
It is possible to disable rollback in part or in full. If rollback is
not wanted at all, it can simply be turned off through the
:var:`config.rollback_enabled` option.
More common is a partial block of rollback. This can be achieved by the
:func:`renpy.block_rollback` function. When called, it will instruct
Ren'Py not to roll back before that point. For example::
label final_answer:
"Is that your final answer?"
menu:
"Yes":
jump no_return
"No":
"We have ways of making you talk."
"You should contemplate them."
"I'll ask you one more time..."
jump final_answer
label no_return:
$ renpy.block_rollback()
"So be it. There's no turning back now."
When the label no_return is reached, Ren'Py won't allow a rollback
back to the menu.
Fixing Rollback
===============
Fixing rollback provides for an intermediate choice between
unconstrained rollback and blocking rollback entirely. Rollback is
allowed, but the user is not allowed to make changes to their
decisions. Fixing rollback is done with the :func:`renpy.fix_rollback`
function, as shown in the following example::
label final_answer:
"Is that your final answer?"
menu:
"Yes":
jump no_return
"No":
"We have ways of making you talk."
"You should contemplate them."
"I'll ask you one more time..."
jump final_answer
label no_return:
$ renpy.fix_rollback()
"So be it. There's no turning back now."
Now, after the fix_rollback function is called, it will still be
possible for the user to roll back to the menu. However, it will not be
possible to make a different choice.
There are some caveats to consider when designing a game for
fix_rollback. Ren'Py will automatically take care of locking any data
that is given to :func:`checkpoint`. However, due to the generic nature
of Ren'Py, it is possible to write scripts that bypass this and
change things in ways that may have unpredictable results. Most notably,
``call screen`` doesn't work well with fixed rollback. It is up
to the creator to block rollback at problematic locations.
The internal user interaction options for menus, :func:`renpy.input`
and :func:`renpy.imagemap` are designed to fully work with fix_rollback.
Styling Fixed Rollback
======================
Because fix_rollback changes the functionality of menus and imagemaps,
it is advisable to reflect this in the appearance. To do this, it is
important to understand how the widget states of the menu buttons are
changed. There are two modes that can be selected through the
:var:`config.fix_rollback_without_choice` option.
The default option will set the chosen option to "selected", thereby
activating the style properties with the "selected\_" prefix. All other
buttons will be made insensitive and show using the properties with the
"insensitive\_" prefix. Effectively this leaves the menu with a single
selectable choice.
When the :var:`config.fix_rollback_without_choice` option is set to
False, all buttons are made insensitive. This means that the chosen
option will use the "selected_insensitive\_" prefix for the style
properties while the other buttons use properties with the
"insensitive\_" prefix.
Fixed Rollback and Custom Screens
=================================
When writing custom Python routines that must play nice with the
fix_rollback system there are a few simple things to know. First of all
the :func:`renpy.in_fixed_rollback` function can be used to determine whether
the game is currently in fixed rollback state. Second, when in
fixed rollback state, :func:`ui.interact` will always return the
supplied roll_forward data regardless of what action was performed. This
effectively means that when the :func:`ui.interact`/:func:`renpy.checkpoint`
functions are used, most of the work is done.
To simplify the creation of custom screens, two actions are
provided to help with the most common uses. The :func:`ui.ChoiceReturn` action
returns the value when the button it is attached to is clicked. The
:func:`ui.ChoiceJump` action can be used to jump to a script label. However, this
action only works properly when the screen is called trough a
``call screen`` statement.
Example::
screen demo_imagemap:
imagemap:
ground "imagemap_ground.jpg"
hover "imagemap_hover.jpg"
selected_idle "imagemap_selected_idle.jpg"
selected_hover "imagemap_hover.jpg"
hotspot (8, 200, 78, 78) action ui.ChoiceJump("swimming", "go_swimming", block_all=False)
hotspot (204, 50, 78, 78) action ui.ChoiceJump("science", "go_science_club", block_all=False)
hotspot (452, 79, 78, 78) action ui.ChoiceJump("art", "go_art_lessons", block_all=False)
hotspot (602, 316, 78, 78) action ui.ChoiceJump("home", "go_home", block_all=False)
Example::
python:
roll_forward = renpy.roll_forward_info()
if roll_forward not in ("Rock", "Paper", "Scissors"):
roll_forward = None
ui.hbox()
ui.imagebutton("rock.png", "rock_hover.png", selected_insensitive="rock_hover.png", clicked=ui.ChoiceReturn("rock", "Rock", block_all=True))
ui.imagebutton("paper.png", "paper_hover.png", selected_insensitive="paper_hover.png", clicked=ui.ChoiceReturn("paper", "Paper", block_all=True))
ui.imagebutton("scissors.png", "scissors_hover.png", selected_insensitive="scissors_hover.png", clicked=ui.ChoiceReturn("scissors", "Scissors", block_all=True))
ui.close()
if renpy.in_fixed_rollback():
ui.saybehavior()
choice = ui.interact(roll_forward=roll_forward)
renpy.checkpoint(choice)
$ renpy.fix_rollback()
m "[choice]!"
Rollback-blocking and -fixing Functions
=======================================
.. include:: inc/blockrollback
NoRollback
==========
.. include:: inc/norollback
For example::
init python:
class MyClass(NoRollback):
def __init__(self):
self.value = 0
label start:
$ o = MyClass()
"Welcome!"
$ o.value += 1
"o.value is [o.value]. It will increase each time you rolllback and then click ahead."
|