Browse Source

Merge of branch 'develop' to 'Julia'

remotes/origin/julia
Juliakn66 2 years ago
parent
commit
a6ae562464
  1. 27
      README.md
  2. 24
      playerconfig.json
  3. 3
      src/main/java/org/bitbiome/Boot.java
  4. 96
      src/main/java/org/bitbiome/classes/BlackJack.java
  5. 6
      src/main/java/org/bitbiome/classes/Colors.java
  6. 24
      src/main/java/org/bitbiome/classes/CreateLocations.java
  7. 37
      src/main/java/org/bitbiome/classes/InteractionLoop.java
  8. 37
      src/main/java/org/bitbiome/classes/JsonParser.java
  9. 273
      src/main/java/org/bitbiome/classes/Shop.java
  10. 11
      src/main/java/org/bitbiome/classes/TravelEngine.java
  11. 109
      src/main/java/org/bitbiome/commands/BlackJackCommand.java
  12. 4
      src/main/java/org/bitbiome/commands/CommandAPI.java
  13. 2
      src/main/java/org/bitbiome/commands/CommandListener.java
  14. 19
      src/main/java/org/bitbiome/commands/HelpCommand.java
  15. 14
      src/main/java/org/bitbiome/commands/LookaroundCommand.java
  16. 7
      src/main/java/org/bitbiome/commands/QuitCommand.java
  17. 107
      src/main/java/org/bitbiome/commands/QuizCommand.java
  18. 85
      src/main/java/org/bitbiome/commands/ShopCommand.java
  19. 15
      src/main/java/org/bitbiome/commands/TravelCommand.java
  20. 43
      src/main/java/org/bitbiome/entities/Item.java
  21. 8
      src/main/java/org/bitbiome/entities/Location.java
  22. 4
      src/main/java/org/bitbiome/entities/Mob.java
  23. 15
      src/main/java/org/bitbiome/entities/Player.java
  24. 54
      src/main/resources/gameconfig.json
  25. 25
      src/main/resources/items.json
  26. 8
      src/main/resources/playerconfig.json
  27. 83
      src/main/resources/quiz.json
  28. 44
      src/test/java/org/bitbiome/classes/BlackJackTest.java
  29. 23
      src/test/java/org/bitbiome/classes/ColorsTest.java
  30. 2
      src/test/java/org/bitbiome/commands/CollectCommandTest.java
  31. 25
      src/test/java/org/bitbiome/commands/HelpCommandTest.java
  32. 4
      src/test/java/org/bitbiome/commands/InventoryCommandTest.java
  33. 20
      src/test/java/org/bitbiome/commands/LookaroundCommandTest.java
  34. 4
      src/test/java/org/bitbiome/commands/QuitCommandTest.java
  35. 36
      src/test/java/org/bitbiome/commands/QuizCommandTest.java
  36. 87
      src/test/java/org/bitbiome/commands/ShopCommandTest.java
  37. 50
      src/test/java/org/bitbiome/entitiesTest/ItemTest.java
  38. 24
      src/test/java/org/bitbiome/entitiesTest/LocationTest.java
  39. 35
      src/test/java/org/bitbiome/entitiesTest/MobTest.java
  40. 43
      src/test/java/org/bitbiome/entitiesTest/PlayerTest.java

27
README.md

