Working with States and State Spaces

Allocating memory for states

The simple version

or

The ompl::base::ScopedState class will do the necessary memory operations to allocate a state from the correct state space. This is the recommended way of allocating states for code other than ompl internals. Convenience operators such as = and == are provided. If a type T is provided, where T is a state space type, the maintained state is cast as T::StateType. operator= will use ompl::base::StateSpace::copyState() and operator== will use ompl::base::StateSpace::equalStates().

The expert version

ompl::base::State* state = si->allocState();
...
si->freeState(state);

The structure of a state depends on the state space specification. The ompl::base::State type is just an abstract base for the states of other state spaces. For this reason, states cannot be allocated directly, but through the allocation mechanism of the state space: ompl::base::StateSpace::allocState(). States are to be freed using ompl::base::StateSpace::freeState(). For convenience, ompl::base::SpaceInformation::allocState() and ompl::base::SpaceInformation::freeState() are defined as well. Using the calls from the ompl::base::SpaceInformation class is better since they certainly use the same state space as the one used for planning. This is the lowest level of operating on states and only recommended for expert users.

See Working with states for how to fill the contents of the allocated states.

Working with states

In order for states to be useful in setting start (or goal) positions, accessing their content is needed. It is assumed the reader is familiar with Allocating memory for states. Furthermore, operators on states and state spaces are also used.

Simple version

The recommended use of states is with ompl::base::ScopedState. Given the instance of a state space, this class will allocate a state from that space. The internally maintained state is freed when the instance of ompl::base::ScopedState goes out of scope. ompl::base::ScopedState is a templated class and it inherits from T::StateType, where T is a state space type. This allows it to cast the state it maintains to the desired type and thus exhibit the functionality (the same members) as T::StateType. If no template argument is specified, the internal state is kept as ompl::base::State*.

state->setX(0.1);
state->setY(0.2);
state->setYaw(0.0);
// backup maintains its internal state as State*, so setX() is not available.
// the content of backup is copied from state
ompl::base::State *abstractState = space->allocState();
// this will copy the content of abstractState to state and
// cast it internally as ompl::base::SE2StateSpace::StateType
state = abstractState;
// restore state to it's original value
state = backup;
if (state != backup)
throw ompl::Exception("This should never happen");

Combining ompl::base::ScopedState with ompl::base::CompoundStateSpace:

// put the pointer to the state space in a shared pointer
// the ompl::base::ScopedState helps only with one cast here, since we still need to
// manually cast the components of the state to what we want them to be.
state->as<ompl::base::SO2StateSpace::StateType>(0)->setIdentity();

The code above can be equivalently written as:

// define the individual state spaces
// construct a compound state space using the overloaded operator+
ompl::base::StateSpacePtr space = so2 + so3;
// the ompl::base::ScopedState helps only with one cast here, since we still need to
// manually cast the components of the state to what we want them to be.
state->as<ompl::base::SO2StateSpace::StateType>(0)->setIdentity();

States can also be printed to streams:

std::cout << state;

Sometimes it may be useful to extract parts of a state, or assign only to some parts of a state, especially when using compound state spaces:

// an SE2 state space is in fact a compound state space consisting of R^2 and SO2
// define a full state for this state space
// set the state to a random value
fullState.random();
// construct a state that corresponds to the position component of SE2
// copy the position
pos << fullState;
// equivalently, this can be done too:
fullState >> pos;
// if we now modify pos somehow, we can set it back in the full state:
pos >> fullState;

Expert version

For a state space type of type T, the result of ompl::base::StateSpace::allocState() can be casted to T::StateType* to gain access to the state's members. To ease this functionality, the ompl::base::State::as() functions have been defined.

ompl::base::State *state = space->allocState();
ompl::base::State *copy = space->allocState();
space->copyState(copy, state);
if (!space->equalStates(copy, state))
throw ompl::Exception("This should not happen");
space->freeState(state);
space->freeState(copy);

See Advanced methods for copying states for more information on copying states.

Operators for States and State Spaces

These operators are intended to simplify code that manipulates states and state spaces. They rely on the fact that state spaces have unique names. Here are some examples for using these operators:

// Assume X, Y, Z, W are state space instances, none of
// which inherits from ompl::base::CompoundStateSpace.
// Denote a compound state space as C[...], where "..." is the
// list of subspaces.
// the following line will construct a state space C1 = C[X, Y]
// the following line will construct a state space C2 = C[X, Y, Z]
// the following line will leave C2 as C[X, Y, Z]
// the following line will construct a state space C2 = C[X, Y, Z, W]
// the following line will construct a state space C3 = C[X, Z, Y]
// the following line will construct a state space C4 = C[Z, W]
// the following line will construct a state space C5 = W
// the following line will construct an empty state space C6 = C[]
// the following line will construct a state space C7 = Y

These state spaces can be used when operating with states:

ompl::base::ScopedState<> sXZW(X + Z + W);
// the following line will copy the content of the state sX to
// the corresponding locations in sXZW. The components of the state
// corresponding to the Z and W state spaces are not touched
sX >> sXZW;
// the following line will initialize the X component of sXY with
// the X component of sXZW;
sXY << sXZW;
// the following line will initialize both components of sZX, using
// the X and Z components of sXZW;
sZX << sXZW;
// the following line compares the concatenation of states sX and sY with sXY
// the concatenation will automatically construct the state space X + Y and a state
// from that state space containing the information from sX and sY. Since sXY is
// constructed from the state space X + Y, the two are comparable.
bool eq = (sX ^ sY) == sXY;
A state space representing SO(2). The distance function and interpolation take into account angle wra...
A shared pointer wrapper for ompl::base::SpaceInformation.
A space to allow the composition of state spaces.
Definition: StateSpace.h:637
Definition of an abstract state.
Definition: State.h:113
const StateSpacePtr & getSubspace(unsigned int index) const
Get a specific subspace from the compound state space.
Definition: StateSpace.cpp:909
A state space representing SO(3). The internal representation is done with quaternions....
const T * as() const
Cast this instance to a desired type.
Definition: State.h:162
A state space representing Rn. The distance function is the L2 norm.
A state space representing SE(2)
The definition of a state in SO(2)
A shared pointer wrapper for ompl::base::StateSpace.
void addSubspace(const StateSpacePtr &component, double weight)
Adds a new state space as part of the compound state space. For computing distances within the compou...
Definition: StateSpace.cpp:871
Definition of a scoped state.
Definition: ScopedState.h:120
The exception type for ompl.
Definition: Exception.h:78