Commit 3445674bd1448ccbca3ffbad22ec47a0b0df63f6
1 parent
a96e994d
fix: del
Showing
3 changed files
with
9 additions
and
28 deletions
Show diff stats
cmd/gameserver/service/game.go
cmd/httpserver/service/http.go
... | ... | @@ -30,13 +30,6 @@ func (s *AccountServer) Init(sconf *common.SConf) error { |
30 | 30 | return err |
31 | 31 | } |
32 | 32 | |
33 | - //Etcd 初始化 | |
34 | - //err = etcd.NewEtcdClient(common.GlobalConf.Etcd) | |
35 | - //if err != nil { | |
36 | - // return err | |
37 | - //} | |
38 | - //etcd.PutWithLeasePrefix(sconf.Name, fmt.Sprintf("%d", sconf.ID), fmt.Sprintf("%s:%d", sconf.IP, sconf.Port), 5) | |
39 | - | |
40 | 33 | models.NewDBSeed(sconf.ID).InitServerDatabase(models.AccountModels()) |
41 | 34 | models.DBSeedS().InitAutoIncreUidTable(models.AccountModels()) |
42 | 35 | return nil |
... | ... | @@ -62,5 +55,4 @@ func (s *AccountServer) Start() error { |
62 | 55 | |
63 | 56 | func (s *AccountServer) Stop() { |
64 | 57 | s.IHttp.Stop() |
65 | - //etcd.CloseEtcd() | |
66 | 58 | } | ... | ... |
common/conf.go
... | ... | @@ -16,11 +16,6 @@ type RedisConf struct { |
16 | 16 | DB int `json:"db"` |
17 | 17 | } |
18 | 18 | |
19 | -type Etcd struct { | |
20 | - Endpoints []string `json:"endpoints"` | |
21 | - DialTimeout int `json:"dialtimeout"` | |
22 | -} | |
23 | - | |
24 | 19 | type MongoConf struct { |
25 | 20 | User string `yaml:"user"` |
26 | 21 | Password string `yaml:"password"` |
... | ... | @@ -86,22 +81,20 @@ type GameService struct { |
86 | 81 | } |
87 | 82 | |
88 | 83 | type ServerConf struct { |
89 | - ID string `yaml:"id"` | |
90 | - Name string `yaml:"name"` | |
91 | - WorkerID int64 `yaml:"workerid"` | |
92 | - DatacenterID int64 `yaml:"datacenterid"` | |
93 | - AccountConf *SConf `yaml:"server_account"` | |
94 | - GameConf *SConf `yaml:"server_game"` | |
95 | - LogConf *LogConf `yaml:"logconf" json:"logconf"` | |
96 | - TestClient *TestClient `yaml:"test_client"` | |
97 | - //Etcd *Etcd `yaml:"etcd"` | |
98 | - GameService *GameService `yaml:"server_list"` | |
84 | + ID string `yaml:"id"` | |
85 | + Name string `yaml:"name"` | |
86 | + WorkerID int64 `yaml:"workerid"` | |
87 | + DatacenterID int64 `yaml:"datacenterid"` | |
88 | + AccountConf *SConf `yaml:"server_account"` | |
89 | + GameConf *SConf `yaml:"server_game"` | |
90 | + LogConf *LogConf `yaml:"logconf" json:"logconf"` | |
91 | + TestClient *TestClient `yaml:"test_client"` | |
92 | + GameService *GameService `yaml:"server_list"` | |
99 | 93 | } |
100 | 94 | |
101 | 95 | var ( |
102 | 96 | GlobalConf ServerConf |
103 | 97 | GlobalSconf *SConf |
104 | - //SnowFlack *snow.Snowflake | |
105 | 98 | ) |
106 | 99 | |
107 | 100 | func init() { |
... | ... | @@ -140,7 +133,4 @@ func init() { |
140 | 133 | fmt.Errorf("log conf %v", err) |
141 | 134 | return |
142 | 135 | } |
143 | - | |
144 | - //初始化雪花算法 | |
145 | - //SnowFlack = snow.NewSnowflake(GlobalConf.WorkerID, GlobalConf.DatacenterID) | |
146 | 136 | } | ... | ... |