@ -0,0 +1,27 @@
*Hier Logo*
---
# BitBiome - TextAdventure
## What is the game about?
BitBiome is an exciting text adventure. Whether you want to travel through exciting biomes or measure with dangerous opponents. You can prove your knowledge in a quiz and buy new items in the shop as a reward.
BitBiome is a game for everyone who likes dangerous adventures.
## Commands:
- help
- exit / quit
- quiz
- quitquiz / canclequiz
- shop
- travel
- location
## Our developers:
- David Hermann
- Julia Kunze
- Frederike von Gruben
- Philipp Völler
- Tanja Herche
- Max Gerbeth
---
*Fulda University of Applied Sciences - Applied Computer Science (#AI1001 Papendieck)*

24
playerconfig.json

@ -0,0 +1,24 @@
{
"gold": 0,
"name": "null",
"hp": 10,
"inventory": [
{
"gold": 5,
"damage": "10",
"amount": 5,
"durability": 1000,
"name": "Holz",
"doesDamage": true
},
{
"gold": 5,
"damage": "10",
"amount": 5,
"durability": 1000,
"name": "Stein",
"doesDamage": true
}
],
"currentLocation": "Wald"
}

3
src/main/java/org/bitbiome/Boot.java

@ -26,8 +26,7 @@ public class Boot {
private Player getPlayerSave() { private Player getPlayerSave() {
String name; String name;
JsonParser jp = new JsonParser();
JSONObject playerconfig = jp.getJSONObject("playerconfig.json");
JSONObject playerconfig = JsonParser.getJSONObject("src/main/resources/playerconfig.json");
name = playerconfig.getString("name"); name = playerconfig.getString("name");
return new Player(name); return new Player(name);
} }

96
src/main/java/org/bitbiome/classes/BlackJack.java

@ -0,0 +1,96 @@
package org.bitbiome.classes;
import java.util.Random;
public class BlackJack {
public enum Entity {
PLAYER(1), BOT(2);
private int value;
private Entity(int value) {
this.value = value;
}
public int getValue() {
return value;
}
//Just for testing from some SO answers, but no use
public void setValue(int value) {
this.value = value;
}
public static Entity getEventStatusById(int id) {
Entity entity = null;
switch (id) {
case 1 -> entity = PLAYER;
case 2 -> entity = BOT;
default -> {
}
}
return entity;
}
}
private String playerName;
private int playerPoints;
private int botPoints;
private boolean playerIn;
private boolean botIn;
public BlackJack(String playerName) {
this.playerName = playerName;
this.playerPoints = 0;
this.botPoints = 0;
this.playerIn = true;
this.botIn = true;
}
public String getPlayerName(Entity entity) {
return entity == Entity.PLAYER ? playerName : "BitBiome";
}
public int getPoints(Entity entity) {
return entity == Entity.PLAYER ? playerPoints : botPoints;
}
public boolean isIn(Entity entity) {
return entity == Entity.PLAYER ? playerIn : botIn;
}
public Entity getEntity(int ID) {
return Entity.getEventStatusById(ID);
}
public void addPoints(Entity entity, int points) {
if (entity == Entity.BOT) botPoints += points;
if (entity == Entity.PLAYER) playerPoints += points;
}
public boolean botWantsToPlay() {
if (botIn) {
if (botPoints <= 10) {
return true;
} else if (botPoints <= 17) {
int r = new Random().nextInt(1, 9);
if (r <= 3) {
botIn = false;
return false;
} else {
return true;
}
} else {
botIn = false;
return false;
}
} else {
return false;
}
}
public void playerOut() {
this.playerIn = false;
}
}

6
src/main/java/org/bitbiome/classes/Colors.java

@ -2,6 +2,12 @@ package org.bitbiome.classes;
public class Colors { public class Colors {
/*
* This class has only public static mehtods
* Just add a String to your String and finalize it with the ANSI_RESET String
* The Color Codes with BG in the variable name are for the background colors
*/
public static final String ANSI_RESET = "\u001B[0m"; public static final String ANSI_RESET = "\u001B[0m";
public static final String ANSI_BLACK = "\u001B[30m"; public static final String ANSI_BLACK = "\u001B[30m";

24
src/main/java/org/bitbiome/classes/CreateLocations.java

@ -1,24 +0,0 @@
package org.bitbiome.classes;
import org.bitbiome.entities.Item;
import org.bitbiome.entities.Location;
import org.bitbiome.entities.Mob;
import java.util.ArrayList;
public class CreateLocations {
public static Location createForest() {
ArrayList<Item> items = new ArrayList<>();
ArrayList<Mob> mobs = new ArrayList<>();
String name = "Wald";
return new Location(name, mobs, items);
}
public static Location createBeach() {
ArrayList<Item> items = new ArrayList<>();
ArrayList<Mob> mobs = new ArrayList<>();
String name = "Strand";
return new Location(name, mobs, items);
}
}

37
src/main/java/org/bitbiome/classes/InteractionLoop.java

@ -10,24 +10,39 @@ public class InteractionLoop {
public void run(TravelEngine travelEngine) { public void run(TravelEngine travelEngine) {
boolean isRunning = true; boolean isRunning = true;
if (travelEngine.getPlayer().getName().equals("null")) {
System.out.println(Colors.ANSI_BLUE + "Oh, ein Fremder!\nBist du bereit für dein womöglich größtes Abenteuer?\nDann sag mir doch zunächst wie du heißt: " + Colors.ANSI_RESET);
String name = input.nextLine();
JsonParser jp = new JsonParser();
JSONObject playerconf = jp.getJSONObject("playerconfig.json");
playerconf.put("name", name);
travelEngine.getPlayer().setName(name);
jp.writeObject("playerconfig.json", playerconf);
if (playerIsNew(travelEngine.getPlayer().getName())) {
newPlayerWelcome(travelEngine);
} }
System.out.println(Colors.ANSI_BG_CYAN + Colors.ANSI_BLACK + "Willkommen zu BitBiome " + travelEngine.getPlayer().getName() + "!" + Colors.ANSI_RESET + "\n\n");
print(Colors.ANSI_BG_CYAN + Colors.ANSI_BLACK + "Willkommen zu BitBiome " + travelEngine.getPlayer().getName()
+ "!" + Colors.ANSI_RESET + "\n\n");
while (isRunning) { while (isRunning) {
String line = input.nextLine().toLowerCase(); String line = input.nextLine().toLowerCase();
if (!Boot.instance.getCmdListener().perform(line.toLowerCase().split(" ")[0], input, isRunning, line, travelEngine)) {
System.out.println("Unknown Command");
if (!Boot.instance.getCmdListener().perform(line.toLowerCase().split(" ")[0], input, isRunning, line,
travelEngine)) {
print(Colors.ANSI_RED + "Unbekannter Befehl - Siehe " + Colors.ANSI_PURPLE + "help\n"
+ Colors.ANSI_RESET);
} }
} }
} }
public boolean print(String message) {
System.out.println(message);
return true;
}
public boolean playerIsNew(String name) {
return name.equalsIgnoreCase("null");
}
public void newPlayerWelcome(TravelEngine travelEngine) {
print(Colors.ANSI_BLUE
+ "Oh, ein Fremder!\nBist du bereit für dein womöglich größtes Abenteuer?\nDann sag mir doch zunächst wie du heißt: "
+ Colors.ANSI_RESET);
String name = input.nextLine();
JSONObject playerconf = JsonParser.getJSONObject("src/main/resources/playerconfig.json");
playerconf.put("name", name);
travelEngine.getPlayer().setName(name);
JsonParser.writeObject("src/main/resources/playerconfig.json", playerconf);
}
} }

37
src/main/java/org/bitbiome/classes/JsonParser.java

@ -1,15 +1,10 @@
package org.bitbiome.classes; package org.bitbiome.classes;
import org.json.JSONObject; import org.json.JSONObject;
import org.json.JSONTokener;
import org.json.JSONWriter;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import java.io.FileReader;
public class JsonParser { public class JsonParser {
@ -28,20 +23,30 @@ public class JsonParser {
https://github.com/stleary/JSON-java https://github.com/stleary/JSON-java
*/ */
public JSONObject getJSONObject(String fileName) {
String resourceName = "./../../../" + fileName;
InputStream is = JsonParser.class.getResourceAsStream(resourceName);
if (is == null) {
throw new NullPointerException("Cannot find resource file " + resourceName);
public static JSONObject getJSONObject(String filePath) {
StringBuilder sb = null;
try {
FileReader reader = new FileReader(filePath);
char[] buffer = new char[1024];
int length;
sb = new StringBuilder();
while ((length = reader.read(buffer)) != -1) {
sb.append(buffer, 0, length);
}
reader.close();
} catch (IOException e) {
System.out.println(e);
} }
JSONTokener tokener = new JSONTokener(is);
return new JSONObject(tokener);
return new JSONObject(sb.toString());
} }
public void writeObject(String fileName, JSONObject object) {
public static void writeObject(String fileName, JSONObject object) {
String resourceName = fileName;
String resourceName = System.getProperty("user.dir") + "/src/main/resources/" + fileName;
try { try {
FileWriter fw = new FileWriter(resourceName, false); FileWriter fw = new FileWriter(resourceName, false);
fw.write(object.toString(1)); fw.write(object.toString(1));
@ -49,7 +54,5 @@ public class JsonParser {
} catch (IOException e) { } catch (IOException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
} }

273
src/main/java/org/bitbiome/classes/Shop.java

@ -0,0 +1,273 @@
package org.bitbiome.classes;
import org.bitbiome.commands.BlackJackCommand;
import org.bitbiome.commands.QuizCommand;
import org.bitbiome.entities.Item;
import org.json.JSONArray;
import org.json.JSONObject;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Random;
import java.util.Scanner;
public class Shop {
public ArrayList<Item> allItems;
public ArrayList<Item> currentShopItems;
public QuizCommand quizCommand = new QuizCommand();
public BlackJackCommand blackJackCommand = new BlackJackCommand();
public Scanner scanner;
public boolean isRunning;
public String message;
public TravelEngine travelEngine;
public Shop(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngin) {
this.scanner = scanner;
this.message = message;
this.isRunning = isRunning;
this.travelEngine = travelEngin;
try {
allItems = loadAllItems();
currentShopItems = loadPartofItems(allItems, 3);
} catch (Exception e) {
e.printStackTrace();
}
}
public boolean buy(String itemName, int amount) {
// Create File Objects
currentShopItems = loadCurrentShopItems();
File filePlayerConfig = new File("src/main/resources/playerconfig.json");
File fileGameConfig = new File("src/main/resources/gameconfig.json");
File fileItem = new File("src/main/resources/items.json");
try {
// Create JSONObjects
String content1 = new String(Files.readAllBytes(Paths.get(filePlayerConfig.toURI())), "UTF-8");
JSONObject playerConfig = new JSONObject(content1);
String content2 = new String(Files.readAllBytes(Paths.get(fileGameConfig.toURI())), "UTF-8");
JSONObject gameConfig = new JSONObject(content2);
String content3 = new String(Files.readAllBytes(Paths.get(fileItem.toURI())), "UTF-8");
JSONArray itemJSON = new JSONArray(content3);
// Test if item still available in the shop
int itemIndex = -1;
for (int i = 0; i < currentShopItems.size(); i++) {
if (currentShopItems.get(i).getName().equals(itemName)) {
itemIndex = i;
}
}
if (itemIndex == -1) {
System.out.println(
Colors.ANSI_BG_RED + Colors.ANSI_BLACK + "Dieses Item gibt es nicht!" + Colors.ANSI_RESET);
return false;
}
if (!(currentShopItems.get(itemIndex).getAmount() > 0)) {
System.out.println(
Colors.ANSI_BG_RED + Colors.ANSI_BLACK + "Es gibt zu wenige Items!" + Colors.ANSI_RESET);
return false;
}
// Test if the player has enough gold
int costs = currentShopItems.get(itemIndex).getGold() * amount;
int gold = (int) playerConfig.get("gold");
if (!(gold >= costs)) {
System.out
.println(Colors.ANSI_BG_RED + Colors.ANSI_BLACK + "Du hast zu wenig Gold!" + Colors.ANSI_RESET);
return false;
}
// Player gold subtract
playerConfig.put("gold", subtractGold(gold, costs));
// Gameconfig amount reduese
JSONArray jsonArray2 = gameConfig.getJSONArray("shopitems");
int intNewAmount;
for (int i = 0; i < jsonArray2.length(); i++) {
JSONObject tempJSON = jsonArray2.getJSONObject(i);
if (tempJSON.getString("name").equals(itemName)) {
intNewAmount = tempJSON.getInt("amount") - amount;
jsonArray2.remove(i);
tempJSON.put("amount", intNewAmount);
jsonArray2.put(tempJSON);
gameConfig.put("shopitems", jsonArray2);
JsonParser.writeObject("src/main/resources/gameconfig.json", gameConfig);
currentShopItems = loadCurrentShopItems();
break;
}
}
// Give Player the Item
JSONArray jsonArray = playerConfig.getJSONArray("inventory");
int newAmount;
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject tempJSON = jsonArray.getJSONObject(i);
if (tempJSON.getString("name").equals(itemName)) {
newAmount = tempJSON.getInt("amount") + amount;
jsonArray.remove(i);
tempJSON.put("amount", newAmount);
jsonArray.put(tempJSON);
playerConfig.put("inventory", jsonArray);
JsonParser.writeObject("src/main/resources/playerconfig.json", playerConfig);
return true;
}
}
// Item do not exist in the playerinventory
int durability = 0;
for (int i = 0; i < itemJSON.length(); i++) {
JSONObject tempJSON = itemJSON.getJSONObject(i);
if (tempJSON.getString("name").equals(itemName)) {
durability = (int) tempJSON.get("durability");
}
}
JSONObject inventory = new JSONObject();
inventory.put("name", itemName);
inventory.put("amount", 1);
inventory.put("durability", durability);
jsonArray.put(inventory);
playerConfig.put("inventory", jsonArray);
JsonParser.writeObject("src/main/resources/playerconfig.json", playerConfig);
} catch (Exception e) {
e.printStackTrace();
}
return true;
}
private ArrayList<Item> loadAllItems() {
ArrayList<Item> arrayList = new ArrayList<>();
JSONArray itemJSON = returnJSONArrayOfAllItems();
arrayList = addToList(itemJSON, arrayList, "amountShop");
return arrayList;
}
public static JSONArray returnJSONArrayOfAllItems() {
File file = new File("src/main/resources/items.json");
JSONArray itemJSON = null;
try {
String content3 = new String(Files.readAllBytes(Paths.get(file.toURI())), "UTF-8");
itemJSON = new JSONArray(content3);
} catch (Exception e) {
e.printStackTrace();
}
return itemJSON;
}
public ArrayList<Item> loadCurrentShopItems() {
ArrayList<Item> arrayList = new ArrayList<>();
JSONObject jsonObject = JsonParser.getJSONObject("src/main/resources/gameconfig.json");
JSONArray jsonArray = jsonObject.getJSONArray("shopitems");
return addToList(jsonArray, arrayList, "amount");
}
public JSONObject getItemByName(String itemName, JSONArray itemArray) {
for (int i = 0; i < itemArray.length(); i++) {
if (itemArray.getJSONObject(i).getString("name").equals(itemName)) {
return itemArray.getJSONObject(i);
}
}
return null;
}
public ArrayList<Item> addToList(JSONArray itemJSON, ArrayList<Item> arrayList, String key) {
JSONArray allItems = returnJSONArrayOfAllItems();
for (int i = 0; i < itemJSON.length(); i++) {
JSONObject tempJSON = itemJSON.getJSONObject(i);
String damage;
boolean doesDmg;
if (key.equals("amount")) {
damage = getItemByName(tempJSON.getString("name"), allItems).getString("damage");
} else {
damage = tempJSON.getString("damage");
}
doesDmg = !damage.equals("0") ? false : true;
arrayList.add(new Item(tempJSON.getString("name"), doesDmg, damage, tempJSON.getInt(key),
tempJSON.getInt("gold")));
}
return arrayList;
}
private ArrayList<Item> loadPartofItems(ArrayList<Item> alleItems, int itemCount) {
ArrayList<Item> arrayList = new ArrayList<>();
try {
File fileGameConfig = new File("src/main/resources/gameconfig.json");
String content2 = new String(Files.readAllBytes(Paths.get(fileGameConfig.toURI())), "UTF-8");
JSONObject gameConfig = new JSONObject(content2);
//JSONArray jsonArray = gameConfig.getJSONArray("shopitems");
HashSet<Integer> hashSet = new HashSet<>();
JSONArray shopitems = new JSONArray();
Random random = new Random();
while (hashSet.size() < itemCount) {
int rand = random.nextInt(alleItems.size());
if (!hashSet.contains(rand)) {
hashSet.add(rand);
arrayList.add(alleItems.get(rand));
JSONObject jsonObject = new JSONObject();
jsonObject.put("name", alleItems.get(rand).getName());
jsonObject.put("amount", alleItems.get(rand).getAmount());
jsonObject.put("gold", alleItems.get(rand).getGold());
shopitems.put(jsonObject);
}
}
// write in gameconfig.json
gameConfig.remove("shopitems");
gameConfig.put("shopitems", shopitems);
JsonParser.writeObject("src/main/resources/gameconfig.json", gameConfig);
} catch (Exception e) {
e.printStackTrace();
}
return arrayList;
}
public void itemRotation() {
try {
currentShopItems = loadPartofItems(allItems, 3);
} catch (Exception e) {
e.printStackTrace();
}
}
public void printCurrentShopItems() {
printArrayList(currentShopItems);
}
public void quiz() {
quizCommand.performCommand(scanner, isRunning, message, travelEngine);
}
public void blackJack() {
System.out.println("");
blackJackCommand.performCommand(scanner, isRunning, message, travelEngine);
System.out.println("");
}
private void printArrayList(ArrayList<Item> arrayList) {
System.out.println("");
for (int i = 0; i < arrayList.size(); i++) {
if (arrayList.get(i).getAmount() != 0) {
System.out.println(arrayList.get(i).getName() + " | Anzahl: " + arrayList.get(i).getAmount()
+ " | Kosten: " + arrayList.get(i).getGold());
}
}
System.out.println("");
}
public int subtractGold(int gold, int cost) {
return gold - cost;
}
}

11
src/main/java/org/bitbiome/classes/TravelEngine.java

@ -10,21 +10,19 @@ import java.util.ArrayList;
public class TravelEngine { public class TravelEngine {
private JSONArray locations; private JSONArray locations;
private JsonParser jp;
private Player player; private Player player;
public TravelEngine(Player player) { public TravelEngine(Player player) {
jp = new JsonParser();
locations = jp.getJSONObject("gameconfig.json").getJSONArray("locations");
locations = JsonParser.getJSONObject("src/main/resources/gameconfig.json").getJSONArray("locations");
this.player = player; this.player = player;
} }
public void travelTo(Location location) { public void travelTo(Location location) {
player.setLocation(location); player.setLocation(location);
JSONObject jObj = jp.getJSONObject("playerconfig.json");
JSONObject jObj = JsonParser.getJSONObject("src/main/resources/playerconfig.json");
jObj.put("currentLocation", location.getName()); jObj.put("currentLocation", location.getName());
jp.writeObject("playerconfig.json", jObj);
JsonParser.writeObject("src/main/resources/playerconfig.json", jObj);
} }
public Player getPlayer() { public Player getPlayer() {
@ -45,8 +43,7 @@ public class TravelEngine {
} }
public Location getLocationByName(String name) { public Location getLocationByName(String name) {
JsonParser jp = new JsonParser();
JSONObject gameconfig = jp.getJSONObject("gameconfig.json");
JSONObject gameconfig = JsonParser.getJSONObject("src/main/resources/gameconfig.json");
JSONArray locations = gameconfig.getJSONArray("locations"); JSONArray locations = gameconfig.getJSONArray("locations");
JSONObject location = null; JSONObject location = null;
if (locationExists(name)) { if (locationExists(name)) {

109
src/main/java/org/bitbiome/commands/BlackJackCommand.java

@ -0,0 +1,109 @@
package org.bitbiome.commands;
import org.bitbiome.classes.BlackJack;
import org.bitbiome.classes.TravelEngine;
import java.util.Random;
import java.util.Scanner;
public class BlackJackCommand implements CommandAPI {
private boolean over;
@Override
public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) {
System.out.println("Du hast das Spiel BlackJack gestartet. Die Spielregeln lauten wie folgt: Du und dein Gegner bekommen jede Runde Zahlen von 4 - 11. \nDerjenige, der zuerst 21 Punkte hat gewinnt. Derjenige, der über 21 Punkte hat verliert. Möchte keiner mehr Karten ziehen, gewinnt der mit dem höchsten Blatt!\nViel Spaß!");
over = false;
spielen();
}
Scanner sc;
public void spielen() {
BlackJack bj = new BlackJack("Dave");
sc = new Scanner(System.in);
BlackJack.Entity player = bj.getEntity(1);
while (!over) {
int r = new Random().nextInt(4, 11);
bj.addPoints(player, r);
System.out.println(bj.getPlayerName(player) + " hat " + r + " bekommen. Er hat insgesamt " + bj.getPoints(player) + ".");
if (bj.getPoints(player) >= 21) {
over21(player, bj);
has21(player, bj);
over = true;
break;
}
System.out.print("Weiter?");
if (player == BlackJack.Entity.BOT) {
if (bj.botWantsToPlay()) {
System.out.println("Na klar!");
} else {
System.out.println("Nope, ich bin fertig.");
}
} else {
String eingabe = sc.nextLine();
if (!eingabe.toLowerCase().startsWith("j")) {
bj.playerOut();
}
}
player = switchPlayer(player, bj);
}
}
public void over21(BlackJack.Entity player, BlackJack bj) {
if (bj.getPoints(player) > 21) {
over = true;
System.out.println(bj.getPlayerName(player) + " hat über 21 Punkte und damit verloren.");
}
}
public void has21(BlackJack.Entity player, BlackJack bj) {
if (bj.getPoints(player) == 21) {
System.out.println(bj.getPlayerName(player) + " hat gewonnen! Du hast 21 Punkte!");
over = true;
}
}
public BlackJack.Entity switchPlayer(BlackJack.Entity player, BlackJack bj) {
BlackJack.Entity BOT = BlackJack.Entity.BOT;
BlackJack.Entity PLAYER = BlackJack.Entity.PLAYER;
if (bj.isIn(BOT) || bj.isIn(PLAYER)) {
if (player == PLAYER) {
if (bj.isIn(BOT)) {
return BOT;
}
return PLAYER;
} else {
if (bj.isIn(PLAYER)) {
return PLAYER;
}
return BOT;
}
} else {
over = true;
getWinner(bj);
return null;
}
}
public void getWinner(BlackJack bj) {
BlackJack.Entity entity;
if (bj.getPoints(BlackJack.Entity.BOT) < bj.getPoints(BlackJack.Entity.PLAYER)) {
entity = BlackJack.Entity.PLAYER;
System.out.println(bj.getPlayerName(entity) + " hat gewonnen, da er mehr Punkte hat!");
} else if (bj.getPoints(BlackJack.Entity.BOT) == bj.getPoints(BlackJack.Entity.PLAYER)){
System.out.println("Es ist Gleichstand!");
} else {
entity = BlackJack.Entity.BOT;
System.out.println(bj.getPlayerName(entity) + " hat gewonnen, da er mehr Punkte hat!");
}
}
}

4
src/main/java/org/bitbiome/commands/CommandAPI.java

@ -5,6 +5,10 @@ import org.bitbiome.classes.TravelEngine;
import java.util.Scanner; import java.util.Scanner;
public interface CommandAPI { public interface CommandAPI {
// This is the command interface. Every command implements it's run method from here
// This is the API between the commands and the interaction loop/game
public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine); public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine);
} }

2
src/main/java/org/bitbiome/commands/CommandListener.java

@ -21,7 +21,7 @@ public class CommandListener {
commands.put("inventory", new InventoryCommand()); commands.put("inventory", new InventoryCommand());
commands.put("lookaround", new LookaroundCommand()); commands.put("lookaround", new LookaroundCommand());
commands.put("collect", new CollectCommand()); commands.put("collect", new CollectCommand());
commands.put("shop", new ShopCommand());
} }
public HashMap<String, CommandAPI> returnCommands() { public HashMap<String, CommandAPI> returnCommands() {

19
src/main/java/org/bitbiome/commands/HelpCommand.java

@ -18,17 +18,23 @@ public class HelpCommand implements CommandAPI {
public static String getHelpMessage() { public static String getHelpMessage() {
StringBuilder outputMessage = new StringBuilder(); StringBuilder outputMessage = new StringBuilder();
outputMessage outputMessage
.append("|______________|_______________________________|\n")
.append("|______________|_____________________________|\n")
.append("|" + Colors.ANSI_PURPLE + " Command" + Colors.ANSI_RESET + " | " + Colors.ANSI_PURPLE + "Description" + Colors.ANSI_RESET + " |\n") .append("|" + Colors.ANSI_PURPLE + " Command" + Colors.ANSI_RESET + " | " + Colors.ANSI_PURPLE + "Description" + Colors.ANSI_RESET + " |\n")
.append("|--------------|-------------------------------|\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " help" + Colors.ANSI_RESET + " | Gibt diese Nachricht aus |\n") .append("|" + Colors.ANSI_GREEN + " help" + Colors.ANSI_RESET + " | Gibt diese Nachricht aus |\n")
.append("|--------------|-------------------------------|\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " exit/quit" + Colors.ANSI_RESET + " | Beendet das Spiel |\n") .append("|" + Colors.ANSI_GREEN + " exit/quit" + Colors.ANSI_RESET + " | Beendet das Spiel |\n")
.append("|--------------|-------------------------------|\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " travel" + Colors.ANSI_RESET + " | Startet das Reise System |\n") .append("|" + Colors.ANSI_GREEN + " travel" + Colors.ANSI_RESET + " | Startet das Reise System |\n")
.append("|--------------|-------------------------------|\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " location" + Colors.ANSI_RESET + " | Gibt deine Location aus |\n") .append("|" + Colors.ANSI_GREEN + " location" + Colors.ANSI_RESET + " | Gibt deine Location aus |\n")
.append("|--------------|-------------------------------|\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " quiz" + Colors.ANSI_RESET + " | Startet das quiz im shop |\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " blackjack" + Colors.ANSI_RESET + " | Startet blackjack im shop |\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " location" + Colors.ANSI_RESET + " | Gibt deine Location aus |\n")
.append("|--------------|-----------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " inventory" + Colors.ANSI_RESET + " | Gibt dein Inventar aus |\n") .append("|" + Colors.ANSI_GREEN + " inventory" + Colors.ANSI_RESET + " | Gibt dein Inventar aus |\n")
.append("|--------------|-------------------------------|\n") .append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " collect " + Colors.ANSI_RESET + " | Gibt deine Location aus |\n") .append("|" + Colors.ANSI_GREEN + " collect " + Colors.ANSI_RESET + " | Gibt deine Location aus |\n")
@ -36,7 +42,6 @@ public class HelpCommand implements CommandAPI {
.append("|" + Colors.ANSI_GREEN + " lookaround" + Colors.ANSI_RESET + " | Zeigt dir deine Umgebung, |\n") .append("|" + Colors.ANSI_GREEN + " lookaround" + Colors.ANSI_RESET + " | Zeigt dir deine Umgebung, |\n")
.append("|" + Colors.ANSI_GREEN + " " + Colors.ANSI_RESET + " | Items und Mobs in der Nähe |\n") .append("|" + Colors.ANSI_GREEN + " " + Colors.ANSI_RESET + " | Items und Mobs in der Nähe |\n")
.append("|______________|_______________________________|\n"); .append("|______________|_______________________________|\n");
return outputMessage.toString(); return outputMessage.toString();
} }

14
src/main/java/org/bitbiome/commands/LookaroundCommand.java

@ -2,6 +2,7 @@ package org.bitbiome.commands;
import org.bitbiome.classes.Colors; import org.bitbiome.classes.Colors;
import org.bitbiome.classes.JsonParser; import org.bitbiome.classes.JsonParser;
import org.bitbiome.classes.Shop;
import org.bitbiome.classes.TravelEngine; import org.bitbiome.classes.TravelEngine;
import org.bitbiome.entities.*; import org.bitbiome.entities.*;
import org.json.JSONArray; import org.json.JSONArray;
@ -19,7 +20,7 @@ public class LookaroundCommand implements CommandAPI{
StringBuilder outputMessage = new StringBuilder(); StringBuilder outputMessage = new StringBuilder();
Location location = travelEngine.getPlayer().getLocation(); Location location = travelEngine.getPlayer().getLocation();
JsonParser jp = new JsonParser(); JsonParser jp = new JsonParser();
JSONObject gameConfig = jp.getJSONObject("gameconfig.json");
JSONObject gameConfig = jp.getJSONObject("src/main/resources/gameconfig.json");
JSONArray locations = gameConfig.getJSONArray("locations"); JSONArray locations = gameConfig.getJSONArray("locations");
JSONObject locationObject = getLocationObject(location.getName(), locations); JSONObject locationObject = getLocationObject(location.getName(), locations);
JSONArray items = locationObject.getJSONArray("items"); JSONArray items = locationObject.getJSONArray("items");
@ -52,13 +53,8 @@ public class LookaroundCommand implements CommandAPI{
public ArrayList<Item> getRandomItem(int randomNumberItems, Random random, JSONArray items, ArrayList<Item> foundItems ) { public ArrayList<Item> getRandomItem(int randomNumberItems, Random random, JSONArray items, ArrayList<Item> foundItems ) {
for (int i=0; i<randomNumberItems; i++){ for (int i=0; i<randomNumberItems; i++){
String s1 = items.getString(random.nextInt(items.length())); String s1 = items.getString(random.nextInt(items.length()));
String resourceName = "./../../../items.json";
InputStream is = JsonParser.class.getResourceAsStream(resourceName);
if (is == null) {
throw new NullPointerException("Cannot find resource file " + resourceName);
}
JSONTokener tokener = new JSONTokener(is);
JSONArray jp3 = new JSONArray(tokener);
JSONArray jp3 = Shop.returnJSONArrayOfAllItems();
JSONObject jp2= jp3.getJSONObject(0); JSONObject jp2= jp3.getJSONObject(0);
for (int j=1; j<jp3.length(); j++ ){ for (int j=1; j<jp3.length(); j++ ){
if(jp3.getJSONObject(j).getString("name").equals(s1)){ if(jp3.getJSONObject(j).getString("name").equals(s1)){
@ -66,7 +62,7 @@ public class LookaroundCommand implements CommandAPI{
break; break;
} }
} }
Item randomItem = new Item (jp2.getString("name"),jp2.getBoolean("doesDamage"),jp2.getFloat("damage"),1);
Item randomItem = new Item (jp2.getString("name"),jp2.getBoolean("doesDamage"),jp2.getString("damage"),1, jp2.getInt("gold"));
foundItems.add(randomItem); foundItems.add(randomItem);
} }
return foundItems; return foundItems;

7
src/main/java/org/bitbiome/commands/QuitCommand.java

@ -1,11 +1,16 @@
package org.bitbiome.commands; package org.bitbiome.commands;
import org.bitbiome.classes.Colors;
import org.bitbiome.classes.TravelEngine; import org.bitbiome.classes.TravelEngine;
import java.util.Scanner; import java.util.Scanner;
public class QuitCommand implements CommandAPI { public class QuitCommand implements CommandAPI {
// This command is used to end the game via command
// When the player quits the game, the game is stopped through System.exit(0)
// That means it is exited with no error status
@Override @Override
public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) { public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) {
System.out.println(getQuitMessage()); System.out.println(getQuitMessage());
@ -13,6 +18,6 @@ public class QuitCommand implements CommandAPI {
} }
public static String getQuitMessage() { public static String getQuitMessage() {
return "You quitted!";
return Colors.ANSI_BG_GREEN + "Du hast das Spiel beendet! Bis bald." + Colors.ANSI_RESET;
} }
} }

107
src/main/java/org/bitbiome/commands/QuizCommand.java

@ -0,0 +1,107 @@
package org.bitbiome.commands;
import org.bitbiome.classes.Colors;
import org.bitbiome.classes.JsonParser;
import org.json.JSONArray;
import org.json.JSONObject;
import org.bitbiome.classes.TravelEngine;
import java.util.Date;
import java.util.Random;
import java.util.Scanner;
public class QuizCommand {
private Scanner quizScanner;
public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) {
quizScanner = new Scanner(System.in);
String path = "src/main/resources/quiz.json";
JSONObject quiz = JsonParser.getJSONObject(path);
long diffTime = canPlayAgain(quiz.getLong("lastPlayed"));
if (diffTime > 0) {
print(Colors.ANSI_BG_RED + "Du darfst erst in " + diffTime / 1000 / 60 + " Minuten spielen." + Colors.ANSI_RESET + "\n");
return;
}
JSONArray fragen = quiz.getJSONArray("Quiz");
JSONObject frage = fragen.getJSONObject(random(fragen.length()));
JSONArray antworten = frage.getJSONArray("antworten");
String korrekteAntwort = frage.getString("korrekteAntwort");
print(starterMessage());
print(generateQuestion(frage, antworten));
int eingabe = quizScanner.nextInt();
if (answerIsCorrect(eingabe, korrekteAntwort, antworten)) {
int neuerStand = addGold();
print(Colors.ANSI_BG_GREEN + "Richtig! Du hast 5 Münzen verdient." + Colors.ANSI_RESET + Colors.ANSI_CYAN + "\nDein Münzstand beträgt: " + Colors.ANSI_RESET + Colors.ANSI_BLUE + neuerStand + Colors.ANSI_RESET);
} else {
print(Colors.ANSI_BG_RED + "Leider falsch... Richtig ist: " + korrekteAntwort + Colors.ANSI_RESET + "\n");
}
print(endMessage());
Date d = new Date();
long lastPlayed = d.getTime();
quiz.put("lastPlayed", lastPlayed);
JsonParser.writeObject(path, quiz);
}
public static boolean answerIsCorrect(int picked, String answer, JSONArray answers) {
return answers.getString(picked - 1).equalsIgnoreCase(answer);
}
public static String print(String message) {
System.out.println(message);
return message;
}
public static int random(int length) {
return new Random().nextInt(length);
}
public static String generateQuestion(JSONObject frage, JSONArray answers) {
StringBuilder sb = new StringBuilder();
sb.append(frage.getString("frage")).append("\n");
for (int i = 0; i < answers.length(); i++) {
sb.append(i+1).append(". ").append(answers.getString(i)).append("\n");
}
return sb.toString();
}
public static int addGold() {
String playerpath = "src/main/resources/playerconfig.json";
JSONObject playerconfig = JsonParser.getJSONObject(playerpath);
int gold = playerconfig.getInt("gold");
gold = gold + 5;
playerconfig.put("gold", gold);
JsonParser.writeObject(playerpath, playerconfig);
return gold;
}
public static long canPlayAgain(long lastPlayedTime) {
long currentTime = System.currentTimeMillis();
long minTime = lastPlayedTime + (60 * 5 * 1000);
return minTime - currentTime;
}
public static String starterMessage(){
return Colors.ANSI_CYAN + "Du hast das Quiz gestartet! Hinweis: Wähle deine Antwort, indem du die Zahl (1-4) eingibst. Ist deine Lösung richtig, erhälst du 5 Münzen. Viel Erfolg!" + Colors.ANSI_RESET + " \n";
}
public static String endMessage(){
return Colors.ANSI_CYAN + "Das Quiz ist vorbei!" + Colors.ANSI_RESET;
}
}

85
src/main/java/org/bitbiome/commands/ShopCommand.java

@ -0,0 +1,85 @@
package org.bitbiome.commands;
import org.bitbiome.classes.BlackJack;
import org.bitbiome.classes.Colors;
import org.bitbiome.classes.Shop;
import org.bitbiome.classes.TravelEngine;
import org.bitbiome.entities.Item;
import java.util.ArrayList;
import java.util.Scanner;
public class ShopCommand implements CommandAPI{
Shop shop;
BlackJack blackJack;
public ShopCommand(){
}
@Override
public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) {
shop = new Shop(scanner, isRunning, message, travelEngine);
blackJack = new BlackJack(travelEngine.getPlayer().getName());
System.out.println(Colors.ANSI_BG_YELLOW + Colors.ANSI_BLACK + "Willkommen im Shop!" + Colors.ANSI_RESET);
ArrayList<Item> currentItems = shop.loadCurrentShopItems();
//whileloop for userinputs in the shop
while (true){
System.out.println("Was willst Du hier im Shop?");
System.out.println(Colors.ANSI_CYAN + "Etwas kaufen: 1");
System.out.println("Das Quiz spielen: 2");
System.out.println("Blackjack spielen: 3");
System.out.println("Den Shop verlassen: 4" + Colors.ANSI_RESET);
String input = scanner.nextLine();
if(validInput(input)){
if(input.equals("1")){
System.out.println("Folgende Items sind im Shop: ");
for(int i = 0; i < currentItems.size(); i++){
System.out.println((i + 1) + ". " + currentItems.get(i).getName() + " | Anzahl: " + currentItems.get(i).getAmount() + " | Gold: " + currentItems.get(i).getGold());
}
System.out.println("0 Eingeben um den Shop zu verlassen.");
System.out.println("");
System.out.print("Welches Item moechtest du kaufen? ");
String itemNumber = scanner.nextLine();
if(!itemNumber.equals("0")) {
System.out.print("Anzahl eingeben: ");
String amount = scanner.nextLine();
try {
if ((Integer.parseInt(amount) <= currentItems.get(Integer.parseInt(itemNumber) - 1).getAmount()) && ((Integer.parseInt(amount) - 1) > -1)) {
boolean bool = shop.buy(currentItems.get(Integer.parseInt(itemNumber) - 1).getName(), Integer.parseInt(amount));
currentItems = shop.loadCurrentShopItems();
if (bool) {
System.out.println("");
System.out.println(Colors.ANSI_BG_GREEN + Colors.ANSI_BLACK + "Vielen Dank für Ihren Einkauf!" + Colors.ANSI_RESET);
System.out.println("");
} else {
System.out.println(Colors.ANSI_BG_RED + Colors.ANSI_BLACK + "Fehler!" + Colors.ANSI_RESET);
}
} else {
System.out.println(Colors.ANSI_BG_RED + Colors.ANSI_BLACK + "Fehler!" + Colors.ANSI_RESET);
}
}catch (Exception e){
System.out.println(Colors.ANSI_BG_RED + Colors.ANSI_BLACK + "Fehler!" + Colors.ANSI_RESET);
}
}
} else if(input.equals("2")){
shop.quiz();
} else if(input.equals("3")){
shop.blackJack();
}else if(input.equals("4")){
System.out.println(Colors.ANSI_BG_YELLOW + "Der Shop wurde verlassen!" + Colors.ANSI_RESET);
break;
}
}else {
System.out.println("Unbekannte Eingabe!");
}
}
}
public static boolean validInput(String input){
return (input.equals("1") || input.equals("2") || input.equals("3") || input.equals("4"));
}
}

15
src/main/java/org/bitbiome/commands/TravelCommand.java

@ -1,7 +1,7 @@
package org.bitbiome.commands; package org.bitbiome.commands;
import org.bitbiome.classes.Colors; import org.bitbiome.classes.Colors;
import org.bitbiome.classes.CreateLocations;
import org.bitbiome.classes.TravelEngine; import org.bitbiome.classes.TravelEngine;
import org.bitbiome.entities.Item; import org.bitbiome.entities.Item;
import org.bitbiome.entities.Location; import org.bitbiome.entities.Location;
@ -16,18 +16,23 @@ public class TravelCommand implements CommandAPI {
@Override @Override
public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) { public void performCommand(Scanner scanner, boolean isRunning, String message, TravelEngine travelEngine) {
System.out.println(Colors.ANSI_BLUE + "Du hast dein Travel-Pad gezückt. Wohin möchtest du reisen?" + Colors.ANSI_RESET);
print(Colors.ANSI_BLUE + "Du hast dein Travel-Pad gezückt. Wohin möchtest du reisen?" + Colors.ANSI_RESET);
JSONArray locations = travelEngine.getLocationList(); JSONArray locations = travelEngine.getLocationList();
for (int i = 0; i < locations.length(); i++) { for (int i = 0; i < locations.length(); i++) {
System.out.println("- " + locations.getJSONObject(i).getString("name"));
print("- " + locations.getJSONObject(i).getString("name"));
} }
String locationName = scanner.nextLine(); String locationName = scanner.nextLine();
if (travelEngine.locationExists(locationName)) { if (travelEngine.locationExists(locationName)) {
travelEngine.travelTo(new Location(locationName, new ArrayList<Mob>(), new ArrayList<Item>())); travelEngine.travelTo(new Location(locationName, new ArrayList<Mob>(), new ArrayList<Item>()));
System.out.println(Colors.ANSI_BLUE + "Du bist nun hierhin gereist: " + locationName + "\n" + Colors.ANSI_RESET);
print(Colors.ANSI_BLUE + "Du bist nun hierhin gereist: " + locationName + "\n" + Colors.ANSI_RESET);
} else { } else {
System.out.println(Colors.ANSI_BLUE + "Du hast dein Travel-Pad weggesteckt." + Colors.ANSI_RESET);
print(Colors.ANSI_BLUE + "Du hast dein Travel-Pad weggesteckt." + Colors.ANSI_RESET);
}
} }
public String print(String message) {
System.out.println(message);
return message;
} }
} }

43
src/main/java/org/bitbiome/entities/Item.java

@ -2,27 +2,49 @@ package org.bitbiome.entities;
public class Item { public class Item {
public String name;
public int amount;
public boolean doesDamage;
public float damage;
private String name;
private boolean doesDamage;
private String damage;
private int amount;
private int gold;
public Item(String name, boolean doesDamage, float damage, int amount) {
public Item(String name, boolean doesDamage, String damage, int amount, int gold) {
this.name = name; this.name = name;
this.doesDamage = doesDamage; this.doesDamage = doesDamage;
this.damage = damage; this.damage = damage;
this.amount = amount; this.amount = amount;
this.gold = gold;
}
public Item() {
} }
public String getName() { public String getName() {
return name; return name;
} }
public float getDamage() {
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
public String getDamage() {
return damage; return damage;
} }
public int getGold() {
return gold;
}
public void setGold(int gold){
this.gold = gold;
}
public boolean doesDamage() { public boolean doesDamage() {
return doesDamage; return doesDamage;
} }
@ -31,19 +53,12 @@ public class Item {
this.name = name; this.name = name;
} }
public void setDamage(float damage) {
public void setDamage(String damage) {
this.damage = damage; this.damage = damage;
} }
public void changeDoesDamage(boolean doesDamage) { public void changeDoesDamage(boolean doesDamage) {
this.doesDamage = doesDamage; this.doesDamage = doesDamage;
} }
public int getAmount(){
return amount;
}
public void setAmount(int amount){
this.amount = amount;
}
} }

8
src/main/java/org/bitbiome/entities/Location.java

@ -15,6 +15,10 @@ public class Location {
this.itemList = itemList; this.itemList = itemList;
} }
public Location() {
}
public String getName() { public String getName() {
return name; return name;
@ -28,6 +32,10 @@ public class Location {
return itemList; return itemList;
} }
public void setName(String name) {
this.name = name;
}
} }

4
src/main/java/org/bitbiome/entities/Mob.java

@ -15,6 +15,10 @@ public class Mob {
this.damage = damage; this.damage = damage;
} }
public Mob() {
}
public String getName() { public String getName() {
return name; return name;
} }

15
src/main/java/org/bitbiome/entities/Player.java

@ -1,6 +1,6 @@
package org.bitbiome.entities; package org.bitbiome.entities;
import org.bitbiome.classes.CreateLocations;
import org.bitbiome.classes.JsonParser; import org.bitbiome.classes.JsonParser;
import org.json.JSONArray; import org.json.JSONArray;
import org.json.JSONObject; import org.json.JSONObject;
@ -15,22 +15,25 @@ public class Player {
private ArrayList<Item> inventory; private ArrayList<Item> inventory;
private JsonParser jp;
public Player(String name) { public Player(String name) {
jp = new JsonParser();
this.name = name; this.name = name;
hp = 100.0F; hp = 100.0F;
location = new Location(jp.getJSONObject("playerconfig.json").getString("currentLocation"), new ArrayList<>(), new ArrayList<>());
location = new Location(JsonParser.getJSONObject("src/main/resources/playerconfig.json").getString("currentLocation"), new ArrayList<>(), new ArrayList<>());
inventory = new ArrayList<>(); inventory = new ArrayList<>();
JSONArray items = jp.getJSONObject("playerconfig.json").getJSONArray("inventory");
JSONArray items = JsonParser.getJSONObject("src/main/resources/playerconfig.json").getJSONArray("inventory");
for (int i = 0; i < items.length(); i++) { for (int i = 0; i < items.length(); i++) {
JSONObject o = items.getJSONObject(i); JSONObject o = items.getJSONObject(i);
inventory.add(new Item(o.getString("name"), o.getBoolean("doesDamage"), o.getFloat("damage"), o.getInt("amount")));
inventory.add(new Item(o.getString("name"), o.getBoolean("doesDamage"), o.getString("damage"), o.getInt("amount"), o.getInt("gold")));
} }
}
public Player() {
} }
public String getName() { public String getName() {

54
src/main/resources/gameconfig.json

@ -1,56 +1,48 @@
{ {
"shopitems": [ "shopitems": [
{ {
"name": "Holz",
"amount": 10,
"gold": 10
"gold": 1000,
"amount": 1,
"name": "Heiliges Schwert der Engel"
}, },
{ {
"name": "Heiliges Schwert der Engel",
"amount": 1,
"gold": 1000
"gold": 2,
"amount": 1500,
"name": "Stein"
}, },
{ {
"name": "Stein",
"amount": 5,
"gold": 100
"gold": 10,
"amount": 10,
"name": "Holz"
} }
], ],
"locations": [ "locations": [
{ {
"mobs": [{
"isFriendly": true,
"damage": "15",
"name": "Big Foot",
"hp": 50,
"items": ["Fell"]
}],
"name": "Wald", "name": "Wald",
"items": [ "items": [
"Holz", "Holz",
"Stein" "Stein"
],
"mobs": [
{
"name": "Big Foot",
"hp": 50,
"damage": 15,
"isFriendly": true,
"items": [
"Fell"
]
}
] ]
}, },
{ {
"mobs": [{
"isFriendly": true,
"damage": "15",
"name": "Big Foot",
"hp": 50,
"items": ["Fell"]
}],
"name": "Strand", "name": "Strand",
"items": [ "items": [
"Holz", "Holz",
"Stein" "Stein"
],
"mobs": [
{
"name": "Big Foot",
"hp": 50,
"damage": 15,
"isFriendly": true,
"items": [
"Fell"
]
}
] ]
} }
] ]

25
src/main/resources/items.json

@ -1,30 +1,39 @@
[ [
{ {
"name": "Holz", "name": "Holz",
"damage": 0,
"damage": "1-3",
"crafting": true, "crafting": true,
"doesDamage": true,
"durability": 1000, "durability": 1000,
"doesDamage": false
"amountShop": 10,
"gold": 10
}, },
{ {
"name": "Heiliges Schwert der Engel", "name": "Heiliges Schwert der Engel",
"damage": 1000,
"damage": "1000",
"crafting": false, "crafting": false,
"doesDamage": true,
"durability": 1000, "durability": 1000,
"doesDamage": true
"amountShop": 1,
"gold": 1000
}, },
{ {
"name": "Stein", "name": "Stein",
"damage": 10,
"damage": "5-10",
"crafting": true, "crafting": true,
"doesDamage": true,
"durability": 1000, "durability": 1000,
"doesDamage": true
"amountShop": 1500,
"gold": 2
}, },
{ {
"name": "Fell", "name": "Fell",
"damage": 0,
"damage": "0",
"crafting": true, "crafting": true,
"doesDamage": false,
"durability": 1000, "durability": 1000,
"doesDamage": false;
"amountShop": 500,
"gold": 100
} }
] ]

8
src/main/resources/playerconfig.json

@ -1,17 +1,19 @@
{ {
"gold": 0, "gold": 0,
"name": "null",
"name": "Julia",
"hp": 10, "hp": 10,
"inventory": [ "inventory": [
{ {
"damage": 10,
"gold": 5,
"damage": "10",
"amount": 5, "amount": 5,
"durability": 1000, "durability": 1000,
"name": "Holz", "name": "Holz",
"doesDamage": true "doesDamage": true
}, },
{ {
"damage": 10,
"gold": 5,
"damage": "10",
"amount": 5, "amount": 5,
"durability": 1000, "durability": 1000,
"name": "Stein", "name": "Stein",

83
src/main/resources/quiz.json

@ -2,203 +2,204 @@
"Quiz": [ "Quiz": [
{ {
"frage": "Wie lang ist der Äquator der Erde?", "frage": "Wie lang ist der Äquator der Erde?",
"korrekteAntwort": "40.000km",
"antworten": [ "antworten": [
"20.000m", "20.000m",
"30km", "30km",
"60.000km", "60.000km",
"40.000km" "40.000km"
],
"korrekteAntwort": "40.000km"
]
}, },
{ {
"frage": "Was ist der längste Fluss der Welt?", "frage": "Was ist der längste Fluss der Welt?",
"korrekteAntwort": "Nil",
"antworten": [ "antworten": [
"Amazonas", "Amazonas",
"Nil", "Nil",
"Rhein", "Rhein",
"Niger" "Niger"
],
"korrekteAntwort": "Nil"
]
}, },
{ {
"frage": "Wie viele Tasten hat ein Klavier?", "frage": "Wie viele Tasten hat ein Klavier?",
"korrekteAntwort": "88",
"antworten": [ "antworten": [
"74", "74",
"86", "86",
"82", "82",
"88" "88"
],
"korrekteAntwort": "88"
]
}, },
{ {
"frage": "Von wem wird der Bundespräsident gewählt?", "frage": "Von wem wird der Bundespräsident gewählt?",
"korrekteAntwort": "von der Bundesversammlung",
"antworten": [ "antworten": [
"Vom Europäischen Parlament", "Vom Europäischen Parlament",
"Vom Bundeskanzler", "Vom Bundeskanzler",
"Vom Bundestag", "Vom Bundestag",
"Von der Bundesversammlung" "Von der Bundesversammlung"
],
"korrekteAntwort": "von der Bundesversammlung"
]
}, },
{ {
"frage": "Welches Land produziert jährlich die meisten Filme?", "frage": "Welches Land produziert jährlich die meisten Filme?",
"korrekteAntwort": "Indien",
"antworten": [ "antworten": [
"USA", "USA",
"Indien", "Indien",
"Japan", "Japan",
"Nigeria" "Nigeria"
],
"korrekteAntwort": "Indien"
]
}, },
{ {
"frage": "Wie heißt der am schnellsten schwimmende Fisch auf Erden?", "frage": "Wie heißt der am schnellsten schwimmende Fisch auf Erden?",
"korrekteAntwort": "Segelfisch",
"antworten": [ "antworten": [
"Flugfisch", "Flugfisch",
"Tigerhai", "Tigerhai",
"Segelfisch", "Segelfisch",
"Windfisch" "Windfisch"
],
"korrekteAntwort": "Segelfisch"
]
}, },
{ {
"frage": "Was ist KEIN Gewächs?", "frage": "Was ist KEIN Gewächs?",
"korrekteAntwort": "Incolornis",
"antworten": [ "antworten": [
"Geranie", "Geranie",
"Moosfarn", "Moosfarn",
"Incolornis", "Incolornis",
"Strandflieder" "Strandflieder"
],
"korrekteAntwort": "Incolornis"
]
}, },
{ {
"frage": "Was nutzt eine Fledermaus zur Orientierung in der Luft?", "frage": "Was nutzt eine Fledermaus zur Orientierung in der Luft?",
"korrekteAntwort": "Ultraschall",
"antworten": [ "antworten": [
"Infrarot", "Infrarot",
"Röntgenstrahlen", "Röntgenstrahlen",
"Speichel", "Speichel",
"Ultraschall" "Ultraschall"
],
"korrekteAntwort": "Ultraschall"
]
}, },
{ {
"frage": "Von wem stammt der berühmte Satz: 'Ich denke, also bin ich'?", "frage": "Von wem stammt der berühmte Satz: 'Ich denke, also bin ich'?",
"korrekteAntwort": "René Descartes",
"antworten": [ "antworten": [
"John Fitzgerald Kennedy", "John Fitzgerald Kennedy",
"George Walker Bush", "George Walker Bush",
"René Descartes", "René Descartes",
"Julius Caesar" "Julius Caesar"
],
"korrekteAntwort": "René Descartes"
]
}, },
{ {
"frage": "Welches Lebensmittel enthält das meiste Wasser?", "frage": "Welches Lebensmittel enthält das meiste Wasser?",
"korrekteAntwort": "Gurke",
"antworten": [ "antworten": [
"Gurke", "Gurke",
"Wassermelone", "Wassermelone",
"Zitrone", "Zitrone",
"Paprika" "Paprika"
],
"korrekteAntwort": "Gurke"
]
}, },
{ {
"frage": "Welches Lebensmittel gehört im botanischen Sinne zu den Früchten?", "frage": "Welches Lebensmittel gehört im botanischen Sinne zu den Früchten?",
"korrekteAntwort": "Tomate",
"antworten": [ "antworten": [
"Möhre", "Möhre",
"Kartoffel", "Kartoffel",
"Tomate", "Tomate",
"Weißkohl" "Weißkohl"
],
"korrekteAntwort": "Tomate"
]
}, },
{ {
"frage": "Haptische Wahrnehmung beruht auf dem...?", "frage": "Haptische Wahrnehmung beruht auf dem...?",
"korrekteAntwort": "Tastsinn",
"antworten": [ "antworten": [
"Greifreflex", "Greifreflex",
"Gleichgewichtssinn", "Gleichgewichtssinn",
"Hörsinn", "Hörsinn",
"Tastsinn" "Tastsinn"
],
"korrekteAntwort": "Tastsinn"
]
}, },
{ {
"frage": "Wie nennt man den letzten Tanz einer Tanzveranstaltung?", "frage": "Wie nennt man den letzten Tanz einer Tanzveranstaltung?",
"korrekteAntwort": "Kehraus",
"antworten": [ "antworten": [
"Voraus", "Voraus",
"Garaus", "Garaus",
"Kehraus", "Kehraus",
"Durchaus" "Durchaus"
],
"korrekteAntwort": "Kehraus"
]
}, },
{ {
"frage": "Wie nennt man ein tiefes, enges Tal, durch das ein Gebirgsbach fließt?", "frage": "Wie nennt man ein tiefes, enges Tal, durch das ein Gebirgsbach fließt?",
"korrekteAntwort": "Klamm",
"antworten": [ "antworten": [
"Klamm", "Klamm",
"Feucht", "Feucht",
"Nass", "Nass",
"Schwamm" "Schwamm"
],
"korrekteAntwort": "Klamm"
]
}, },
{ {
"frage": "Wer oder was ist Gerbera?", "frage": "Wer oder was ist Gerbera?",
"korrekteAntwort": "eine Pflanze",
"antworten": [ "antworten": [
"eine europäische Landschaft", "eine europäische Landschaft",
"eine Pflanze", "eine Pflanze",
"die erste Präsidentin von Südafrika", "die erste Präsidentin von Südafrika",
"eine Stadt in Lichtenstein" "eine Stadt in Lichtenstein"
],
"korrekteAntwort": "eine Pflanze"
]
}, },
{ {
"frage": "Nach wem wurde ein Gesellschaftsanzug benannt?", "frage": "Nach wem wurde ein Gesellschaftsanzug benannt?",
"korrekteAntwort": "Gustav Stresemann",
"antworten": [ "antworten": [
"Richard von Weizsäcker", "Richard von Weizsäcker",
"Gustav Heinemann", "Gustav Heinemann",
"Jürgen Klinsmann", "Jürgen Klinsmann",
"Gustav Stresemann" "Gustav Stresemann"
],
"korrekteAntwort": "Gustav Stresemann"
]
}, },
{ {
"frage": "Was ist Speckstein?", "frage": "Was ist Speckstein?",
"korrekteAntwort": "ein besonders weicher Stein",
"antworten": [ "antworten": [
"eine Fischart, die sich als Stein tarnt", "eine Fischart, die sich als Stein tarnt",
"ein Gericht aus dem Mittelalter", "ein Gericht aus dem Mittelalter",
"eine Skulptur im Römischen Reich unter Nero", "eine Skulptur im Römischen Reich unter Nero",
"ein besonders weicher Stein" "ein besonders weicher Stein"
],
"korrekteAntwort": "ein besonders weicher Stein"
]
}, },
{ {
"frage": "In welcher Religion gibt es Gurus?", "frage": "In welcher Religion gibt es Gurus?",
"korrekteAntwort": "im Hinduismus",
"antworten": [ "antworten": [
"im Christentum", "im Christentum",
"im Hinduismus", "im Hinduismus",
"im Islam", "im Islam",
"im Judentum" "im Judentum"
],
"korrekteAntwort": "im Hinduismus"
]
}, },
{ {
"frage": "Was versteht man unter Brunsbüttel?", "frage": "Was versteht man unter Brunsbüttel?",
"korrekteAntwort": "eine Industriestadt an der Unterelbe",
"antworten": [ "antworten": [
"eine Industriestadt an der Unterelbe", "eine Industriestadt an der Unterelbe",
"einen Plakatkleber", "einen Plakatkleber",
"eine 630 Mark-Kraft", "eine 630 Mark-Kraft",
"ein Staatssekretär" "ein Staatssekretär"
],
"korrekteAntwort": "eine Industriestadt an der Unterelbe"
]
}, },
{ {
"frage": "Welcher im 11. Jahrhundert gegründeter Orden rettet und pfelgt auch noch heute Verletzte und Kranke?", "frage": "Welcher im 11. Jahrhundert gegründeter Orden rettet und pfelgt auch noch heute Verletzte und Kranke?",
"korrekteAntwort": "die Johanniter",
"antworten": [ "antworten": [
"die Dominikaner", "die Dominikaner",
"die Augustiner", "die Augustiner",
"die Zisterzienser", "die Zisterzienser",
"die Johanniter" "die Johanniter"
],
"korrekteAntwort": "die Johanniter"
}
] ]
} }
],
"lastPlayed": 1675852467225
}

44
src/test/java/org/bitbiome/classes/BlackJackTest.java

@ -0,0 +1,44 @@
package org.bitbiome.classes;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class BlackJackTest {
private static BlackJack bj;
@BeforeAll
public static void setUpTest() {
bj = new BlackJack("UnitTest");
}
@Test
public void testGetEntity() {
assertEquals(BlackJack.Entity.PLAYER, bj.getEntity(1));
}
@Test
public void testGetEntityBot() {
assertEquals(BlackJack.Entity.BOT, bj.getEntity(2));
}
@Test
public void testPlayerName() {
assertEquals("UnitTest", bj.getPlayerName(BlackJack.Entity.PLAYER));
}
@Test
public void testBotName() {
assertEquals("BitBiome", bj.getPlayerName(BlackJack.Entity.BOT));
}
@Test
public void testPlayerIsIn() {
assertTrue(bj.isIn(BlackJack.Entity.PLAYER));
}
@Test
public void testBotIsIn() {
assertTrue(bj.isIn(BlackJack.Entity.BOT));
}
}

23
src/test/java/org/bitbiome/classes/ColorsTest.java

@ -0,0 +1,23 @@
package org.bitbiome.classes;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
public class ColorsTest {
@Test
public void testResetCode() {
assertEquals("\u001B[0m", Colors.ANSI_RESET);
}
@Test
public void testBlueCode() {
assertEquals("\u001B[34m", Colors.ANSI_BLUE);
}
@Test
public void testCyanCode() {
assertEquals("\u001B[36m", Colors.ANSI_CYAN);
}
}

2
src/test/java/org/bitbiome/commands/CollectCommandTest.java

@ -14,7 +14,7 @@ public class CollectCommandTest {
public void testIncreaseAmountInPlayerConfig() { public void testIncreaseAmountInPlayerConfig() {
CollectCommand command = new CollectCommand(); CollectCommand command = new CollectCommand();
JsonParser jp = new JsonParser(); JsonParser jp = new JsonParser();
JSONObject o = jp.getJSONObject("playerconfig.json");
JSONObject o = jp.getJSONObject("src/main/resources/playerconfig.json");
JSONArray inventory = o.getJSONArray("inventory"); JSONArray inventory = o.getJSONArray("inventory");
int k = 0; int k = 0;
int initialAmount = inventory.getJSONObject(k).getInt("amount"); int initialAmount = inventory.getJSONObject(k).getInt("amount");

25
src/test/java/org/bitbiome/commands/HelpCommandTest.java

@ -1,36 +1,15 @@
package org.bitbiome.commands; package org.bitbiome.commands;
import org.bitbiome.classes.Colors;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.assertTrue;
public class HelpCommandTest { public class HelpCommandTest {
@Test @Test
public void testHelpCommand() { public void testHelpCommand() {
String helpMessage = HelpCommand.getHelpMessage(); String helpMessage = HelpCommand.getHelpMessage();
StringBuilder outputMessage = new StringBuilder();
outputMessage
.append("|______________|_______________________________|\n")
.append("|" + Colors.ANSI_PURPLE + " Command" + Colors.ANSI_RESET + " | " + Colors.ANSI_PURPLE + "Description" + Colors.ANSI_RESET + " |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " help" + Colors.ANSI_RESET + " | Gibt diese Nachricht aus |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " exit/quit" + Colors.ANSI_RESET + " | Beendet das Spiel |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " travel" + Colors.ANSI_RESET + " | Startet das Reise System |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " location" + Colors.ANSI_RESET + " | Gibt deine Location aus |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " inventory" + Colors.ANSI_RESET + " | Gibt dein Inventar aus |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " collect " + Colors.ANSI_RESET + " | Gibt deine Location aus |\n")
.append("|--------------|-------------------------------|\n")
.append("|" + Colors.ANSI_GREEN + " lookaround" + Colors.ANSI_RESET + " | Zeigt dir deine Umgebung, |\n")
.append("|" + Colors.ANSI_GREEN + " " + Colors.ANSI_RESET + " | Items und Mobs in der Nähe |\n")
.append("|______________|_______________________________|\n");
assertEquals(outputMessage.toString(), helpMessage);
assertTrue(helpMessage.contains("Command") && helpMessage.contains("Description"));
} }

4
src/test/java/org/bitbiome/commands/InventoryCommandTest.java

@ -15,8 +15,8 @@ public class InventoryCommandTest {
InventoryCommand command = new InventoryCommand(); InventoryCommand command = new InventoryCommand();
TravelEngine travelEngine = new TravelEngine(new Player("Unit")); TravelEngine travelEngine = new TravelEngine(new Player("Unit"));
ArrayList<Item> inventory = new ArrayList<>(); ArrayList<Item> inventory = new ArrayList<>();
inventory.add(new Item("Holz", false, 0,5));
inventory.add(new Item("Stein", true, 10, 5));
inventory.add(new Item("Holz", false, "0",5, 3));
inventory.add(new Item("Stein", true, "10", 5, 4));
travelEngine.getPlayer().setInventory(inventory); travelEngine.getPlayer().setInventory(inventory);
String expectedResult = Colors.ANSI_PURPLE + "Du möchtest wissen, was in deinem Inventar ist? \n" + String expectedResult = Colors.ANSI_PURPLE + "Du möchtest wissen, was in deinem Inventar ist? \n" +

20
src/test/java/org/bitbiome/commands/LookaroundCommandTest.java

@ -54,12 +54,12 @@ public class LookaroundCommandTest {
mob1.put("name", "BigFoot"); mob1.put("name", "BigFoot");
mob1.put("isFriendly", true); mob1.put("isFriendly", true);
mob1.put("hp", 10); mob1.put("hp", 10);
mob1.put("damage", 5);
mob1.put("damage", "5");
JSONObject mob2 = new JSONObject(); JSONObject mob2 = new JSONObject();
mob2.put("name", "Yeti"); mob2.put("name", "Yeti");
mob2.put("isFriendly", false); mob2.put("isFriendly", false);
mob2.put("hp", 20); mob2.put("hp", 20);
mob2.put("damage", 10);
mob2.put("damage", "10");
mobs.put(mob1); mobs.put(mob1);
mobs.put(mob2); mobs.put(mob2);
ArrayList<Mob> foundMobs = new ArrayList<>(); ArrayList<Mob> foundMobs = new ArrayList<>();
@ -76,9 +76,9 @@ public class LookaroundCommandTest {
int randomNumberItems = 3; int randomNumberItems = 3;
StringBuilder outputMessage = new StringBuilder(); StringBuilder outputMessage = new StringBuilder();
ArrayList<Item> foundItems = new ArrayList<Item>(); ArrayList<Item> foundItems = new ArrayList<Item>();
foundItems.add(new Item("Holz", true, 10, 1));
foundItems.add(new Item("Stein", true, 10, 1));
foundItems.add(new Item("Sand", false, 1, 1));
foundItems.add(new Item("Holz", true, "10", 1,2));
foundItems.add(new Item("Stein", true, "10", 1, 3));
foundItems.add(new Item("Sand", false, "1", 1,3));
command.getItemsOutput(randomNumberItems, outputMessage, foundItems); command.getItemsOutput(randomNumberItems, outputMessage, foundItems);
String expectedOutput = Colors.ANSI_BLUE+ "Huch, was liegt denn hier rum?\n" + Colors.ANSI_RESET+ String expectedOutput = Colors.ANSI_BLUE+ "Huch, was liegt denn hier rum?\n" + Colors.ANSI_RESET+
"- Holz\n- Stein\n- Sand\n" + "- Holz\n- Stein\n- Sand\n" +
@ -126,12 +126,12 @@ public class LookaroundCommandTest {
@Test @Test
void testGetRandomItem() throws Exception { void testGetRandomItem() throws Exception {
int randomNumberItems = 2; int randomNumberItems = 2;
JSONArray items = new JSONArray("[{\"name\":\"Holz\",\"doesDamage\":true,\"damage\":1.0},{\"name\":\"Stein\",\"doesDamage\":false,\"damage\":10.0}]");
JSONArray items = new JSONArray("[{\"name\":\"Holz\",\"doesDamage\":true,\"damage\":\"1.0\"},{\"name\":\"Stein\",\"doesDamage\":false,\"damage\":\"10.0\"}]");
ArrayList<Item> result = new ArrayList<>(); ArrayList<Item> result = new ArrayList<>();
for (int i = 0; i < randomNumberItems; i++) { for (int i = 0; i < randomNumberItems; i++) {
JSONObject itemObject = items.getJSONObject(i); JSONObject itemObject = items.getJSONObject(i);
Item item = new Item(itemObject.getString("name"), itemObject.getBoolean("doesDamage"), Item item = new Item(itemObject.getString("name"), itemObject.getBoolean("doesDamage"),
itemObject.getFloat("damage"), 1);
itemObject.getString("damage"), 1, 3);
result.add(item); result.add(item);
} }
assertEquals(2, result.size()); assertEquals(2, result.size());
@ -144,7 +144,7 @@ public class LookaroundCommandTest {
ArrayList<Mob> enemies = new ArrayList<Mob>(); ArrayList<Mob> enemies = new ArrayList<Mob>();
enemies.add(new Mob("Bigfoot", false, 50,20)); enemies.add(new Mob("Bigfoot", false, 50,20));
ArrayList<Item> items = new ArrayList<Item>(); ArrayList<Item> items = new ArrayList<Item>();
items.add(new Item("Holz",true, 10, 1));
items.add(new Item("Holz",true, "10", 1,3));
Location location = new Location("Wald",enemies, items); Location location = new Location("Wald",enemies, items);
StringBuilder outputMessage = new StringBuilder(); StringBuilder outputMessage = new StringBuilder();
@ -163,7 +163,7 @@ public class LookaroundCommandTest {
ArrayList<Mob> enemies = new ArrayList<Mob>(); ArrayList<Mob> enemies = new ArrayList<Mob>();
enemies.add(new Mob("Bigfoot", false, 50,20)); enemies.add(new Mob("Bigfoot", false, 50,20));
ArrayList<Item> items = new ArrayList<Item>(); ArrayList<Item> items = new ArrayList<Item>();
items.add(new Item("Holz",true, 10, 1));
items.add(new Item("Holz",true, "10", 1, 5));
Location location = new Location("Strand",enemies, items); Location location = new Location("Strand",enemies, items);
StringBuilder outputMessage = new StringBuilder(); StringBuilder outputMessage = new StringBuilder();
@ -182,7 +182,7 @@ public class LookaroundCommandTest {
ArrayList<Mob> enemies = new ArrayList<Mob>(); ArrayList<Mob> enemies = new ArrayList<Mob>();
enemies.add(new Mob("unknown", false, 50,20)); enemies.add(new Mob("unknown", false, 50,20));
ArrayList<Item> items = new ArrayList<Item>(); ArrayList<Item> items = new ArrayList<Item>();
items.add(new Item("unknown",true, 10, 1));
items.add(new Item("unknown",true, "10", 1, 5));
Location location = new Location("Unknown",enemies, items); Location location = new Location("Unknown",enemies, items);
StringBuilder outputMessage = new StringBuilder(); StringBuilder outputMessage = new StringBuilder();

4
src/test/java/org/bitbiome/commands/QuitCommandTest.java

@ -2,14 +2,14 @@ package org.bitbiome.commands;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
public class QuitCommandTest { public class QuitCommandTest {
@Test @Test
public void testQuitCommand() { public void testQuitCommand() {
assertEquals("You quitted!", QuitCommand.getQuitMessage());
assertTrue(QuitCommand.getQuitMessage().contains("Spiel beendet!"));
} }
} }

36
src/test/java/org/bitbiome/commands/QuizCommandTest.java

@ -0,0 +1,36 @@
package org.bitbiome.commands;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class QuizCommandTest {
@Test
public void testStartMessage() {
assertTrue(QuizCommand.starterMessage().contains("Du hast das Quiz gestartet!"));
}
@Test
public void testEndMessage() {
assertTrue(QuizCommand.endMessage().contains("Das Quiz ist vorbei!"));
}
@Test
public void testLastTimePlayed() {
long lastTimePlayed = System.currentTimeMillis();
assertTrue(QuizCommand.canPlayAgain(lastTimePlayed) < lastTimePlayed);
}
@Test
public void testRandomNumberGenerator() {
int getRandom = QuizCommand.random(3);
assertTrue(getRandom >= 0 && getRandom <= 3);
}
@Test
public void testPrintFunction() {
assertEquals("I am a unit test!", QuizCommand.print("I am a unit test!"));
}
}

87
src/test/java/org/bitbiome/commands/ShopCommandTest.java

@ -0,0 +1,87 @@
package org.bitbiome.commands;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.bitbiome.classes.Shop;
public class ShopCommandTest {
final Shop shop = new Shop(null, true, null, null);
@Test
public void testValidInput1(){
boolean expected = true;
boolean result = ShopCommand.validInput("1");
assertEquals(expected, result);
}
@Test
public void testValidInput2(){
boolean expected = true;
boolean result = ShopCommand.validInput("2");
assertEquals(expected, result);
}
@Test
public void testValidInput3(){
boolean expected = true;
boolean result = ShopCommand.validInput("3");
assertEquals(expected, result);
}
@Test
public void testValidInput4(){
boolean expected = true;
boolean result = ShopCommand.validInput("4");
assertEquals(expected, result);
}
@Test
public void testSubtractGold(){
int expected = 1;
int result = shop.subtractGold(3, 2);
assertEquals(expected, result);
}
@Test
public void testSubtractGold1(){
int expected = 10;
int result = shop.subtractGold(12, 2);
assertEquals(expected, result);
}
@Test
public void testSubtractGold2(){
int expected = 4;
int result = shop.subtractGold(7, 3);
assertEquals(expected, result);
}
@Test
public void testSubtractGold3(){
int expected = 5;
int result = shop.subtractGold(10, 5);
assertEquals(expected, result);
}
@Test
public void testSubtractGold4(){
int expected = 1;
int result = shop.subtractGold(2, 1);
assertEquals(expected, result);
}
@Test
public void testSubtractGold5(){
int expected = 10;
int result = shop.subtractGold(20, 10);
assertEquals(expected, result);
}
@Test
public void testSubtractGold6(){
int expected = 12;
int result = shop.subtractGold(24, 12);
assertEquals(expected, result);
}
@Test
public void testSubtractGold7(){
int expected = 15;
int result = shop.subtractGold(31, 16);
assertEquals(expected, result);
}
}

50
src/test/java/org/bitbiome/entitiesTest/ItemTest.java

@ -0,0 +1,50 @@
package org.bitbiome.entitiesTest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assumptions.assumeTrue;
import org.bitbiome.entities.Item;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
public class ItemTest {
private static Item item;
@BeforeAll
public static void setItem() {
item = new Item();
item.setName("Unit");
item.setDamage("12,5");
item.changeDoesDamage(true);
item.setAmount(5);
item.setGold(100);
}
@Test
public void testGetName() {
assertEquals("Unit", item.getName());
}
@Test
public void testGetDamage() {
assertEquals("12,5", item.getDamage());
}
@Test
public void testDoesDamage() {
boolean doesDamage = item.doesDamage();
assumeTrue(item.getDamage().equals("12,5"));
assumeTrue(doesDamage);
}
@Test
public void testGetAmount() {
assumeTrue(item.getAmount() == 5);
}
@Test
public void testGetGold() {
assumeTrue(item.getGold() == 100);
}
}

24
src/test/java/org/bitbiome/entitiesTest/LocationTest.java

@ -0,0 +1,24 @@
package org.bitbiome.entitiesTest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.bitbiome.entities.Location;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
public class LocationTest {
private static Location location;
@BeforeAll
public static void setLocation() {
location = new Location();
location.setName("NewUnitWorld");
}
@Test
public void testLocationName() {
assertEquals("NewUnitWorld", location.getName());
}
}

35
src/test/java/org/bitbiome/entitiesTest/MobTest.java

@ -0,0 +1,35 @@
package org.bitbiome.entitiesTest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.bitbiome.entities.Mob;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
public class MobTest {
private static Mob mob;
@BeforeAll
public static void setMob() {
mob = new Mob();
mob.setFriendly(true);
mob.setDamage(0F);
mob.setHp(561.45F);
}
@Test
public void testFriendly() {
assertEquals(mob.isFriendly(), true);
}
@Test
public void testDamage() {
assertEquals(mob.getDamage(), 0F);
}
@Test
public void testHp() {
assertEquals(mob.getHp(), 561.45F);
}
}

43
src/test/java/org/bitbiome/entitiesTest/PlayerTest.java

@ -0,0 +1,43 @@
package org.bitbiome.entitiesTest;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.bitbiome.entities.Location;
import org.bitbiome.entities.Player;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
public class PlayerTest {
private static Player player;
private static Location location;
@BeforeAll
public static void setPlayer() {
player = new Player();
location = new Location();
location.setName("NewUnitWorld");
player.setName("UnitPlayer");
player.setLocation(location);
player.setHp(100F);
}
@Test
public void testPlayerName() {
assertEquals("UnitPlayer", player.getName());
}
@Test
public void testPlayerHp() {
assertEquals(100F, player.getHp());
}
@Test
public void testLocationNameFromPlayer() {
assertEquals("NewUnitWorld", player.getLocation().getName());
}
}
Loading…
Cancel
Save