You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
2.1 KiB
Go

10 years ago
package main
import (
10 years ago
"fmt"
10 years ago
"io"
"log"
10 years ago
"math/rand"
"net"
10 years ago
"os"
"strings"
10 years ago
"time"
10 years ago
)
10 years ago
var (
dataPath = "/projects/exo/expl.speck"
info_log *log.Logger
error_log *log.Logger
10 years ago
)
10 years ago
func log_error(template string, args ...interface{}) {
error_log.Printf(template, args...)
10 years ago
}
func log_info(template string, args ...interface{}) {
info_log.Printf(template, args...)
10 years ago
}
func bail(status int, template string, args ...interface{}) {
10 years ago
if status == 0 {
fmt.Fprintf(os.Stdout, template, args...)
} else {
fmt.Fprintf(os.Stderr, template, args...)
}
os.Exit(status)
10 years ago
}
10 years ago
func handleConnection(conn *Connection) {
defer conn.Close()
conn.Login()
system, err := randomSystem()
10 years ago
if err != nil {
log_error("player %s failed to get random system: %v", conn.PlayerName(), err)
10 years ago
return
}
system.Arrive(conn)
if system.planets == 1 {
fmt.Fprintf(conn, "you are in the system %s. There is %d planet here.\n", system.name, system.planets)
10 years ago
} else {
fmt.Fprintf(conn, "you are in the system %s. There are %d planets here.\n", system.name, system.planets)
10 years ago
}
10 years ago
for {
line, err := conn.ReadString('\n')
switch err {
case io.EOF:
return
case nil:
break
default:
log_error("failed to read line from player %s: %v", conn.PlayerName(), err)
10 years ago
return
10 years ago
}
line = strings.TrimSpace(line)
10 years ago
if conn.IsMining() {
conn.StopMining()
}
if line == "" {
continue
}
10 years ago
parts := strings.Split(line, " ")
10 years ago
if isCommand(parts[0]) {
runCommand(conn, parts[0], parts[1:]...)
continue
}
10 years ago
switch parts[0] {
case "quit":
return
default:
fmt.Fprintf(conn, "hmm I'm not sure I know that one.\n")
}
}
}
10 years ago
func main() {
10 years ago
dbconnect()
10 years ago
rand.Seed(time.Now().UnixNano())
info_log = log.New(os.Stdout, "[INFO] ", 0)
error_log = log.New(os.Stderr, "[ERROR] ", 0)
10 years ago
10 years ago
setupDb()
listener, err := net.Listen("tcp", ":9220")
if err != nil {
bail(E_No_Port, "unable to start server: %v", err)
}
go RunQueue()
for {
conn, err := listener.Accept()
if err != nil {
log_error("error accepting connection: %v", err)
continue
}
10 years ago
go handleConnection(NewConnection(conn))
}
10 years ago
}