Video Checkers#

../../../_images/atari_video_checkers.gif

This environment is part of the Atari environments. Please read that page first for general information.

Import

from pettingzoo.atari import video_checkers_v4

Actions

Discrete

Parallel API

Yes

Manual Control

No

Agents

agents= ['first_0', 'second_0']

Agents

2

Action Shape

(1,)

Action Values

[0,4]

Observation Shape

(210, 160, 3)

Observation Values

(0,255)

A classical strategy game with arcade style controls.

Capture all of your opponents pieces by jumping over them. To move a piece, you must select a piece by hovering the cursor and pressing fire (action 1), moving the cursor, and pressing fire again. Note that the buttons must be held for multiple frames to be registered.

If you win by capturing all your opponent’s pieces, you are rewarded +1 and your opponent -1.

This is a timed game: if a player does not take a turn after 10 seconds, then that player is rewarded -1 points, their opponent is rewarded nothing, and the timer resets. This prevents one player from indefinitely stalling the game, but also means it is no longer a purely zero sum game.

Official video checkers manual

Environment parameters#

Environment parameters are common to all Atari environments and are described in the base Atari documentation .

Action Space (Minimal)#

In any given turn, an agent can choose from one of 5 actions.

Action

Behavior

0

Fire

1

Move up

2

Move right

3

Move left

4

Move down

Version History#

  • v4: Minimal Action Space (1.18.0)

  • v3: No action timer (1.9.0)

  • v2: Fixed checkers rewards (1.5.0)

  • v1: Breaking changes to entire API (1.4.0)

  • v0: Initial versions release (1.0.0)

Usage#

AEC#

from pettingzoo.atari import video_checkers_v4

env = video_checkers_v4.env(render_mode="human")
env.reset(seed=42)

for agent in env.agent_iter():
    observation, reward, termination, truncation, info = env.last()

    if termination or truncation:
        action = None
    else:
        # this is where you would insert your policy
        action = env.action_space(agent).sample()

    env.step(action)
env.close()

Parallel#

from pettingzoo.atari import video_checkers_v4

env = video_checkers_v4.parallel_env(render_mode="human")
observations, infos = env.reset()

while env.agents:
    # this is where you would insert your policy
    actions = {agent: env.action_space(agent).sample() for agent in env.agents}

    observations, rewards, terminations, truncations, infos = env.step(actions)
env.close()

API#

class pettingzoo.atari.video_checkers.video_checkers.raw_env(**kwargs)[source]#