vantiy urls

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.
master
Stephen McQuay 8 years ago
parent d00e2a8df8
commit 446eba5209
  1. 2
      botserv/main.go
  2. 3
      control.go
  3. 2
      game.go
  4. 2
      obstacle.go
  5. 3
      player.go
  6. 2
      projectile.go
  7. 3
      protocol.go
  8. 5
      robot.go
  9. 2
      robot_test.go
  10. 2
      splosion.go

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

@ -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

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

@ -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.

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

@ -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.

@ -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

@ -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.

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

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

Loading…
Cancel
Save