public:t-622-arti-11-1:lab_4_materials
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
public:t-622-arti-11-1:lab_4_materials [2011/02/01 19:14] – angelo | public:t-622-arti-11-1:lab_4_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Lab 4: A* Pathfinding Search | + | ===== Lab 4: A* Pathfinding Search ===== |
- | + | In this lab we will take a closer look at the A* Search algorithm using some **Testing Tools** and different **Heuristics** for the **Pathfinding** problem. | |
- | In lab 3 we will continue with [[public: | + | |
==== Material for Pathfinding ==== | ==== Material for Pathfinding ==== | ||
- | *There are many resources available for studying A* in the domain of pathfinding. Here are a few that you can take a quick look at now and then come back to them later when you want to implement something yourself. | + | *There are many resources available for studying A* in the domain of pathfinding. Here are a few that you can take a quick look at now and then come back to them later when you want to implement something yourself: |
- | * [[ http:// | + | * [[http:// |
- | * [[http:// | + | * [[http:// |
- | * [[http:// | + | * More information on [[http:// |
+ | * Another [[http:// | ||
==== Examining Heuristics for the A* Pathfinding Search ==== | ==== Examining Heuristics for the A* Pathfinding Search ==== | ||
- Download and decompress the {{: | - Download and decompress the {{: | ||
- | - Test launching it with:< | + | - Test launching it with:\\ |
+ | - **Windows**: < | ||
java -Xmx128m -classpath ./ | java -Xmx128m -classpath ./ | ||
+ | - **GNU/ | ||
+ | java -Xmx128m -classpath ./ | ||
* You may have to resize the application window before you see the environment. | * You may have to resize the application window before you see the environment. | ||
* Some important keys:< | * Some important keys:< | ||
Line 26: | Line 29: | ||
</ | </ | ||
- | - Now test running the A* search on different maps, using different heuristics. You can choose maps from the " | + | - Now test running the **A* search** on different |
* Available Heuristics ([[http:// | * Available Heuristics ([[http:// | ||
- | * Manhattan heuristics< | + | |
h(n) = D * (abs(n.x-goal.x) + abs(n.y-goal.y))</ | h(n) = D * (abs(n.x-goal.x) + abs(n.y-goal.y))</ | ||
- | * Euclidean heuristics< | + | |
h(n) = D * sqrt((n.x-goal.x)^2 + (n.y-goal.y)^2)</ | h(n) = D * sqrt((n.x-goal.x)^2 + (n.y-goal.y)^2)</ | ||
- | * Diagonal heuristics< | + | |
h_diagonal(n) = min(abs(n.x-goal.x), | h_diagonal(n) = min(abs(n.x-goal.x), | ||
h_straight(n) = (abs(n.x-goal.x) + abs(n.y-goal.y)) | h_straight(n) = (abs(n.x-goal.x) + abs(n.y-goal.y)) | ||
h(n) = D2 * h_diagonal(n) + D * (h_straight(n) - 2*h_diagonal(n))) | h(n) = D2 * h_diagonal(n) + D * (h_straight(n) - 2*h_diagonal(n))) | ||
</ | </ | ||
- | * Diagonal heuristics, with Tie-Breaker: | + | |
- | * Diagonal heuristics, with Tie-Breaker, | + | |
- | - Imagine that you are developing a computer game with characters that need to traverse a variety of terrain. Which A* heuristic would you pick? What is your argument for picking that heuristic? Are there any trade offs? | + | - Imagine that you are developing a computer game with characters that need to traverse a variety of terrains. |
+ | - Which A* heuristic would you pick? | ||
+ | - What is your argument for picking that heuristic? | ||
+ | - Are there any trade-offs? | ||
/var/www/cadia.ru.is/wiki/data/attic/public/t-622-arti-11-1/lab_4_materials.1296587684.txt.gz · Last modified: 2024/04/29 13:32 (external edit)