Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f9b0bafe4 | ||
|
|
2366f798ca | ||
|
|
d6a9b5f1aa | ||
|
|
13012c1d4b | ||
|
|
448e34e869 | ||
|
|
b01bee0142 | ||
|
|
7c8cf55ac2 | ||
|
|
0a57afc3c7 | ||
|
|
e84bce43af | ||
|
|
1a3a96218c | ||
|
|
19eb41066c | ||
|
|
95ef0b9d76 | ||
|
|
30162df956 | ||
|
|
d777b87549 | ||
|
|
7b6fc70e05 | ||
|
|
a2dcc1b0d8 | ||
|
|
badec0d16f | ||
|
|
82911fcfb6 | ||
|
|
f133f4305d | ||
|
|
0656b77662 | ||
|
|
c997730abf | ||
|
|
f6a16181cf | ||
|
|
2b2834f47a | ||
|
|
ad2e1c3104 | ||
|
|
eca2e2eb9b | ||
|
|
80b07111de | ||
|
|
a143a9c7d7 | ||
|
|
31ec1e9e64 | ||
|
|
bc0dd52360 | ||
|
|
015dbac96c | ||
|
|
4b5802a0d0 | ||
|
|
a689df5fe1 | ||
|
|
4ce26578b9 | ||
|
|
fa4842e440 | ||
|
|
dc704cce4c | ||
|
|
082d1414f5 | ||
|
|
7c87f4b2fd | ||
|
|
1c63c0cb21 | ||
|
|
787ddd7155 | ||
|
|
a14327a2a7 | ||
|
|
ded9023ff1 | ||
|
|
2de3993921 | ||
|
|
de91717a48 | ||
|
|
826f67d125 | ||
|
|
6ac4f64456 | ||
|
|
b1a4f3b3db | ||
|
|
45918124df | ||
|
|
b8dda0b96a | ||
|
|
dc34d984f8 | ||
|
|
8877f1476f | ||
|
|
c59e4a30d8 | ||
|
|
eddf9d3daa | ||
|
|
cf1a8d703e | ||
|
|
6403ee958f | ||
|
|
fe74d017b2 | ||
|
|
7c841abfc6 | ||
|
|
ae62f9e98c | ||
|
|
b467a79596 | ||
|
|
d7a593be30 | ||
|
|
0b423b759e | ||
|
|
8826561963 | ||
|
|
a80ea0fa1c | ||
|
|
fc78b10365 | ||
|
|
fec3aceaa6 | ||
|
|
833b122d2b | ||
|
|
67c5a79174 | ||
|
|
837297cd31 | ||
|
|
c30d7a2988 | ||
|
|
21da4feaf5 | ||
|
|
dad57ea8ac | ||
|
|
e6fc0fde39 | ||
|
|
9869e8e74d | ||
|
|
1c618ad09a | ||
|
|
3684b5589e | ||
|
|
fd4513e0d0 | ||
|
|
d02c04f91d | ||
|
|
8929d295b9 | ||
|
|
dca575999e | ||
|
|
6080b48b82 | ||
|
|
0fafa3e0e7 | ||
|
|
16e4460a47 | ||
|
|
a67a96d19d | ||
|
|
19b227c59f | ||
|
|
cbc915bf50 | ||
|
|
31a24120eb | ||
|
|
dea430e418 | ||
|
|
40cd4f7b72 | ||
|
|
8086111772 | ||
|
|
972f011a08 | ||
|
|
381ea44a9a |
File diff suppressed because one or more lines are too long
@@ -1,2 +1,44 @@
|
|||||||
# team02-AngryNerds-projekt1-racetrack
|
# team02-AngryNerds-projekt1-racetrack
|
||||||
PM2 Team 02 Projekt 1 Racetrack
|
PM2 Team 02 Projekt 1 Racetrack
|
||||||
|
Racetrack is a pen and paper game that dates back to the early 1960s in this version of the game, the game is digitalized and the math behind it is done automatically rather than calculated by hand and the winner gets informed automatically as well.
|
||||||
|
|
||||||
|
The aim of the game is to finish the race faster than your opponent or win by being the only survivor in case the other cars crash.
|
||||||
|
|
||||||
|
In order to not crash you have to keep in mind the acceleration and other players car to get to the finish line safely.
|
||||||
|
|
||||||
|
# Initialization:
|
||||||
|
#### The game can be initialized by the terminal command:
|
||||||
|
./gradlew run
|
||||||
|
You will then be prompted to select a track file from the selection by entering the corresponding number.
|
||||||
|
|
||||||
|
#### For each car that is taking part in the race a strategy has to be chosen there are the following options:
|
||||||
|
|
||||||
|
+ Do not move Strategy
|
||||||
|
> This Strategy sets the car stationary, and it won't make any moves during the game staying at the startpoint indefinitely.
|
||||||
|
+ User Move Strategy
|
||||||
|
> The player is prompted for each move to make a choice the different choices you are able to take are as following:
|
||||||
|
> > 1=down-left <br> 2=down<br> 3=down-right<br> 4=left<br> 5=no acceleration<br> 6=right <br> 7=up-left<br> 8=up<br> 9=up-right<br> it is also possible to leave the game when it is your turn by entering 10
|
||||||
|
+ Move List Strategy
|
||||||
|
> For this strategy a predefined list of moves have to be given, the list may contain all allowed moves like mentioned in User Move Strategy
|
||||||
|
> > To create your own Move List strategy it needs to be located in /racetrack/moves and be named as *track_name*-car-*character_of_car*.txt and be a txt file.
|
||||||
|
+ Path Follow Move Strategy
|
||||||
|
> A list of points given in a txt file where on each lime a coordinate is placed like (X:24, Y:22) gets used to calculate a path which makes the car cross each point.
|
||||||
|
> > To create your own follow move strategy it needs to be located in /racetrack/moves and be named as *track_name*_points.txt and be a txt file.
|
||||||
|
+ Path Finder Strategy
|
||||||
|
> The pathfinder Strategy Calculates a route itself and follows it direction fully automatically.
|
||||||
|
|
||||||
|
The shown Track can be interpreted as following:<br>
|
||||||
|
'spaces' are part of the raceable track.<br>
|
||||||
|
'#' is a Wall<br>
|
||||||
|
'>,<,^,v' are finish line components<br>
|
||||||
|
'X' is shown if a car crashes at its crash location.<br>
|
||||||
|
And every other character represents a car.
|
||||||
|
> To create your own track it needs to be located inside /racetrack/tracks and be a txt file.
|
||||||
|
### Determining a winner
|
||||||
|
The winner gets determined automatically. <br> The car that first passes the finish line (doing a complete round) is given the win, if all car except one crash the surviving car will be crowned as the winner.<br>The game will inform you of this, and you will have the option to quit the game or play another match.
|
||||||
|
|
||||||
|
## Branching Model
|
||||||
|
We choose a simple branching model where all starting features got a branch and where merged into the main branch, some branches who needed unfinished code to be completed where taken from the game branch but merged into the main at the end as well.<br> Since there was just one end product we abstained from using a development branch and merges where done straight into main branch.
|
||||||
|
|
||||||
|
## Class Diagramm
|
||||||
|

