Skip to content
forked from bbss/cljsc2

Experiments with the StarCraft II AI API and Clojure.

Notifications You must be signed in to change notification settings

wangtengda0310/cljsc2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cljsc2

中文

cljsc2 let you use the StarCraft II AI API from Clojure using regular Clojure namespaced maps for interaction.

It generates clojure.spec specifications for all the endpoint the SC2 API exposes and serializes requests over a protobuf websocket connection to running instances of the game.

Jupyter notebook example: https://bbss.github.io/cljsc2/

Setup and running an agent

If you're new to StarCraft II or Clojure development and would like to use this library please don't be shy to ask for help by making an issue or sending me a mail at baruchberger@gmail.com.

See jupyter notebook for usage example: https://bbss.github.io/cljsc2/

Agents need to implement a simple step function that:

  • Receives the state of the game as first argument
  • Receives a connection to the running game instance as the second argument.
  • Returns an action or list of actions to step forward in the game.
  • Returns nil to end the agents' run.

The feature-layers that the API exposes for Machine Learning purposes can be displayed through a ClojureScript app that draws the feature layers to canvas, see code here.

Note

This library is in early development stage, if you find bugs let me know. It's not yet packaged into a nice typical maven library with nice usability.

License

Copyright © 2018

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.

About

Experiments with the StarCraft II AI API and Clojure.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Clojure 96.6%
  • HTML 3.4%