Category Archives: Rules

2017 Rules

 

※Base Rules come from AIIDE StarCraft AI Competition Rules

Tournament Format

(Updated on 3 May 2018) BigEyes by Taesung Yoon was disqualified after the official results were published, after it was noticed that the entry’s source code was missing and the author was unable to provide it. It is too late to update the published results, so apart from the fact that BigEyes is disqualified, the official list of submission entries, results, rankings, prizes and certificates etc remain unchanged.

(Updated on August 25) Final Submission Entries in this year. ( Storm bot and PooHoo bot dropped out of this competition because of execution issue and etc… )

(Updated on July 19) “Big eyes” bot’s name is changed to “BigEyes”.

 

(Updated on July 18) Final Entry in this year. 14 entries submitted. “bonjwAI”, “Chambit”, “BuggyBot”, and “bin heo” didn’t submit bots. We’ll don’t use Seed Number that didn’t submit bots for selecting maps. “XellnagaII” didn’t want to participate this year.
(Updated on June 29) Final Registration Entry in this year. ( Remove the image because of spam issue )

(Updated on June 25) Final Registration Entry in this year.

 

Random Seed

We will get “Seed Number” from each participant at Submission Questionnaire. Accumulated Seed Number will be used as “Random Seed” to select maps.

Map(※IMPORTANT※※)

5 maps will be selected randomly from the Map-pack and used in the competition.
We will randomly select one 2-players map, two 3-players maps and two 4-players maps.
We will use Java Standard Random Generator to choose maps.

(Updated in July 18) Through total seed number and standard java random generator, “(2)Hitchhiker1.1, (3)TauCross1.1, (3)Alchemist1.0, (4)Andromeda1.0, (4)Python1.3” through XOR combinations.

Game Type

The only game type for the competition will be 1 vs. 1 full game StarCraft: BroodWar 1.16.1 with fog of war enabled.

Time Limit

Games will have a ‘frame limit’ of 86400 frames, to simulate one hour of gameplay. If a game goes this long, it will be stopped and the in-game score will be used to determine the winner.

Tournament Rules

Persistent File I/O

File I/O will work the same way as AIIDE StarCraft AI Competition Rules. You will have read access to folder ‘bwapi-data/read/’ and write access to folder ‘bwapi-data/write/’, both of which will be in the standard location under the StarCraft root directory.
IMPORTANT: File I/O works as follows:

  1. Before each game, the contents of the server-side read directory for your bot are copied to the client machine under ‘bwapi-data/read/’. For the first round of the tournament this directory will be blank since a full round has not yet been played.
  2. During a game, you have write access to the ‘bwapi-data/write/’ folder and read access to the ‘bwapi-data/read/’ folder on the client you are currently playing on
  3. After the game ends, the contents of the ‘bwapi-data/read/’ folder are deleted, and the contents of the ‘bwapi-data/write/’ folder are sent to the server and stored in your bot’s server-side write folder.
  4. WARNING: Step 3 may overwrite previous results if you are not careful in specifying unique filenames for each opponent that you play against.
  5. After each bot has played each other bot on the current map (one round robin on that map) the contents of each bot’s server-side write folder are copied into the respective server-side read folder and the write folder is cleared.
  6. WARNING: Step 5 will over-write previous round data inside the server-side read folder. Your file output must either be cumulative, or have a filename scheme such that no overwrites will happen in order for your data to be preserved.
  7. The bot’s server-side read folder is NEVER deleted throughout the tournament
  8. The next round starts, and from step 1 you will have access to your server-side read data from the previous rounds inside the client’s ‘bwapi-data/read/’ folder

Again, due to the nature of overwriting the read folder with the contents of the write folder, your file names should be unique at least to the current opponent. Two popular choices for file naming schemes are:

  1. Results_EnemyName.txt – Inside this file you store all data about your matches against bot EnemyName. This file will be overwritten every round on the server, so make sure to read its contents each game, and write out the cumulative results into the write folder so you do not lose data after a round
  2. For example, you can store one line per map played inside this file so you have something like “EnemyName MapName Wins Losses ExtraData”, then if you win a game on that map against that enemy, you read in the contents and then output “EnemyName MapName Wins+1 Losses ExtraData+NewData”
  3. Results_EnemyName_MapName_TimeStamp.txt – If you don’t want to have a single file per enemy storing cumulative results, you can instead have a single file per game to store results with a unique time stamp or random number suffix. Please not that this is much slower, as your bot will play thousands of games and then have to process each file in the directory each time. Any time-out due to file processing is still a timeout and you will get a game loss. I strongly recommend the first option.
  4. Any reading or writing of other directories is forbidden. You have a 1GB limit for all files in the read directory. If you go over this, it will be deleted.

