forked from df-mc/dragonfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
59 lines (52 loc) · 1.36 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package main
import (
"fmt"
"github.com/df-mc/dragonfly/server"
"github.com/df-mc/dragonfly/server/player/chat"
"github.com/pelletier/go-toml"
"github.com/sirupsen/logrus"
"io/ioutil"
"os"
)
func main() {
log := logrus.New()
log.Formatter = &logrus.TextFormatter{ForceColors: true}
log.Level = logrus.DebugLevel
chat.Global.Subscribe(chat.StdoutSubscriber{})
config, err := readConfig()
if err != nil {
log.Fatalln(err)
}
srv := server.New(&config, log)
srv.CloseOnProgramEnd()
if err := srv.Start(); err != nil {
log.Fatalln(err)
}
for {
if _, err := srv.Accept(); err != nil {
return
}
}
}
// readConfig reads the configuration from the config.toml file, or creates the file if it does not yet exist.
func readConfig() (server.Config, error) {
c := server.DefaultConfig()
if _, err := os.Stat("config.toml"); os.IsNotExist(err) {
data, err := toml.Marshal(c)
if err != nil {
return c, fmt.Errorf("failed encoding default config: %v", err)
}
if err := ioutil.WriteFile("config.toml", data, 0644); err != nil {
return c, fmt.Errorf("failed creating config: %v", err)
}
return c, nil
}
data, err := ioutil.ReadFile("config.toml")
if err != nil {
return c, fmt.Errorf("error reading config: %v", err)
}
if err := toml.Unmarshal(data, &c); err != nil {
return c, fmt.Errorf("error decoding config: %v", err)
}
return c, nil
}