seaquest — sample bot
======================
A ready-to-run example bot that plays seaquest. It's both the source (read it to
learn how bots work) and the program — no libraries to install.

Needs Python 3.7+ (already on most systems). Nothing else.

Watch it play (no menus to click):
  1) In one terminal:  python3 seaquest_bot.py
  2) In another, from the game/ folder, launch the game pointed at the bot:
        seaquest-client.exe --auto-play --bot ws://127.0.0.1:8042
     (--auto-play drops straight into a single-player run the bot can drive.)

Or, in a normal game you're already playing, add "--bot ws://127.0.0.1:8042"
when you launch and the bot joins as a second player.

Each tick the bot receives the world state and sends button presses back — a
classic Seaquest AI (manage oxygen, rescue divers, surface for the big cash-in,
shoot enemies). See bots/README.md in the source repo for the wire protocol and
how to port it to another language.
