Skip to content

Commit a60d417

Browse files
committed
merge
2 parents 36555d3 + 5c273f5 commit a60d417

35 files changed

+954
-385
lines changed

README.md

+27-21
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,59 @@
11
# Alone
22

3-
Single-player ASCII roguelike/roguelite focused on surviving, alone, on an island inhabited by animals.
3+
[![Latest Github release](https://img.shields.io/github/release/fabioticconi/alone-rl.svg)](https://github.com/fabioticconi/alone-rl/releases/latest)
4+
5+
Single-player ASCII roguelike focused on surviving, alone, on an island inhabited by animals.
46
The main inspiration is from [Unreal World](http://unrealworld.fi) and [Wayward](http://www.waywardgame.com),
57
with a much simpler gameplay.
68

79
It's a real-time game but it defaults to a turn-based modality where the world only advances during player actions,
810
for as long as the player action runs. Pure real-time gameplay can be toggled.
911

10-
**NB: this is not even in alpha state.** Lurk freely if you like the concept, but *know* this is not playable,
11-
by far.
12-
Keep an eye on the [release](https://github.com/fabioticconi/alone-the-roguelite/releases) area, for the future.
12+
**NB: this is not ready yet.** Keep an eye on the [releases page](https://github.com/fabioticconi/alone-the-roguelite/releases)
13+
for a stable release.
1314

1415
## Controls
1516

1617
* **`directional arrows` to move** (hold two together for diagonal movement, eg UP+RIGHT to go north-east)
1718

18-
Move into creatures to attack them (message/combat log coming soon), trees to cut them, boulders to crush them.
19-
For the last two you need proper tools (a cutting weapon for cutting three, not craftable yet, and a blunt weapon
20-
for crushing boulders: you can use a stone for that)
21-
22-
* **`g` to get the first item** on the ground you are currently positioned on (stones, sticks, corpses, tree trunks..
23-
there's no inventory limit for now).
19+
Move into creatures to attack them, trees to cut them, boulders to crush them.
20+
For the last two you need proper tools (a cutting weapon for cutting three and a blunt weapon
21+
for crushing boulders).
2422

23+
* **`g` to get an item**. You must move onto it first. There is no inventory limit.
24+
2525
* **`d` to open the Drop screen**. You will be able to choose which item to drop.
2626

2727
* **`e` to open the Eat screen**. You can only eat corpses that you have taken from the ground, for now.
2828

2929
* **`w` to wear or wield an object** via the Equip screen. Stones and branches will do nicely for now.
30-
30+
3131
* **`l` to open the Look screen**. Move around to choose a target (if you have Line of Sight) and press **`t`** to throw
3232
an equipped weapon in that direction.
3333

34+
* **`c` to open the Craft screen**. A list of recipes is loaded anew from a yaml file and displayed. See
35+
[Crafting](https://github.com/fabioticconi/alone-rl#crafting) for details.
36+
3437
There are also some special commands:
3538

3639
* **`Ctrl+SPACE`** to toggle real-time/turn-based behaviour
3740

3841
* **`SPACE`** to pause/unpause if you are on real-time mode; if you are on turn-based mode, keep `SPACE`
3942
pressed to temporarily run the game in real-time (needed, for example, to recover stamina when you finish it,
4043
or regenerate health).
41-
44+
4245
* **`F1`** removes the speed delay of the player. Useful to test the game without having to suffer the movement delays.
4346
Will be removed in the final version.
44-
47+
4548
* **`F2`** restores the correct player speed.
4649
Will be removed in the final version.
47-
50+
4851
## Screenshots
4952

5053
This is how the game looks when run (**very** preliminary GUI):
5154

5255
![](screenshots/gameplay.gif)
5356

54-
A few wolves are chasing rabbits, while pumas manage to bring a buffalo down.
55-
5657
### Map
5758

5859
![](screenshots/orig_map.png)
@@ -74,6 +75,8 @@ Later the terrain will be configurable by the user.
7475

7576
You can also see some rivers (still in-progress, not in the game yet) flowing from high to low places.
7677

78+
Note: this is only temporary. In the final game the terrain will be randomised.
79+
7780
## Features
7881

7982
### Field of view
@@ -85,14 +88,14 @@ Pathfinding is both precise and efficient thanks to an AStar implementation that
8588
to plan a course to a target position.
8689

8790
What this means for the end user is that the game doesn't cheat. It doesn't magically make creatures see you
88-
if they shouldn't. The other creatures can only do what *you* also can.
91+
if they shouldn't. The other creatures can only do what *you* can also do.
8992

90-
### Simple Ecology Simulation
93+
### Simple Ecology
9194

92-
Creatures don't "pop" or "spawn", they don't just appear when needed but they keep going even when the
95+
Creatures don't "pop" or "spawn", they don't just appear when needed but they *exist*; and they keep going even when the
9396
player is not looking.
9497

95-
This is the main difference between Alone and most roguelikes/roguelites. It makes it a simulation game, to an extent.
98+
This is the main difference between `AloneRL` and most roguelikes/roguelites. It makes it a simulation game, to an extent.
9699

97100
Different creatures have different set of behaviours:
98101

@@ -116,5 +119,8 @@ Escape predators, steal their carcasses if you can, or kill any walking thing an
116119

117120
### Crafting
118121

119-
**Not implemented yet**. It will cover the basic primitive technology of a Neolithic hunter, eg stone knives, spears and axes,
122+
It will cover the basic primitive technology of a Neolithic hunter, eg stone knives, spears and axes,
120123
simple bark protection, a shelter, maybe rudimentary pit traps and extraction of parts from dead animals.
124+
125+
All currently implemented recipes can be seen (and modified, added or removed) in the file
126+
[crafting.yml](data/crafting.yml).

alone-rl.iml

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
<orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.25" level="project" />
2121
<orderEntry type="library" name="Maven: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.1" level="project" />
2222
<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.1" level="project" />
23+
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.9.0" level="project" />
2424
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.12" level="project" />
2525
<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.3.1" level="project" />
27-
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.3.0" level="project" />
26+
<orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.9.0" level="project" />
27+
<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" />
2829
</component>
2930
</module>

data/crafting.yml

+15-36
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,20 @@
11

2-
branch:
3-
name: a branch
4-
#source:
5-
# external: tree
2+
sharp-stone:
3+
sources: stone
4+
tools: stone
65

7-
tree-trunk:
8-
name: a tree trunk
9-
#source:
10-
# external: tree
11-
tool: axe
6+
small-sharp-stone:
7+
sources: sharp-stone
8+
tools: stone
129

13-
stone:
14-
name: a stone
15-
#source:
16-
# external: boulder
17-
tool: stone
18-
n: 3
10+
stone-hammer:
11+
sources: [stone, branch, vine]
12+
tools: stone
1913

20-
sharp-stone:
21-
name: a sharp stone
22-
source: stone
23-
tool: stone
14+
stone-axe:
15+
sources: [sharp-stone, branch, vine]
16+
tools: stone
2417

25-
#small-sharp-stone:
26-
# name: a small, sharp stone
27-
# source: [sharp-stone]
28-
# tool: stone
29-
# n: 2
30-
#
31-
#stone-hammer:
32-
# name: a stone hammer
33-
# source: [stone, branch]
34-
#
35-
#stone-axe:
36-
# name: a stone axe
37-
# source: [sharp-stone, branch]
38-
#
39-
#stone-spear:
40-
# name: a stone spear
41-
# source: [small-sharp-stone, tree-trunk]
18+
stone-spear:
19+
sources: [small-sharp-stone, trunk, vine]
20+
tools: stone

data/items.yml

+132-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,140 @@
11

22
stone:
3-
name: a stone
3+
name: a round stone
4+
wearable:
5+
where: HANDS
6+
weapon:
7+
damageType: BLUNT
8+
damage: 2
9+
sprite:
10+
c: 7
11+
col:
12+
red: 88
13+
green: 88
14+
blue: 88
415

516
branch:
6-
name: a branch
17+
name: a sturdy branch
18+
wearable:
19+
where: HANDS
20+
weapon:
21+
damageType: BLUNT
22+
damage: 1
23+
sprite:
24+
c: '/'
25+
col:
26+
red: 141
27+
green: 104
28+
blue: 21
29+
30+
vine:
31+
name: a thin, flexible branch
32+
sprite:
33+
c: 239
34+
col:
35+
red: 36
36+
green: 122
37+
blue: 7
738

839
trunk:
9-
name: a tree trunk
40+
name: a fallen tree
41+
sprite:
42+
c: 22
43+
col:
44+
red: 141
45+
green: 104
46+
blue: 21
1047

1148
boulder:
12-
name: a boulder
49+
name: a big boulder
50+
sprite:
51+
c: '#'
52+
col:
53+
red: 88
54+
green: 88
55+
blue: 88
56+
shadowView: true
57+
obstacle: {}
58+
crushable: {}
59+
60+
tree:
61+
name: a mature tree
62+
sprite:
63+
c: T
64+
col:
65+
red: 0
66+
green: 205
67+
blue: 113
68+
shadowView: true
69+
obstacle: {}
70+
cuttable: {}
71+
72+
sharp-stone:
73+
name: a sharp stone
74+
wearable:
75+
where: HANDS
76+
weapon:
77+
damageType: SLASH
78+
damage: 2
79+
sprite:
80+
c: 4
81+
col:
82+
red: 88
83+
green: 88
84+
blue: 88
85+
86+
small-sharp-stone:
87+
name: a small, sharp stone
88+
wearable:
89+
where: HANDS
90+
weapon:
91+
damageType: POINT
92+
damage: 2
93+
sprite:
94+
c: 17
95+
col:
96+
red: 88
97+
green: 88
98+
blue: 88
99+
100+
stone-hammer:
101+
name: a stone hammer
102+
wearable:
103+
where: HANDS
104+
weapon:
105+
damageType: BLUNT
106+
damage: 4
107+
sprite:
108+
c: 209
109+
col:
110+
red: 141
111+
green: 104
112+
blue: 21
113+
114+
stone-axe:
115+
name: a stone axe
116+
wearable:
117+
where: HANDS
118+
weapon:
119+
damageType: SLASH
120+
damage: 4
121+
sprite:
122+
c: 184
123+
col:
124+
red: 141
125+
green: 104
126+
blue: 21
127+
128+
stone-spear:
129+
name: a stone spear
130+
wearable:
131+
where: HANDS
132+
weapon:
133+
damageType: POINT
134+
damage: 4
135+
sprite:
136+
c: 244
137+
col:
138+
red: 141
139+
green: 104
140+
blue: 21

pom.xml

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

2323
<groupId>com.github.fabioticconi</groupId>
2424
<artifactId>alone-rl</artifactId>
25-
<version>0.1.1</version>
25+
<version>0.2.0</version>
2626
<packaging>jar</packaging>
2727

2828
<name>AloneRL</name>
@@ -74,14 +74,31 @@
7474
<version>4.12</version>
7575
<scope>test</scope>
7676
</dependency>
77+
7778
<dependency>
7879
<groupId>com.fasterxml.jackson.core</groupId>
7980
<artifactId>jackson-databind</artifactId>
80-
<version>2.3.1</version>
81+
</dependency>
82+
83+
<dependency>
84+
<groupId>com.fasterxml.jackson.module</groupId>
85+
<artifactId>jackson-module-parameter-names</artifactId>
8186
</dependency>
8287

8388
</dependencies>
8489

90+
<dependencyManagement>
91+
<dependencies>
92+
<dependency>
93+
<groupId>com.fasterxml.jackson</groupId>
94+
<artifactId>jackson-bom</artifactId>
95+
<version>2.9.0</version>
96+
<scope>import</scope>
97+
<type>pom</type>
98+
</dependency>
99+
</dependencies>
100+
</dependencyManagement>
101+
85102
<build>
86103
<plugins>
87104
<plugin>

screenshots/gameplay.gif

-23.4 KB
Loading

0 commit comments

Comments
 (0)