Skip to content

Commit f1ce949

Browse files
committed
Merge branch 'release/0.2.8'
2 parents d2654ad + 9684134 commit f1ce949

40 files changed

+664
-477
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
alone-the-roguelite.iml
1+
alone*.iml
22
.idea/
33
target/
44
.classpath
@@ -11,4 +11,4 @@ pom.xml.next
1111
release.properties
1212
dependency-reduced-pom.xml
1313
buildNumber.properties
14-
/map.png
14+
data/map/elevation.data

alone-rl.iml

-33
This file was deleted.

data/crafting.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
sharp-stone:
32
sources: stone
43
tools: stone
@@ -30,3 +29,11 @@ stone-arrow:
3029
bow:
3130
sources: [trunk, vine]
3231
tools: [stone-axe, stone-knife]
32+
33+
bark:
34+
sources: [trunk]
35+
tools: [stone-axe, stone-knife]
36+
37+
bark-armour:
38+
sources: [bark, vine]
39+
tools: [stone-knife]

data/creatures.yml

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
player:
2+
name: you
3+
player: {}
4+
inventory: {}
5+
strength: 2
6+
agility: 2
7+
constitution: 2
8+
skin: -2
9+
sight: 18
10+
# herbivore: {}
11+
carnivore: {}
12+
sprite:
13+
c: '@'
14+
col:
15+
red: 255
16+
green: 255
17+
blue: 255
18+
alpha: 255
19+
20+
buffalo:
21+
name: a big buffalo
22+
strength: 2
23+
agility: -2
24+
constitution: 2
25+
skin: 2
26+
sight: 6
27+
herbivore: {}
28+
group:
29+
groupId: -1
30+
ai:
31+
behaviours: [flee, flock, graze, wander]
32+
sprite:
33+
c: 'b'
34+
col:
35+
red: 102
36+
green: 51
37+
blue: 0
38+
alpha: 255
39+
40+
fish:
41+
name: a colorful fish
42+
strength: -2
43+
agility: 2
44+
constitution: -2
45+
skin: -2
46+
sight: 5
47+
underwater: {}
48+
ai:
49+
behaviours: [underwater, fleefromaction]
50+
sprite:
51+
c: 'p'
52+
col:
53+
red: 0
54+
green: 255
55+
blue: 255
56+
alpha: 255
57+
58+
puma:
59+
name: a strong puma
60+
strength: 2
61+
agility: 2
62+
constitution: 2
63+
skin: 1
64+
sight: 10
65+
carnivore: {}
66+
ai:
67+
behaviours: [chase, scavenge, wander]
68+
sprite:
69+
c: 'p'
70+
col:
71+
red: 102
72+
green: 51
73+
blue: 0
74+
alpha: 255
75+
76+
wolf:
77+
name: a ferocious wolf
78+
strength: 1
79+
agility: 1
80+
constitution: 0
81+
skin: 1
82+
sight: 10
83+
carnivore: {}
84+
group:
85+
groupId: -1
86+
ai:
87+
behaviours: [chase, flock, scavenge, wander]
88+
sprite:
89+
c: 'w'
90+
col:
91+
red: 64
92+
green: 64
93+
blue: 64
94+
alpha: 255
95+
96+
rabbit:
97+
name: a cute rabbit
98+
strength: -2
99+
agility: 2
100+
constitution: -1
101+
skin: -1
102+
sight: 12
103+
herbivore: {}
104+
ai:
105+
behaviours: [flee, graze, wander]
106+
sprite:
107+
c: 'r'
108+
col:
109+
red: 192
110+
green: 192
111+
blue: 192
112+
alpha: 255

data/creatures/buffalo.yml

-6
This file was deleted.

data/creatures/fish.yml

-6
This file was deleted.

data/creatures/puma.yml

-6
This file was deleted.

data/creatures/rabbit.yml

-6
This file was deleted.

data/creatures/wolf.yml

-6
This file was deleted.

data/items.yml

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
stone:
32
name: a round stone
43
wearable:
@@ -171,7 +170,7 @@ stone-arrow:
171170
damageType: POINT
172171
damage: 3
173172
ammo:
174-
usableBy: bow
173+
usableBy: bow
175174
sprite:
176175
c: 26
177176
col:
@@ -194,3 +193,24 @@ bow:
194193
green: 104
195194
blue: 21
196195
alpha: 255
196+
197+
bark:
198+
name: tree bark
199+
sprite:
200+
c: '$'
201+
col:
202+
red: 141
203+
green: 104
204+
blue: 21
205+
alpha: 255
206+
207+
bark-armour:
208+
name: bark armour
209+
wearable:
210+
where: BODY
211+
armour:
212+
defences:
213+
SLASH: 2
214+
BLUNT: 1
215+
POINT: 1
216+
NATURAL: 2

