1
0
Fork 0
I've moved remote to https://s.mcquay.me/hackerbots/ and stood up routes for go
get on the hackerbots repos. I had to update the imports for this to take
effect.
Esse commit está contido em:
Stephen McQuay 2015-04-30 23:07:21 -07:00
commit 446eba5209
10 arquivos alterados com 14 adições e 12 exclusões

Ver arquivo

@ -10,7 +10,7 @@ import (
"runtime/pprof"
"time"
"bitbucket.org/hackerbots/server"
"hackerbots.us/server"
)
var addr = flag.String("addr", ":8666", "http service address")

Ver arquivo

@ -12,8 +12,9 @@ import (
"strings"
"sync"
"github.com/smcquay/idg"
"golang.org/x/net/websocket"
"mcquay.me/idg"
)
// JsonHandler is a function type that allows setting the Content-Type

Ver arquivo

@ -8,7 +8,7 @@ import (
"sync"
"time"
"bitbucket.org/smcquay/bandwidth"
"mcquay.me/bandwidth"
)
const maxPlayer = 128

Ver arquivo

@ -5,7 +5,7 @@ import (
"math"
"math/rand"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
// Obstacle is the implementation of the generic building type in the game.

Ver arquivo

@ -5,8 +5,9 @@ import (
"encoding/json"
"log"
"bitbucket.org/smcquay/bandwidth"
"golang.org/x/net/websocket"
"mcquay.me/bandwidth"
)
const maxMessageSize = 1024

Ver arquivo

@ -3,7 +3,7 @@ package server
import (
"log"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
// Projectile are the things robots can shoot at eachother.

Ver arquivo

@ -3,8 +3,9 @@ package server
import (
"log"
v "bitbucket.org/hackerbots/vector"
"golang.org/x/net/websocket"
v "hackerbots.us/vector"
)
// GameID is essentially the name of the game we want to join

Ver arquivo

@ -5,9 +5,8 @@ import (
"math"
"math/rand"
"github.com/smcquay/idg"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
"mcquay.me/idg"
)
// Robot contains everything the game needs to know to simulate robot behavior.

Ver arquivo

@ -5,7 +5,7 @@ import (
"math"
"testing"
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
func init() {

Ver arquivo

@ -1,7 +1,7 @@
package server
import (
v "bitbucket.org/hackerbots/vector"
v "hackerbots.us/vector"
)
// Splosion embodies an explosion.