2023-11-23 11:17:40 +08:00
|
|
|
package entity
|
|
|
|
|
2023-11-23 13:17:09 +08:00
|
|
|
import (
|
|
|
|
"joylink.club/ecs"
|
|
|
|
"joylink.club/rtsssimulation/component"
|
2024-01-08 17:45:15 +08:00
|
|
|
"joylink.club/rtsssimulation/component/component_proto"
|
2023-11-23 13:17:09 +08:00
|
|
|
"joylink.club/rtsssimulation/repository"
|
|
|
|
"joylink.club/rtsssimulation/repository/model/proto"
|
|
|
|
)
|
2023-11-23 11:17:40 +08:00
|
|
|
|
|
|
|
// LoadBalises 加载应答器实体
|
|
|
|
func LoadBalises(w ecs.World) error {
|
2023-11-23 13:17:09 +08:00
|
|
|
data := GetWorldData(w)
|
2024-01-08 17:45:15 +08:00
|
|
|
balises := data.Repo.TransponderList()
|
2023-11-23 13:17:09 +08:00
|
|
|
for _, b := range balises {
|
|
|
|
be := newBaliseEntity(w, b, data)
|
2024-01-08 17:45:15 +08:00
|
|
|
//应答器位置
|
|
|
|
be.AddComponent(component.LinkPositionType)
|
|
|
|
component.LinkPositionType.SetValue(be, component_proto.LinkPosition{
|
|
|
|
LinkId: b.LinkPosition().Link().Id(),
|
|
|
|
Offset: b.LinkPosition().Offset(),
|
|
|
|
})
|
|
|
|
//应答器类型
|
2023-11-23 13:17:09 +08:00
|
|
|
switch b.TransponderType() {
|
|
|
|
case proto.Transponder_FB:
|
|
|
|
be.AddComponent(component.BaliseFB)
|
|
|
|
case proto.Transponder_WB:
|
|
|
|
be.AddComponent(component.BaliseWB)
|
|
|
|
case proto.Transponder_DB:
|
|
|
|
be.AddComponent(component.BaliseDB)
|
|
|
|
case proto.Transponder_VB:
|
|
|
|
be.AddComponent(component.BaliseVB)
|
|
|
|
case proto.Transponder_IB:
|
|
|
|
be.AddComponent(component.BaliseIB)
|
|
|
|
}
|
|
|
|
}
|
2023-11-23 11:19:39 +08:00
|
|
|
return nil
|
2023-11-23 11:17:40 +08:00
|
|
|
}
|
2023-11-23 13:17:09 +08:00
|
|
|
func newBaliseEntity(w ecs.World, td *repository.Transponder, worldData *component.WorldData) *ecs.Entry {
|
|
|
|
uid := td.Id()
|
|
|
|
entry, ok := worldData.EntityMap[uid]
|
|
|
|
if !ok {
|
|
|
|
entry = w.Entry(w.Create(component.UidType, component.BaliseStateType))
|
|
|
|
component.UidType.SetValue(entry, component.Uid{Id: uid})
|
|
|
|
component.BaliseStateType.Set(entry, &component.BaliseState{})
|
|
|
|
worldData.EntityMap[uid] = entry
|
|
|
|
}
|
|
|
|
return entry
|
|
|
|
}
|