2025-09-14 01:35:16 +08:00
|
|
|
|
package maps
|
2025-08-15 22:44:28 +08:00
|
|
|
|
|
|
|
|
|
|
import (
|
2025-09-14 01:35:16 +08:00
|
|
|
|
"blazing/logic/service/common"
|
|
|
|
|
|
"blazing/logic/service/player"
|
|
|
|
|
|
"blazing/logic/service/space"
|
|
|
|
|
|
|
2025-08-15 22:44:28 +08:00
|
|
|
|
"blazing/modules/blazing/model"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-09-14 01:35:16 +08:00
|
|
|
|
type WalkInInfo struct {
|
|
|
|
|
|
Head player.TomeeHeader `cmd:"2101" struc:"[0]pad"` //走路包
|
2025-08-26 23:22:10 +00:00
|
|
|
|
// Flag: 0为走,1为飞行模式,@UInt long
|
2025-08-15 22:44:28 +08:00
|
|
|
|
Flag uint32
|
|
|
|
|
|
|
|
|
|
|
|
// Point: 直接给坐标x,y
|
|
|
|
|
|
Point model.Pos `fieldDesc:"直接给坐标x,y"`
|
|
|
|
|
|
|
|
|
|
|
|
// Reverse2: 暂定 占位字符2
|
|
|
|
|
|
Reverse2 string `struc:"[2]byte"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-14 01:35:16 +08:00
|
|
|
|
func (t *WalkInInfo) Broadcast(mapid uint32, o WalkOutInfo) {
|
2025-08-15 22:44:28 +08:00
|
|
|
|
|
2025-08-17 21:55:15 +08:00
|
|
|
|
//tt := planetmap
|
|
|
|
|
|
//g.Dump(GetSpace(mapid).Len())
|
2025-08-15 22:44:28 +08:00
|
|
|
|
|
2025-09-14 01:35:16 +08:00
|
|
|
|
space.GetSpace(mapid).Range(func(playerID uint32, player common.PlayerI) bool {
|
2025-08-17 21:55:15 +08:00
|
|
|
|
t.Head.Result = 0
|
|
|
|
|
|
tt := t.Head.Pack(&o)
|
2025-09-04 02:00:57 +08:00
|
|
|
|
player.SendPack(tt)
|
|
|
|
|
|
//player.Cheak(err)
|
2025-08-15 22:44:28 +08:00
|
|
|
|
return true
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 23:22:10 +00:00
|
|
|
|
// PeopleWalkOutboundInfo PeopleWalkOutboundInfo类,实现OutboundMessage接口
|
2025-09-14 01:35:16 +08:00
|
|
|
|
type WalkOutInfo struct {
|
2025-08-15 22:44:28 +08:00
|
|
|
|
// Flag: 0为走,1为飞行模式
|
|
|
|
|
|
Flag uint32 `fieldDesc:"0为走,1为飞行模式" codec:"uint"`
|
|
|
|
|
|
|
|
|
|
|
|
// UserID: 走动的人的米米号
|
|
|
|
|
|
UserID uint32 `fieldDesc:"走动的人的米米号" codec:"uint"`
|
|
|
|
|
|
|
|
|
|
|
|
// Point: 直接给坐标x,y
|
|
|
|
|
|
Point model.Pos `fieldDesc:"直接给坐标x,y"`
|
|
|
|
|
|
|
|
|
|
|
|
// Reserve2: 这个字段同C2S_People_Walk中的reserve2
|
|
|
|
|
|
Reserve2 string `struc:"[2]byte"`
|
|
|
|
|
|
}
|