公式サイト
- node.js のインストーラーをダウンロード&実行
install.bat
を実行
- nodebrew および nodejs をインストール
curl -L git.io/nodebrew | perl - setup
- bashを使っている人は
echo "export PATH=$HOME/.nodebrew/current/bin:$PATH" >> .bashrc
zshを使っている人はecho "export PATH=$HOME/.nodebrew/current/bin:$PATH" >> .zshrc
- bashを使っている人は
source ~/.bashrc
zshを使っている人はsource ~/.zshrc
nodebrew install stable
nodebrew use stable
install.sh
を実行
- node.js のインストーラーをダウンロード&実行
install.sh
を実行
execute_on_browser.bat
orexecute_on_browser.sh
を実行- AI 0~3 の欄にAI実行用のコマンドを入力
- "Run Game" をクリックしてゲームを開始
execute_on_cui.bat -a "1つ目のAIの実行コマンド" -a "2つ目のAIの実行コマンド"
(orexecute_on_cui.sh ...
) のように、AIに使用するコマンドを指定して実行。 この例では、1つ目と2つ目のAIには指定した実行コマンドが使用され、3つ目と4つ目のAIにはデフォルトのコマンド(node SampleAI/JavaScript/SampleAI.js
)が使用される。
NOTICEを参照してください。