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
|
# Activities
Activities are long term actions, that can be interrupted and (optionally)
continued. This allows the avatar or an npc to react to events (like
monsters appearing, getting hurt) while doing something that takes more
than just one turn.
## Adding new activities
1. `player_activities.json` Define properties that apply to all instances
of the activity in question.
2. `activity_actor_definitions.h` Create a new subclass of `activity_actor`
(e.g., move_items_activity_actor) to store state and handle turns of the
new activity.
3. `activity_actor.cpp` Define the `start`, `do_turn`, and `finish`
functions needed for the new actor as well as the required serialization
functions. Don't forget to add the deserialization function of your new
activity actor to the `deserialize_functions` map towards the bottom of
`activity_actor.cpp`. Define `canceled` function if activity modifies
some complex state that should be restored upon cancellation / interruption.
4. If this activity is resumable, `override`
`activity_actor::can_resume_with_internal`
5. Construct your activity actor and then pass it to the constructor for
`player_activity`. The newly constructed activity can then be assigned
to the character and started using `Character::assign_activity`.
## JSON Properties
* verb: A descriptive term to describe the activity to be used in the
query to stop the activity, and strings that describe it, for example:
`"verb": "mining"` or
`"verb": { "ctxt": "instrument", "str": "playing" }`.
* activity_level: Activity level of the activity, harder activities consume more calories over time. Valid values are, from easiest to most demanding of the body: `NO_EXERCISE`, `LIGHT_EXERCISE`, `MODERATE_EXERCISE`, `BRISK_EXERCISE`, `ACTIVE_EXERCISE`, `EXTRA_EXERCISE`.
* interruptable (true): Can this be interrupted. If false, then popups related
to e.g. pain or seeing monsters will be suppressed.
* interruptable_with_kb (true): Can this be interrupted by a key press.
* can_resume (true): If true, the activity can be resumed after an interruption,
letting you continue from where you left off rather than from scratch.
* based_on: Can be 'time', 'speed', or 'neither'.
* time: The amount that `player_activity::moves_left` is
decremented by is independent from the character's speed.
* speed: `player_activity::moves_left` may be decremented faster
or slower, depending on the character's speed.
* neither: `moves_left` will not be decremented. Thus you must
define a do_turn function; otherwise the activity will never end!
* rooted (false): If true, then during the activity, recoil is reduced,
and plant mutants sink their roots into the ground. Should be true if the
activity lasts longer than a few minutes, and can always be accomplished
without moving your feet.
* refuel_fires( false ): If true, the character will automatically refuel
fires during the long activity.
* auto_needs( false ) : If true, the character will automatically eat and
drink from specific auto_consume zones during long activities.
* multi_activity(false): This activity will repeat until it cannot do
any more work, used for NPC and avatar zone activities.
* completion_eoc: an EOC that is run when this activity completes
* do_turn_eoc: an EOC that is run when this activity performs a turn
## Termination
There are several ways an activity can be ended:
1. Call `player_activity::set_to_null()`
This can be called if it finished early or something went wrong,
such as corrupt data, disappearing items, etc. The activity will
not be put into the backlog.
2. `moves_left` <= 0
Once this condition is true, the finish function, if there is one,
is called. The finish function should call `set_to_null()`. If
there isn't a finish function, `set_to_null()` will be called
for you (from activity_actor::do_turn).
3. `Character::cancel_activity`
Canceling an activity prevents the `activity_actor::finish`
function from running, and the activity does therefore not yield a
result. Instead, `activity_actor::canceled` is called. If activity is
resumable, a copy of it is written to `Character::backlog`.
## Notes
While the character performs the activity,
`activity_actor::do_turn` is called on each turn. Depending on the
JSON properties, this will do some stuff. It will also call the do_turn
function, and if `moves_left` is non-positive, the finish function.
Some activities (like playing music on a mp3 player) don't have an end
result but instead do something each turn (playing music on the mp3
player decreases its batteries and gives a morale bonus).
If the activity needs any information during its execution or when
it's finished (like *where* to do something, *which* item to use to do
something, ...), simply add data members to your activity actor as well
as serialization functions for the data so that the activity can persist
across save/load cycles.
Be careful when storing coordinates as the activity may be carried out
by NPCS. If its, the coordinates must be absolute not local as local
coordinates are based on the avatars position.
If in the `activity_actor::finish`, `player_activity::set_to_null()` is not called, the `activity_actor::finish` will be called again, or if you add more moves to `activity_actor::moves_left`, the `activity_actor::do_turn` function will also be called.
### `activity_actor::start`
This function is called exactly once when the activity
is assigned to a character. It is useful for setting
`player_activity::moves_left`/`player_activity::moves_total` in the case
of an activity based on time or speed.
### `activity_actor::do_turn`
To prevent an infinite loop, ensure that one of the following is
satisfied:
- The `based_on` JSON property is `speed` or `time`
- The `player_activity::moves_left` is decreased in `do_turn`
- The the activity is stopped in `do_turn` (see 'Termination' above)
For example, `move_items_activity_actor::do_turn` will either move as
many items as possible given the character's current moves or, if there
are no target items remaining, terminate the activity.
### `activity_actor::finish`
This function is called when the activity has been completed
(`moves_left` <= 0). It must call `player_activity::set_to_null()` or
assign a new activity. One should not call `Character::cancel_activity`
for the finished activity, as this could make a copy of the activity in
`Character::backlog`, which allows resuming an already finished activity.
|