This repo is a WIP starter template for the current Closed Alpha of Screeps Arena
Screeps Arena is a new game under active development, this repo is unoffcial and maintained by the screepers community
Any issues you experience with this repo should be created as an issue in this repo, the Screeps Arena devs should NOT be contacted!
TODO:
- A way to push code to a specific arena
npm run push alpha-capture-the-flag
- Will probably be a copy of files to the correct location, depending on what location has been choosen in the arena client.
- If we can't detect the locations, we will probably need a
screeps-arena.json
file where people can set up their desired output destinations
Current Issues: None
Screeps Arena Typescript Starter is a starting point for a Screeps Arena AI written in Typescript. It provides everything you need to start writing your AI whilst leaving main.ts
as empty as possible.
The initial example code from the steam forum is included in src/alpha-capture_the_flag/main.ts
You will need:
- Node.JS (10.x || 12.x)
- A Package Manager (Yarn or npm)
- Rollup CLI (Optional, install via
npm install -g rollup
)
Open the folder in your terminal and run your package manager to install the required packages and TypeScript declaration files:
# npm
npm install
# yarn
yarn
Fire up your preferred editor with typescript installed and you are good to go!
-
arenas are located in
src/arena_*
any folder you create insrc
with a name starting witharena_
will result in amain.mjs
in thedist/arena_*
folder. -
Run
npm run build
to generate all arenas to/dist/*
-
npm run build
- everything is build, the player can change their arena to look at the specific/dist/arena*
directory- this template produces the following as an example
/dist/alpha_capture_the_flag/main.mjs
- this template produces the following as an example
-
npm run build capture
- a specific arena is build, the player can change their arena to look at the specific/dist/arena*
directory knowing only that arena was updated -
Copy the
main.mjs
file to your desired location or change the location in the Screeps Arena client to point to the desired/dist/*
folder.
-
npm run push
builds all arenas, then pushes all arenas to their respective folders where the client is pointed at.- npm run push capture
builds the specific arena, then pushes the capture arena to their respective folders where the client is pointed at.
It uses the following project for typings https://github.com/screepers/typed-screeps-arena When the typings are updated and you need to get the newest types
- delete node_modules/@types/screeps-arena
- run
npm i
to reinstall the packages. You might need to delete package-lock.json to get the types.
Issues, Pull Requests, and contribution to the docs are welcome! See our Contributing Guidelines for more details.