data/map/terrain.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
deep-water:
32
c: 247
43
col:

data/palette.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
## Arne64 from http://www.gridsagegames.com/rexpaint/palettes/Arne64.txt
32
#
43
#gray: [{0,0,0},{21,21,21},{52,52,52},{123,123,123},{168,168,168},{215,215,215},{255,255,255}]

data/player.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
strength: 2
32
agility: 2
43
constitution: 2

pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<groupId>com.github.fabio-t</groupId>
2424
<artifactId>alone-rl</artifactId>
25-
<version>0.2.7</version>
25+
<version>0.2.8</version>
2626
<packaging>jar</packaging>
2727

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

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

5353
<dependency>
@@ -78,19 +78,19 @@
7878
<dependency>
7979
<groupId>com.fasterxml.jackson.dataformat</groupId>
8080
<artifactId>jackson-dataformat-yaml</artifactId>
81-
<version>2.9.3</version>
81+
<version>2.9.8</version>
8282
</dependency>
8383

8484
<dependency>
8585
<groupId>com.fasterxml.jackson.core</groupId>
8686
<artifactId>jackson-databind</artifactId>
87-
<version>2.9.3</version>
87+
<version>2.9.8</version>
8888
</dependency>
8989

9090
<dependency>
9191
<groupId>com.fasterxml.jackson.module</groupId>
9292
<artifactId>jackson-module-parameter-names</artifactId>
93-
<version>2.9.3</version>
93+
<version>2.9.8</version>
9494
</dependency>
9595

9696
</dependencies>
@@ -100,7 +100,7 @@
100100
<dependency>
101101
<groupId>com.fasterxml.jackson</groupId>
102102
<artifactId>jackson-bom</artifactId>
103-
<version>2.9.3</version>
103+
<version>2.9.8</version>
104104
<scope>import</scope>
105105
<type>pom</type>
106106
</dependency>
@@ -111,10 +111,10 @@
111111
<plugins>
112112
<plugin>
113113
<artifactId>maven-compiler-plugin</artifactId>
114-
<version>3.7.0</version>
114+
<version>3.8.0</version>
115115
<configuration>
116-
<source>9</source>
117-
<target>9</target>
116+
<source>11</source>
117+
<target>11</target>
118118
</configuration>
119119
</plugin>
120120

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

+9-7
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545

4646
public class Main extends JFrame implements KeyListener
4747
{
48-
static final Logger log = LoggerFactory.getLogger(Main.class);
49-
public static boolean keepRunning = true;
50-
public static boolean paused = false;
51-
public static boolean realtime = false;
52-
private final int fps = 25;
53-
private final long deltaNanos = Math.round(1000000000.0d / (double) fps);
54-
private final float deltaSeconds = 1.0f / (float) fps;
48+
static final Logger log = LoggerFactory.getLogger(Main.class);
49+
public static boolean keepRunning = true;
50+
public static boolean paused = false;
51+
public static boolean realtime = false;
52+
private final int fps = 25;
53+
private final long deltaNanos = Math.round(1000000000.0d / (double) fps);
54+
private final float deltaSeconds = 1.0f / (float) fps;
5555
private final AsciiPanel terminal;
5656
private final World world;
5757
private final ScreenSystem screen;
@@ -78,6 +78,7 @@ public Main() throws IOException
7878

7979
final WorldConfiguration config;
8080
config = new WorldConfiguration();
81+
config.setAlwaysDelayComponentRemoval(true);
8182
// POJO
8283
config.register(new Random());
8384
config.register(properties);
@@ -92,6 +93,7 @@ public Main() throws IOException
9293
config.setSystem(MessageSystem.class);
9394
config.setSystem(screen);
9495
// actual game logic
96+
config.setSystem(new TimeSystem(8, 60f));
9597
config.setSystem(new HealthSystem(5f));
9698
config.setSystem(new StaminaSystem(1f));
9799
config.setSystem(new HungerSystem(1f));

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
public abstract class AbstractBehaviour extends PassiveSystem implements Behaviour
2828
{
2929
@EntityId
30-
protected int entityId = -1;
30+
protected int entityId = -1;
3131
protected Aspect aspect;
3232

3333
public boolean interested(final int entityId)

0 commit comments

Comments
 (0)