• Stars
    star
    540
  • Rank 81,688 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 7 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

AI for Screeps, a multiplayer programming strategy game

Current release: Overmind v0.5.2 - Evolution Build Status


About Overmind

What is Screeps?

Screeps is an MMO strategy game for programmers. The core objective is to expand your colony, gathering resources and fighting other players along the way. To control your units, you code an AI in JavaScript; everything from moving, mining, building, fighting, and trading is entirely driven by your code. Because Screeps is an MMO, it takes place on a single server that runs 24/7, populated by every other player and their army of creeps. When you log off, your population continues buzzing away with whatever task you set them. Screeps pits your programming prowess head-to-head with other people to see who can think of the most efficient methods of completing tasks or imagine new ways to defeat enemies.

What is Overmind?

Overmind is my personal codebase that I run on the public server. The structure of the AI is themed loosely around the Zerg's swarm intelligence from Starcraft. Overlords orchestrate Creep actions within each Colony, and the colony Overseer places Directives to adapt to stimuli. Finally, the Assimilator allows all players running Overmind to act as a collective hivemind, sharing creeps and resources and responding jointly to a master ledger of all directives shared by all players.

The AI is entirely automated, although it can also run in manual or semiautomatic mode. The latest release should work right out of the box; however, if you find something broken, please submit an issue and I'll try to fix it.

Can I use Overmind as my bot?

If you're new to Screeps, I would definitely recommend writing your own AI: most of the fun of the game is programming your own bot and watching your little ant farm run! However, I've tried to make the codebase readable and well-documented, so feel free to fork the project or use it as inspiration when writing your AI.

If you still want to use Overmind on the public server, that's okay too - there are a number of people already doing this. But please realize that using a mature AI like this gives you a huge advantage over other new players, so don't go out of your way to ruin someone else's fun. In the future, I will be implementing methods for novice players to opt out of excessive aggression by Overmind bots (as long as they don't start a conflict and stay out of its way).

Installation

Out of the box

If you just want to run Overmind without modification, you can copy the compiled main.js file attached to the latest release into your script. While Overmind is fully automated by default, it can be run with varying levels of autonomy; refer to the Overmind wiki for how to configure and operate the bot.

Compiling from source

To install the full codebase, download or clone the repository. (Please note that while the latest release of Overmind should always be stable, the latest commit may contain unstable features.) Navigate to the Overmind root directory and run npm install. To compile and deploy the codebase, create a screeps.json file from the example file, then do one of the following actions:

  • Compile and deploy to public server: npm run push-main
  • Compile and deploy to private server: npm run push-pserver
  • Compile without deploying: npm run compile

Overmind uses rollup to bundle the compiled TypeScript into a single main.js file. The codebase includes functionality to compute checksums for internal validation - if you have a different version of rollup installed globally, different checksums may be computed and some functionality will be disabled. Please ensure the local installation of rollup found in node_modules is used.

Setting up the Grafana dashboard

Overmind includes a Grafana dashboard (shown below) which tracks detailed operating statistics. To set up the dashboard:

  1. Register for grafana service at screepspl.us
  2. Setup the ScreepsPlus hosted agent (simpler) or use the NodeJS agent on a free micro instance of Google Compute.
  3. Import the dashboard from Overmind.json and change $User to your username.
  4. Enjoy your pretty graphs!

Design overview

Check out the Overmind wiki for in-depth explanations of parts of the design of the AI. (Click the diagram below to see a higher-resolution version.)

AI structural schematic

More Repositories

1

3D-printed-mirror-array

3D-printable hexagonal mirror array capable of reflecting sunlight into arbitrary patterns
Jupyter Notebook
2,367
star
2

Animator5D

Very simple-to-use framework for rendering 5-dimensional animations (x, y, z, time, some color value) as an animated gif. This requires ImageMagick to combine the frames, but you can still render them without having it installed and just combine them with some online gif maker.
Python
82
star
3

neural-maxwell

A generative model for computing electromagnetic field solutions
Jupyter Notebook
56
star
4

creep-tasks

Screeps plugin for a flexible method of controlling creep actions
TypeScript
46
star
5

screeps-packrat

Lightning-fast and memory-efficient serialization of Screeps IDs, Coords, and RoomPositions
JavaScript
29
star
6

Overmind-RL

Reinforcement learning environment for Overmind
JavaScript
9
star
7

bencbartlett.github.io_old

Personal webpage
5
star
8

TopicsInPhysics

Course materials for SPCS Topics in Physics 2019
Jupyter Notebook
4
star
9

GravitySimulation

Simple SciPy procedure for calculating newtonian dynamics of an n-body system
Python
3
star
10

lengthofday

Accompanying GitHub repository for Geophysical Research Letters paper.
Python
3
star
11

Hydra

Minimalistic distributed computing framework for map-reducable problems.
Python
2
star
12

tVertexing

Time-based vertex reconstruction in the CMS
Python
2
star
13

Hurdle-1

Solution to the granular convection problem given for admission into the Ph11 course.
Python
2
star
14

overmind-docs

Documentation for Overmind, the autonomous Screeps AI
2
star
15

FastProgressBar

Simplified wrapper for the no longer updated library at https://code.google.com/p/python-progressbar/
Python
1
star
16

SLAC

Testing suite for readout electronics boards in the LSST camera interface.
Python
1
star
17

pyblend

WIP library for math animations in Blender
Python
1
star