Difference between revisions of "SCI/FreeSCI/Pathfinding/Patent"

Jump to navigation Jump to search
m
Some small wiki formatting fixes
(Merging of the FreeSCI documentation. Work in progress.)
 
m (Some small wiki formatting fixes)
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Patent=
=Patent=
In Section "Patents and infringement" we provide a brief discussion on patents and patent infringement. In Section "Sierra's pathfinding patent" we summarize Sierra's pathfinding patent. <ref>K. A. Williams, D. C. Iden and L. L. Scott. System and methods for intelligent movement on computer displays, United States Patent No. 5287446, 1990.</ref>
In Section "Patents and infringement" we provide a brief discussion on patents and patent infringement. In Section "Sierra's pathfinding patent" we summarize Sierra's pathfinding patent. <ref name="displaymove">K. A. Williams, D. C. Iden and L. L. Scott. System and methods for intelligent movement on computer displays, [http://v3.espacenet.com/textdoc?DB=EPODOC&IDX=US5287446 US PATENT 5287446] , 1990.</ref>


==Patents and infringement==
==Patents and infringement==
A patent gives its holder the right to exclude others from using his or her invention. In exchange for that right the patent holder must fully disclose the invention in the patent document. After the patent expires others may use the invention. A patent document consists of two parts, the specification and the claims.
A patent gives its holder the right to exclude others from using his or her invention. In exchange for that right the patent holder must fully disclose the invention in the patent document. After the patent expires others may use the invention. A patent document consists of two parts, the specification and the claims.


