Minigrid has a number of additional environments that are used for registering modified version of the original environment.
This PR removed all of those parameter environment in favour of gym register kwargs.
In addition, while looking at all of the environments, some of them have inconsistent naming scheme, this updates the following
BlockedUnlockPickup -> BlockedUnlockPickupEnv
KeyCorridor -> KeyCorridorEnv
LockedRoom -> LockedRoomEnv and Room -> LockedRoom (this is as multiroom also contains a Room to prevent conflict changed both of their names)
Room -> MultiRoom in multiroom.py
playground_v0.py -> playground and PlaygroundV0 -> PlaygroundEnv
Minigrid has a number of additional environments that are used for registering modified version of the original environment. This PR removed all of those parameter environment in favour of gym register kwargs.
In addition, while looking at all of the environments, some of them have inconsistent naming scheme, this updates the following
BlockedUnlockPickup
->BlockedUnlockPickupEnv
KeyCorridor
->KeyCorridorEnv
LockedRoom
->LockedRoomEnv
andRoom
->LockedRoom
(this is as multiroom also contains a Room to prevent conflict changed both of their names)Room
->MultiRoom
in multiroom.pyplayground_v0.py
->playground
andPlaygroundV0
->PlaygroundEnv
Unlock
->UnlockEnv
UnlockPickup
->UnlockPickupEnv