Skip to content

Commit

Permalink
renamed repo
Browse files Browse the repository at this point in the history
  • Loading branch information
seanhess committed Aug 22, 2012
1 parent e2e7e1b commit 972c137
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 504 deletions.
1 change: 0 additions & 1 deletion .ggg/dev.js

This file was deleted.

36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[viewer]: http://robotquest.tk/viewer/ "RobotQuest Viewer"
[source]: http://github.com/seanhess/botland "RobotQuest Source"
[source]: http://github.com/seanhess/robotquest "RobotQuest Source"


What is RobotQuest?
Expand All @@ -13,7 +13,7 @@ All players share a single world

[The Documentation](#documentation) will teach you how to connect to the game and control your minions.

[The Source](http://github.com/seanhess/botland) is here on github. Fork it, read it, or yell at me on the [issues page](http://github.com/seanhess/botland/issues). The server is written in Haskell, and the AI is written in CoffeeScript
[The Source](http://github.com/seanhess/robotquest) is here on github. Fork it, read it, or yell at me on the [issues page](http://github.com/seanhess/robotquest/issues). The server is written in Haskell, and the AI is written in CoffeeScript

What can I do?
--------------
Expand Down Expand Up @@ -70,7 +70,7 @@ Documentation
<li><a href="#post-players">POST /players</a>
<li><a href="#get-playersname">GET /players/:name</a>
<li><a href="#post-playersplayeridminions">POST /players/:playerId/minions</a>
<li><a href="#get-minionsminionId">GET /minions/:minionId</a>
<li><a href="#get-minionsminionid">GET /minions/:minionId</a>
<li><a href="#post-playersplayeridminionsminionidcommands">POST /players/:playerId/minions/:minionId/commands</a>
<li><a href="#delete-playersplayerid">DELETE /players/:playerId</a>
<li><a href="#delete-playersplayeridminionsminionid">DELETE /players/:playerId/minions/:minionId</a>
Expand All @@ -88,12 +88,12 @@ This includes the [Id](#id) type, which is just a JSON string. Run everything th
Examples
--------

These examples are in pseudocode. For a complete example <a href="https://github.com/seanhess/botland/blob/master/ai/app.coffee">please take a look at the AI (CoffeeScript)</a>
These examples are in pseudocode. For a complete example <a href="https://github.com/seanhess/robotquest/blob/master/ai/app.coffee">please take a look at the AI (CoffeeScript)</a>

### Control a minion

# register our player
player = {name:"example", source: "http://github.com/seanhess/botland"}
player = {name:"example", source: "http://github.com/seanhess/robotquest"}
player.id = POST "/players" player

# spawn a minion
Expand Down Expand Up @@ -150,7 +150,7 @@ Note that this will include quotes when it comes down. This is valid JSON. Just

{
name: "sean",
source: "http://github.com/seanhess/botland"
source: "http://github.com/seanhess/robotquest"
}

<code>name</code> - A unique player name for your program.
Expand Down Expand Up @@ -300,39 +300,39 @@ I am using the extraordinarily complete, free, <a href="http://pousse.rapiere.fr
where <code>sheet</code> is the name of one of the following sheets, and <code>x</code> and <code>y</code> are the 0-indexed offset from the top left. For example, the dark blue ghost is <code>undead-0-0</code>, while the phoenix is <code>uniques-8-5</code>

<h5>classm</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_classm32.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_classm32.gif">

<h5>humans</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_humans32.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_humans32.gif">

<h5>undead</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_undead32.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_undead32.gif">

<h5>uniques</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_uniques32.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_uniques32.gif">

<h5>monster5</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster532.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster532.gif">

<h5>monster1</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster132.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster132.gif">

<h5>monster2</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster232.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster232.gif">

<h5>monster3</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster332.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster332.gif">

<h5>monster4</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster432.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster432.gif">

<h5>monster6</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster632.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster632.gif">

<h5>monster7</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_monster732.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_monster732.gif">

<h5>people</h5>
<img src="https://raw.github.com/seanhess/botland/master/public/assets/angbandtk/dg_people32.gif">
<img src="https://raw.github.com/seanhess/robotquest/master/public/assets/angbandtk/dg_people32.gif">


2 changes: 1 addition & 1 deletion ai/app.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lib = require './lib'

HOST = process.env.HOST || "http://localhost:3026"
AINAME = "AI"
REPO = "http://github.com/seanhess/botland"
REPO = "http://github.com/seanhess/robotquest"

MONSTERS = process.env.MONSTERS || 10

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/seanhess/botland.git"
"url": "git://github.com/seanhess/robotquest.git"
},
"scripts": {
"test": "node_modules/.bin/mocha test/*.js -R spec -b"
Expand Down
2 changes: 1 addition & 1 deletion public/demo/chaosbot.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
var currentAction = randomAction()

function connect() {
var player = {name:"chaosbot", source:"http://github.com/seanhess/botland"}
var player = {name:"chaosbot", source:"http://github.com/seanhess/robotquest"}
request("POST", "/players", player, function(err, mcp) {
mcpId = mcp.id
log("MCP " + mcpId)
Expand Down
4 changes: 2 additions & 2 deletions public/demo/cleanupbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function CleanupBot(worldInfo) {
this.tick = tick
this.start = start

var description = {kind: "CleanupBot", name: "CleanupBotN", source: "http://github.com/seanhess/botland", notes:"moves towards inactive units and destroys them", color: color }
var description = {kind: "CleanupBot", name: "CleanupBotN", source: "http://github.com/seanhess/robotquest", notes:"moves towards inactive units and destroys them", color: color }

function tick(locations, units) {

Expand Down Expand Up @@ -140,4 +140,4 @@ function CleanupBot(worldInfo) {
point = spawn.spawnPoint
})
}
}
}
95 changes: 0 additions & 95 deletions public/docs/docs.css

This file was deleted.

Loading

0 comments on commit 972c137

Please sign in to comment.