-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom.go
85 lines (63 loc) · 1.71 KB
/
room.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package goreal
// game room
type RoomEvents interface {
// client request to join to room
OnJoinRequest(client *Client) bool
// client joined the room
OnClientJoin(client *Client)
// when room created
OnInit()
// called each update patch
OnUpdate(delta float64)
//clienttan mesaj geldiginde
OnMessage(client *Client, message []byte)
Init(gs *GameServer, clients map[*Client]bool, config *RoomConfig, operation interface{})
// client leave from the room.
OnLeave(client *Client)
// client disconnected from server
OnDisconnect(client *Client)
}
type RoomOperation interface {
// kick client from the room
Kick(client *Client)
}
//
type Room struct {
Name string
GameServer *GameServer
Clients map[*Client]bool
Config *RoomConfig
RoomOperation RoomOperation
}
func (r *Room) Init(gs *GameServer, clients map[*Client]bool, config *RoomConfig, operation interface{}) {
r.GameServer = gs
r.Clients = clients
r.Config = config
o := operation.(RoomOperation)
r.RoomOperation = o
}
func (rm *Room) OnInit() {}
func (rm *Room) OnUpdate(delta float64) {}
func (rm *Room) OnMessage(client *Client, message []byte) {}
func (rm *Room) OnJoinRequest(client *Client) bool { return true }
func (rm *Room) OnClientJoin(client *Client) {}
func (rm *Room) OnLeave(client *Client) {}
func (rm *Room) OnDisconnect(client *Client) {}
// tum clientlara broadcast mesaj gonderir.
func (rm *Room) BroadcastMessage(message string) {
if len(rm.Clients) == 0 {
return
}
for k := range rm.Clients {
k.SendMessageStr(message)
}
}
// send byte
func (rm *Room) BroadcastMessageByte(message []byte) {
if len(rm.Clients) == 0 {
return
}
for k := range rm.Clients {
k.SendMessage(message)
}
}