player.go 432 B

1234567891011121314151617181920212223
  1. package role
  2. import "time"
  3. type Player struct {
  4. /*
  5. 玩家
  6. */
  7. baseRole
  8. GameId int32
  9. IsVisitor bool
  10. SessionId string
  11. }
  12. func (sel *Player) Init(gameId int32, isVisitor bool, stopChan chan int32) {
  13. sel.GameId = gameId
  14. sel.IsVisitor = isVisitor
  15. sel.connChan = stopChan
  16. sel.LoginTimeStamp = time.Now().Unix()
  17. sel.LastTalkTimeStamp = sel.LoginTimeStamp
  18. sel.SessionId = sel.Id
  19. sel.logOutChan = make(chan interface{})
  20. }