2023-10-10 09:35:02 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2023-10-10 16:51:07 +08:00
|
|
|
"fmt"
|
|
|
|
"joylink.club/ecs"
|
2023-10-10 09:35:02 +08:00
|
|
|
rtss_simulation "joylink.club/rtsssimulation"
|
2023-10-10 16:51:07 +08:00
|
|
|
"joylink.club/rtsssimulation/consts"
|
|
|
|
"joylink.club/rtsssimulation/entity"
|
2023-10-10 18:06:30 +08:00
|
|
|
"joylink.club/rtsssimulation/examples/signal_3xh1/sigSys"
|
2023-10-10 17:26:09 +08:00
|
|
|
"joylink.club/rtsssimulation/fi"
|
2023-10-10 09:35:02 +08:00
|
|
|
"joylink.club/rtsssimulation/repository"
|
2023-10-10 16:51:07 +08:00
|
|
|
"joylink.club/rtsssimulation/repository/model/proto"
|
|
|
|
"joylink.club/rtsssimulation/sys/circuit_sys"
|
2023-10-10 17:26:09 +08:00
|
|
|
"joylink.club/rtsssimulation/sys/device_sys"
|
|
|
|
"log"
|
2023-10-10 16:51:07 +08:00
|
|
|
"time"
|
2023-10-10 09:35:02 +08:00
|
|
|
)
|
|
|
|
|
2023-10-10 17:26:09 +08:00
|
|
|
const (
|
2023-10-10 18:06:30 +08:00
|
|
|
IdSignal3XH1 = "signal_3xh1-1"
|
2023-10-10 17:26:09 +08:00
|
|
|
)
|
|
|
|
|
2023-10-10 09:35:02 +08:00
|
|
|
// 信号机测试
|
|
|
|
func main() {
|
2023-10-10 16:51:07 +08:00
|
|
|
proto := &proto.Repository{}
|
|
|
|
proto.Id = "test-for-signal"
|
|
|
|
proto.Version = "v1.0"
|
2023-10-10 18:06:30 +08:00
|
|
|
addProtoSignal3XH1(proto)
|
2023-10-10 16:51:07 +08:00
|
|
|
repo := repository.BuildRepositoryForSignalTest(proto)
|
|
|
|
sim := rtss_simulation.NewSimulation(repo)
|
|
|
|
loadEntities(sim, repo)
|
2023-10-11 16:57:48 +08:00
|
|
|
sim.SetSpeed(1)
|
2023-10-10 16:51:07 +08:00
|
|
|
sim.AddSystem(sigSys.NewSignalDebugSystem())
|
2023-10-10 17:26:09 +08:00
|
|
|
sim.AddSystem(device_sys.NewRelaySys())
|
2023-10-10 18:06:30 +08:00
|
|
|
sim.AddSystem(circuit_sys.NewSignal3XH1System())
|
2023-10-10 09:35:02 +08:00
|
|
|
sim.StartUp()
|
2023-10-10 16:51:07 +08:00
|
|
|
//
|
2023-10-10 17:26:09 +08:00
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
worldLog(sim, "===>>灭灯 .....")
|
2023-10-10 18:06:30 +08:00
|
|
|
fi.DriveSignal3XH1Dd(sim, IdSignal3XH1, false)
|
|
|
|
//
|
|
|
|
time.Sleep(1 * time.Second)
|
2023-10-10 17:26:09 +08:00
|
|
|
worldLog(sim, "===>>亮灯 .....")
|
2023-10-10 18:06:30 +08:00
|
|
|
fi.DriveSignal3XH1Dd(sim, IdSignal3XH1, true)
|
|
|
|
//
|
2023-10-11 13:22:14 +08:00
|
|
|
time.Sleep(2 * time.Second)
|
2023-10-10 18:06:30 +08:00
|
|
|
worldLog(sim, "===>>开通引导信号 .....")
|
|
|
|
fi.DriveSignal3XH1Yx(sim, IdSignal3XH1)
|
2023-10-11 13:22:14 +08:00
|
|
|
time.Sleep(2 * time.Second)
|
|
|
|
worldLog(sim, "===>>开通列车信号 .....")
|
|
|
|
fi.DriveSignal3XH1Lx(sim, IdSignal3XH1, true)
|
2023-10-10 17:26:09 +08:00
|
|
|
//
|
2023-10-11 16:57:48 +08:00
|
|
|
time.Sleep(5 * time.Second)
|
2023-10-10 16:51:07 +08:00
|
|
|
sim.Close()
|
2023-10-10 09:35:02 +08:00
|
|
|
}
|
2023-10-10 17:26:09 +08:00
|
|
|
func worldLog(w ecs.World, logInfo string) {
|
|
|
|
ecs.Request(w, func() any {
|
|
|
|
log.Println(logInfo)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
2023-10-10 18:06:30 +08:00
|
|
|
func addProtoSignal3XH1(r *proto.Repository) {
|
2023-10-10 16:51:07 +08:00
|
|
|
//相关继电器
|
2023-10-10 18:06:30 +08:00
|
|
|
r.Relays = append(r.Relays, &proto.Relay{Id: "3xh1-ddj", Code: consts.SIGNAL_DDJ, Model: proto.Relay_JWXC_1700})
|
|
|
|
r.Relays = append(r.Relays, &proto.Relay{Id: "3xh1-2dj", Code: consts.SIGNAL_2DJ, Model: proto.Relay_JZXC_H18})
|
|
|
|
r.Relays = append(r.Relays, &proto.Relay{Id: "3xh1-dj", Code: consts.SIGNAL_DJ, Model: proto.Relay_JZXC_H18})
|
|
|
|
r.Relays = append(r.Relays, &proto.Relay{Id: "3xh1-lxj", Code: consts.SIGNAL_LXJ, Model: proto.Relay_JWXC_1700})
|
|
|
|
r.Relays = append(r.Relays, &proto.Relay{Id: "3xh1-yxj", Code: consts.SIGNAL_YXJ, Model: proto.Relay_JWXC_1700})
|
|
|
|
r.Relays = append(r.Relays, &proto.Relay{Id: "3xh1-zxj", Code: consts.SIGNAL_ZXJ, Model: proto.Relay_JWXC_1700})
|
2023-10-10 16:51:07 +08:00
|
|
|
//
|
|
|
|
signal := &proto.Signal{}
|
2023-10-10 18:06:30 +08:00
|
|
|
signal.Id = IdSignal3XH1
|
2023-10-10 16:51:07 +08:00
|
|
|
signal.Km = &proto.Kilometer{}
|
|
|
|
//
|
2023-10-10 18:06:30 +08:00
|
|
|
group := &proto.ElectronicComponentGroup{Code: consts.SIGNAL_3XH1,
|
|
|
|
ComponentIds: []string{"3xh1-ddj", "3xh1-2dj", "3xh1-dj", "3xh1-lxj", "3xh1-yxj", "3xh1-zxj"}}
|
2023-10-10 16:51:07 +08:00
|
|
|
//
|
|
|
|
signal.ElectronicComponentGroups = append(signal.ElectronicComponentGroups, group)
|
|
|
|
r.Signals = append(r.Signals, signal)
|
|
|
|
}
|
|
|
|
func loadEntities(w ecs.World, repo *repository.Repository) {
|
|
|
|
// 初始化世界数据单例组件
|
|
|
|
entity.LoadWorldData(w, repo)
|
|
|
|
//
|
|
|
|
if le := entity.LoadSignals(w); le != nil {
|
|
|
|
fmt.Println("===>>LoadSignals error : ", le.Error())
|
|
|
|
}
|
2023-10-10 09:35:02 +08:00
|
|
|
}
|