GodotEnvironment

class godot_gym_api.environment.GodotEnvironment(protobuf_message_module, engine_address: Tuple[str, int] = ('127.0.0.1', 9090), engine_chunk_size: int = 65536)

Bases: Env

Base class to create custom environments to work with a Godot app.

AGENT_KEY = 'agent'
WORLD_KEY = 'world'
__init__(protobuf_message_module, engine_address: Tuple[str, int] = ('127.0.0.1', 9090), engine_chunk_size: int = 65536)

Initialize environment.

User can override self._requested_observation with his own values.

_godot_configure(config: Dict[str, Any]) None

Wrapper over GodotClient.configure.

Parameters:

config (Dict[str, Any]) – Configuration to be set.

_godot_reset() Dict[str, Any]

Wrapper over GodotClient.reset.

The wrapper substitutues requested_observation argument with self._requested_observation.

Returns:

Initial observation.

Return type:

Dict[str, Any]

_godot_step(action: Any) Dict[str, Any]

Wrapper over GodotClient.step.

The wrapper substitutues requested_observation argument with self._requested_observation.

Parameters:

action (Any) – Action to perform by Agent.

Returns:

New observation.

Return type:

Dict[str, Any]

action_space: spaces.Space[ActType]
observation_space: spaces.Space[ObsType]