Renamed package/directory

This commit is contained in:
Stephen McQuay 2014-04-23 14:28:13 -07:00
parent 9e1cd272f7
commit 72d0843ff8
16 changed files with 27 additions and 27 deletions

View File

@ -10,7 +10,7 @@ import (
"runtime/pprof"
"time"
"bitbucket.org/hackerbots/botserv"
hbserver "bitbucket.org/hackerbots/server"
"code.google.com/p/go.net/websocket"
)
@ -42,23 +42,23 @@ func main() {
log.Println("serving profile info at http://localhost:8667/debug/pprof/")
}
conf, err := botserv.LoadConfig(*config)
conf, err := hbserver.LoadConfig(*config)
if err != nil {
log.Fatal(err)
}
sm := http.NewServeMux()
c := botserv.NewController(conf, *mprofile, *profile)
c := hbserver.NewController(conf, *mprofile, *profile)
go c.Run()
sm.Handle("/", botserv.JsonHandler(c.Index))
sm.Handle("/", hbserver.JsonHandler(c.Index))
sm.Handle("/ws/", websocket.Handler(c.AddPlayer))
sm.Handle("/game/start/", botserv.JsonHandler(c.StartGame))
sm.Handle("/game/list/", botserv.JsonHandler(c.ListGames))
sm.Handle("/game/stats/", botserv.JsonHandler(c.GameStats))
sm.Handle("/game/bw/", botserv.JsonHandler(c.BW))
sm.Handle("/game/stop/", botserv.JsonHandler(c.StopGame))
sm.Handle("/game/start/", hbserver.JsonHandler(c.StartGame))
sm.Handle("/game/list/", hbserver.JsonHandler(c.ListGames))
sm.Handle("/game/stats/", hbserver.JsonHandler(c.GameStats))
sm.Handle("/game/bw/", hbserver.JsonHandler(c.BW))
sm.Handle("/game/stop/", hbserver.JsonHandler(c.StopGame))
sm.HandleFunc("/fuck/shit/up/", c.KillServer)
err = http.ListenAndServe(*addr, sm)

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"encoding/json"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"encoding/json"
@ -24,7 +24,7 @@ func (h JsonHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
}
// Controller is the shepherd of a collection of games. The main package in
// botserv simply populates one of these and starts an http server.
// server simply populates one of these and starts an http server.
type Controller struct {
Idg *IdGenerator
Conf Config
@ -247,7 +247,7 @@ func (c *Controller) StopGame(w http.ResponseWriter, req *http.Request) {
log.Printf("returning from StopGame")
}
// KillServer is my favorite method of all the methods in botserv: it shuts
// KillServer is my favorite method of all the methods in server: it shuts
// things down respecting profiling requests.
func (c *Controller) KillServer(w http.ResponseWriter, req *http.Request) {
if c.Profile != "" {

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"log"

4
doc.go
View File

@ -1,3 +1,3 @@
// botserv is the collection of structs and functions used to implement
// server is the collection of structs and functions used to implement
// a hackerbots server
package botserv
package server

View File

@ -1,4 +1,4 @@
package botserv
package server
// delete me

2
id.go
View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"crypto/md5"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"testing"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"log"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"math"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"encoding/gob"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"log"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"log"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"log"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
"log"

View File

@ -1,4 +1,4 @@
package botserv
package server
import (
v "bitbucket.org/hackerbots/vector"