diff --git a/README.md b/README.md index 4a62372..4741600 100644 --- a/README.md +++ b/README.md @@ -16,23 +16,23 @@ If a cell doesn't eat enough, it will first stand still and after a while it die ### Early Screen -![Early Screen](etc/img/screen1.png) +![Early Screen](src/main/resources/img/screen1.png) ### Later Screen -![Later Screen](etc/img/screen2.png) +![Later Screen](src/main/resources/img/screen2.png) ### Explanation | Color | Explanation | |-------|-------------| -| ![](etc/img/black.png) | water | -| ![](etc/img/green.png) | food | -| ![](etc/img/blue.png) | cell is young | -| ![](etc/img/yellow.png) | cell is fat enough to reproduce* | -| ![](etc/img/red.png) | cell is old enough to reproduce* | -| ![](etc/img/light_gray.png) | cell is hungry and waiting for food or death | -| ![](etc/img/dark_gray.png) | cell is old and waiting for death | +| ![](src/main/resources/img/black.png) | water | +| ![](src/main/resources/img/green.png) | food | +| ![](src/main/resources/img/blue.png) | cell is young | +| ![](src/main/resources/img/yellow.png) | cell is fat enough to reproduce* | +| ![](src/main/resources/img/red.png) | cell is old enough to reproduce* | +| ![](src/main/resources/img/light_gray.png) | cell is hungry and waiting for food or death | +| ![](src/main/resources/img/dark_gray.png) | cell is old and waiting for death | |   | * (if cell is fat and old enough for reproduction it splits and changes the childrens DNA) | @@ -47,7 +47,7 @@ If a cell doesn't eat enough, it will first stand still and after a while it die ``` git clone https://github.com/thomaswoehlke/simulated-evolution.git cd simulated-evolution -./gradlw run +./gradlew clean shadowJar runShadow ``` ## Run the Applet Test diff --git a/run.sh b/run.sh index 9cf5a01..7088eda 100755 --- a/run.sh +++ b/run.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -./gradlew clean run +./gradlew clean shadowJar runShadow diff --git a/etc/img/Class_Model.jpg b/src/main/resources/img/Class_Model.jpg similarity index 100% rename from etc/img/Class_Model.jpg rename to src/main/resources/img/Class_Model.jpg diff --git a/etc/img/black.png b/src/main/resources/img/black.png similarity index 100% rename from etc/img/black.png rename to src/main/resources/img/black.png diff --git a/etc/img/blue.png b/src/main/resources/img/blue.png similarity index 100% rename from etc/img/blue.png rename to src/main/resources/img/blue.png diff --git a/etc/img/dark_gray.png b/src/main/resources/img/dark_gray.png similarity index 100% rename from etc/img/dark_gray.png rename to src/main/resources/img/dark_gray.png diff --git a/etc/img/green.png b/src/main/resources/img/green.png similarity index 100% rename from etc/img/green.png rename to src/main/resources/img/green.png diff --git a/etc/img/light_gray.png b/src/main/resources/img/light_gray.png similarity index 100% rename from etc/img/light_gray.png rename to src/main/resources/img/light_gray.png diff --git a/etc/img/phasenraum_logo.gif b/src/main/resources/img/phasenraum_logo.gif similarity index 100% rename from etc/img/phasenraum_logo.gif rename to src/main/resources/img/phasenraum_logo.gif diff --git a/etc/img/red.png b/src/main/resources/img/red.png similarity index 100% rename from etc/img/red.png rename to src/main/resources/img/red.png diff --git a/etc/img/screen.png b/src/main/resources/img/screen.png similarity index 100% rename from etc/img/screen.png rename to src/main/resources/img/screen.png diff --git a/etc/img/screen1.png b/src/main/resources/img/screen1.png similarity index 100% rename from etc/img/screen1.png rename to src/main/resources/img/screen1.png diff --git a/etc/img/screen2.png b/src/main/resources/img/screen2.png similarity index 100% rename from etc/img/screen2.png rename to src/main/resources/img/screen2.png diff --git a/etc/img/yellow.png b/src/main/resources/img/yellow.png similarity index 100% rename from etc/img/yellow.png rename to src/main/resources/img/yellow.png