Any reading or writing of other directories is forbidden. You have a 1gb limit for all files in the read directory. If you go over this, it will be deleted.

BWAPI Version

The following BWAPI release versions will be supported this year:
Version 3.7.4, 4.1.2.

Software Requirements

Open-Source

All entries submission folders, including source code, will be published on the competition website once the competition has finished.

Game Speed

All games will be played at setLocalSpeed(0) (fastest setting). Please make sure that your bot functions correctly on this setting. To avoid problems, base your ‘timings’ on unit counts or currentFrame() and not machine time.

Software Time-Out

Make sure that each onframe call does not run longer than 42ms. Entries that slow down games by repeatedly exceeding this time limit will lose games on time. In particular:

In a match a bot LOSES (immediately) on time

>= 2 frames exceed 10 seconds, or
>= 10 frames exceed 1 second, or
>= 200 frames exceed 55ms

Code Obfuscation

We reserve the right to reject entries if we feel the authors attempt to obfuscate their code (like using silly or deceiving variable names or encoding their algorithm in a 10MB FSM transition matrix stored on disk). Authors who are concerned about the source code leaking information that has not been published yet, are encouraged to submit a technical report to their institutions that describes their entries prior to submitting the code.
To simplify this process we ask authors to only use standard development tools, that can be invoked via shell commands (such as Visual C++). In case remote access is not feasible, we will need detailed instructions for building each DLL.

Conflict of Interest

Organizing AND participating in events like this can be tricky, in particular if some choices, like which maps we use, are made “randomly”, and we get access to competitors source code prior to running the tournament.

We address these problems as follows:

  1. For choosing maps we will use the standard Java pseudo random number generator that will be seeded by the XOR combination of “random numbers” all program authors provide when they submit their entry.
  2. Before accepting zip files, we will distribute the SHA-1 check sums of our zip files to all participants. This way, participants can be confident that we don’t change our entry after seeing their source code.

Detailed Rules

  • No entry fee
  • All replay files and source code will be made publicly available after the contest
  • StarCraft Brood War version 1.16.1 will be used for all games
  • StarCraft is a trademark of Blizzard Entertainment
  • Blizzard will not held liable for any damage caused
  • We will not be held liable for damage caused. This includes getting your CD key banned on Battle.net due to running a 3rd party StarCraft launcher
  • Entries must use the version of the Brood War API provided on this site
  • Bots that perform malicious behavior will be disqualified and banned from all future contests. This includes but is not limited to:
    1. Intentionally crashing StarCraft
    2. Installing worms/viruses/malware on the host machine
    3. Malicious utilization of resources such as sockets, files, zombie processes (Using 100% RAM and 100% CPU is permitted)
    4. Spamming the in-game console
  • Programs that attempt to cheat will be disqualified. Bots must disable the perfect information flag in the full-game tournament
  • Games in which an agent crashes StarCraft will be counted as a loss
  • Bots will be run in a native Windows XP SP3 environment.
    1. Entries must be tested on native Windows XP SP3 before submission
    2. We will not be held responsible for entries that crash StarCraft due to our configuration of the system
  • Games will be run in a semi-automated fashion.
  • Internet access is forbidden, bots will be run on a LAN
  • Only 1 entry is permitted per affiliation. However, the different lab in affiliation is permitted.
  • Bots must not slow down the game speed
    1. Games will be run on the FASTEST setting, which is 24 fps
    2. See the details on writing a remote process for your AI here
    3. Games in which a bot slows down the game speed significantly will be counted as a loss
  • Participants are required to disclose all source code and to provide a short description of implementation details.
  • Entries are only allowed to make use of free software components – including BWTA and BWSAL
  • Entries are allowed to utilize a single socket to communicate with a remote process
    1. The remote process must be a 1-click to run application (e.g. we are not going to install a LISP compiler on the host machine to run a bot)
    2. Additional details on writing a remote process are available here
  • Bots are not allowed to pause the game, games in which a bot pauses the game will be counted as a loss
  • The following StarCraft bugs/tricks are permitted:
    1. Plague on interceptor
    2. Units pressed through
    3. Drops to defuse mines
    4. Mineral walk
    5. Manner Pylon
    6. Lurker hold position
    7. Observer over turret
    8. Stacking air units
  • All other bugs/exploits are forbidden. Bots caught attempted these exploits will be disqualified. This includes but is not limit to:
    1. Flying drones and templars
    2. Terran sliding buildings
    3. Stacking ground units
    4. Allied mines
    5. Gas walk, to get through blocked entrances or ramps
  • Bad mannered in game behavior is discouraged, but not forbidden

2016 Rules

You can see the 2016 rules here