|
import java.util.ArrayList; |
|
import java.util.Random; |
|
|
|
import lejos.nxt.Button; |
|
import lejos.nxt.LCD; |
|
import lejos.nxt.Motor; |
|
import lejos.robotics.RegulatedMotor; |
|
import lejos.robotics.navigation.DifferentialPilot; |
|
import lejos.util.Datalogger; |
|
import lejos.util.Delay; |
|
import lejos.util.PIDController; |
|
|
|
public class Cruiser extends Thread { |
|
|
|
// private static final int SHORTEST_PATH_SAMPLES = 115; |
|
// private static final int SAMPLES_TO_IGNORE = 10; |
|
private static final int STABILIZATION_SAMPLES = 20; |
|
private static final int PILOT_ROTATE_SPEED = 30; |
|
private static final int PILOT_TRAVEL_SPEED = 4; |
|
private static final float PID_LIMIT_LOW = -150.0f; |
|
private static final float PID_LIMIT_HIGH = 150.0f; |
|
private static final float PID_KD_VALUE = 200.0f; |
|
private static final float PID_KI_VALUE = 0.009f; |
|
private static final float PID_KP_VALUE = 20.0f; |
|
private static final int DIFFERENCE_BETWEEN_EQUAL_SAMPLES = 11; |
|
private static final int U_TURN_SAMPLES = 11; |
|
private static final int TOTAL_SAMPLES = 530; |
|
// private static final float CORRECTION = 3; |
|
|
|
int color; |
|
final int threshold; |
|
final DifferentialPilot pilot; |
|
final PIDController pid; |
|
final TachoPoseProvider provider; |
|
final DifferentialPilot pilot1; |
|
final PIDController pid1; |
|
final TachoPoseProvider provider1; |
|
TachoPose lastTachoPose = new TachoPose(); |
|
RegulatedMotor leftMotor = Motor.B; |
|
RegulatedMotor rightMotor = Motor.C; |
|
|
|
public Cruiser() { |
|
|
|
float wheelDiameter = Float.parseFloat("2.2"); |
|
float trackWidth = Float.parseFloat("4.9"); |
|
boolean reverse = Boolean.parseBoolean("false"); |
|
pilot = new DifferentialPilot(wheelDiameter, trackWidth, leftMotor, |
|
rightMotor, reverse); |
|
provider = new TachoPoseProvider(lastTachoPose); |
|
pilotInitialize(); |
|
|
|
threshold = (LtdMazeSolver.lvh.getBlack() + LtdMazeSolver.lvh |
|
.getWhite()) / 2; |
|
|
|
pid = new PIDController(threshold, 10); |
|
pidInitialize(); |
|
|
|
// --------------------------------------------------------------------- |
|
|
|
pilot1 = new DifferentialPilot(wheelDiameter, trackWidth, leftMotor, |
|
rightMotor, reverse); |
|
provider1 = new TachoPoseProvider(lastTachoPose); |
|
pilot1Initialize(); |
|
|
|
pid1 = new PIDController(threshold, 10); |
|
pid1Initialize(); |
|
|
|
leftMotor.resetTachoCount(); |
|
rightMotor.resetTachoCount(); |
|
} |
|
|
|
private void pidInitialize() { |
|
pid.setPIDParam(PIDController.PID_KP, PID_KP_VALUE); |
|
pid.setPIDParam(PIDController.PID_KI, PID_KI_VALUE); |
|
pid.setPIDParam(PIDController.PID_KD, PID_KD_VALUE); |
|
pid.setPIDParam(PIDController.PID_LIMITHIGH, PID_LIMIT_HIGH); |
|
pid.setPIDParam(PIDController.PID_LIMITLOW, PID_LIMIT_LOW); |
|
} |
|
|
|
private void pilotInitialize() { |
|
pilot.setTravelSpeed(PILOT_TRAVEL_SPEED); |
|
pilot.setRotateSpeed(PILOT_ROTATE_SPEED); |
|
} |
|
|
|
private void pid1Initialize() { |
|
pid1.setPIDParam(PIDController.PID_KP, PID_KP_VALUE); |
|
pid1.setPIDParam(PIDController.PID_KI, PID_KI_VALUE); |
|
pid1.setPIDParam(PIDController.PID_KD, 400); |
|
pid1.setPIDParam(PIDController.PID_LIMITHIGH, PID_LIMIT_HIGH); |
|
pid1.setPIDParam(PIDController.PID_LIMITLOW, PID_LIMIT_LOW); |
|
} |
|
|
|
private void pilot1Initialize() { |
|
pilot1.setTravelSpeed(PILOT_TRAVEL_SPEED); |
|
pilot1.setRotateSpeed(PILOT_ROTATE_SPEED); |
|
} |
|
|
|
public void run() { |
|
|
|
LCD.clear(); |
|
LCD.drawString("Started Cruiser", 0, 2); |
|
|
|
Delay.msDelay(3000); |
|
|
|
Datalogger logger = new Datalogger(); |
|
|
|
ArrayList<Direction> summary = populateFirstPathSamples(logger); |
|
|
|
stopPilot(); |
|
|
|
ArrayList<Direction> finalizedShortestPath = findShortedPath( |
|
summarize(summary, logger), logger); |
|
|
|
//logger.transmit(); |
|
|
|
summary.clear(); |
|
|
|
followShortestPath(finalizedShortestPath, logger); |
|
|
|
pilot1.stop(); |
|
} |
|
|
|
private ArrayList<Direction> populateFirstPathSamples(Datalogger logger) { |
|
int mark = 0; |
|
float[] sampleDirection = new float[1]; |
|
float[] sampleValue = new float[2]; |
|
ArrayList<Direction> summaryList = new ArrayList<Direction>(); |
|
|
|
while (!Button.ESCAPE.isPressed() && mark < TOTAL_SAMPLES) { |
|
sampleValue = getASample(); |
|
Direction direction = new Direction(); |
|
summaryList.add(direction); |
|
direction.setX(sampleValue[0]); |
|
direction.setY(sampleValue[1]); |
|
direction.setRemoval(1); |
|
if (mark > 0) { |
|
sampleDirection = getDirection(summaryList.get(mark).getX(), |
|
summaryList.get(mark).getY(), summaryList.get(mark - 1) |
|
.getX(), summaryList.get(mark - 1).getY(), |
|
logger); |
|
summaryList.get(mark).setDirection(sampleDirection[0]); |
|
} |
|
|
|
++mark; |
|
} |
|
|
|
for (int i = 0; i < summaryList.size(); i += 2) { |
|
|
|
logger.writeLog(summaryList.get(i).getY(), summaryList.get(i) |
|
.getX(), summaryList.get(i).getDirection(), summaryList |
|
.get(i).getNumberOfSamples()); |
|
|
|
} |
|
|
|
return summaryList; |
|
} |
|
|
|
private void followShortestPath(ArrayList<Direction> shortestPath, |
|
Datalogger logger) { |
|
|
|
int expectedShortestPathIndex = 0; |
|
float[] sampleDirection = new float[1]; |
|
float[] sampleValue = new float[2]; |
|
ArrayList<Direction> summaryList = new ArrayList<Direction>(); |
|
int mark = 0; |
|
float previousDirection = 4; |
|
float nextDirection = 0; |
|
|
|
Direction dummy = new Direction(); |
|
dummy.setDirection(0); |
|
dummy.setNumberOfSamples(0); |
|
shortestPath.add(dummy); |
|
|
|
Button.ESCAPE.waitForPressAndRelease(); |
|
|
|
// printLogTwoDiaArray(shortestPath, logger); |
|
pilot.reset(); |
|
pilot1.reset(); |
|
leftMotor.resetTachoCount(); |
|
rightMotor.resetTachoCount(); |
|
|
|
LCD.clear(); |
|
|
|
Delay.msDelay(3000); |
|
|
|
while (!Button.ESCAPE.isPressed() |
|
&& expectedShortestPathIndex < (shortestPath.size() - 1)) { |
|
|
|
if (expectedShortestPathIndex != 0) |
|
previousDirection = shortestPath.get( |
|
expectedShortestPathIndex - 1).getDirection(); |
|
|
|
// Sample 0 |
|
sampleValue = getASampleForPilot1(); |
|
Direction direction = new Direction(); |
|
summaryList.add(direction); |
|
direction.setX(sampleValue[0]); |
|
direction.setY(sampleValue[1]); |
|
direction.setRemoval(1); |
|
direction.setDirection(previousDirection); |
|
++mark; |
|
|
|
// proceed until number of samples are in a given direction of |
|
// shortest path |
|
|
|
float driveLimit = 0; |
|
|
|
while (mark < shortestPath.get(expectedShortestPathIndex) |
|
.getNumberOfSamples() && !Button.ESCAPE.isPressed()) { |
|
sampleValue = getASampleForPilot1(); |
|
Direction directionN = new Direction(); |
|
summaryList.add(directionN); |
|
directionN.setX(sampleValue[0]); |
|
directionN.setY(sampleValue[1]); |
|
directionN.setRemoval(1); |
|
sampleDirection = getDirection(summaryList.get(mark).getX(), |
|
summaryList.get(mark).getY(), summaryList.get(mark - 1) |
|
.getX(), summaryList.get(mark - 1).getY(), |
|
logger); |
|
summaryList.get(mark).setDirection(sampleDirection[0]); |
|
|
|
++mark; |
|
} |
|
|
|
--mark; |
|
|
|
nextDirection = shortestPath.get(expectedShortestPathIndex + 1) |
|
.getDirection(); |
|
|
|
LCD.drawInt((int) nextDirection, 0, 2); |
|
|
|
if (summaryList.get(mark).getDirection() == summaryList.get( |
|
mark - 1).getDirection() |
|
&& summaryList.get(mark).getDirection() == nextDirection |
|
&& summaryList.get(mark - 1).getDirection() == nextDirection) { |
|
++expectedShortestPathIndex; |
|
} else { |
|
boolean directionChanged = alignDirection(summaryList.get(mark) |
|
.getDirection(), summaryList.get(mark - 1) |
|
.getDirection(), nextDirection); |
|
++expectedShortestPathIndex; |
|
if (directionChanged) { |
|
float originalSamples = shortestPath.get( |
|
expectedShortestPathIndex).getNumberOfSamples(); |
|
shortestPath.get(expectedShortestPathIndex) |
|
.setNumberOfSamples( |
|
originalSamples + STABILIZATION_SAMPLES); |
|
} |
|
} |
|
|
|
|
|
summaryList = new ArrayList<Direction>(); |
|
mark = 0; |
|
} |
|
|
|
pilot1.stop(); |
|
} |
|
|
|
private boolean alignDirection(float currentDirection, |
|
float currentDirection1, float nextDirection) { |
|
|
|
if (currentDirection == 1 && currentDirection1 == 1 |
|
&& nextDirection == 2) { |
|
pilot1.steer(-180, -60); |
|
return true; |
|
} else if (currentDirection == 1 && currentDirection1 == 1 |
|
&& nextDirection == 4) { |
|
pilot1.steer(-180, 60); |
|
return true; |
|
} else if (currentDirection == 2 && currentDirection1 == 2 |
|
&& nextDirection == 3) { |
|
pilot1.steer(-180, -60); |
|
return true; |
|
} else if (currentDirection == 2 && currentDirection1 == 2 |
|
&& nextDirection == 1) { |
|
pilot1.steer(-180, 60); |
|
return true; |
|
} else if (currentDirection == 3 && currentDirection1 == 3 |
|
&& nextDirection == 4) { |
|
pilot1.steer(-180, -60); |
|
return true; |
|
} else if (currentDirection == 3 && currentDirection1 == 3 |
|
&& nextDirection == 2) { |
|
pilot1.steer(-180, 60); |
|
return true; |
|
} else if (currentDirection == 4 && currentDirection1 == 4 |
|
&& nextDirection == 3) { |
|
pilot1.steer(-180, 60); |
|
return true; |
|
} else if (currentDirection == 4 && currentDirection1 == 4 |
|
&& nextDirection == 1) { |
|
pilot1.steer(-180, -60); |
|
return true; |
|
} |
|
|
|
else if (currentDirection == 1 && currentDirection1 == 1 |
|
&& nextDirection == 3) { |
|
pilot1.steer(-200, -90); |
|
return true; |
|
} else if (currentDirection == 2 && currentDirection1 == 2 |
|
&& nextDirection == 4) { |
|
pilot1.steer(-200, -90); |
|
return true; |
|
} else if (currentDirection == 3 && currentDirection1 == 3 |
|
&& nextDirection == 1) { |
|
pilot1.steer(-200, -90); |
|
return true; |
|
} else if (currentDirection == 4 && currentDirection1 == 4 |
|
&& nextDirection == 2) { |
|
pilot1.steer(-200, -90); |
|
return true; |
|
} else { |
|
return false; |
|
} |
|
|
|
} |
|
|
|
private void printLogTwoDiaArray(float[][] shortestPath, Datalogger logger) { |
|
for (int index = 0; index < shortestPath[0].length; ++index) { |
|
logger.writeLog(shortestPath[0][index], shortestPath[1][index], |
|
shortestPath[2][index], shortestPath[4][index]); |
|
} |
|
} |
|
|
|
private float[] getASampleForPilot1() { |
|
TachoPose curpose = null; |
|
float[] sample = { 0.0f, 0.0f }; |
|
int loopIndex = 0; |
|
|
|
provider1.setPose(lastTachoPose); |
|
|
|
while (loopIndex < 17) { |
|
|
|
color = LFUtils.getAvgLightValue(); |
|
pilot1.steer(pid1.doPID(color)); |
|
|
|
Delay.msDelay(10); |
|
|
|
++loopIndex; |
|
} |
|
|
|
curpose = provider1.getPose(); |
|
lastTachoPose = curpose; |
|
|
|
sample[0] = lastTachoPose.getX(); |
|
sample[1] = lastTachoPose.getY(); |
|
|
|
return sample; |
|
|
|
} |
|
|
|
|
|
private float[] getDirection(float x2, float y2, float x1, float y1, |
|
Datalogger logger) { |
|
|
|
float[] direction = new float[1]; |
|
|
|
x2 = oneDecRound(x2); |
|
y2 = oneDecRound(y2); |
|
x1 = oneDecRound(x1); |
|
y1 = oneDecRound(y1); |
|
|
|
float dx = x2 - x1; |
|
float dy = y2 - y1; |
|
float slope = Math.abs(dy / dx); |
|
|
|
if (slope < 1) { |
|
if ((dx > 0)) |
|
direction[0] = 1; // North |
|
else |
|
direction[0] = 3; // South |
|
} else { |
|
if ((dy > 0)) |
|
direction[0] = 4; // West |
|
else |
|
direction[0] = 2; // East |
|
} |
|
|
|
return direction; |
|
} |
|
|
|
private float oneDecRound(float x) { |
|
// return (int)x; |
|
return (float) (((int) (x * 1000)) / 1000f); |
|
// return (((float)(Math.round(x*10)))/10); |
|
} |
|
|
|
private void stopPilot() { |
|
pilot.stop(); |
|
} |
|
|
|
private float[] getASample() { |
|
|
|
TachoPose curpose = null; |
|
int loopIndex = 0; |
|
float[] sample = { 0.0f, 0.0f }; |
|
|
|
provider.setPose(lastTachoPose); |
|
|
|
while (loopIndex < 15) { |
|
color = LFUtils.getAvgLightValue(); |
|
pilot.steer(pid.doPID(color)); |
|
|
|
Delay.msDelay(10); |
|
|
|
++loopIndex; |
|
} |
|
|
|
curpose = provider.getPose(); |
|
lastTachoPose = curpose; |
|
|
|
sample[0] = lastTachoPose.getX(); |
|
sample[1] = lastTachoPose.getY(); |
|
|
|
return sample; |
|
} |
|
|
|
|
|
private ArrayList<Direction> summarize(ArrayList<Direction> summary, |
|
Datalogger logger) { |
|
|
|
int myIndex0 = 0; |
|
|
|
while (myIndex0 < summary.size()) { |
|
|
|
if (((Direction) summary.get(myIndex0)).getDirection() == 0) { |
|
summary.remove(myIndex0); |
|
myIndex0 = -1; |
|
} |
|
|
|
++myIndex0; |
|
} |
|
|
|
ArrayList<Direction> directionOutput = new ArrayList<Direction>(); |
|
Direction dir = new Direction(); |
|
dir.setX(((Direction) summary.get(0)).getX()); |
|
dir.setY(((Direction) summary.get(0)).getY()); |
|
dir.setDirection(((Direction) summary.get(0)).getDirection()); |
|
dir.setRemoval(((Direction) summary.get(0)).getRemoval()); |
|
directionOutput.add(dir); |
|
|
|
int i = 1; |
|
int directionSeries = 0; |
|
int numberOfSamples = 0; |
|
|
|
while (i < summary.size()) { |
|
if (directionOutput.get(directionSeries).getDirection() != ((Direction) summary |
|
.get(i)).getDirection()) { |
|
// directionOutput[3][directionSeries] = -1.0f; |
|
++directionSeries; |
|
Direction dir1 = new Direction(); |
|
directionOutput.add(dir1); |
|
directionOutput.get(directionSeries).setX( |
|
((Direction) summary.get(i)).getX()); |
|
directionOutput.get(directionSeries).setY( |
|
((Direction) summary.get(i)).getY()); |
|
directionOutput.get(directionSeries).setDirection( |
|
((Direction) summary.get(i)).getDirection()); |
|
directionOutput.get(directionSeries).setRemoval( |
|
((Direction) summary.get(i)).getRemoval()); |
|
numberOfSamples = 1; |
|
directionOutput.get(directionSeries).setNumberOfSamples( |
|
numberOfSamples); |
|
|
|
} else { |
|
|
|
directionOutput.get(directionSeries).setNumberOfSamples( |
|
++numberOfSamples); |
|
} |
|
|
|
++i; |
|
} |
|
|
|
return directionOutput; |
|
} |
|
|
|
private float getAverage(float[] x) { |
|
// TODO Auto-generated method stub |
|
float sum = 0.0f; |
|
for (int i = 0; i < 1; ++i) |
|
sum += x[i]; |
|
|
|
return sum / 1; |
|
} |
|
|
|
private ArrayList<Direction> findShortedPath( |
|
ArrayList<Direction> direction, Datalogger logger) { |
|
// TODO Auto-generated method stub |
|
|
|
ArrayList<Direction> shortestPath = direction; |
|
|
|
for (int index = 0; index < direction.size(); ++index) { |
|
logger.writeLog(direction.get(index).getX(), direction.get(index) |
|
.getY(), direction.get(index).getDirection(), direction |
|
.get(index).getNumberOfSamples()); |
|
} |
|
|
|
int originalShortestPathLength = shortestPath.size(); |
|
|
|
removeUTurn(shortestPath); |
|
|
|
while (true) { |
|
|
|
removeOppositeDirections42(shortestPath); |
|
removeUTurn(shortestPath); |
|
removeOppositeDirections24(shortestPath); |
|
removeUTurn(shortestPath); |
|
removeOppositeDirections13(shortestPath); |
|
removeUTurn(shortestPath); |
|
removeOppositeDirections31(shortestPath); |
|
removeUTurn(shortestPath); |
|
|
|
if (originalShortestPathLength == shortestPath.size()) |
|
break; |
|
else |
|
originalShortestPathLength = shortestPath.size(); |
|
|
|
} |
|
|
|
for (int index = 0; index < shortestPath.size(); ++index) { |
|
logger.writeLog(shortestPath.get(index).getX(), |
|
shortestPath.get(index).getY(), shortestPath.get(index) |
|
.getDirection(), shortestPath.get(index) |
|
.getNumberOfSamples()); |
|
} |
|
|
|
return shortestPath; |
|
|
|
} |
|
|
|
private void removeOppositeDirections31(ArrayList<Direction> shortestPath) { |
|
// TODO Auto-generated method stub |
|
|
|
int originalShortestPathLength = shortestPath.size(); |
|
|
|
int myIndex2 = 1; |
|
|
|
while (true) { |
|
|
|
while (myIndex2 < shortestPath.size()) { |
|
|
|
if (shortestPath.get(myIndex2 - 1).getDirection() == 3 |
|
&& shortestPath.get(myIndex2).getDirection() == 1) { |
|
|
|
decideWhichOneToRemove(shortestPath, myIndex2); |
|
|
|
myIndex2 = 0; |
|
} |
|
++myIndex2; |
|
} |
|
|
|
removeUTurn(shortestPath); |
|
|
|
if (originalShortestPathLength == shortestPath.size()) |
|
break; |
|
else |
|
originalShortestPathLength = shortestPath.size(); |
|
} |
|
} |
|
|
|
private void removeOppositeDirections13(ArrayList<Direction> shortestPath) { |
|
// TODO Auto-generated method stub |
|
int originalShortestPathLength = shortestPath.size(); |
|
|
|
int myIndex2 = 1; |
|
|
|
while (true) { |
|
|
|
while (myIndex2 < shortestPath.size()) { |
|
|
|
if (shortestPath.get(myIndex2 - 1).getDirection() == 1 |
|
&& shortestPath.get(myIndex2).getDirection() == 3) { |
|
|
|
decideWhichOneToRemove(shortestPath, myIndex2); |
|
|
|
myIndex2 = 0; |
|
} |
|
++myIndex2; |
|
} |
|
|
|
removeUTurn(shortestPath); |
|
|
|
if (originalShortestPathLength == shortestPath.size()) |
|
break; |
|
else |
|
originalShortestPathLength = shortestPath.size(); |
|
} |
|
|
|
} |
|
|
|
private void decideWhichOneToRemove(ArrayList<Direction> shortestPath, |
|
int myIndex2) { |
|
float samplesForMyIndex2 = shortestPath.get(myIndex2) |
|
.getNumberOfSamples(); |
|
float samplesForMyIndex2Minus1 = shortestPath.get(myIndex2 - 1) |
|
.getNumberOfSamples(); |
|
float difference = Math.abs(samplesForMyIndex2Minus1 |
|
- samplesForMyIndex2); |
|
|
|
if (difference < DIFFERENCE_BETWEEN_EQUAL_SAMPLES) { |
|
shortestPath.remove(myIndex2); |
|
shortestPath.remove(myIndex2 - 1); |
|
} else { |
|
|
|
if (samplesForMyIndex2 > samplesForMyIndex2Minus1) { |
|
shortestPath.get(myIndex2).setNumberOfSamples( |
|
samplesForMyIndex2 - samplesForMyIndex2Minus1); |
|
shortestPath.remove(myIndex2 - 1); |
|
} else { |
|
shortestPath.get(myIndex2 - 1).setNumberOfSamples( |
|
samplesForMyIndex2Minus1 - samplesForMyIndex2); |
|
shortestPath.remove(myIndex2); |
|
} |
|
} |
|
} |
|
|
|
private void removeOppositeDirections24(ArrayList<Direction> shortestPath) { |
|
// TODO Auto-generated method stub |
|
int originalShortestPathLength = shortestPath.size(); |
|
|
|
int myIndex2 = 1; |
|
|
|
while (true) { |
|
|
|
while (myIndex2 < shortestPath.size()) { |
|
|
|
if (shortestPath.get(myIndex2 - 1).getDirection() == 2 |
|
&& shortestPath.get(myIndex2).getDirection() == 4) { |
|
|
|
decideWhichOneToRemove(shortestPath, myIndex2); |
|
|
|
myIndex2 = 0; |
|
} |
|
++myIndex2; |
|
} |
|
|
|
removeUTurn(shortestPath); |
|
|
|
if (originalShortestPathLength == shortestPath.size()) |
|
break; |
|
else |
|
originalShortestPathLength = shortestPath.size(); |
|
} |
|
|
|
} |
|
|
|
private void removeOppositeDirections42(ArrayList<Direction> shortestPath) { |
|
// TODO Auto-generated method stub |
|
|
|
int originalShortestPathLength = shortestPath.size(); |
|
|
|
int myIndex2 = 1; |
|
|
|
while (true) { |
|
|
|
while (myIndex2 < shortestPath.size()) { |
|
|
|
if (shortestPath.get(myIndex2 - 1).getDirection() == 4 |
|
&& shortestPath.get(myIndex2).getDirection() == 2) { |
|
|
|
decideWhichOneToRemove(shortestPath, myIndex2); |
|
|
|
myIndex2 = 0; |
|
} |
|
++myIndex2; |
|
} |
|
|
|
removeUTurn(shortestPath); |
|
|
|
if (originalShortestPathLength == shortestPath.size()) |
|
break; |
|
else |
|
originalShortestPathLength = shortestPath.size(); |
|
} |
|
|
|
} |
|
|
|
private void removeUTurn(ArrayList<Direction> shortestPath) { |
|
int myIndex = 0; |
|
// float[][] appliedShortestPath = new float [4][200]; |
|
|
|
while (myIndex < shortestPath.size()) { |
|
|
|
if (shortestPath.get(myIndex).getDirection() == 1 |
|
&& shortestPath.get(myIndex).getNumberOfSamples() < U_TURN_SAMPLES) { |
|
shortestPath.remove(myIndex); |
|
myIndex = -1; |
|
} else if (shortestPath.get(myIndex).getDirection() == 2 |
|
&& shortestPath.get(myIndex).getNumberOfSamples() < U_TURN_SAMPLES) { |
|
shortestPath.remove(myIndex); |
|
myIndex = -1; |
|
} else if (shortestPath.get(myIndex).getDirection() == 3 |
|
&& shortestPath.get(myIndex).getNumberOfSamples() < U_TURN_SAMPLES) { |
|
shortestPath.remove(myIndex); |
|
myIndex = -1; |
|
} else if (shortestPath.get(myIndex).getDirection() == 4 |
|
&& shortestPath.get(myIndex).getNumberOfSamples() < U_TURN_SAMPLES) { |
|
shortestPath.remove(myIndex); |
|
myIndex = -1; |
|
} |
|
|
|
++myIndex; |
|
} |
|
} |
|
|
|
} |