|
||||||
|
|||||||
+1
-1
@@ -44,7 +44,7 @@ version = '2022.1'
|
|||||||
|
|
||||||
application {
|
application {
|
||||||
// Define the main class for the application.
|
// Define the main class for the application.
|
||||||
mainClass = 'ch.zhaw.pm2.racetrack.ConsoleApp'
|
mainClass = 'ch.zhaw.pm2.racetrack.Main'
|
||||||
}
|
}
|
||||||
|
|
||||||
run {
|
run {
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
(X:40, Y:22)
|
||||||
|
(X:43, Y:22)
|
||||||
|
(X:46, Y:21)
|
||||||
|
(X:48, Y:19)
|
||||||
|
(X:48, Y:17)
|
||||||
|
(X:46, Y:15)
|
||||||
|
(X:41, Y:13)
|
||||||
|
(X:41, Y:10)
|
||||||
|
(X:46, Y:9)
|
||||||
|
(X:49, Y:4)
|
||||||
|
(X:40, Y:2)
|
||||||
|
(X:30, Y:2)
|
||||||
|
(X:21, Y:3)
|
||||||
|
(X:16, Y:7)
|
||||||
|
(X:13, Y:10)
|
||||||
|
(X:14, Y:14)
|
||||||
|
(X:11, Y:19)
|
||||||
|
(X:13, Y:22)
|
||||||
|
(X:24, Y:22)
|
||||||
@@ -3,14 +3,12 @@ package ch.zhaw.pm2.racetrack;
|
|||||||
import ch.zhaw.pm2.racetrack.given.CarSpecification;
|
import ch.zhaw.pm2.racetrack.given.CarSpecification;
|
||||||
import ch.zhaw.pm2.racetrack.strategy.MoveStrategy;
|
import ch.zhaw.pm2.racetrack.strategy.MoveStrategy;
|
||||||
|
|
||||||
import java.util.Vector;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class representing a car on the racetrack.
|
* Class representing a car on the racetrack.
|
||||||
* Uses {@link PositionVector} to store current position on the track grid and current velocity vector.
|
* Uses {@link PositionVector} to store current position on the track grid and current velocity vector.
|
||||||
* Each car has an identifier character which represents the car on the racetrack board.
|
* Each car has an identifier character which represents the car on the racetrack board.
|
||||||
* Also keeps the state, if the car is crashed (not active anymore). The state can not be changed back to uncrashed.
|
* Also keeps the state, if the car is crashed (not active anymore). The state can not be changed back to uncrashed.
|
||||||
* The velocity is changed by providing an acelleration vector.
|
* The velocity is changed by providing an acceleration vector.
|
||||||
* The car is able to calculate the endpoint of its next position and on request moves to it.
|
* The car is able to calculate the endpoint of its next position and on request moves to it.
|
||||||
*/
|
*/
|
||||||
public class Car implements CarSpecification {
|
public class Car implements CarSpecification {
|
||||||
@@ -46,6 +44,7 @@ public class Car implements CarSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor for class Car
|
* Constructor for class Car
|
||||||
|
*
|
||||||
* @param id unique Car identification
|
* @param id unique Car identification
|
||||||
* @param position initial position of the Car
|
* @param position initial position of the Car
|
||||||
*/
|
*/
|
||||||
@@ -83,6 +82,7 @@ public class Car implements CarSpecification {
|
|||||||
public PositionVector getVelocity() {
|
public PositionVector getVelocity() {
|
||||||
return velocity;
|
return velocity;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set this Car position directly, regardless of current position and velocity.
|
* Set this Car position directly, regardless of current position and velocity.
|
||||||
* This should only be used by the game controller in rare cases to set the crash or winning position.
|
* This should only be used by the game controller in rare cases to set the crash or winning position.
|
||||||
@@ -95,8 +95,7 @@ public class Car implements CarSpecification {
|
|||||||
public void setPosition(final PositionVector position) {
|
public void setPosition(final PositionVector position) {
|
||||||
if (position.getX() < 0 || position.getY() < 0) {
|
if (position.getX() < 0 || position.getY() < 0) {
|
||||||
throw new IllegalArgumentException();
|
throw new IllegalArgumentException();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
this.position = position;
|
this.position = position;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -126,8 +125,7 @@ public class Car implements CarSpecification {
|
|||||||
if (acceleration.vector.getX() < -1 || acceleration.vector.getX() > 1 ||
|
if (acceleration.vector.getX() < -1 || acceleration.vector.getX() > 1 ||
|
||||||
acceleration.vector.getY() < -1 || acceleration.vector.getY() > 1) {
|
acceleration.vector.getY() < -1 || acceleration.vector.getY() > 1) {
|
||||||
throw new IllegalArgumentException();
|
throw new IllegalArgumentException();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
velocity = new PositionVector(velocity.getX() + acceleration.vector.getX(),
|
velocity = new PositionVector(velocity.getX() + acceleration.vector.getX(),
|
||||||
velocity.getY() + acceleration.vector.getY());
|
velocity.getY() + acceleration.vector.getY());
|
||||||
}
|
}
|
||||||
@@ -161,6 +159,7 @@ public class Car implements CarSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Set move strategy
|
* Set move strategy
|
||||||
|
*
|
||||||
* @param moveStrategy Strategy to be implemented
|
* @param moveStrategy Strategy to be implemented
|
||||||
*/
|
*/
|
||||||
public void setMoveStrategy(MoveStrategy moveStrategy) {
|
public void setMoveStrategy(MoveStrategy moveStrategy) {
|
||||||
@@ -169,6 +168,7 @@ public class Car implements CarSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get current move strategy
|
* Get current move strategy
|
||||||
|
*
|
||||||
* @return MoveStrategy
|
* @return MoveStrategy
|
||||||
*/
|
*/
|
||||||
public MoveStrategy getMoveStrategy() {
|
public MoveStrategy getMoveStrategy() {
|
||||||
|
|||||||
@@ -1,10 +1,7 @@
|
|||||||
package ch.zhaw.pm2.racetrack;
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
import ch.zhaw.pm2.racetrack.given.GameSpecification;
|
import ch.zhaw.pm2.racetrack.given.GameSpecification;
|
||||||
import ch.zhaw.pm2.racetrack.strategy.DoNotMoveStrategy;
|
import ch.zhaw.pm2.racetrack.strategy.*;
|
||||||
import ch.zhaw.pm2.racetrack.strategy.MoveListStrategy;
|
|
||||||
import ch.zhaw.pm2.racetrack.strategy.PathFollowerMoveStrategy;
|
|
||||||
import ch.zhaw.pm2.racetrack.strategy.UserMoveStrategy;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
@@ -21,7 +18,7 @@ import static ch.zhaw.pm2.racetrack.PositionVector.Direction;
|
|||||||
public class Game implements GameSpecification {
|
public class Game implements GameSpecification {
|
||||||
public static final int NO_WINNER = -1;
|
public static final int NO_WINNER = -1;
|
||||||
private Track track;
|
private Track track;
|
||||||
int currentCarIndex;
|
private int currentCarIndex;
|
||||||
|
|
||||||
UserInterface userInterface;
|
UserInterface userInterface;
|
||||||
|
|
||||||
@@ -29,8 +26,11 @@ public class Game implements GameSpecification {
|
|||||||
this.userInterface = userInterface;
|
this.userInterface = userInterface;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
public boolean initPhase() throws InvalidTrackFormatException, FileNotFoundException {
|
* This method will initialize the game. Therefore it interacts with the user via UserInterface
|
||||||
|
* @return true if the initialization is completed. Returns false if there is an error.
|
||||||
|
*/
|
||||||
|
public boolean initPhase() {
|
||||||
File folder = new File("tracks");
|
File folder = new File("tracks");
|
||||||
File[] listOfFiles = folder.listFiles();
|
File[] listOfFiles = folder.listFiles();
|
||||||
if (listOfFiles.length > 0) {
|
if (listOfFiles.length > 0) {
|
||||||
@@ -38,46 +38,90 @@ public class Game implements GameSpecification {
|
|||||||
for (File file : listOfFiles) {
|
for (File file : listOfFiles) {
|
||||||
tracks.add(file.getName());
|
tracks.add(file.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
File selectedTrack = listOfFiles[userInterface.selectOption("Select Track file", tracks)];
|
File selectedTrack = listOfFiles[userInterface.selectOption("Select Track file", tracks)];
|
||||||
try {
|
try {
|
||||||
track = new Track(selectedTrack);
|
selectTrack(selectedTrack);
|
||||||
} catch (FileNotFoundException | PositionVectorNotValid e) {
|
} catch (FileNotFoundException e) {
|
||||||
e.printStackTrace();
|
userInterface.printInformation("There is an unexpected Error with the trackfile Path. Add trackfiles only to tracks path. Exit the Game and Fix the Problem");
|
||||||
|
return false;
|
||||||
|
} catch (InvalidTrackFormatException e) {
|
||||||
|
userInterface.printInformation("There is an unexpected Error with the trackfile. Format does not match specifications! Exit the Game and Fix the Problem");
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
List<String> moveStrategies = new ArrayList<>();
|
List<String> moveStrategies = new ArrayList<>();
|
||||||
moveStrategies.add("Do not move Strategy");
|
moveStrategies.add("Do not move Strategy");
|
||||||
moveStrategies.add("User Move Strategy");
|
moveStrategies.add("User Move Strategy");
|
||||||
moveStrategies.add("Move List Strategy");
|
moveStrategies.add("Move List Strategy");
|
||||||
moveStrategies.add("Path Follow Move Strategy");
|
moveStrategies.add("Path Follow Move Strategy");
|
||||||
|
moveStrategies.add("Path Finder Move Strategy");
|
||||||
for (int i = 0; i < track.getCarCount(); i++) {
|
for (int i = 0; i < track.getCarCount(); i++) {
|
||||||
|
Car car = track.getCar(i);
|
||||||
|
MoveStrategy moveStrategy = null;
|
||||||
|
while (moveStrategy == null) {
|
||||||
|
String filePath;
|
||||||
int moveStrategie = userInterface.selectOption(
|
int moveStrategie = userInterface.selectOption(
|
||||||
"Select Strategy for Car " + i + " (" + track.getCarId(i) + ")", moveStrategies);
|
"Select Strategy for Car " + i + " (" + track.getCarId(i) + ")", moveStrategies);
|
||||||
switch (moveStrategie + 1) { //TODO: set Movestrategy with method in Track
|
switch (moveStrategie) {
|
||||||
|
case 0:
|
||||||
|
moveStrategy = new DoNotMoveStrategy();
|
||||||
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
track.getCar(i).setMoveStrategy(new DoNotMoveStrategy()); //TODO: add Arguments
|
moveStrategy = new UserMoveStrategy(userInterface, i, track.getCarId(i));
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
track.getCar(i).setMoveStrategy(new UserMoveStrategy(userInterface, i, track.getCarId(i))); //TODO: add Arguments
|
filePath = ".\\moves\\" + selectedTrack.getName().split("\\.")[0] + "-car-" + track.getCar(i).getID() + ".txt";
|
||||||
|
try {
|
||||||
|
moveStrategy = new MoveListStrategy(filePath);
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
userInterface.printInformation("There is no Move-List implemented. Choose another Strategy!");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
track.getCar(i).setMoveStrategy(new MoveListStrategy()); //TODO: add Arguments
|
filePath = ".\\follower\\" + selectedTrack.getName().split("\\.")[0] + "_points.txt";
|
||||||
|
try {
|
||||||
|
moveStrategy = new PathFollowerMoveStrategy(filePath, track.getCarPos(i));
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
userInterface.printInformation("There is no Point-List implemented. Choose another Strategy!");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
track.getCar(i).setMoveStrategy(new PathFollowerMoveStrategy()); //TODO: add Arguments
|
moveStrategy = new PathFinderMoveStrategy(track, i);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
selectMoveStrategy(car, moveStrategy);
|
||||||
}
|
}
|
||||||
else{
|
return true;
|
||||||
|
} else {
|
||||||
userInterface.printInformation("No Trackfile found!");
|
userInterface.printInformation("No Trackfile found!");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The functionality was taken out of init to automate testing
|
||||||
|
* @param selectedTrack
|
||||||
|
*/
|
||||||
|
Track selectTrack(File selectedTrack) throws InvalidTrackFormatException,FileNotFoundException {
|
||||||
|
track = new Track(selectedTrack);
|
||||||
|
return track;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The functionality was taken out of init to automate testing
|
||||||
|
*
|
||||||
|
* @param car to set the MoveStrategy
|
||||||
|
* @param strategy The movestrategy to set
|
||||||
|
*/
|
||||||
|
void selectMoveStrategy(Car car, MoveStrategy strategy) {
|
||||||
|
car.setMoveStrategy(strategy);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the index of the current active car.
|
* Return the index of the current active car.
|
||||||
* Car indexes are zero-based, so the first car is 0, and the last car is getCarCount() - 1.
|
* Car indexes are zero-based, so the first car is 0, and the last car is getCarCount() - 1.
|
||||||
|
*
|
||||||
* @return The zero-based number of the current car
|
* @return The zero-based number of the current car
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@@ -87,6 +131,7 @@ public class Game implements GameSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the id of the specified car.
|
* Get the id of the specified car.
|
||||||
|
*
|
||||||
* @param carIndex The zero-based carIndex number
|
* @param carIndex The zero-based carIndex number
|
||||||
* @return A char containing the id of the car
|
* @return A char containing the id of the car
|
||||||
*/
|
*/
|
||||||
@@ -97,6 +142,7 @@ public class Game implements GameSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the position of the specified car.
|
* Get the position of the specified car.
|
||||||
|
*
|
||||||
* @param carIndex The zero-based carIndex number
|
* @param carIndex The zero-based carIndex number
|
||||||
* @return A PositionVector containing the car's current position
|
* @return A PositionVector containing the car's current position
|
||||||
*/
|
*/
|
||||||
@@ -107,6 +153,7 @@ public class Game implements GameSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the velocity of the specified car.
|
* Get the velocity of the specified car.
|
||||||
|
*
|
||||||
* @param carIndex The zero-based carIndex number
|
* @param carIndex The zero-based carIndex number
|
||||||
* @return A PositionVector containing the car's current velocity
|
* @return A PositionVector containing the car's current velocity
|
||||||
*/
|
*/
|
||||||
@@ -117,16 +164,19 @@ public class Game implements GameSpecification {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the winner of the game. If the game is still in progress, returns NO_WINNER.
|
* Return the winner of the game. If the game is still in progress, returns NO_WINNER.
|
||||||
|
*
|
||||||
* @return The winning car's index (zero-based, see getCurrentCar()), or NO_WINNER if the game is still in progress
|
* @return The winning car's index (zero-based, see getCurrentCar()), or NO_WINNER if the game is still in progress
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int getWinner() {
|
public int getWinner() {
|
||||||
List<Car> cars = track.getCars();
|
for (int i = 0; i < track.getCarCount(); i++) {
|
||||||
for (Car car: cars) {
|
if (track.getCar(i).getWinPoints() == 1) {
|
||||||
if(car.getWinPoints() == 1){
|
return i;
|
||||||
return car.getID();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (onlyOneCarLeft()) {
|
||||||
|
return currentCarIndex;
|
||||||
|
}
|
||||||
return NO_WINNER;
|
return NO_WINNER;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -157,38 +207,56 @@ public class Game implements GameSpecification {
|
|||||||
* for this turn
|
* for this turn
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void doCarTurn(Direction acceleration) throws PositionVectorNotValid {
|
public void doCarTurn(Direction acceleration) {
|
||||||
// TODO: implementation
|
|
||||||
track.getCar(currentCarIndex).accelerate(acceleration);
|
track.getCar(currentCarIndex).accelerate(acceleration);
|
||||||
|
|
||||||
PositionVector crashPosition = null;
|
PositionVector crashPosition = null;
|
||||||
List<PositionVector> positionList = calculatePath(track.getCarPos(currentCarIndex), track.getCar(currentCarIndex).nextPosition());
|
List<PositionVector> positionList = calculatePath(track.getCarPos(currentCarIndex), track.getCar(currentCarIndex).nextPosition());
|
||||||
//TODO: check if Method calculatePath contains endposition
|
for (int i = 0; i < positionList.size(); i++) {
|
||||||
for(PositionVector location : positionList) { //todo: check if order must be reversed
|
if (willCarCrash(currentCarIndex, positionList.get(i))) {
|
||||||
if(willCarCrash(currentCarIndex, location)) {
|
if (i == 0) {
|
||||||
crashPosition = location;
|
crashPosition = track.getCarPos(currentCarIndex);
|
||||||
|
} else {
|
||||||
|
crashPosition = positionList.get(i - 1);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int newWinPoints = track.calculateNewWinPoints(track.getCarPos(currentCarIndex), track.getCar(currentCarIndex).nextPosition());
|
||||||
|
if(newWinPoints == 1){
|
||||||
|
track.getCar(currentCarIndex).increaseWinPoints();
|
||||||
|
}else if(newWinPoints == -1){
|
||||||
|
track.getCar(currentCarIndex).deductWinPoints();
|
||||||
}
|
}
|
||||||
if (crashPosition != null) {
|
if (crashPosition != null) {
|
||||||
track.carDoesCrash(currentCarIndex, crashPosition);
|
track.carDoesCrash(currentCarIndex, crashPosition);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
track.moveCar(currentCarIndex);
|
track.moveCar(currentCarIndex);
|
||||||
calculateWinner(track.getCarPos(currentCarIndex), track.getCar(currentCarIndex).nextPosition(), currentCarIndex);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public int gamePhase() throws PositionVectorNotValid {
|
/**
|
||||||
while (getWinner() == NO_WINNER) {
|
* This method implements the gameflow in a while loop. If there is a winner. The method will return its carid.
|
||||||
|
*
|
||||||
|
* @return the ID of the winning car return null if there is no winner.
|
||||||
|
*/
|
||||||
|
public String gamePhase() {
|
||||||
|
while (carsMoving() && getWinner() == NO_WINNER) {
|
||||||
userInterface.printTrack(track);
|
userInterface.printTrack(track);
|
||||||
Direction direction = track.getCar(currentCarIndex).getMoveStrategy().nextMove();
|
Direction direction;
|
||||||
doCarTurn(direction);
|
direction = track.getCar(currentCarIndex).getMoveStrategy().nextMove();
|
||||||
if(allCarsCrashed()) {
|
if (direction == null) {
|
||||||
return NO_WINNER;
|
track.getCar(currentCarIndex).setMoveStrategy(new DoNotMoveStrategy());
|
||||||
|
direction = track.getCar(currentCarIndex).getMoveStrategy().nextMove();
|
||||||
}
|
}
|
||||||
|
doCarTurn(direction);
|
||||||
switchToNextActiveCar();
|
switchToNextActiveCar();
|
||||||
}
|
}
|
||||||
return getWinner();
|
userInterface.printTrack(track);
|
||||||
|
int indexWinner = getWinner();
|
||||||
|
if (indexWinner == NO_WINNER) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return String.valueOf(track.getCar(indexWinner).getID());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -199,8 +267,7 @@ public class Game implements GameSpecification {
|
|||||||
do {
|
do {
|
||||||
if ((currentCarIndex + 1) == track.getCarCount()) {
|
if ((currentCarIndex + 1) == track.getCarCount()) {
|
||||||
currentCarIndex = 0;
|
currentCarIndex = 0;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
currentCarIndex++;
|
currentCarIndex++;
|
||||||
}
|
}
|
||||||
} while (track.getCar(currentCarIndex).isCrashed());
|
} while (track.getCar(currentCarIndex).isCrashed());
|
||||||
@@ -215,66 +282,24 @@ public class Game implements GameSpecification {
|
|||||||
* - Detect which axis of the distance vector is longer (faster movement)
|
* - Detect which axis of the distance vector is longer (faster movement)
|
||||||
* - for each pixel on the 'faster' axis calculate the position on the 'slower' axis.
|
* - for each pixel on the 'faster' axis calculate the position on the 'slower' axis.
|
||||||
* Direction of the movement has to correctly considered
|
* Direction of the movement has to correctly considered
|
||||||
|
*
|
||||||
* @param startPosition Starting position as a PositionVector
|
* @param startPosition Starting position as a PositionVector
|
||||||
* @param endPosition Ending position as a PositionVector
|
* @param endPosition Ending position as a PositionVector
|
||||||
* @return Intervening grid positions as a List of PositionVector's, including the starting and ending positions.
|
* @return Intervening grid positions as a List of PositionVector's, including the starting and ending positions.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public List<PositionVector> calculatePath(PositionVector startPosition, PositionVector endPosition) {
|
public List<PositionVector> calculatePath(PositionVector startPosition, PositionVector endPosition) {
|
||||||
ArrayList<PositionVector> pathList = new ArrayList<>();
|
return track.calculatePointsOnPath(startPosition, endPosition);
|
||||||
// Use Bresenham's algorithm to determine positions.
|
|
||||||
int x = startPosition.getX();
|
|
||||||
int y = startPosition.getY();
|
|
||||||
|
|
||||||
// Relative Distance (x & y axis) between end- and starting position
|
|
||||||
int diffX = endPosition.getX() - startPosition.getX();
|
|
||||||
int diffY = endPosition.getY() - startPosition.getY();
|
|
||||||
|
|
||||||
// Absolute distance (x & y axis) between end- and starting position
|
|
||||||
int distX = Math.abs(diffX);
|
|
||||||
int distY = Math.abs(diffY);
|
|
||||||
|
|
||||||
// Direction of vector on x & y axis (-1: to left/down, 0: none, +1 : to right/up)
|
|
||||||
int dirX = Integer.signum(diffX);
|
|
||||||
int dirY = Integer.signum(diffY);
|
|
||||||
|
|
||||||
// Determine which axis is the fast direction and set parallel/diagonal step values
|
|
||||||
int parallelStepX, parallelStepY;
|
|
||||||
int diagonalStepX, diagonalStepY;
|
|
||||||
int distanceSlowAxis, distanceFastAxis;
|
|
||||||
if (distX > distY) {
|
|
||||||
// x axis is the 'fast' direction
|
|
||||||
parallelStepX = dirX; parallelStepY = 0; // parallel step only moves in x direction
|
|
||||||
diagonalStepX = dirX; diagonalStepY = dirY; // diagonal step moves in both directions
|
|
||||||
distanceSlowAxis = distY;
|
|
||||||
distanceFastAxis = distX;
|
|
||||||
} else {
|
|
||||||
// y axis is the 'fast' direction
|
|
||||||
parallelStepX = 0; parallelStepY = dirY; // parallel step only moves in y direction
|
|
||||||
diagonalStepX = dirX; diagonalStepY = dirY; // diagonal step moves in both directions
|
|
||||||
distanceSlowAxis = distX;
|
|
||||||
distanceFastAxis = distY;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int error = distanceFastAxis/2;
|
|
||||||
for(int step = 0; step < distanceFastAxis; step ++) {
|
|
||||||
error -= distanceSlowAxis;
|
|
||||||
if (error < 0) {
|
|
||||||
error += distanceFastAxis; // correct error value to be positive again
|
|
||||||
// step into slow direction; diagonal step
|
|
||||||
x += diagonalStepX;
|
|
||||||
y += diagonalStepY;
|
|
||||||
} else {
|
|
||||||
// step into fast direction; parallel step
|
|
||||||
x += parallelStepX;
|
|
||||||
y += parallelStepY;
|
|
||||||
}
|
|
||||||
|
|
||||||
pathList.add(new PositionVector(x,y));
|
|
||||||
}
|
|
||||||
return pathList;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will check if a car is passing the finishline.
|
||||||
|
* If the car is passing the finishline in the wrong direction, the car will lose a winpoint.
|
||||||
|
* If the car is passing the finishline in the correct direction, the car will gain a winpoint.
|
||||||
|
* @param start the startposition of the car
|
||||||
|
* @param finish the expected finishpositon of the car after the move
|
||||||
|
*/
|
||||||
private void calculateWinner(PositionVector start, PositionVector finish, int carIndex) {
|
private void calculateWinner(PositionVector start, PositionVector finish, int carIndex) {
|
||||||
List<PositionVector> path = calculatePath(start, finish);
|
List<PositionVector> path = calculatePath(start, finish);
|
||||||
for (PositionVector point : path) {
|
for (PositionVector point : path) {
|
||||||
@@ -282,58 +307,64 @@ public class Game implements GameSpecification {
|
|||||||
case FINISH_UP:
|
case FINISH_UP:
|
||||||
if (start.getY() < finish.getY()) {
|
if (start.getY() < finish.getY()) {
|
||||||
track.getCar(carIndex).increaseWinPoints();
|
track.getCar(carIndex).increaseWinPoints();
|
||||||
}
|
} else if (start.getY() > finish.getY()) {
|
||||||
else if(start.getY() > finish.getY()) {
|
|
||||||
track.getCar(carIndex).deductWinPoints();
|
track.getCar(carIndex).deductWinPoints();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case FINISH_DOWN:
|
case FINISH_DOWN:
|
||||||
if (start.getY() > finish.getY()) {
|
if (start.getY() > finish.getY()) {
|
||||||
track.getCar(carIndex).increaseWinPoints();
|
track.getCar(carIndex).increaseWinPoints();
|
||||||
}
|
} else if (start.getY() < finish.getY()) {
|
||||||
else if (start.getY() < finish.getY()){
|
|
||||||
track.getCar(carIndex).deductWinPoints();
|
track.getCar(carIndex).deductWinPoints();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case FINISH_RIGHT:
|
case FINISH_RIGHT:
|
||||||
if (start.getX() < finish.getX()) {
|
if (start.getX() < finish.getX()) {
|
||||||
track.getCar(carIndex).increaseWinPoints();
|
track.getCar(carIndex).increaseWinPoints();
|
||||||
}
|
} else if (start.getX() > finish.getX()) {
|
||||||
else if (start.getX() > finish.getX()){
|
|
||||||
track.getCar(carIndex).deductWinPoints();
|
track.getCar(carIndex).deductWinPoints();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case FINISH_LEFT:
|
case FINISH_LEFT:
|
||||||
if (start.getX() > finish.getX()) {
|
if (start.getX() > finish.getX()) {
|
||||||
track.getCar(carIndex).increaseWinPoints();
|
track.getCar(carIndex).increaseWinPoints();
|
||||||
}
|
} else if (start.getX() < finish.getX()) {
|
||||||
else if (start.getX() < finish.getX()){
|
|
||||||
track.getCar(carIndex).increaseWinPoints();
|
track.getCar(carIndex).increaseWinPoints();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Does indicate if a car would have a crash with a WALL space or another car at the given position.
|
* Does indicate if a car would have a crash with a WALL space or another car at the given position.
|
||||||
|
*
|
||||||
* @param carIndex The zero-based carIndex number
|
* @param carIndex The zero-based carIndex number
|
||||||
* @param position A PositionVector of the possible crash position
|
* @param position A PositionVector of the possible crash position
|
||||||
* @return A boolean indicator if the car would crash with a WALL or another car.
|
* @return A boolean indicator if the car would crash with a WALL or another car.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean willCarCrash(int carIndex, PositionVector position) throws PositionVectorNotValid {
|
public boolean willCarCrash(int carIndex, PositionVector position) {
|
||||||
return track.willCrashAtPosition(carIndex, position);
|
return track.willCrashAtPosition(carIndex, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean allCarsCrashed() {
|
public boolean onlyOneCarLeft() {
|
||||||
|
int carsLeft = 0;
|
||||||
for (int carIndex = 0; carIndex < track.getCarCount(); carIndex++) {
|
for (int carIndex = 0; carIndex < track.getCarCount(); carIndex++) {
|
||||||
if (!track.getCar(carIndex).isCrashed()) {
|
if (!track.getCar(carIndex).isCrashed()) {
|
||||||
return false;
|
carsLeft++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return !(carsLeft > 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean carsMoving() {
|
||||||
|
for (int carIndex = 0; carIndex < track.getCarCount(); carIndex++) {
|
||||||
|
if (!(track.getCar(carIndex).isCrashed() || track.getCar(carIndex).getMoveStrategy().getClass() == DoNotMoveStrategy.class)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
package ch.zhaw.pm2.racetrack;
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class for Exception when invalid Fileformat is used.
|
||||||
|
*/
|
||||||
public class InvalidFileFormatException extends Exception {
|
public class InvalidFileFormatException extends Exception {
|
||||||
// TODO: implementation
|
public InvalidFileFormatException(){super();}
|
||||||
|
public InvalidFileFormatException(String errorMessage) {
|
||||||
|
super(errorMessage);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,13 @@
|
|||||||
package ch.zhaw.pm2.racetrack;
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class for Exception when invalid track format is used.
|
||||||
|
*/
|
||||||
public class InvalidTrackFormatException extends Exception {
|
public class InvalidTrackFormatException extends Exception {
|
||||||
// TODO: implementation
|
public InvalidTrackFormatException(String errorMessage) {
|
||||||
|
super(errorMessage);
|
||||||
|
}
|
||||||
|
public InvalidTrackFormatException() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,28 +1,37 @@
|
|||||||
package ch.zhaw.pm2.racetrack;
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
public static void main(String[] args) throws InvalidTrackFormatException, FileNotFoundException, PositionVectorNotValid {
|
public static void main(String[] args) {
|
||||||
boolean exit = false;
|
UserInterface userInterface = new UserInterface("Hello and Welcome to Racetrack by Team02-\"AngryNerds\"");
|
||||||
while (!exit) {
|
while (true) {
|
||||||
UserInterface userInterface = new UserInterface("Hello and Welcome");
|
|
||||||
Game game = new Game(userInterface);
|
Game game = new Game(userInterface);
|
||||||
int winner = 0;
|
String winner;
|
||||||
if (game.initPhase()) {
|
if (game.initPhase()) {
|
||||||
winner = game.gamePhase();
|
winner = game.gamePhase();
|
||||||
}
|
|
||||||
List<String> optionsNewGame = new ArrayList<>();
|
List<String> optionsNewGame = new ArrayList<>();
|
||||||
optionsNewGame.add("exit");
|
optionsNewGame.add("exit");
|
||||||
optionsNewGame.add("new game");
|
optionsNewGame.add("new game");
|
||||||
int selectedOption = userInterface.selectOption("The Winner was Car : " + winner + "\nStart new Game?", optionsNewGame);
|
String winnerText;
|
||||||
if(selectedOption == 0) {
|
if (winner == null) {
|
||||||
exit = true;
|
winnerText = "There was no winner.";
|
||||||
|
} else {
|
||||||
|
winnerText = "The Winner was Car " + winner;
|
||||||
}
|
}
|
||||||
|
int selectedOption = userInterface.selectOption(winnerText + "\nStart new Game?", optionsNewGame);
|
||||||
|
if (selectedOption == 0) {
|
||||||
|
userInterface.quit("Thank you and goodbye\npress enter to close the application.");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
userInterface.quit("The initialisation of the game failed. Press enter to close the application.");
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ package ch.zhaw.pm2.racetrack;
|
|||||||
* Created by mach 21.01.2020
|
* Created by mach 21.01.2020
|
||||||
*/
|
*/
|
||||||
public final class PositionVector {
|
public final class PositionVector {
|
||||||
private int x; // horizontal component (position / velocity)
|
private final int x; // horizontal component (position / velocity)
|
||||||
private int y; // vertical component (position / velocity)
|
private final int y; // vertical component (position / velocity)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enum representing a direction on the track grid.
|
* Enum representing a direction on the track grid.
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
package ch.zhaw.pm2.racetrack;
|
|
||||||
|
|
||||||
public class PositionVectorNotValid extends Throwable {
|
|
||||||
public PositionVectorNotValid(String message) {
|
|
||||||
super(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
public PositionVectorNotValid() {}
|
|
||||||
}
|
|
||||||
@@ -3,7 +3,10 @@ package ch.zhaw.pm2.racetrack;
|
|||||||
import ch.zhaw.pm2.racetrack.given.ConfigSpecification;
|
import ch.zhaw.pm2.racetrack.given.ConfigSpecification;
|
||||||
import ch.zhaw.pm2.racetrack.given.TrackSpecification;
|
import ch.zhaw.pm2.racetrack.given.TrackSpecification;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
@@ -57,18 +60,19 @@ import java.util.Scanner;
|
|||||||
public class Track implements TrackSpecification {
|
public class Track implements TrackSpecification {
|
||||||
|
|
||||||
public static final char CRASH_INDICATOR = 'X';
|
public static final char CRASH_INDICATOR = 'X';
|
||||||
private List<String> track;
|
private final List<String> track;
|
||||||
private List<Car> cars;
|
private final List<Car> cars;
|
||||||
private final List<PositionVector> finishLine;
|
private final List<PositionVector> finishLine;
|
||||||
|
private ConfigSpecification.SpaceType finishTyp;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize a Track from the given track file.
|
* Initializes the Track from the given track File including the cars.
|
||||||
*
|
* Throws an corresponding error if one of the conditions are not met to build a track.
|
||||||
* @param trackFile Reference to a file containing the track data
|
* @param trackFile Reference to a file containing the track data
|
||||||
* @throws FileNotFoundException if the given track file could not be found
|
* @throws FileNotFoundException if the given track file could not be found
|
||||||
* @throws InvalidTrackFormatException if the track file contains invalid data (no tracklines, ...)
|
* @throws InvalidTrackFormatException if the track file contains invalid data (no tracklines, ...)
|
||||||
*/
|
*/
|
||||||
public Track(File trackFile) throws FileNotFoundException, InvalidTrackFormatException, PositionVectorNotValid {
|
public Track(File trackFile) throws FileNotFoundException, InvalidTrackFormatException {
|
||||||
track = new ArrayList<>();
|
track = new ArrayList<>();
|
||||||
cars = new ArrayList<>();
|
cars = new ArrayList<>();
|
||||||
finishLine = new ArrayList<>();
|
finishLine = new ArrayList<>();
|
||||||
@@ -84,13 +88,17 @@ public class Track implements TrackSpecification {
|
|||||||
* @throws FileNotFoundException if the FilePath is invalid.
|
* @throws FileNotFoundException if the FilePath is invalid.
|
||||||
*/
|
*/
|
||||||
private void readFile(File trackFile) throws FileNotFoundException {
|
private void readFile(File trackFile) throws FileNotFoundException {
|
||||||
Scanner scanner = new Scanner(new FileInputStream(trackFile),"UTF-8");
|
Scanner scanner = new Scanner(new FileInputStream(trackFile), StandardCharsets.UTF_8);
|
||||||
while (scanner.hasNextLine()) {
|
while (scanner.hasNextLine()) {
|
||||||
track.add(scanner.nextLine());
|
track.add(scanner.nextLine());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Goes through the track ArrayList and determines the locations of each cars and initializes them at the location.
|
||||||
|
*
|
||||||
|
* @throws InvalidTrackFormatException is thrown if a car is found more than once inside the track.
|
||||||
|
*/
|
||||||
private void addCars() throws InvalidTrackFormatException {
|
private void addCars() throws InvalidTrackFormatException {
|
||||||
ConfigSpecification.SpaceType[] spaceTypes = ConfigSpecification.SpaceType.values();
|
ConfigSpecification.SpaceType[] spaceTypes = ConfigSpecification.SpaceType.values();
|
||||||
List<Character> allSpaceTypesAsChar = new ArrayList<>();
|
List<Character> allSpaceTypesAsChar = new ArrayList<>();
|
||||||
@@ -100,23 +108,28 @@ public class Track implements TrackSpecification {
|
|||||||
allSpaceTypesAsChar.add(spaceType.getValue());
|
allSpaceTypesAsChar.add(spaceType.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (int yPosition = 0; yPosition < track.size(); yPosition++) {
|
||||||
for (int j = 0; j < track.size(); j++) {
|
String line = track.get(yPosition);
|
||||||
String line = track.get(j);
|
for (int xPosition = 0; xPosition < line.length(); xPosition++) {
|
||||||
for (int i = 0; i < line.length(); i++) {
|
char possibleCarChar = line.charAt(xPosition);
|
||||||
char possibleCarChar = line.charAt(i);
|
|
||||||
if (!allSpaceTypesAsChar.contains(possibleCarChar)) {
|
if (!allSpaceTypesAsChar.contains(possibleCarChar)) {
|
||||||
if (usedSymbolForCar.contains(possibleCarChar)) {
|
if (usedSymbolForCar.contains(possibleCarChar)) {
|
||||||
throw new InvalidTrackFormatException();
|
throw new InvalidTrackFormatException();
|
||||||
}
|
}
|
||||||
usedSymbolForCar.add(possibleCarChar);
|
usedSymbolForCar.add(possibleCarChar);
|
||||||
cars.add(new Car(possibleCarChar, new PositionVector(i, j)));
|
cars.add(new Car(possibleCarChar, new PositionVector(xPosition, yPosition)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
//TODO: THIS
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines the finish line and saves it in a list, throws an Exception if none is found.
|
||||||
|
*
|
||||||
|
* @throws InvalidTrackFormatException thrown if no finish line is found
|
||||||
|
*/
|
||||||
private void findFinish() throws InvalidTrackFormatException {
|
private void findFinish() throws InvalidTrackFormatException {
|
||||||
for (int i = 0; i < track.size(); i++) {
|
for (int i = 0; i < track.size(); i++) {
|
||||||
String line = track.get(i);
|
String line = track.get(i);
|
||||||
@@ -132,7 +145,7 @@ public class Track implements TrackSpecification {
|
|||||||
if (finishLine.size() == 0) {
|
if (finishLine.size() == 0) {
|
||||||
throw new InvalidTrackFormatException();
|
throw new InvalidTrackFormatException();
|
||||||
}
|
}
|
||||||
ConfigSpecification.SpaceType finishTyp = getSpaceType(finishLine.get(0));
|
finishTyp = getSpaceType(finishLine.get(0));
|
||||||
for (PositionVector positionVector : finishLine) {
|
for (PositionVector positionVector : finishLine) {
|
||||||
if (getSpaceType(positionVector) != finishTyp) {
|
if (getSpaceType(positionVector) != finishTyp) {
|
||||||
throw new InvalidTrackFormatException();
|
throw new InvalidTrackFormatException();
|
||||||
@@ -140,6 +153,12 @@ public class Track implements TrackSpecification {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to find the PositionVector of a chosen character
|
||||||
|
*
|
||||||
|
* @param symbol char that we are looking for on the track
|
||||||
|
* @return the PositionVector of the desired char
|
||||||
|
*/
|
||||||
private PositionVector findChar(char symbol) {
|
private PositionVector findChar(char symbol) {
|
||||||
PositionVector vector = null;
|
PositionVector vector = null;
|
||||||
for (int i = 0; i < track.size(); i++) {
|
for (int i = 0; i < track.size(); i++) {
|
||||||
@@ -153,6 +172,12 @@ public class Track implements TrackSpecification {
|
|||||||
return vector;
|
return vector;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method that places a character at a chosen position
|
||||||
|
*
|
||||||
|
* @param positionVector position where char will be placed
|
||||||
|
* @param symbol char that should be placed at desired position
|
||||||
|
*/
|
||||||
private void drawCharOnTrackIndicator(PositionVector positionVector, char symbol) {
|
private void drawCharOnTrackIndicator(PositionVector positionVector, char symbol) {
|
||||||
String line = track.get(positionVector.getY());
|
String line = track.get(positionVector.getY());
|
||||||
line = line.substring(0, positionVector.getX()) + symbol + line.substring(positionVector.getX() + 1);
|
line = line.substring(0, positionVector.getX()) + symbol + line.substring(positionVector.getX() + 1);
|
||||||
@@ -160,30 +185,19 @@ public class Track implements TrackSpecification {
|
|||||||
track.add(positionVector.getY(), line);
|
track.add(positionVector.getY(), line);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void isPositionVectorOnTrack(PositionVector positionVector) throws PositionVectorNotValid {
|
|
||||||
try{
|
|
||||||
track.get(positionVector.getY()).charAt(positionVector.getX());
|
|
||||||
}catch (IndexOutOfBoundsException e) {
|
|
||||||
throw new PositionVectorNotValid();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return all Cars
|
* Method that returns the finishline as a List
|
||||||
*/
|
*
|
||||||
public List<Car> getCars() {
|
* @return finishLine List
|
||||||
return cars;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return finishLine
|
|
||||||
*/
|
*/
|
||||||
public List<PositionVector> getFinishLine() {
|
public List<PositionVector> getFinishLine() {
|
||||||
return finishLine;
|
return finishLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the track
|
* Returns the whole Track as List of Strings
|
||||||
|
*
|
||||||
|
* @return track as List of Strings
|
||||||
*/
|
*/
|
||||||
public List<String> getTrack() {
|
public List<String> getTrack() {
|
||||||
return track;
|
return track;
|
||||||
@@ -202,44 +216,56 @@ public class Track implements TrackSpecification {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class does change the Position of the car only in the track.
|
* This Method does change the Position of the car inside the track object.
|
||||||
*
|
*
|
||||||
* @param carIndex of the current car
|
* @param carIndex of the current car
|
||||||
*/
|
*/
|
||||||
private void makeCarMoveInTrack(int carIndex) {
|
private void makeCarMoveInTrack(int carIndex) {
|
||||||
PositionVector positionVector = findChar(getCarId(carIndex));
|
PositionVector carPositionVector = findChar(getCarId(carIndex));
|
||||||
//Removes the Car at Current Pos
|
//Removes the Car at Current Pos
|
||||||
drawCharOnTrackIndicator(positionVector, ConfigSpecification.SpaceType.TRACK.getValue());
|
drawCharOnTrackIndicator(carPositionVector, ConfigSpecification.SpaceType.TRACK.getValue());
|
||||||
|
|
||||||
|
//Redraw finishline if Car was on finish-line Position
|
||||||
|
for (PositionVector finishLinePositionVector : finishLine) {
|
||||||
|
if (finishLinePositionVector.equals(carPositionVector)) {
|
||||||
|
drawCharOnTrackIndicator(carPositionVector, finishTyp.getValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//Adds Car at new Position
|
//Adds Car at new Position
|
||||||
positionVector = cars.get(carIndex).nextPosition();
|
carPositionVector = cars.get(carIndex).nextPosition();
|
||||||
drawCharOnTrackIndicator(positionVector, cars.get(carIndex).getID());
|
drawCharOnTrackIndicator(carPositionVector, cars.get(carIndex).getID());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This Method will check if the Car could crash at the specific position
|
* This Method will check if the Car would crash at the specific position
|
||||||
*
|
*
|
||||||
* @param positionVector the position to check if the car could crash
|
* @param positionVector the position to check if the car would crash
|
||||||
* @return true if car would crash. Else false.
|
* @return true if crash otherwise false
|
||||||
*/
|
*/
|
||||||
public boolean willCrashAtPosition(int carIndex, PositionVector positionVector) throws PositionVectorNotValid {
|
public boolean willCrashAtPosition(int carIndex, PositionVector positionVector) {
|
||||||
isPositionVectorOnTrack(positionVector);
|
|
||||||
char charAtPosition = track.get(positionVector.getY()).charAt(positionVector.getX());
|
char charAtPosition = track.get(positionVector.getY()).charAt(positionVector.getX());
|
||||||
if (getCarId(carIndex) == charAtPosition) return false;
|
if (getCarId(carIndex) == charAtPosition) return false;
|
||||||
return (charAtPosition == ConfigSpecification.SpaceType.WALL.value);
|
return !(charAtPosition == ConfigSpecification.SpaceType.TRACK.value ||
|
||||||
|
charAtPosition == ConfigSpecification.SpaceType.FINISH_RIGHT.value ||
|
||||||
|
charAtPosition == ConfigSpecification.SpaceType.FINISH_LEFT.value ||
|
||||||
|
charAtPosition == ConfigSpecification.SpaceType.FINISH_UP.value ||
|
||||||
|
charAtPosition == ConfigSpecification.SpaceType.FINISH_DOWN.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This Method will make the Car Crash. In Track and in the Car Object
|
* This Method will mark the Car as crashed inside the track and the car Object.
|
||||||
*
|
*
|
||||||
* @param carIndex representing current Car
|
* @param carIndex of car that will be marked as crashed
|
||||||
* @param positionVector where the Crash did happen
|
* @param crashPositionVector of the location of the crash
|
||||||
*/
|
*/
|
||||||
public void carDoesCrash(int carIndex, PositionVector positionVector) throws PositionVectorNotValid{
|
public void carDoesCrash(int carIndex, PositionVector crashPositionVector) {
|
||||||
isPositionVectorOnTrack(positionVector);
|
PositionVector currentCarPosition = getCarPos(carIndex);
|
||||||
|
drawCharOnTrackIndicator(new PositionVector(currentCarPosition.getX(), currentCarPosition.getY()), ConfigSpecification.SpaceType.TRACK.getValue());
|
||||||
Car car = cars.get(carIndex);
|
Car car = cars.get(carIndex);
|
||||||
car.crash();
|
car.crash();
|
||||||
car.setPosition(positionVector);
|
car.setPosition(crashPositionVector);
|
||||||
drawCharOnTrackIndicator(new PositionVector(positionVector.getX(), positionVector.getY()), CRASH_INDICATOR);
|
drawCharOnTrackIndicator(new PositionVector(crashPositionVector.getX(), crashPositionVector.getY()), CRASH_INDICATOR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -247,11 +273,10 @@ public class Track implements TrackSpecification {
|
|||||||
* If the location is outside the track bounds, it is considered a wall.
|
* If the location is outside the track bounds, it is considered a wall.
|
||||||
*
|
*
|
||||||
* @param position The coordinates of the position to examine
|
* @param position The coordinates of the position to examine
|
||||||
* @return The type of track position at the given location
|
* @return The type of space at the desired position
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public Config.SpaceType getSpaceType(PositionVector position) {
|
public Config.SpaceType getSpaceType(PositionVector position) {
|
||||||
//isPositionVectorOnTrack(position); Should be used but we are not allowed to change method head. We don't use function anyway
|
|
||||||
char charAtPosition = track.get(position.getY()).charAt(position.getX());
|
char charAtPosition = track.get(position.getY()).charAt(position.getX());
|
||||||
ConfigSpecification.SpaceType[] spaceTypes = ConfigSpecification.SpaceType.values();
|
ConfigSpecification.SpaceType[] spaceTypes = ConfigSpecification.SpaceType.values();
|
||||||
for (ConfigSpecification.SpaceType spaceType : spaceTypes) {
|
for (ConfigSpecification.SpaceType spaceType : spaceTypes) {
|
||||||
@@ -260,13 +285,13 @@ public class Track implements TrackSpecification {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return ConfigSpecification.SpaceType.WALL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the number of cars.
|
* Return the number of cars that are located in a track
|
||||||
*
|
*
|
||||||
* @return Number of cars
|
* @return number of cars as int
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public int getCarCount() {
|
public int getCarCount() {
|
||||||
@@ -340,6 +365,119 @@ public class Track implements TrackSpecification {
|
|||||||
return currentSpace.getValue();
|
return currentSpace.getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determines all points that lie between the two position vectors including the endpoint VectorPosition using the Bresenham algorithm.
|
||||||
|
*
|
||||||
|
* @param startPosition PositionVector of the finish coordinate
|
||||||
|
* @param endPosition PositionVector of the start coordinate
|
||||||
|
* @return ArrayList containing PositionVectors of all position that are between the start and finish including the finish position.
|
||||||
|
*/
|
||||||
|
public ArrayList<PositionVector> calculatePointsOnPath(PositionVector startPosition, PositionVector endPosition) {
|
||||||
|
ArrayList<PositionVector> pathList = new ArrayList<>();
|
||||||
|
// Use Bresenham's algorithm to determine positions.
|
||||||
|
int x = startPosition.getX();
|
||||||
|
int y = startPosition.getY();
|
||||||
|
|
||||||
|
// Relative Distance (x & y axis) between end- and starting position
|
||||||
|
int diffX = endPosition.getX() - startPosition.getX();
|
||||||
|
int diffY = endPosition.getY() - startPosition.getY();
|
||||||
|
|
||||||
|
// Absolute distance (x & y axis) between end- and starting position
|
||||||
|
int distX = Math.abs(diffX);
|
||||||
|
int distY = Math.abs(diffY);
|
||||||
|
|
||||||
|
// Direction of vector on x & y axis (-1: to left/down, 0: none, +1 : to right/up)
|
||||||
|
int dirX = Integer.signum(diffX);
|
||||||
|
int dirY = Integer.signum(diffY);
|
||||||
|
|
||||||
|
// Determine which axis is the fast direction and set parallel/diagonal step values
|
||||||
|
int parallelStepX, parallelStepY;
|
||||||
|
int diagonalStepX, diagonalStepY;
|
||||||
|
int distanceSlowAxis, distanceFastAxis;
|
||||||
|
if (distX > distY) {
|
||||||
|
// x axis is the 'fast' direction
|
||||||
|
parallelStepX = dirX;
|
||||||
|
parallelStepY = 0; // parallel step only moves in x direction
|
||||||
|
diagonalStepX = dirX;
|
||||||
|
diagonalStepY = dirY; // diagonal step moves in both directions
|
||||||
|
distanceSlowAxis = distY;
|
||||||
|
distanceFastAxis = distX;
|
||||||
|
} else {
|
||||||
|
// y axis is the 'fast' direction
|
||||||
|
parallelStepX = 0;
|
||||||
|
parallelStepY = dirY; // parallel step only moves in y direction
|
||||||
|
diagonalStepX = dirX;
|
||||||
|
diagonalStepY = dirY; // diagonal step moves in both directions
|
||||||
|
distanceSlowAxis = distX;
|
||||||
|
distanceFastAxis = distY;
|
||||||
|
}
|
||||||
|
|
||||||
|
int error = distanceFastAxis / 2;
|
||||||
|
for (int step = 0; step < distanceFastAxis; step++) {
|
||||||
|
error -= distanceSlowAxis;
|
||||||
|
if (error < 0) {
|
||||||
|
error += distanceFastAxis; // correct error value to be positive again
|
||||||
|
// step into slow direction; diagonal step
|
||||||
|
x += diagonalStepX;
|
||||||
|
y += diagonalStepY;
|
||||||
|
} else {
|
||||||
|
// step into fast direction; parallel step
|
||||||
|
x += parallelStepX;
|
||||||
|
y += parallelStepY;
|
||||||
|
}
|
||||||
|
|
||||||
|
pathList.add(new PositionVector(x, y));
|
||||||
|
}
|
||||||
|
return pathList;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will check if a car is passing the finishline.
|
||||||
|
* If the car is passing the finishline in the wrong direction, the car will lose a winpoint.
|
||||||
|
* If the car is passing the finishline in the correct direction, the car will gain a winpoint.
|
||||||
|
* @param start the startposition of the car
|
||||||
|
* @param finish the expected finishpositon of the car after the move
|
||||||
|
* @return Number of new Winpoints for the current player.
|
||||||
|
*/
|
||||||
|
public int calculateNewWinPoints(PositionVector start, PositionVector finish) {
|
||||||
|
List<PositionVector> path = calculatePointsOnPath(start, finish);
|
||||||
|
for (PositionVector point : path) {
|
||||||
|
switch (getSpaceType(point)) {
|
||||||
|
case FINISH_UP:
|
||||||
|
if (start.getY() > finish.getY()) {
|
||||||
|
return 1;
|
||||||
|
} else if (start.getY() < finish.getY()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case FINISH_DOWN:
|
||||||
|
if (start.getY() < finish.getY()) {
|
||||||
|
return 1;
|
||||||
|
} else if (start.getY() > finish.getY()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case FINISH_RIGHT:
|
||||||
|
if (start.getX() < finish.getX()) {
|
||||||
|
return 1;
|
||||||
|
} else if (start.getX() > finish.getX()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case FINISH_LEFT:
|
||||||
|
if (start.getX() > finish.getX()) {
|
||||||
|
return 1;
|
||||||
|
} else if (start.getX() < finish.getX()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a String representation of the track, including the car locations.
|
* Return a String representation of the track, including the car locations.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -6,24 +6,31 @@ import org.beryx.textio.TextTerminal;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class representing the Userinterface.
|
||||||
|
* Used to get inputs from users via textio.
|
||||||
|
*
|
||||||
|
* @author Roman Schenk
|
||||||
|
*/
|
||||||
public class UserInterface {
|
public class UserInterface {
|
||||||
|
|
||||||
private final TextIO textIO;
|
private final TextIO textIO;
|
||||||
private final TextTerminal<?> textTerminal;
|
private final TextTerminal<?> textTerminal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Opens a new Terminal Window and prints the welcome Text
|
* Opens a new Terminal Window and prints the welcome Text.
|
||||||
|
*
|
||||||
* @param welcomeText The Text which will be printed after the windows is opened.
|
* @param welcomeText The Text which will be printed after the windows is opened.
|
||||||
*/
|
*/
|
||||||
public UserInterface(String welcomeText) {
|
public UserInterface(String welcomeText) {
|
||||||
textIO = TextIoFactory.getTextIO();
|
textIO = TextIoFactory.getTextIO();
|
||||||
textTerminal = textIO.getTextTerminal();
|
textTerminal = textIO.getTextTerminal();
|
||||||
|
|
||||||
textTerminal.println(welcomeText + "\n");
|
textTerminal.println(welcomeText + "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Prints the given Text in textTerminal
|
* Prints the given Text in textTerminal
|
||||||
|
*
|
||||||
* @param text The Text which should be printed.
|
* @param text The Text which should be printed.
|
||||||
*/
|
*/
|
||||||
public void printInformation(String text) {
|
public void printInformation(String text) {
|
||||||
@@ -31,8 +38,9 @@ public class UserInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* asks the user to choose one of the options given.
|
* Method which asks the user to choose one of the options given.
|
||||||
* @param text Text which is printed befor the options are printed. Example: "Select Track file:"
|
*
|
||||||
|
* @param text Text which is printed before the options are printed. Example: "Select Track file:"
|
||||||
* @param options List with the options which can be selected.
|
* @param options List with the options which can be selected.
|
||||||
* @return the list index of the selected option
|
* @return the list index of the selected option
|
||||||
*/
|
*/
|
||||||
@@ -45,7 +53,8 @@ public class UserInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gives information which player's turn it is and asks for the direction to accelerate
|
* Gives information which player is at turn and asks for the direction to accelerate or quit the game.
|
||||||
|
*
|
||||||
* @param playingCarIndex the index of the player
|
* @param playingCarIndex the index of the player
|
||||||
* @param playingCarID the ID of the player
|
* @param playingCarID the ID of the player
|
||||||
* @return the direction which is selected by the player. If null -> quit game
|
* @return the direction which is selected by the player. If null -> quit game
|
||||||
@@ -70,7 +79,8 @@ public class UserInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* returns the the associated direction Object
|
* Method which returns the associated direction Object.
|
||||||
|
*
|
||||||
* @param number the number which was typed by the user
|
* @param number the number which was typed by the user
|
||||||
* @return the associated direction. If null -> unknown number
|
* @return the associated direction. If null -> unknown number
|
||||||
*/
|
*/
|
||||||
@@ -90,13 +100,21 @@ public class UserInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* prints the given Track in the terminal
|
* Method to print the given Track in the terminal
|
||||||
|
*
|
||||||
* @param track the track which should be printed
|
* @param track the track which should be printed
|
||||||
*/
|
*/
|
||||||
public void printTrack(Track track) {
|
public void printTrack(Track track) {
|
||||||
textTerminal.println(track.toString());
|
textTerminal.println(track.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to dispose of the Textterminal
|
||||||
|
*
|
||||||
|
* @param text Output Text
|
||||||
|
*/
|
||||||
|
public void quit(String text) {
|
||||||
|
textIO.newStringInputReader().withMinLength(0).read(text);
|
||||||
|
textTerminal.dispose();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package ch.zhaw.pm2.racetrack.given;
|
package ch.zhaw.pm2.racetrack.given;
|
||||||
|
|
||||||
import ch.zhaw.pm2.racetrack.PositionVector;
|
import ch.zhaw.pm2.racetrack.PositionVector;
|
||||||
import ch.zhaw.pm2.racetrack.PositionVectorNotValid;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@@ -19,11 +18,11 @@ public interface GameSpecification {
|
|||||||
|
|
||||||
int getWinner();
|
int getWinner();
|
||||||
|
|
||||||
void doCarTurn(PositionVector.Direction acceleration) throws PositionVectorNotValid;
|
void doCarTurn(PositionVector.Direction acceleration);
|
||||||
|
|
||||||
void switchToNextActiveCar();
|
void switchToNextActiveCar();
|
||||||
|
|
||||||
List<PositionVector> calculatePath(PositionVector startPosition, PositionVector endPosition);
|
List<PositionVector> calculatePath(PositionVector startPosition, PositionVector endPosition);
|
||||||
|
|
||||||
boolean willCarCrash(int carIndex, PositionVector position) throws PositionVectorNotValid;
|
boolean willCarCrash(int carIndex, PositionVector position);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,11 +2,45 @@ package ch.zhaw.pm2.racetrack.strategy;
|
|||||||
|
|
||||||
import ch.zhaw.pm2.racetrack.PositionVector.Direction;
|
import ch.zhaw.pm2.racetrack.PositionVector.Direction;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
public class MoveListStrategy implements MoveStrategy {
|
public class MoveListStrategy implements MoveStrategy {
|
||||||
|
|
||||||
|
private final List<Direction> moveList;
|
||||||
|
private int pointer;
|
||||||
|
|
||||||
|
public MoveListStrategy(String path) throws FileNotFoundException{
|
||||||
|
moveList = new ArrayList<>();
|
||||||
|
pointer = -1;
|
||||||
|
readFile(new File(path));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void readFile(File trackFile) throws FileNotFoundException {
|
||||||
|
Scanner scanner = new Scanner(new FileInputStream(trackFile), StandardCharsets.UTF_8);
|
||||||
|
Direction[] directions = Direction.values();
|
||||||
|
while (scanner.hasNextLine()) {
|
||||||
|
String line = scanner.nextLine();
|
||||||
|
for (Direction direction : directions) {
|
||||||
|
if (direction.toString().equals(line)) {
|
||||||
|
moveList.add(direction);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Direction nextMove() {
|
public Direction nextMove() {
|
||||||
// TODO: implementation
|
pointer += 1;
|
||||||
throw new UnsupportedOperationException();
|
if (pointer < moveList.size()) {
|
||||||
|
return moveList.get(pointer);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,169 @@
|
|||||||
|
package ch.zhaw.pm2.racetrack.strategy;
|
||||||
|
|
||||||
|
import ch.zhaw.pm2.racetrack.PositionVector;
|
||||||
|
import ch.zhaw.pm2.racetrack.Track;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class PathFinderMoveStrategy implements MoveStrategy{
|
||||||
|
private Track track;
|
||||||
|
private int carIndex;
|
||||||
|
private List<PositionVector.Direction> moveList;
|
||||||
|
private int pointer;
|
||||||
|
private List<PositionVector.Direction> allDirections;
|
||||||
|
private List<State> calculatedStates;
|
||||||
|
|
||||||
|
|
||||||
|
public PathFinderMoveStrategy(Track track, int carIndex) {
|
||||||
|
this.track = track;
|
||||||
|
this.carIndex = carIndex;
|
||||||
|
allDirections = Arrays.asList(PositionVector.Direction.values());
|
||||||
|
createMoveList();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void createMoveList(){
|
||||||
|
pointer = -1;
|
||||||
|
calculatedStates = new ArrayList<>();
|
||||||
|
PossibleMove finishedMove = null;
|
||||||
|
List<PossibleMove> possibleMoves= new ArrayList<>();
|
||||||
|
for(PositionVector.Direction direction : allDirections){
|
||||||
|
PossibleMove newMove = new PossibleMove(null, direction);
|
||||||
|
if(! newMove.crashed()){
|
||||||
|
possibleMoves.add(newMove);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
while(finishedMove == null){
|
||||||
|
List<PossibleMove> newMoves = new ArrayList<>();
|
||||||
|
for(PossibleMove previousMove : possibleMoves){
|
||||||
|
for(PositionVector.Direction direction : allDirections){
|
||||||
|
PossibleMove newMove = new PossibleMove(previousMove, direction);
|
||||||
|
State newState = new State(newMove.endPosition, newMove.endVelocity);
|
||||||
|
if(! (newMove.crashed() || alreadyCalculated(newState) || finishedMove != null)){
|
||||||
|
if(newMove.finished()){
|
||||||
|
finishedMove = newMove;
|
||||||
|
} else {
|
||||||
|
calculatedStates.add(newState);
|
||||||
|
newMoves.add(newMove);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
possibleMoves = newMoves;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
moveList = finishedMove.directions;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean alreadyCalculated(State state){
|
||||||
|
for(State calculatedState: calculatedStates){
|
||||||
|
if(state.equals(calculatedState)){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class State{
|
||||||
|
PositionVector position;
|
||||||
|
PositionVector velocity;
|
||||||
|
|
||||||
|
public State(PositionVector position, PositionVector velocity){
|
||||||
|
this.position = position;
|
||||||
|
this.velocity = velocity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean equals(State compareState){
|
||||||
|
if(compareState.position.equals(position) && compareState.velocity.equals(velocity)){
|
||||||
|
return true;
|
||||||
|
} else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public class PossibleMove {
|
||||||
|
List<PositionVector.Direction> directions;
|
||||||
|
PositionVector startPosition;
|
||||||
|
PositionVector endPosition;
|
||||||
|
PositionVector endVelocity;
|
||||||
|
|
||||||
|
|
||||||
|
public PossibleMove(PossibleMove previousMove, PositionVector.Direction nextDirection){
|
||||||
|
PositionVector startVelocity;
|
||||||
|
|
||||||
|
directions = new ArrayList<>();
|
||||||
|
if(previousMove != null){
|
||||||
|
directions.addAll(previousMove.directions);
|
||||||
|
startPosition = previousMove.endPosition;
|
||||||
|
startVelocity = previousMove.endVelocity;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
startPosition = track.getCarPos(carIndex);
|
||||||
|
startVelocity = track.getCar(carIndex).getVelocity();
|
||||||
|
}
|
||||||
|
directions.add(nextDirection);
|
||||||
|
endVelocity = new PositionVector(startVelocity.getX() + nextDirection.vector.getX(), startVelocity.getY() + nextDirection.vector.getY());
|
||||||
|
endPosition = new PositionVector(startPosition.getX() + endVelocity.getX(), startPosition.getY() + endVelocity.getY());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean finished(){
|
||||||
|
if(track.calculateNewWinPoints(startPosition, endPosition) == 1){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean crashed() {
|
||||||
|
List<PositionVector> points = track.calculatePointsOnPath(startPosition, endPosition);
|
||||||
|
for(PositionVector point : points) {
|
||||||
|
if (track.willCrashAtPosition(carIndex, point)){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(track.calculateNewWinPoints(startPosition, endPosition) == -1){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PositionVector.Direction nextMove() { //TODO check for crash and recreate movelist if crash
|
||||||
|
pointer += 1;
|
||||||
|
if (pointer < moveList.size()) {
|
||||||
|
PositionVector.Direction direction = moveList.get(pointer);
|
||||||
|
PositionVector currentVelocity = track.getCarVelocity(carIndex);
|
||||||
|
PositionVector newVelocity = new PositionVector(currentVelocity.getX() + direction.vector.getX(), currentVelocity.getY() + direction.vector.getY());
|
||||||
|
PositionVector currentPosition = track.getCarPos(carIndex);
|
||||||
|
PositionVector newPosition = new PositionVector(currentPosition.getX() + newVelocity.getX(), currentPosition.getY() + newVelocity.getY());
|
||||||
|
System.out.println("currentVelocity:" + currentVelocity.getX()+ ","+ currentVelocity.getY());
|
||||||
|
System.out.println("newVelocity:" + newVelocity.getX()+ ","+ newVelocity.getY());
|
||||||
|
for(PositionVector point : track.calculatePointsOnPath(currentPosition, newPosition)){
|
||||||
|
if(track.willCrashAtPosition(carIndex, point)){
|
||||||
|
createMoveList();
|
||||||
|
pointer = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return moveList.get(pointer);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,15 +1,127 @@
|
|||||||
package ch.zhaw.pm2.racetrack.strategy;
|
package ch.zhaw.pm2.racetrack.strategy;
|
||||||
|
|
||||||
|
import ch.zhaw.pm2.racetrack.PositionVector;
|
||||||
import ch.zhaw.pm2.racetrack.PositionVector.Direction;
|
import ch.zhaw.pm2.racetrack.PositionVector.Direction;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The PathFollowerMoveStrategy class determines the next move based on a file containing points on a path.
|
* The PathFollowerMoveStrategy class determines the next move based on a file containing points on a path.
|
||||||
*/
|
*/
|
||||||
public class PathFollowerMoveStrategy implements MoveStrategy {
|
public class PathFollowerMoveStrategy implements MoveStrategy {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The current Position of the car.
|
||||||
|
*/
|
||||||
|
private PositionVector currentPosition;
|
||||||
|
/**
|
||||||
|
* The current Velocity of the car.
|
||||||
|
*/
|
||||||
|
private PositionVector currentVelocity;
|
||||||
|
/**
|
||||||
|
* List of all points on the path.
|
||||||
|
*/
|
||||||
|
private final ArrayList<PositionVector> pointList;
|
||||||
|
/**
|
||||||
|
* The index of the next point on the path.
|
||||||
|
*/
|
||||||
|
private int pointer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor to create a new PathFollowerMoveStrategy for a car.
|
||||||
|
* @param path The location where the file is saved
|
||||||
|
* @param startPosition The start position of the car
|
||||||
|
* @throws FileNotFoundException If the file with the given path does not exist.
|
||||||
|
*/
|
||||||
|
public PathFollowerMoveStrategy(String path, PositionVector startPosition) throws FileNotFoundException {
|
||||||
|
pointList = new ArrayList<>();
|
||||||
|
pointer = 0;
|
||||||
|
readFile(new File(path));
|
||||||
|
currentPosition = startPosition;
|
||||||
|
currentVelocity = new PositionVector(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to read the given File and add the points to the pointList
|
||||||
|
* @param trackFile the File Object which should be read
|
||||||
|
* @throws FileNotFoundException If the file with the given path does not exist.
|
||||||
|
*/
|
||||||
|
public void readFile(File trackFile) throws FileNotFoundException {
|
||||||
|
Scanner scanner = new Scanner(new FileInputStream(trackFile), StandardCharsets.UTF_8);
|
||||||
|
while (scanner.hasNextLine()) {
|
||||||
|
String line = scanner.nextLine();
|
||||||
|
String[] coordinates = line.split("(\\(X:|, Y:|\\))");
|
||||||
|
pointList.add(new PositionVector(Integer.parseInt(coordinates[1]), Integer.parseInt(coordinates[2])));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to select the direction for the next move.
|
||||||
|
* @return The direction for the next move. null if there are no points left in the list.
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public Direction nextMove() {
|
public Direction nextMove() {
|
||||||
// TODO: implementation
|
// if no more points in the list --> return null
|
||||||
throw new UnsupportedOperationException();
|
if (pointer >= pointList.size()) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// increase pointer variable if the next point is reached.
|
||||||
|
if (pointList.get(pointer).equals(currentPosition)) {
|
||||||
|
pointer ++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// calculate Vector from current Position to next Point
|
||||||
|
PositionVector movementVector = new PositionVector(pointList.get(pointer).getX() - currentPosition.getX(), pointList.get(pointer).getY() - currentPosition.getY());
|
||||||
|
|
||||||
|
// select acceleration for X
|
||||||
|
int accelerationX;
|
||||||
|
if((movementVector.getX() == 0 && currentVelocity.getX() > 0) || //reduce velocity to 0 if the destination coordinate is reached
|
||||||
|
(movementVector.getX() > 0 && movementVector.getX()/2.0 <= currentVelocity.getX()) || //increase velocity
|
||||||
|
(movementVector.getX() < 0 && movementVector.getX()/2.0 < currentVelocity.getX())){ //reduce velocity
|
||||||
|
accelerationX = -1;
|
||||||
|
} else if((movementVector.getX() == 0 && currentVelocity.getX() < 0) || //reduce velocity to 0 if the destination coordinate is reached
|
||||||
|
(movementVector.getX() > 0 && movementVector.getX()/2.0 > currentVelocity.getX()) || //increase velocity
|
||||||
|
(movementVector.getX() < 0 && movementVector.getX()/2.0 >= currentVelocity.getX())) { //reduce velocity
|
||||||
|
accelerationX = 1;
|
||||||
|
}
|
||||||
|
else { //no acceleration
|
||||||
|
accelerationX = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// select acceleration for Y
|
||||||
|
int accelerationY;
|
||||||
|
if((movementVector.getY() == 0 && currentVelocity.getY() > 0) || //reduce velocity to 0 if the destination coordinate is reached
|
||||||
|
(movementVector.getY() > 0 && movementVector.getY()/2.0 <= currentVelocity.getY()) || //increase velocity
|
||||||
|
(movementVector.getY() < 0 && movementVector.getY()/2.0 < currentVelocity.getY())){ //reduce velocity
|
||||||
|
accelerationY = -1;
|
||||||
|
} else if((movementVector.getY() == 0 && currentVelocity.getY() < 0) || //reduce velocity to 0 if the destination coordinate is reached
|
||||||
|
(movementVector.getY() > 0 && movementVector.getY()/2.0 > currentVelocity.getY()) || //increase velocity
|
||||||
|
(movementVector.getY() < 0 && movementVector.getY()/2.0 >= currentVelocity.getY())) { //reduce velocity
|
||||||
|
accelerationY = 1;
|
||||||
|
}
|
||||||
|
else { //no acceleration
|
||||||
|
accelerationY = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//update current Velocity and current Position with the selected acceleration
|
||||||
|
currentVelocity = new PositionVector(currentVelocity.getX() + accelerationX, currentVelocity.getY() + accelerationY);
|
||||||
|
currentPosition = new PositionVector(currentPosition.getX() + currentVelocity.getX(), currentPosition.getY() + currentVelocity.getY());
|
||||||
|
|
||||||
|
//Find Direction for acceleration
|
||||||
|
PositionVector acceleration = new PositionVector(accelerationX, accelerationY);
|
||||||
|
Direction[] directions = Direction.values();
|
||||||
|
for (Direction direction : directions) {
|
||||||
|
if (direction.vector.equals(acceleration)) {
|
||||||
|
return direction;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ import ch.zhaw.pm2.racetrack.UserInterface;
|
|||||||
* Let the user decide the next move.
|
* Let the user decide the next move.
|
||||||
*/
|
*/
|
||||||
public class UserMoveStrategy implements MoveStrategy {
|
public class UserMoveStrategy implements MoveStrategy {
|
||||||
private UserInterface userInterface;
|
private final UserInterface userInterface;
|
||||||
private int carIndex;
|
private final int carIndex;
|
||||||
private char carID;
|
private final char carID;
|
||||||
|
|
||||||
public UserMoveStrategy(UserInterface userInterface, int carIndex, char carID) {
|
public UserMoveStrategy(UserInterface userInterface, int carIndex, char carID) {
|
||||||
this.userInterface = userInterface;
|
this.userInterface = userInterface;
|
||||||
|
|||||||
@@ -0,0 +1,228 @@
|
|||||||
|
|
||||||
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
|
import ch.zhaw.pm2.racetrack.strategy.*;
|
||||||
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for Class Car
|
||||||
|
*/
|
||||||
|
class CarTest {
|
||||||
|
|
||||||
|
Car car;
|
||||||
|
|
||||||
|
// Default coordinates for tests
|
||||||
|
int DEFAULT_X = 10;
|
||||||
|
int DEFAULT_Y = 10;
|
||||||
|
char DEFAULT_ID = 'f';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new Car Object and set Position to a defined Default Position
|
||||||
|
*/
|
||||||
|
@BeforeEach
|
||||||
|
void setUp() {
|
||||||
|
car = new Car(DEFAULT_ID, new PositionVector(DEFAULT_X, DEFAULT_Y));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void getID() {
|
||||||
|
assertEquals(DEFAULT_ID, car.getID());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to check nextPosition with coordinates as int
|
||||||
|
*
|
||||||
|
* @param x the expected value for x coordinate
|
||||||
|
* @param y the expected value for y coordinate
|
||||||
|
*/
|
||||||
|
void checkNextPosition(int x, int y) {
|
||||||
|
assertEquals(new PositionVector(x, y), car.nextPosition());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - checks if the position of the car can be set and saved correctly with valid positions.
|
||||||
|
* - checks if an exception is throwed and position keeps unchanged if invalid coordinates are entered.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void setPosition() {
|
||||||
|
checkNextPosition(DEFAULT_X, DEFAULT_Y);
|
||||||
|
|
||||||
|
// List of valid Positions
|
||||||
|
List<PositionVector> validPositions = new ArrayList<>();
|
||||||
|
validPositions.add(new PositionVector(20, 20));
|
||||||
|
validPositions.add(new PositionVector(0, 0));
|
||||||
|
validPositions.add(new PositionVector(20, 0));
|
||||||
|
validPositions.add(new PositionVector(0, 20));
|
||||||
|
|
||||||
|
for (PositionVector positionVector : validPositions) {
|
||||||
|
car.setPosition(positionVector);
|
||||||
|
assertEquals(positionVector, car.nextPosition());
|
||||||
|
}
|
||||||
|
|
||||||
|
// List of invalid positions.
|
||||||
|
List<PositionVector> invalidPositions = new ArrayList<>();
|
||||||
|
invalidPositions.add(new PositionVector(0, -20));
|
||||||
|
invalidPositions.add(new PositionVector(-20, 0));
|
||||||
|
invalidPositions.add(new PositionVector(-20, -20));
|
||||||
|
|
||||||
|
for (PositionVector positionVector : invalidPositions) {
|
||||||
|
boolean exception = false;
|
||||||
|
setUp();
|
||||||
|
try {
|
||||||
|
car.setPosition(positionVector);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
exception = true;
|
||||||
|
}
|
||||||
|
assertTrue(exception);
|
||||||
|
|
||||||
|
// position should keep unchanged
|
||||||
|
checkNextPosition(DEFAULT_X, DEFAULT_Y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void checkVelocity(int x, int y) {
|
||||||
|
assertEquals(new PositionVector(x, y), car.getVelocity());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the methods accelerate, move and getVelocity are working correctly with acceleration in all directions.
|
||||||
|
* Checks also if velocity is calculated correctly if method accelerate is called a second time.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void movement() {
|
||||||
|
// add all possible directions in a List
|
||||||
|
PositionVector.Direction[] directions = PositionVector.Direction.values();
|
||||||
|
|
||||||
|
//position shouldn't be changed because velocity should be 0.
|
||||||
|
car.move();
|
||||||
|
checkNextPosition(DEFAULT_X, DEFAULT_Y);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
for (PositionVector.Direction direction1 : directions) {
|
||||||
|
for (PositionVector.Direction direction2 : directions) {
|
||||||
|
|
||||||
|
//create a new instance of Car with default coordinates and velocity 0.
|
||||||
|
setUp();
|
||||||
|
|
||||||
|
//variables to save the actual expected result of method nextPosition
|
||||||
|
int expectedNextPosX = DEFAULT_X;
|
||||||
|
int expectedNextPosY = DEFAULT_Y;
|
||||||
|
|
||||||
|
//variables to save the acutal expected result of method getVelocity
|
||||||
|
int expectedVelocityX = 0;
|
||||||
|
int expectedVelocityY = 0;
|
||||||
|
|
||||||
|
car.accelerate(direction1);
|
||||||
|
expectedVelocityX += direction1.vector.getX();
|
||||||
|
expectedVelocityY += direction1.vector.getY();
|
||||||
|
expectedNextPosX += direction1.vector.getX();
|
||||||
|
expectedNextPosY += direction1.vector.getY();
|
||||||
|
checkVelocity(expectedVelocityX, expectedVelocityY);
|
||||||
|
checkNextPosition(expectedNextPosX, expectedNextPosY);
|
||||||
|
|
||||||
|
car.move();
|
||||||
|
expectedNextPosX += direction1.vector.getX();
|
||||||
|
expectedNextPosY += direction1.vector.getY();
|
||||||
|
checkVelocity(expectedVelocityX, expectedVelocityY);
|
||||||
|
checkNextPosition(expectedNextPosX, expectedNextPosY);
|
||||||
|
|
||||||
|
|
||||||
|
car.accelerate(direction2);
|
||||||
|
expectedVelocityX += direction2.vector.getX();
|
||||||
|
expectedVelocityY += direction2.vector.getY();
|
||||||
|
expectedNextPosX += direction2.vector.getX();
|
||||||
|
expectedNextPosY += direction2.vector.getY();
|
||||||
|
checkVelocity(expectedVelocityX, expectedVelocityY);
|
||||||
|
checkNextPosition(expectedNextPosX, expectedNextPosY);
|
||||||
|
|
||||||
|
car.move();
|
||||||
|
checkVelocity(expectedVelocityX, expectedVelocityY);
|
||||||
|
expectedNextPosX += (direction1.vector.getX() + direction2.vector.getX());
|
||||||
|
expectedNextPosY += (direction1.vector.getY() + direction2.vector.getY());
|
||||||
|
checkNextPosition(expectedNextPosX, expectedNextPosY);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* test for methods crash and isCrashed. checks if state crashed is set and returned correctly.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void crash() {
|
||||||
|
assertFalse(car.isCrashed());
|
||||||
|
car.crash();
|
||||||
|
assertTrue(car.isCrashed());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* test for methods setMoveStrategy. Checks if the MoveStrategy Object is saved and returned correctly
|
||||||
|
* with all Types of MoveStrategy.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void MoveStrategy() {
|
||||||
|
MoveStrategy moveStrategy;
|
||||||
|
|
||||||
|
moveStrategy = new DoNotMoveStrategy();
|
||||||
|
car.setMoveStrategy(moveStrategy);
|
||||||
|
assertEquals(moveStrategy, car.getMoveStrategy());
|
||||||
|
|
||||||
|
try {
|
||||||
|
moveStrategy = new MoveListStrategy(".\\moves\\challenge-car-a.txt");
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
Assertions.fail();
|
||||||
|
}
|
||||||
|
car.setMoveStrategy(moveStrategy);
|
||||||
|
assertEquals(moveStrategy, car.getMoveStrategy());
|
||||||
|
|
||||||
|
try {
|
||||||
|
moveStrategy = new PathFollowerMoveStrategy(".\\follower\\challenge_points.txt", new PositionVector(0, 0));
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
car.setMoveStrategy(moveStrategy);
|
||||||
|
assertEquals(moveStrategy, car.getMoveStrategy());
|
||||||
|
|
||||||
|
moveStrategy = new UserMoveStrategy(new UserInterface("Hello"),0,'a');
|
||||||
|
car.setMoveStrategy(moveStrategy);
|
||||||
|
assertEquals(moveStrategy, car.getMoveStrategy());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for get WinPoints
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void getWinPoints() {
|
||||||
|
assertEquals(0,car.getWinPoints());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for increase WinPoints
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void increaseWinPoints() {
|
||||||
|
car.increaseWinPoints();
|
||||||
|
assertEquals(1,car.getWinPoints());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for deduct WinPoints
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
void deductWinPoints() {
|
||||||
|
car.deductWinPoints();
|
||||||
|
assertEquals(-1,car.getWinPoints());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,228 @@
|
|||||||
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
|
import ch.zhaw.pm2.racetrack.strategy.UserMoveStrategy;
|
||||||
|
import org.junit.jupiter.api.Nested;
|
||||||
|
import org.junit.jupiter.api.DisplayName;
|
||||||
|
import org.junit.jupiter.api.BeforeEach;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.junit.jupiter.api.Assertions;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.util.List;
|
||||||
|
import static ch.zhaw.pm2.racetrack.Game.NO_WINNER;
|
||||||
|
import static ch.zhaw.pm2.racetrack.PositionVector.Direction.*;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test for Class Game
|
||||||
|
*/
|
||||||
|
class GameTest {
|
||||||
|
private UserInterface userInterface;
|
||||||
|
private Game game;
|
||||||
|
private Track track;
|
||||||
|
|
||||||
|
private final String TRACK_FILE_PATH = ".\\tracks\\challenge.txt";
|
||||||
|
private final int CAR_INDEX_ONE = 0;
|
||||||
|
private final int CAR_INDEX_TWO = 1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This nested Class tests if the game gets initiatet correctly
|
||||||
|
*/
|
||||||
|
@Nested
|
||||||
|
@DisplayName("Test correct Setup")
|
||||||
|
class Setup {
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setup() {
|
||||||
|
userInterface = new UserInterface("Test");
|
||||||
|
game = new Game(userInterface);
|
||||||
|
try {
|
||||||
|
track = game.selectTrack(new File(TRACK_FILE_PATH));
|
||||||
|
} catch (InvalidTrackFormatException | FileNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
Assertions.fail();
|
||||||
|
}
|
||||||
|
game.selectMoveStrategy(track.getCar(CAR_INDEX_ONE), new UserMoveStrategy(new UserInterface("Testing"), CAR_INDEX_ONE, track.getCarId(CAR_INDEX_ONE)));
|
||||||
|
game.selectMoveStrategy(track.getCar(CAR_INDEX_TWO), new UserMoveStrategy(new UserInterface("Testing"), CAR_INDEX_TWO, track.getCarId(CAR_INDEX_TWO)));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void getCurrentCarIndex() {
|
||||||
|
Assertions.assertEquals(CAR_INDEX_ONE, game.getCurrentCarIndex());
|
||||||
|
game.switchToNextActiveCar();
|
||||||
|
Assertions.assertEquals(CAR_INDEX_TWO, game.getCurrentCarIndex());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void getCarId() {
|
||||||
|
Assertions.assertEquals('a', game.getCarId(0));
|
||||||
|
Assertions.assertEquals('b', game.getCarId(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void getCarPosition() {
|
||||||
|
Assertions.assertEquals(new PositionVector(24, 22), game.getCarPosition(0));
|
||||||
|
Assertions.assertEquals(new PositionVector(24, 24), game.getCarPosition(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void getCarVelocity() {
|
||||||
|
Assertions.assertEquals(new PositionVector(0, 0), game.getCarVelocity(0));
|
||||||
|
Assertions.assertEquals(new PositionVector(0, 0), game.getCarVelocity(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void getWinner() {
|
||||||
|
Assertions.assertEquals(NO_WINNER, game.getWinner());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void onlyOneCarLeft() {
|
||||||
|
Assertions.assertFalse(game.onlyOneCarLeft());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void carsMoving() {
|
||||||
|
Assertions.assertTrue(game.carsMoving());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This nested Class makes basic manipulation after Game init.
|
||||||
|
*/
|
||||||
|
@Nested
|
||||||
|
@DisplayName("Basic manipulation")
|
||||||
|
class Manipulation {
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setup() {
|
||||||
|
userInterface = new UserInterface("Test");
|
||||||
|
game = new Game(userInterface);
|
||||||
|
try {
|
||||||
|
track = game.selectTrack(new File(TRACK_FILE_PATH));
|
||||||
|
} catch (InvalidTrackFormatException | FileNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
Assertions.fail();
|
||||||
|
}
|
||||||
|
game.selectMoveStrategy(track.getCar(CAR_INDEX_ONE), new UserMoveStrategy(new UserInterface("Testing"), CAR_INDEX_ONE, track.getCarId(CAR_INDEX_ONE)));
|
||||||
|
game.selectMoveStrategy(track.getCar(CAR_INDEX_TWO), new UserMoveStrategy(new UserInterface("Testing"), CAR_INDEX_TWO, track.getCarId(CAR_INDEX_TWO)));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void carTurnCorrect() {
|
||||||
|
game.doCarTurn(RIGHT);
|
||||||
|
Assertions.assertEquals(new PositionVector(1, 0), game.getCarVelocity(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void carCrash() {
|
||||||
|
game.doCarTurn(PositionVector.Direction.UP);
|
||||||
|
Assertions.assertTrue(game.onlyOneCarLeft());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This nested Class tests a Playtrough. And implements a UserInterface interagtion to pretend a real player
|
||||||
|
*/
|
||||||
|
@Nested
|
||||||
|
@DisplayName("Playtrough")
|
||||||
|
class Play {
|
||||||
|
private Game game;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void winner() {
|
||||||
|
game = new Game(new interFace("Test",new Integer[]{0,2,0},new PositionVector.Direction[]{RIGHT,
|
||||||
|
RIGHT,
|
||||||
|
RIGHT,
|
||||||
|
NONE,
|
||||||
|
NONE,
|
||||||
|
NONE,
|
||||||
|
NONE,
|
||||||
|
UP,
|
||||||
|
LEFT,
|
||||||
|
LEFT,
|
||||||
|
LEFT,
|
||||||
|
LEFT,
|
||||||
|
UP_LEFT,
|
||||||
|
NONE,
|
||||||
|
RIGHT,
|
||||||
|
RIGHT,
|
||||||
|
RIGHT,
|
||||||
|
NONE,
|
||||||
|
LEFT,
|
||||||
|
DOWN_LEFT,
|
||||||
|
DOWN_LEFT,
|
||||||
|
LEFT,
|
||||||
|
LEFT,
|
||||||
|
NONE,
|
||||||
|
RIGHT,
|
||||||
|
NONE,
|
||||||
|
DOWN,
|
||||||
|
DOWN,
|
||||||
|
RIGHT,
|
||||||
|
NONE,
|
||||||
|
RIGHT,
|
||||||
|
DOWN,
|
||||||
|
NONE,
|
||||||
|
UP_RIGHT,
|
||||||
|
RIGHT,
|
||||||
|
UP_RIGHT,
|
||||||
|
UP_RIGHT,
|
||||||
|
RIGHT,
|
||||||
|
RIGHT}));
|
||||||
|
game.initPhase();
|
||||||
|
Assertions.assertEquals("a",game.gamePhase());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void crashA() {
|
||||||
|
game = new Game(new interFace("Test",new Integer[]{0,1,0},new PositionVector.Direction[]{UP}));
|
||||||
|
game.initPhase();
|
||||||
|
Assertions.assertEquals("b",game.gamePhase());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private class interFace extends UserInterface {
|
||||||
|
|
||||||
|
private PositionVector.Direction[] directions;
|
||||||
|
private Integer[] instructions;
|
||||||
|
private int pointerDir,pointerInstruction;
|
||||||
|
|
||||||
|
|
||||||
|
public interFace(String welcometxt, Integer[] instructions, PositionVector.Direction[] directions) {
|
||||||
|
super(welcometxt);
|
||||||
|
pointerDir = -1;
|
||||||
|
pointerInstruction = -1;
|
||||||
|
this.instructions = instructions;
|
||||||
|
this.directions = directions;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int selectOption(String text, List<String> options) {
|
||||||
|
pointerInstruction++;
|
||||||
|
return instructions[pointerInstruction];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void printInformation(String text) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public void printTrack(Track track) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public void quit(String text) {
|
||||||
|
}
|
||||||
|
|
||||||
|
public PositionVector.Direction selectDirection(int playingCarIndex, char playingCarID) {
|
||||||
|
pointerDir += 1;
|
||||||
|
if(pointerDir < directions.length) {
|
||||||
|
return directions[pointerDir];
|
||||||
|
}
|
||||||
|
return NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
package ch.zhaw.pm2.racetrack;
|
||||||
|
|
||||||
|
import ch.zhaw.pm2.racetrack.strategy.MoveListStrategy;
|
||||||
|
import ch.zhaw.pm2.racetrack.strategy.MoveStrategy;
|
||||||
|
import org.junit.jupiter.api.*;
|
||||||
|
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
|
||||||
|
public class MoveStrategyTest {
|
||||||
|
|
||||||
|
private MoveStrategy moveList;
|
||||||
|
|
||||||
|
@Nested
|
||||||
|
@DisplayName("MoveListStrategy")
|
||||||
|
class MoveList {
|
||||||
|
|
||||||
|
|
||||||
|
@BeforeEach
|
||||||
|
void setup() {
|
||||||
|
try {
|
||||||
|
moveList = new MoveListStrategy(".\\moves\\challenge-car-a.txt");
|
||||||
|
}catch (FileNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void checkMove() {
|
||||||
|
Assertions.assertEquals(PositionVector.Direction.RIGHT,moveList.nextMove());
|
||||||
|
for (int i = 0; i < 3; i++) {
|
||||||
|
moveList.nextMove();
|
||||||
|
}
|
||||||
|
Assertions.assertEquals(PositionVector.Direction.NONE,moveList.nextMove());
|
||||||
|
for (int i = 0; i < 40; i++) {
|
||||||
|
moveList.nextMove();
|
||||||
|
}
|
||||||
|
Assertions.assertNull(moveList.nextMove());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -21,10 +21,11 @@ public class TrackTest {
|
|||||||
File file = new File(".\\tracks\\challenge.txt");
|
File file = new File(".\\tracks\\challenge.txt");
|
||||||
try {
|
try {
|
||||||
trackObj = new Track(file);
|
trackObj = new Track(file);
|
||||||
|
} catch (FileNotFoundException | InvalidTrackFormatException e) {
|
||||||
} catch (Exception | PositionVectorNotValid e) {
|
e.printStackTrace();
|
||||||
System.err.println("Error in Test compareTrack" + e.getMessage());
|
Assertions.fail();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -79,7 +80,7 @@ public class TrackTest {
|
|||||||
track.add("##################################################");
|
track.add("##################################################");
|
||||||
track.add("##################################################");
|
track.add("##################################################");
|
||||||
Assertions.assertLinesMatch(track, trackObj.getTrack());
|
Assertions.assertLinesMatch(track, trackObj.getTrack());
|
||||||
} catch (FileNotFoundException | InvalidTrackFormatException | PositionVectorNotValid e) {
|
} catch (FileNotFoundException | InvalidTrackFormatException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -108,28 +109,19 @@ public class TrackTest {
|
|||||||
@Test
|
@Test
|
||||||
@DisplayName("Will Car Crash")
|
@DisplayName("Will Car Crash")
|
||||||
void willCarCrash() {
|
void willCarCrash() {
|
||||||
try {
|
|
||||||
//Car will Crash
|
//Car will Crash
|
||||||
Assertions.assertTrue(trackObj.willCrashAtPosition(0, new PositionVector(25, 21)));
|
Assertions.assertTrue(trackObj.willCrashAtPosition(0, new PositionVector(25, 21)));
|
||||||
//Car will not Crash and is on track
|
//Car will not Crash and is on track
|
||||||
Assertions.assertFalse(trackObj.willCrashAtPosition(0, new PositionVector(7, 22)));
|
Assertions.assertFalse(trackObj.willCrashAtPosition(0, new PositionVector(7, 22)));
|
||||||
//Car will not Crash and is on finishLine
|
//Car will not Crash and is on finishLine
|
||||||
Assertions.assertFalse(trackObj.willCrashAtPosition(0, trackObj.getFinishLine().get(0)));
|
Assertions.assertFalse(trackObj.willCrashAtPosition(0, trackObj.getFinishLine().get(0)));
|
||||||
} catch (PositionVectorNotValid positionVectorNotValid) {
|
|
||||||
positionVectorNotValid.printStackTrace();
|
|
||||||
Assertions.fail("Test should not throw error");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Make Car Crash")
|
@DisplayName("Make Car Crash")
|
||||||
void makeCarCrash() {
|
void makeCarCrash() {
|
||||||
try {
|
|
||||||
trackObj.carDoesCrash(0, new PositionVector(6, 22));
|
trackObj.carDoesCrash(0, new PositionVector(6, 22));
|
||||||
} catch (PositionVectorNotValid positionVectorNotValid) {
|
|
||||||
positionVectorNotValid.printStackTrace();
|
|
||||||
Assertions.fail("Test should not throw exception");
|
|
||||||
}
|
|
||||||
Assertions.assertEquals(Track.CRASH_INDICATOR, trackObj.getTrack().get(22).charAt(6));
|
Assertions.assertEquals(Track.CRASH_INDICATOR, trackObj.getTrack().get(22).charAt(6));
|
||||||
Assertions.assertTrue(trackObj.getCar(0).isCrashed());
|
Assertions.assertTrue(trackObj.getCar(0).isCrashed());
|
||||||
}
|
}
|
||||||
@@ -139,14 +131,13 @@ public class TrackTest {
|
|||||||
@DisplayName("Negative TestCase")
|
@DisplayName("Negative TestCase")
|
||||||
class negativeClass {
|
class negativeClass {
|
||||||
File file;
|
File file;
|
||||||
|
|
||||||
@BeforeEach
|
@BeforeEach
|
||||||
void setup() {
|
void setup() {
|
||||||
file = new File(".\\tracks\\challenge.txt");
|
file = new File(".\\tracks\\challenge.txt");
|
||||||
try {
|
try {
|
||||||
trackObj = new Track(file);
|
trackObj = new Track(file);
|
||||||
|
|
||||||
} catch (Exception | PositionVectorNotValid e) {
|
} catch (InvalidTrackFormatException | FileNotFoundException e) {
|
||||||
System.err.println("Error in Test compareTrack" + e.getMessage());
|
System.err.println("Error in Test compareTrack" + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -164,14 +155,5 @@ public class TrackTest {
|
|||||||
File testfile = new File(".\\src\\test\\InvalidTracks\\sameCar.txt");
|
File testfile = new File(".\\src\\test\\InvalidTracks\\sameCar.txt");
|
||||||
Assertions.assertThrows(InvalidTrackFormatException.class, () -> new Track(testfile));
|
Assertions.assertThrows(InvalidTrackFormatException.class, () -> new Track(testfile));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
@DisplayName("Invalid Position Vector used")
|
|
||||||
void invalidPositionVector() {
|
|
||||||
Assertions.assertThrows(PositionVectorNotValid.class, () -> trackObj.willCrashAtPosition(0, new PositionVector(100, 200)));
|
|
||||||
Assertions.assertThrows(PositionVectorNotValid.class, () -> trackObj.carDoesCrash(1,new PositionVector(200,100)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user