The specification section describes the invention in detail using everyday language. The claim section defines exactly what is patented. It uses a legal jargon that is difficult to understand for non-patent professionals. Information on how to interpret patent claims can be found in.<ref>H. M. Eisenberg. Patent law you can use. Reading a Patent - Part II The Description and the Claims, http://www.yale.edu/ocr/invent_guidelines/docs/reading_patent2_claims.pdf, 1999.</ref> For some patents infringement can be avoided by providing extra functionality on top of what is patented. Whether or not this is the case depends on the exact wording of the claims. For Sierra's pathfinding patent this is not the case. This means that a substantially different algorithm is required to avoid infringement.
The specification section describes the invention in detail using everyday language. The claim section defines exactly what is patented. It uses a legal jargon that is difficult to understand for non-patent professionals. Information on how to interpret patent claims can be found in.<ref>H. M. Eisenberg. [http://www.yale.edu/ocr/pfg/guidelines/docs/reading_patent2_claims.pdf Patent law you can use. Reading a Patent - Part II The Description and the Claims] (pdf), 1999.</ref> For some patents infringement can be avoided by providing extra functionality on top of what is patented. Whether or not this is the case depends on the exact wording of the claims. For Sierra's pathfinding patent this is not the case. This means that a substantially different algorithm is required to avoid infringement.


==Sierra's pathfinding patent==
==Sierra's pathfinding patent==
The AvoidPath input consists of a start point and an end point and a set of constraining polygons.<ref>    K. A. Williams, D. C. Iden and L. L. Scott. System and methods for intelligent movement on computer displays, United States Patent No. 5287446, 1990.</ref> The output is a path from start point to end point that does not violate any constraints. The patent states that polygons can be assumed not to be self-intersecting. The patent further implies that a point cannot be inside two or more polygons. From that we conclude that any two polygons can be assumed not to intersect. The patent describes three optimization levels. We label these from 0 (no optimization) to 2 (maximum optimization). The optimization levels determine how optimized (in terms of length) the returned path will be.
The AvoidPath input consists of a start point and an end point and a set of constraining polygons.<ref name="displaymove" /> The output is a path from start point to end point that does not violate any constraints. The patent states that polygons can be assumed not to be self-intersecting. The patent further implies that a point cannot be inside two or more polygons. From that we conclude that any two polygons can be assumed not to intersect. The patent describes three optimization levels. We label these from 0 (no optimization) to 2 (maximum optimization). The optimization levels determine how optimized (in terms of length) the returned path will be.


The patent mentions three types of polygons. The first type is the <tt>barred access</tt> polygon that cannot be entered. The second type is the <tt>total access</tt> polygon that cannot be entered unless the start or end point is inside the polygon. The third type is the <tt>near-point access</tt> polygon. For a point <i>p</i> and a polygon <i>P</i> the <i>near point</i> is a point on the edges of <i>P</i> at minimal distance from <i>p</i>. A path may start in a near-point access polygon, but it must exit the polygon through the near-point. Similarly, a path may end in such a polygon, but it must enter the polygon through the near-point. The patent does not accurately describe the semantics of the different polygon types so we had to determine them in another way. We discuss this in Polygon types section.
The patent mentions three types of polygons. The first type is the <tt>barred access</tt> polygon that cannot be entered. The second type is the <tt>total access</tt> polygon that cannot be entered unless the start or end point is inside the polygon. The third type is the <tt>near-point access</tt> polygon. For a point <i>p</i> and a polygon <i>P</i> the <i>near point</i> is a point on the edges of <i>P</i> at minimal distance from <i>p</i>. A path may start in a near-point access polygon, but it must exit the polygon through the near-point. Similarly, a path may end in such a polygon, but it must enter the polygon through the near-point. The patent does not accurately describe the semantics of the different polygon types so we had to determine them in another way. We discuss this in [[SCI/FreeSCI/Pathfinding/Semantics#Polygon types|Polygon types]] section.


The patent describes AvoidPath as consisting of three phases, namely a pre-processing phase, a pathfinding phase and a post-processing phase. Even though the pre- and post-processing phases are briefly explained in the patent specification, they are not mentioned in the claims and are therefore not patented. During the pre-processing phase the input is transformed in such a way that the start and end points are not inside any polygon, and that all polygons in the set may not be entered. For example, if the start point is inside a total access polygon that polygon is removed from the polygon set. If the end point is inside a near-point access polygon the end point is moved to the near-point and the original end point will be appended to the previously computed path in the post-processing phase.
The patent describes AvoidPath as consisting of three phases, namely a pre-processing phase, a pathfinding phase and a post-processing phase. Even though the pre- and post-processing phases are briefly explained in the patent specification, they are not mentioned in the claims and are therefore not patented. During the pre-processing phase the input is transformed in such a way that the start and end points are not inside any polygon, and that all polygons in the set may not be entered. For example, if the start point is inside a total access polygon that polygon is removed from the polygon set. If the end point is inside a near-point access polygon the end point is moved to the near-point and the original end point will be appended to the previously computed path in the post-processing phase.


We now proceed with describing the pathfinding phase, limiting ourselves to the most important aspects. The basic idea behind the algorithm is to construct a path that follows the direct trajectory from start point to end point, except where the trajectory properly intersects a polygon (this is covered by claim 6 of the patent). If the direct trajectory properly intersects a polygon <i>P</i>, then there must be more than one intersection point. Let <i>p</i>be the intersection point closest to the start point, and <i>q</i> be the intersection point closest to the end point. The computed path reaches <i>p</i> on the direct trajectory, then goes from <i>p</i> to <i>q</i> along the edges of the polygon and then resumes the direct trajectory. There are two ways to walk from <i>p</i> to <i>q</i>; the algorithm takes the shortest one. Optimization level 0 returns such a path, as illustrated in the following figure.
We now proceed with describing the pathfinding phase, limiting ourselves to the most important aspects. The basic idea behind the algorithm is to construct a path that follows the direct trajectory from start point to end point, except where the trajectory properly intersects a polygon (this is covered by claim 6 of the patent). If the direct trajectory properly intersects a polygon <i>P</i>, then there must be more than one intersection point. Let <i>p</i> be the intersection point closest to the start point, and <i>q</i> be the intersection point closest to the end point. The computed path reaches <i>p</i> on the direct trajectory, then goes from <i>p</i> to <i>q</i> along the edges of the polygon and then resumes the direct trajectory. There are two ways to walk from <i>p</i> to <i>q</i>; the algorithm takes the shortest one. Optimization level 0 returns such a path, as illustrated in the Figure 1.
 
[[Image:Pathfinding-figure01.png|frame|Figure 1: A path from <i>s</i> to <i>t</i> at optimization level 0.|center]]
[[Image:Pathfinding-figure02.png|frame|Figure 2: A path from <i>s</i> to <i>t</i> at optimization level 1.|center]]
 
 
At optimization level 1 the algorithm tries to optimize this path. It does this by attempting to shortcut any two nodes. A shortcut is only possible if it does not properly intersect any polygon in the polygon set. See Figure 2 for an illustration of an optimized version of the path in Figure 1.
 
The resulting path is not the shortest path from <i>s</i> to <i>t</i>. The reason for this is that at optimization level 0 the shortest way about each individual polygon is chosen. However, it is very possible that the shortest path takes the longer way about one or more of the polygons. Optimization level 2 takes care of this by trying all permutations of ways to walk about the polygons. For <i>n</i> polygons this yields <i>2<sup>n</sup></i> combinations. The algorithm chooses the shortest path out of all of these. As can be seen in Figure 3, the shortest path is indeed found for this input.
 
This raises the question of whether or not the algorithm is able to determine the shortest path for any input. This is not the case, as is demonstrated by the counterexample in Figure 4. The shortcut from <i>v<sub>0</sub></i> to <i>t</i> cannot be taken as this would intersect polygon <i>W</i>. So the final path will go from <i>v<sub>0</sub></i> to <i>t</i> via <i>v<sub>1</sub></i>, even though it is much shorter to go there via <i>w<sub>0</sub></i>. Point <i>w<sub>0</sub></i> is never considered for the path as it is part of a polygon that is not intersected by the direct trajectory from <i>s</i> to <i>t</i>. This illustrates that this algorithm does not guarantee a shortest path, even at the highest optimization level.
 
[[Image:Pathfinding-figure03.png|frame|Figure 3: A path from <i>s</i> to <i>t</i> at optimization level 2.|center]]
[[Image:Pathfinding-figure04.png|frame|Figure 4: Polygons <i>V</i> and <i>W</i> and a path from <i>s</i> to <i>t</i> at optimization level 1 or 2.|center]]
 
The patent further makes an important note about polygon edges that lie along the display border. It is undesirable to have the path use the display border unnecessarily as this might trigger the game into loading an adjoining game scene. In order to prevent the shortest path algorithm from using polygon edges that lie along the display border, the distance for such edges is defined to be infinity.
 
==References==
<references />
236

edits

Navigation menu