X-Git-Url: https://git.ucc.asn.au/?p=progcomp2012.git;a=blobdiff_plain;f=web%2Findex.html;h=6667ce7473d84bdc442e7eaf54873476ba11e670;hp=55c102935e4f6d524a5a2968ffbf780f361430da;hb=171d69e6c7acd68ec192765cace9dae0c4aed2db;hpb=6fbef43eef989578cc406a33fc759ff08bf4f3d1 diff --git a/web/index.html b/web/index.html index 55c1029..6667ce7 100644 --- a/web/index.html +++ b/web/index.html @@ -5,76 +5,44 @@ -

Quick Details

-

git

-

The git repository is listed on The UCC git page as "progcomp2012.git"

-

Direct Link Here

+

UCC::Progcomp 2012

+

Note: This page has been updated to minimise frustration.

+ + +

First, login to a linux clubroom machine, that actually works. Machines to avoid include all of them.

+

Next, open a terminal and do this:

+
    +
  1. ssh -X motsugo
  2. +
  3. cd /away/ucc/username
  4. +
  5. git clone git://git.ucc.asn.au/progcomp2012.git
  6. +
  7. cd progcomp2012/judge/manager
  8. +
  9. ./stratego -g -b @human ../../agents/vixen/vixen.py
  10. +
+

Now play a game.

+

Now:

+
    +
  1. mkdir ../../agents/my_ai
  2. +
  3. cp ../../agents/basic_python/* ../../agents/my_ai/
  4. +
  5. mv ../../agents/my_ai/basic_python.py ../../agents/my_ai/my_ai.py
  6. +
+

Now, open gedit, and open the file "progcomp2012/agents/my_ai/my_ai.py

+

Write an AI. Test it with: "./stratego -g -b @human ../../agents/my_ai/my_ai.py"

+

Also test with "./stratego -g ../../agents/my_ai/my_ai.py ../../agents/vixen/vixen.py"

+

Keep doing this until you win.

+ +

DO NOT

+
    +
  1. Attempt to use Windows
  2. +
  3. Attempt to compile the manager program for Mac
  4. +
  5. Attempt to compile the manager program for Windows
  6. +
  7. Attempt to get OpenGL working on any computer.
  8. +
  9. Attempt to get SDL working on any computer.
  10. +
  11. Attempt to implement the protocol from scratch unless your name is John Hodge.
  12. +
+ +

More information:

+

Visit the old page

-

Mailing List

-

We will use the same mailing list as last year (progcomp).

- -

irc channel

-

There is a #progcomp irc channel on the ucc irc server (irc.ucc.asn.au) where you can ask questions, and someone might even answer them!

- -

Stratego

-

This site explains what Stratego is.

- -

Programming Competition

-

Create an AI to play Stratego.

-

Programs are written independently and interface through stdin/stdout with a manager program, which queries them on setup and moves.

- -

The Manager Program

-

The manager program provides the protocol for two seperate AI to play a game of stratego. It has the imaginative name of 'stratego', but I will probably refer to it as 'the manager program' or 'stratego' with absolutely no consistency.

-

It also aims to assist with AI design by providing options for graphical or terminal output and saving/reading games from files

-

-

Human players are also supported, although the interface is minimal, as this feature is meant for testing.

-

If you just want to play a game, without having to write your own AI, try Probe

- -

Screenshot

-Graphical output of 'stratego' manager program. - -

Protocol

-

For the sake of simplicity and keeping things in one place, the protocol is now entirely described in the manual page of the manager program. All updates to the protocol will be reflected in that file.

- -

Major updates to the manager program or protocol will be accompanied by an email to the mailing list. However, it is probably a good idea to clone the git repository, and regularly pull from it.

- -

Warning: AI programs must unbuffer stdin and stdout themselves. This is explained in the manual page, but I figured no one would read it. It is fairly simple to unbuffer stdin/stdout in C/C++ and python, I have not investigated other languages yet.

- -

Scoring and Results

-

The competition will be a round robin, with every AI playing three (3) games against each possible opponent. A points system is used to score each AI, 3 points for a Win, 2 for a Draw, 1 for a Loss or -1 for an Illegal response (counts as a Win for the opponent). Scores accumulate between rounds.

-

The winning AI will be the AI with the highest score after all games have been played. In the event of a tied score, the two highest scoring AI's will play one more round consisting of three games. If the scores are still tied, the official outcome will be a Draw.

-

When the competition officially runs, results will appear here. There may (or may not) be test results there now.

- -

Sample AI Programs

-

Several sample AI programs are currently available. The sample programs can be downloaded from the git repository -

Warning: No guarantees are provided about the functioning of these programs. It is your own responsibility to ensure that your submission obeys the protocol correctly. If you have based your program off a sample, please double check that it obeys the protocol.

-

Submissions

-

You must submit the full source code, and build instructions or makefile(s) for your program.

-

Also include the name of the executable or script, the name of the AI, your name, and optionally a description of your AI and its tactics.

-

Please email matches@ if you have a submission.

-

Code which attempts to comprimise the host machine, or interfere either directly or indirectly with the functioning of other programs will be disqualified.

- -

Dates

-

The competition is now officially open. Submissions will be accepted until midday, Saturday the 10th of March, 2012. Results will be announced as soon as they are available (depending on the number of entries it may take several days to simulate the competition).

- -

Clarifications

- - - -

FAQ

-

If you have a question which is not covered by this page, or about a topic that is vague on this page, please email matches@

- -

Last webpage update: 07/01/12

- +