https://github.com/stonet2000/battlehack20-tournament-runner
https://github.com/stonet2000/battlehack20-tournament-runner
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/stonet2000/battlehack20-tournament-runner
- Owner: StoneT2000
- Created: 2020-04-23T02:21:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T13:56:55.000Z (over 3 years ago)
- Last Synced: 2025-02-05T13:53:01.144Z (over 1 year ago)
- Language: TypeScript
- Size: 1.49 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BattleHack 2020 Tournament Runner
This is code for running your own Trueskill / ELO ranked tournament with bots from BattleHack 2020 hosted by [Battlecode](https://battlecode.org)
This is essentially my [Dimensions](https://github.com/stonet2000/dimensions) framework wrapped around Battlecode.
To start, make sure you have [npm](https://npmjs.org) and run the following
```
npm install
```
Make sure to install `ts-node` by running the following
```
npm install -g ts-node
```
Then to start running a tournament, run
```
ts-node run.ts
```
This will run 16 examplefuncsplayer against themselves in a trueskill tournament with 4 matches running simutaneously. Replays are automatically stored in the `replays/` folder.
To run with other bots and configure match options and running options, read through `run.ts` for instructions.