`
cd826
  • 浏览: 129016 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

图形连线路由算法

 
阅读更多

      最近打算将工作流引擎设计器使用html5技术进行重构,所以研究了一下html5中绘图技术,今天在这里主要是探讨一下图形之间连线处理算法,之前在网上找到了这篇博文:连线自动路由算法,感兴趣的大家可以参考一下(不过这个是基于GEF的),基于Javascript的尚未找到比较好的解决方案,因此决定自己动手(毕竟后面要实现整个设计器也必须得自己动手大笑)。

       图形之间的连线路由算法大致有下面几种:1)拐点路由(Bendpoint Connection Router);2)最短路路由(Shortest Path Connection Router);3)曼哈顿路由(Manhattan Connection Router)。其中曼哈顿路由算法也就是我们常见的直角连线算法。对于前面的两种路由算法这里暂不讨论,下面主要针对曼哈顿路由算法进行说明。在进入讨论之前先来直观上感受一下最终实现的效果:


请先无视其它功能,因为这个仅仅是一个框架,仅仅测试了连线路由算法。

       在考虑如何实现曼哈顿路由算法时,自己想了几种方案最后又都被自己给否定了。最终选用了最笨的方法:穷举+连线优先模式,即先列举出可能的连线方式及存在的条件,然后当一些条件不是那么容易检测时采用直接判断是否可以使用某种连线。为了方便我们列举出连线方式我们给图形定义一下图形边界,最终产生的连线由可进行连接的两个边界决定。图形边界定义如下图所示:

N:North(北)  E:East(东)  S:South(南)  W:West(西)。

      我们先看一下以源图形E边可以连接类型:1:E--W ;2:E--S;3:E--N;4:E--E,4种,如下图所示:

源图形W边可以连接类型:5:W--E ;6:W--S;7:W--N,3种,如下图所示: 

 这里你可能会说还有W--W这种情况,其实这个基本上可以使用E--E来代替,所以可不考虑。如果说你追求更加完美的解决方案,比如考虑画布边界等,那么此时需要考虑W--W这种情况。

源图形N边可以连接类型:8:N--S ;9:N--W;10:N--E;11:N--N;12:N--W;13:N--E,6种,其中12、13分别是9、10的变种,即当两个图形相交时,如下图所示: 


 源图形S边可以连接类型:14:S--N ;15:S--W;16:S--E;17:S--W;18:S--E,5种,其中17、18分别是15、16的变种,即当两个图形相交时,如下图所示: 

所以整体来说会有18种可能的情况需要我们进行考虑。

在代码实现上分成两个步骤来计算曼哈顿路由的各拐点坐标:

  1. 计算可进行连接的两个边界,返回值是两个边界的名称,如:["E", "W"],及连接线从源图形的E边,连接到目标图形的W边;
  2. 根据可进行连接的两个边界计算相应的连接点。
计算连接边界的算法代码如下:
// 计算两个图形之间的连接方向
	var standardWidth = 20;
	function getConnectionDirection(sourceRect, targetRect){
		// 先计算是否两个图形之间有足够的距离绘制连接线
		var sourcePoint = sourceRect.getCoordinate("EM");
		var targetPoint = targetRect.getCoordinate("WM");
		if((targetPoint.x - sourcePoint.x) > standardWidth){
			return ["E", "W"];
		}
		
		sourcePoint = sourceRect.getCoordinate("WM");
		targetPoint = targetRect.getCoordinate("EM");
		if((sourcePoint.x - targetPoint.x) > standardWidth){
			return ["W", "E"];
		}
		
		sourcePoint = sourceRect.getCoordinate("NC");
		targetPoint = targetRect.getCoordinate("SC");
		if((sourcePoint.y - targetPoint.y) > standardWidth){
			return ["N", "S"];
		} 
		
		sourcePoint = sourceRect.getCoordinate("SC");
		targetPoint = targetRect.getCoordinate("NC");
		if((targetPoint.y - sourcePoint.y) > standardWidth){
			return ["S", "N"];
		}
		
		// 再是否可以通过拐点进行连接
		sourcePoint = sourceRect.getCoordinate("EM");
		targetPoint = targetRect.getCoordinate("NC");
		if(((targetPoint.x - sourcePoint.x) > 0.5 * standardWidth) && ((targetPoint.y - sourcePoint.y) > standardWidth)){
			return ["E", "N"];
		}
		targetPoint = targetRect.getCoordinate("SC");
		if(((targetPoint.x - sourcePoint.x) > 0.5 * standardWidth) && ((sourcePoint.y - targetPoint.y) > standardWidth)){
			return ["E", "S"];
		}
		
		sourcePoint = sourceRect.getCoordinate("WM");
		targetPoint = targetRect.getCoordinate("SC");
		if(((sourcePoint.x - targetPoint.x) > 0.5 * standardWidth) && ((sourcePoint.y - targetPoint.y) > standardWidth)){
			return ["W", "S"];
		}			
		targetPoint = targetRect.getCoordinate("NC");
		if(((sourcePoint.x - targetPoint.x) > 0.5 * standardWidth) && ((targetPoint.y - sourcePoint.y) > standardWidth)){
			return ["W", "N"];
		}
		
		sourcePoint = sourceRect.getCoordinate("NC");
		targetPoint = targetRect.getCoordinate("EM");
		if(((sourcePoint.y - targetPoint.y) > 0.5 * standardWidth) && ((sourcePoint.x - targetPoint.x) > standardWidth)){
			return ["N", "E"];
		}
		targetPoint = targetRect.getCoordinate("WM");
		if(((sourcePoint.y - targetPoint.y) > 0.5 * standardWidth) && ((targetPoint.x - sourcePoint.x) > standardWidth)){
			return ["N", "W"];
		}
		
		sourcePoint = sourceRect.getCoordinate("SC");
		targetPoint = targetRect.getCoordinate("EM");
		if(((targetPoint.y - sourcePoint.y) > 0.5 * standardWidth) && ((sourcePoint.x - targetPoint.x) > standardWidth)){
			return ["S", "E"];
		}
		targetPoint = targetRect.getCoordinate("WM");
		if(((targetPoint.y - sourcePoint.y) > 0.5 * standardWidth) && ((targetPoint.x - sourcePoint.x) > standardWidth)){
			return ["S", "W"];
		}
		
		// 最后计算可用的连接点,然后从中选择。两个连接点可连接优先级为:NN >> EE >> NE >> NW >> SE >> SW
		sourcePoint = sourceRect.getCoordinate("NC");
		targetPoint = targetRect.getCoordinate("NC");
		if((!targetRect.inRect(sourcePoint)) && (!sourceRect.inRect(targetPoint))){
			if((sourcePoint.y - targetPoint.y) < 0){
				if(Math.abs(sourcePoint.x - targetPoint.x) > ((sourceRect.getWidth() + standardWidth) / 2))
					return ["N", "N"];
			}else{
				if(Math.abs(sourcePoint.x - targetPoint.x) > (targetRect.getWidth() / 2))
					return ["N", "N"];
			}
		}
		
		sourcePoint = sourceRect.getCoordinate("EM");
		targetPoint = targetRect.getCoordinate("EM");
		if((!targetRect.inRect(sourcePoint)) && (!sourceRect.inRect(targetPoint))){
			if((sourcePoint.x - targetPoint.x) > 0){
				if(Math.abs(sourcePoint.y - targetPoint.y) > ((sourceRect.getHeight() + standardWidth) / 2))
					return ["E", "E"];
			}else{
				if(Math.abs(sourcePoint.y - targetPoint.y) > (targetRect.getHeight() / 2))
					return ["E", "E"];
			}
		}
		
		// 其次判断NE、NW是否可用
		sourcePoint = sourceRect.getCoordinate("NC");
		targetPoint = targetRect.getCoordinate("EM");
		if((!targetRect.inRect(sourcePoint)) && (!sourceRect.inRect(targetPoint))){
			return ["N", "E"];
		}
		targetPoint = targetRect.getCoordinate("WM");
		if((!targetRect.inRect(sourcePoint)) && (!sourceRect.inRect(targetPoint))){
			return ["N", "W"];
		}
		
		// 最后判断SE、SW是否可用
		sourcePoint = sourceRect.getCoordinate("SC");
		targetPoint = targetRect.getCoordinate("EM");
		if((!targetRect.inRect(sourcePoint)) && (!sourceRect.inRect(targetPoint))){
			return ["S", "E"];
		}
		targetPoint = targetRect.getCoordinate("WM");
		if((!targetRect.inRect(sourcePoint)) && (!sourceRect.inRect(targetPoint))){
			return ["S", "W"];
		}
		
		// 只能返回这个
		return ["E", "W"];
	}
 计算连接点的算法代码如下:
	// 计算两个图形之间的拐点
	function calcBendPoints(sourceRect, targetRect, connectionDir){
		var points = [], startPoint, endPoint;
		if("E" == connectionDir[0]){
			startPoint = sourceRect.getCoordinate("EM");
			points.push(startPoint);
			if("S" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("SC");
				points.push({x: endPoint.x, y: startPoint.y});
				points.push(endPoint);
			}else if("N" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("NC");
				points.push({x: endPoint.x, y: startPoint.y});
				points.push(endPoint);
			}else if("E" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("EM");
				points.push({x: Math.max(startPoint.x, endPoint.x) + 1.5 * standardWidth, y: startPoint.y});
				points.push({x: Math.max(startPoint.x, endPoint.x) + 1.5 * standardWidth, y: endPoint.y});
				points.push(endPoint);
			}else{
				endPoint = targetRect.getCoordinate("WM");
				if(endPoint.y != startPoint.y){
					points.push({x: (startPoint.x + endPoint.x) / 2, y: startPoint.y});
					points.push({x: (startPoint.x + endPoint.x) / 2, y: endPoint.y});
				}
				points.push(endPoint);
			}
		}else if("W" == connectionDir[0]){
			startPoint = sourceRect.getCoordinate("WM");
			points.push(startPoint);
			if("S" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("SC");
				points.push({x: endPoint.x, y: startPoint.y});
				points.push(endPoint);
			}else if("N" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("NC");
				points.push({x: endPoint.x, y: startPoint.y});
				points.push(endPoint);
			}else{
				endPoint = targetRect.getCoordinate("EM");
				if(endPoint.y != startPoint.y){
					points.push({x: (startPoint.x + endPoint.x) / 2, y: startPoint.y});
					points.push({x: (startPoint.x + endPoint.x) / 2, y: endPoint.y});
				}
				points.push(endPoint);
			}
		}else if("N" == connectionDir[0]){
			startPoint = sourceRect.getCoordinate("NC");
			points.push(startPoint);
			if("E" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("EM");
				if((endPoint.x - startPoint.x) > 0){
					points.push({x: startPoint.x, y: startPoint.y - standardWidth});
					points.push({x: endPoint.x + 1.5 * standardWidth, y: startPoint.y - standardWidth});
					points.push({x: endPoint.x + 1.5 * standardWidth, y: endPoint.y});
				}else{
					points.push({x: startPoint.x, y: endPoint.y});
				}
				points.push(endPoint);
			}else if("W" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("WM");
				if((endPoint.x - startPoint.x) < 0){
					points.push({x: startPoint.x, y: startPoint.y - standardWidth});
					points.push({x: endPoint.x - 1.5 * standardWidth, y: startPoint.y - standardWidth});
					points.push({x: endPoint.x - 1.5 * standardWidth, y: endPoint.y});
				}else{
					points.push({x: startPoint.x, y: endPoint.y});
				}
				points.push(endPoint);
			}else if("N" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("NC");
				points.push({x: startPoint.x, y: Math.min(startPoint.y, endPoint.y) - 1.5 * standardWidth});
				points.push({x: endPoint.x, y: Math.min(startPoint.y, endPoint.y) - 1.5 * standardWidth});
				points.push(endPoint);
			}else{
				endPoint = targetRect.getCoordinate("SC");
				if(endPoint.x != startPoint.x){
					points.push({x: startPoint.x, y: (startPoint.y + endPoint.y) / 2});
					points.push({x: endPoint.x, y: (startPoint.y + endPoint.y) / 2});
				}
				points.push(endPoint);
			}
		}else if("S" == connectionDir[0]){
			startPoint = sourceRect.getCoordinate("SC");
			points.push(startPoint);
			if("E" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("EM");
				if((endPoint.x - startPoint.x) > 0){
					points.push({x: startPoint.x, y: startPoint.y + standardWidth});
					points.push({x: endPoint.x + 1.5 * standardWidth, y: startPoint.y + standardWidth});
					points.push({x: endPoint.x + 1.5 * standardWidth, y: endPoint.y});
				}else{
					points.push({x: startPoint.x, y: endPoint.y});
				}
				points.push(endPoint);
			}else if("W" == connectionDir[1]){
				endPoint = targetRect.getCoordinate("WM");
				if((endPoint.x - startPoint.x) < 0){
					points.push({x: startPoint.x, y: startPoint.y + standardWidth});
					points.push({x: endPoint.x - 1.5 * standardWidth, y: startPoint.y + standardWidth});
					points.push({x: endPoint.x - 1.5 * standardWidth, y: endPoint.y});
				}else{
					points.push({x: startPoint.x, y: endPoint.y});
				}
				points.push(endPoint);
			}else{
				endPoint = targetRect.getCoordinate("NC");
				if(endPoint.x != startPoint.x){
					points.push({x: startPoint.x, y: (startPoint.y + endPoint.y) / 2});
					points.push({x: endPoint.x, y: (startPoint.y + endPoint.y) / 2});
				}
				points.push(endPoint);
			}
		}
		return points;
	}
 

       实现的代码还是非常简单的,效果自己还是满意的。当然这个只是一个简单的实现框架,如果真要实用还要考虑不同形状的图形的连接限制,用户自己拖拽连接线之后的处理等等。这里先抛个砖吧,欢迎大家讨论指正。

       可运行的代码在附件中可下载。

 

P.S.

     在开发时了解一下目前开源的几个Html5绘图框架,最终选择了kinetic这个框架,使用起来感觉也比较顺手。这里有一个教程有兴趣的同学可以去看看。

  • 大小: 21.5 KB
  • 大小: 2.6 KB
  • 大小: 14.3 KB
  • 大小: 13.1 KB
  • 大小: 18.8 KB
  • 大小: 16.2 KB
分享到:
评论

相关推荐

    连线路由算法实现代码

    在IT领域,连线路由算法是一种重要的计算机图形学和网络设计技术,主要用于自动化布线过程,尤其是在电路板设计、网络拓扑构建以及图形处理等场景。本文将深入探讨连线路由算法的概念、实现方式以及Java编程语言如何...

    计算机网络实验 动态路由

    【计算机网络实验 动态路由】实验主要涵盖了路由选择的基本概念和原理,特别是距离向量路由算法的实施。路由选择是计算机网络中的关键部分,它决定了数据包如何在互联网上从源节点传输到目标节点。实验的目标是让...

    KX连线图 VST机架效果 唱歌必备

    KX连线图允许用户通过图形化界面来组织、路由和控制VST插件,使得复杂的音频处理流程变得更加直观和便捷。对于唱歌而言,可能包括混响、均衡、压缩、动态处理等效果,以提升人声的质量和表现力。 "LP机架必备的VST...

    遗传算法MATLAB.pdf

    通过绘制图形,可以直观地展示环境地图、Dijkstra算法的最短路径、遗传算法优化后的最短路径以及遗传算法的收敛曲线,便于分析和理解算法效果。 总结来说,这份文档详细介绍了一种结合Dijkstra算法和遗传算法的路径...

    delaunay三角网生成算法

    2. **邻接检查**:然后,遍历每一个点,检查其与相邻点之间的连线是否违反Delaunay条件,即是否存在一个内切圆包含除了这两个点外的其他点。如果存在这样的情况,则通过旋转切线法则来调整边界的划分。 3. **旋转...

    6数据的组织结构与算法1.pptx

    例如,用圆圈代表数据元素,连线表示关系,箭头指示方向,这有助于理解和设计复杂的数据结构。 接下来,我们将深入学习几种常用的数据结构: 1. **线性结构**,如数组和链表,它们的数据元素依次排列,支持顺序...

    A星寻路(AS3)

    A星寻路(A* Search Algorithm)是一种在图形或网格中寻找从起点到终点最短路径的算法。在游戏开发、地图导航、网络路由等领域有着广泛的应用。它结合了Dijkstra算法的最优性和BFS(广度优先搜索)的空间效率,通过...

    WPF实现的类似Visio的画图软件源码-工作流控件

    这需要实现自定义的Path或者Polyline控件,并结合路由算法(如A*或Dijkstra)来绘制最佳路径。 ### 3. 数据绑定与MVVM模式 为了使界面与业务逻辑解耦,可以采用Model-View-ViewModel (MVVM) 设计模式。在WPF中,...

    GraphVis图可视化引擎 v1.0.zip

    - GraphVis引擎采用图形绘制算法,如力导向布局、层次布局或环形布局,来优化节点和边的展示。 2. **源码分析** - 源码通常包含C++, Java, Python或其他编程语言实现的代码,用于构建和驱动图可视化功能。 - ...

    TE思维导图

    2. **细分主题**:在每个大主题下,进一步分解为具体的知识点,如网络协议、路由算法、配置命令等。 3. **关联分析**:通过连线或颜色编码,展示不同知识点之间的关系,如OSPF与ISIS路由协议的比较,或者VLAN与...

    复杂网络,复杂网络理论,matlab源码.zip

    3. **网络可视化**:MATLAB提供了图形用户界面(GUI)和绘图函数,可以将复杂网络以图形形式展示出来,便于理解网络结构。通过调整节点大小、颜色和连线粗细,可以突出显示网络中的不同特征。 4. **动力学模拟**:...

    simulink仿真教程

    Simulink以其图形化的用户界面著称,用户通过鼠标操作,无需编写大量代码,就能快速构建复杂系统模型。 Simulink自1990年诞生以来,经历了多个版本的发展。最初,它是用于建立系统框图的工具,到1992年,正式更名为...

    PathFinding_Algorithm_Visualizer

    Python的`tkinter`或`pygame`库常用于图形用户界面(GUI)的创建,而`networkx`库则可以方便地处理图结构,实现算法。 2. **寻路算法**: - **A*算法**:一种启发式搜索算法,结合了Dijkstra算法和最佳优先搜索。...

    数据结构课件:第6章 树和二叉树.ppt

    树是一种重要的数据结构,它模拟了自然界中的分层关系,广泛应用于文件系统、网络路由、数据库索引等领域。本课件主要讲解了树和二叉树的基本概念、术语以及它们在实际应用中的表现形式。 首先,树是由n个节点组成...

    现场DJ混音应用程序EricLN-dataflow-dj-labview-master.zip

    它以其特有的图标和连线方式,为工程师和科学家提供了直观的编程体验,尤其在测试、测量和控制系统设计方面表现出色。在这个特定的应用中,LabVIEW被用于构建一个现场DJ混音平台,使得音乐爱好者能够利用计算机实现...

    Simple WSN Animator:简单的无线网络动画师-matlab开发

    6. **算法测试**:对于WSN中的路由算法、能量效率策略等,"Simple WSN Animator"可能提供一个平台进行实时测试和比较。 配合提供的MATLAB/算法文件,用户可以深入理解WSN内部的工作机制,例如: - **路由协议**:...

    图论 (113页).pdf

    中国邮递员问题是由我国管梅谷教授于1962年首先提出并发表的,问题是从邮局出发,走遍邮区的所有街道至少一次再回到邮局,走什么路由才能使总的路程最短?这个问题可以抽象成图论问题:整个图构成欧拉回路(图G的一...

Global site tag (gtag.js) - Google Analytics