Skip to content

Commit 38c203c

Browse files
committed
Merge branch 'release/0.2.5'
2 parents a60d417 + ee0378d commit 38c203c

34 files changed

+820
-321
lines changed

README.md

+17-16
Original file line numberDiff line numberDiff line change
@@ -50,32 +50,33 @@ There are also some special commands:
5050

5151
## Screenshots
5252

53-
This is how the game looks when run (**very** preliminary GUI):
53+
This is how the game looks when run:
5454

5555
![](screenshots/gameplay.gif)
5656

5757
### Map
5858

59-
![](screenshots/orig_map.png)
59+
After selecting a new game you have to generate the world, just before choosing the attributes.
6060

61-
Thanks to the map generator from [Red Blob Games](https://www.redblobgames.com/), I produced the map above. The one in
62-
the game is fundamentally based on this (eg, it uses this heightmap) but it then simplifies the terrains into less
63-
groups - so my map is much less coloured and it has less water mass.
61+
NB: trees cannot be seen here, but they are generated (as individual obstacles) with varying probability
62+
depending on terrain type.
6463

65-
The rivers and lakes are also currently not present. The map is **2048x2048 pixels**, and it's pixel is one "cell" in
66-
game, so it's pretty big.
64+
The rivers and lakes are upcoming in release `0.3.0`. The terrain types are currently fixed. Ordered by
65+
height, they are:
6766

68-
In game, if it could be zoomed out it would look more like this:
67+
* Deep water
68+
* Shallow water
69+
* Coast
70+
* Grass-less ground
71+
* Grass plain
72+
* Grassy Hill
73+
* Rocky Hill
74+
* Mountain
75+
* High Mountain
6976

70-
![](screenshots/map.png)
77+
Some terrains are harder to move through: more stamina will be consumed, and a higher delay is to be expected.
7178

72-
The elevation thresholds are simplified to reduce the amount of colours (and thus, terrains) shown.
73-
74-
Later the terrain will be configurable by the user.
75-
76-
You can also see some rivers (still in-progress, not in the game yet) flowing from high to low places.
77-
78-
Note: this is only temporary. In the final game the terrain will be randomised.
79+
All this should be completely configurable by the user by release `0.4.0`, hopefully.
7980

8081
## Features
8182

alone-rl.iml

+8-7
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@
1313
<orderEntry type="sourceFolder" forTests="false" />
1414
<orderEntry type="library" name="Maven: com.github.trystan:AsciiPanel:e0c4372" level="project" />
1515
<orderEntry type="library" name="Maven: net.onedaybeard.artemis:artemis-odb:2.1.0" level="project" />
16-
<orderEntry type="library" name="Maven: net.mostlyoriginal.artemis-odb:contrib-core:2.2.0" level="project" />
17-
<orderEntry type="library" name="Maven: com.github.fabioticconi:rlforj-alt:0.2.0" level="project" />
16+
<orderEntry type="library" name="Maven: net.mostlyoriginal.artemis-odb:contrib-core:2.3.0" level="project" />
17+
<orderEntry type="library" name="Maven: com.github.fabioticconi:rlforj-alt:0.3.0" level="project" />
18+
<orderEntry type="library" name="Maven: com.github.fabioticconi:terrain-generator:0.0.1" level="project" />
1819
<orderEntry type="library" name="Maven: ch.qos.logback:logback-classic:1.2.3" level="project" />
1920
<orderEntry type="library" name="Maven: ch.qos.logback:logback-core:1.2.3" level="project" />
2021
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.25" level="project" />
21-
<orderEntry type="library" name="Maven: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.1" level="project" />
22-
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.18" level="project" />
23-
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.9.0" level="project" />
2422
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
2523
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
26-
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.9.0" level="project" />
24+
<orderEntry type="library" name="Maven: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.3" level="project" />
25+
<orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.18" level="project" />
26+
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.9.3" level="project" />
27+
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.9.3" level="project" />
2728
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.9.0" level="project" />
28-
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.0" level="project" />
29+
<orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.3" level="project" />
2930
</component>
3031
</module>

data/items.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ tree:
6262
sprite:
6363
c: T
6464
col:
65-
red: 0
66-
green: 205
67-
blue: 113
65+
red: 77
66+
green: 168
67+
blue: 59
6868
shadowView: true
6969
obstacle: {}
7070
cuttable: {}

data/map/elevation.data

-3 MB
Binary file not shown.

data/map/map.png

-378 KB
Binary file not shown.

data/map/map.yml

Whitespace-only changes.

data/map/terrain.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
2+
deep-water:
3+
c: 247
4+
col:
5+
red: 51
6+
green: 102
7+
blue: 153
8+
theight: 0.01
9+
type: WATER
10+
11+
shallow-water:
12+
c: '~'
13+
col:
14+
red: 20
15+
green: 152
16+
blue: 204
17+
theight: 0.05
18+
type: WATER
19+
20+
sand:
21+
c: 250
22+
col:
23+
red: 170
24+
green: 170
25+
blue: 0
26+
theight: 0.08
27+
type: LAND
28+
29+
ground:
30+
c: 250
31+
col:
32+
red: 184
33+
green: 134
34+
blue: 11
35+
theight: 0.1
36+
type: LAND
37+
38+
grass:
39+
c: 250
40+
col:
41+
red: 31
42+
green: 138
43+
blue: 19
44+
theight: 0.4
45+
type: GRASS
46+
47+
hill-grass:
48+
c: '^'
49+
col:
50+
red: 74
51+
green: 105
52+
blue: 4
53+
theight: 0.7
54+
type: GRASS
55+
56+
hill:
57+
c: '^'
58+
col:
59+
red: 119
60+
green: 93
61+
blue: 61
62+
theight: 0.8
63+
type: LAND
64+
65+
mountain:
66+
c: '^'
67+
col:
68+
red: 76
69+
green: 70
70+
blue: 50
71+
theight: 0.9
72+
type: LAND
73+
74+
high-mountain:
75+
c: '^'
76+
col:
77+
red: 255
78+
green: 240
79+
blue: 220
80+
theight: 1.1 # must be strictly greater than 1
81+
type: ICE

data/palette.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
## Arne64 from http://www.gridsagegames.com/rexpaint/palettes/Arne64.txt
3+
#
4+
#gray: [{0,0,0},{21,21,21},{52,52,52},{123,123,123},{168,168,168},{215,215,215},{255,255,255}]
5+
#brown: [{ 35, 23, 18},{92,60,13},{174,108,55},{197,151,130},{226,215,181}]
6+
#grayblue: [{13,32,48},{65,93,102},{113,166,161}]
7+
#ochra: [{173,78,26},{246,143,55}]
8+
#cyan: [{0,82,128},{10,152,172},{37,226,205},{189,255,202}]
9+
#red: [{79,21,7},{224,60,40}]
10+
#aquamarine: [{0,96,75},{32,181,98}]
11+
#rosee: [{130,60,61},{218,101,94},{225,130,137},{245,183,132},{255,233,197}]
12+
#green: [{0,78,0},{19,157,8},{88,211,50}]
13+
#pink: [{135,22,70},{207, 60,113},{255,130,206}]
14+
#green2: [{23,40,8},{55,109,3},{106,180,23},{140,214,18},{190,235,113},{238,255,169}]
15+
#magenta: [{163,40,179},{204,105,228},{213,156,252},{254,201,237}]
16+
#acidgreen: [{147,151,23},{182,193,33}]
17+
#purple: [{33,22,64},{90,25,145},{106,49,202},{166,117,254},{226,201,255}]
18+
#yellow: [{204,143, 21},{255,187,49},{255,231,55}]
19+
#indigo: [{61,52,165},{98,100,220},{155,160,239}]
20+
#blue: [{0,23,125},{2,74,202},{0,132,255},{91,168,255},{152,220,255}]
21+
22+
# from libtcod
23+
24+
red: 255,0,0
25+
flame: 255,63,0
26+
orange: 255,127,0
27+
amber: 255,191,0
28+
yellow: 255,255,0,
29+
lime: 191,255,0
30+
chartreuse: 127,255,0
31+
green: 0,255,0
32+
sea: 0,255,127
33+
turquoise: 0,255,191
34+
cyan: 0,255,255
35+
sky: 0,191,255
36+
azure: 0,127,255
37+
blue: 0,0,255
38+
han: 63,0,255
39+
violet: 127,0,255
40+
purple: 191,0,255
41+
fuchsia: 255,0,255
42+
magenta: 255,0,191
43+
pink: 255,0,127
44+
crimson: 255,0,63
45+
sepia: 127,101,63
46+
gray: 127,127,127

make_pkg.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

3-
v=`ls target/alone-rl-*-jar-with-dependencies.jar | awk -F"-" '{print $3}'`
4-
53
mvn clean package -Dmaven.test.skip=true
64

5+
v=`ls target/alone-rl-*-jar-with-dependencies.jar | awk -F"-" '{print $3}'`
6+
77
cp target/alone-rl-*-jar-with-dependencies.jar alone-rl-$v.jar
88

99
7z a -tzip alone-rl-$v.zip data/ alone-rl-$v.jar

pom.xml

+25-17
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2121
<modelVersion>4.0.0</modelVersion>
2222

23-
<groupId>com.github.fabioticconi</groupId>
23+
<groupId>com.github.fabio-t</groupId>
2424
<artifactId>alone-rl</artifactId>
25-
<version>0.2.0</version>
25+
<version>0.2.5</version>
2626
<packaging>jar</packaging>
2727

2828
<name>AloneRL</name>
@@ -41,48 +41,56 @@
4141
<dependency>
4242
<groupId>net.onedaybeard.artemis</groupId>
4343
<artifactId>artemis-odb</artifactId>
44-
<version>2.1.0</version>
44+
<version>[2,3)</version>
4545
</dependency>
4646

4747
<dependency>
4848
<groupId>net.mostlyoriginal.artemis-odb</groupId>
4949
<artifactId>contrib-core</artifactId>
50-
<version>2.2.0</version>
50+
<version>[2,3)</version>
5151
</dependency>
5252

5353
<dependency>
5454
<groupId>com.github.fabioticconi</groupId>
5555
<artifactId>rlforj-alt</artifactId>
56-
<version>0.2.0</version>
56+
<version>0.3.0</version>
5757
</dependency>
5858

5959
<dependency>
60-
<groupId>ch.qos.logback</groupId>
61-
<artifactId>logback-classic</artifactId>
62-
<version>1.2.3</version>
60+
<groupId>com.github.fabioticconi</groupId>
61+
<artifactId>terrain-generator</artifactId>
62+
<version>0.0.1</version>
6363
</dependency>
6464

6565
<dependency>
66-
<groupId>com.fasterxml.jackson.dataformat</groupId>
67-
<artifactId>jackson-dataformat-yaml</artifactId>
68-
<version>2.9.1</version>
66+
<groupId>ch.qos.logback</groupId>
67+
<artifactId>logback-classic</artifactId>
68+
<version>[1,2)</version>
6969
</dependency>
7070

7171
<dependency>
7272
<groupId>junit</groupId>
7373
<artifactId>junit</artifactId>
74-
<version>4.12</version>
74+
<version>[4,5)</version>
7575
<scope>test</scope>
7676
</dependency>
7777

78+
<dependency>
79+
<groupId>com.fasterxml.jackson.dataformat</groupId>
80+
<artifactId>jackson-dataformat-yaml</artifactId>
81+
<version>2.9.3</version>
82+
</dependency>
83+
7884
<dependency>
7985
<groupId>com.fasterxml.jackson.core</groupId>
8086
<artifactId>jackson-databind</artifactId>
87+
<version>2.9.3</version>
8188
</dependency>
8289

8390
<dependency>
8491
<groupId>com.fasterxml.jackson.module</groupId>
8592
<artifactId>jackson-module-parameter-names</artifactId>
93+
<version>2.9.3</version>
8694
</dependency>
8795

8896
</dependencies>
@@ -92,7 +100,7 @@
92100
<dependency>
93101
<groupId>com.fasterxml.jackson</groupId>
94102
<artifactId>jackson-bom</artifactId>
95-
<version>2.9.0</version>
103+
<version>2.9.3</version>
96104
<scope>import</scope>
97105
<type>pom</type>
98106
</dependency>
@@ -113,7 +121,7 @@
113121
<plugin>
114122
<groupId>org.apache.maven.plugins</groupId>
115123
<artifactId>maven-release-plugin</artifactId>
116-
<version>2.5.3</version>
124+
<version>[2,3)</version>
117125
<configuration>
118126
<tagNameFormat>@{project.version}</tagNameFormat>
119127
</configuration>
@@ -161,9 +169,9 @@
161169
</build>
162170

163171
<scm>
164-
<connection>scm:git:git@fabioticconi/alone-rl.git</connection>
165-
<url>scm:git:git@fabioticconi/alone-rl.git</url>
166-
<developerConnection>scm:git:git@fabioticconi/alone-rl.git</developerConnection>
172+
<connection>scm:git:git@fabio-t/alone-rl.git</connection>
173+
<url>scm:git:git@fabio-t/alone-rl.git</url>
174+
<developerConnection>scm:git:git@fabio-t/alone-rl.git</developerConnection>
167175
</scm>
168176

169177
<repositories>

screenshots/full_colours.png

-86.7 KB
Binary file not shown.

screenshots/gameplay.gif

3.76 MB
Loading

screenshots/map.png

-121 KB
Binary file not shown.

screenshots/orig_map.png

-161 KB
Binary file not shown.

screenshots/screenshot.png

-102 KB
Binary file not shown.

src/main/java/com/github/fabioticconi/alone/Main.java

+4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ public Main() throws IOException
7979
final WorldConfiguration config;
8080
config = new WorldConfiguration();
8181
// first thing to be loaded
82+
config.setSystem(MapScreen.class);
8283
config.setSystem(MapSystem.class);
8384
// POJO
8485
config.register(new Random());
@@ -127,6 +128,7 @@ public Main() throws IOException
127128
config.setSystem(EquipScreen.class);
128129
config.setSystem(CraftScreen.class);
129130
config.setSystem(CraftItemScreen.class);
131+
config.setSystem(CharScreen.class);
130132
// last systems
131133
config.setSystem(DeadSystem.class);
132134

@@ -174,6 +176,8 @@ public void loop()
174176
long repaintCooldown = 1L;
175177
long actionCooldown = 0L;
176178

179+
world.process();
180+
177181
while (keepRunning)
178182
{
179183
currentTime = System.nanoTime();

src/main/java/com/github/fabioticconi/alone/behaviours/GrazeBehaviour.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import com.github.fabioticconi.alone.components.Position;
2424
import com.github.fabioticconi.alone.components.Speed;
2525
import com.github.fabioticconi.alone.components.attributes.Sight;
26-
import com.github.fabioticconi.alone.constants.Cell;
26+
import com.github.fabioticconi.alone.constants.TerrainType;
2727
import com.github.fabioticconi.alone.systems.ActionSystem;
2828
import com.github.fabioticconi.alone.systems.BumpSystem;
2929
import com.github.fabioticconi.alone.systems.HungerSystem;
@@ -53,7 +53,7 @@ public class GrazeBehaviour extends AbstractBehaviour
5353
// FIXME: this should be in a Context of sort
5454
private Hunger hunger;
5555

56-
private EnumSet<Cell> validCells = EnumSet.of(Cell.GRASS, Cell.HILL_GRASS);
56+
final private EnumSet<TerrainType> validCells = EnumSet.of(TerrainType.GRASS);
5757

5858
@Override
5959
protected void initialize()

0 commit comments

Comments
 (0)