铁路仿真图形引擎
我目前正在寻找合适的图形引擎以及有关如何实现铁路模拟 GUI 的建议。这是用于中央铁路网络控制系统。
我打算生成类似于以下内容的显示:
是使用网络显示火车的实时位置:
在类似于上面的图表上表示火车的最佳方式是什么?我目前正在考虑在轨道上叠加编号和颜色编码的矩形。
对于适用于 .net 框架的 2D 图形引擎,您有什么建议或推荐吗?
罗斯
I'm currently looking for a suitable graphics engine and suggestions on how to implement a railway simulation GUI. This is for a central railway network control system.
I intend to generate a display similar to the following:
A railway section network diagram commonly found at signal boxes
My problem comes with showing the real time position of trains using the network:
What would be the best way of representing trains on a diagram similar to the one above? I'm currently thinking of having numbered and color coded rectangles overlayed on the track.
Have you any suggestions or recommendations for a suitable 2D graphics engine for the .net framework?
Ross
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您喜欢自己制作而不是使用第 3 方图形引擎,则可以轻松使用 WPF Canvas 以及其他一些控件,例如 Rectangle 和 TextBlock。
构建类似您在 WPF 中链接到的图像之类的内容应该相对简单。
If you fancy rolling your own rather than using a 3rd party graphics engine, you could easily use the WPF Canvas, and some other controls like Rectangle and TextBlock.
It should be relatively simple to build something like the image you linked to in WPF.