• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H15-Dec-2021-2726

data/H15-Dec-2021-5247

doc/H03-May-2022-4329

src/H15-Dec-2021-2,0341,275

ChangeLog.mdH A D15-Dec-20212.4 KiB7565

LICENSEH A D15-Dec-202134.3 KiB675553

README.mdH A D15-Dec-20212.5 KiB7452

TODOH A D15-Dec-2021142 105

README.md

1<a href="https://repology.org/project/cavezofphear/versions">
2	<img src="https://repology.org/badge/vertical-allrepos/cavezofphear.svg?exclude_unsupported=1" alt="Packaging status" align="right">
3</a>
4
5[![CI](https://github.com/AMDmi3/cavezofphear/actions/workflows/ci.yml/badge.svg)](https://github.com/AMDmi3/cavezofphear/actions/workflows/ci.yml)
6[![Github commits (since latest release)](https://img.shields.io/github/commits-since/AMDmi3/cavezofphear/latest.svg)](https://github.com/AMDmi3/cavezofphear)
7
8# CAVEZ of PHEAR
9
10![CAVEZ of PHEAR screenshot](doc/screenshot.png)
11
12You are trapped in the CAVEZ of PHEAR, your mission is to escape
13through all the caves and make it out alive. To escape through a
14cave you will have to find all the diamonds located in it. Once
15you've found all the diamonds, their powers combined will help you
16get to the next cave, one step closer to freedom.
17
18## How to play
19
20By picking up a diamond `*` you get 10 points, picking up money `$`
21gives you 100 points. You get one extra life for every 1000 points
22you score.
23
24Move around with the arrow keys or the 2-4-8-6 keys. Press *k* to
25commit suicide if you should get stuck.
26
27Got the bombs (`%`)? Great! Press *b* to place them, and *t* to detonate
28them all at once. Note that the bombs you place will act just like
29stones, affected by gravity, rolling, and so on..
30
31Watch out for monsters (`M`) -- if they catch you, you will die. To
32fight back, drop stones on them or blow them up using your bombs.
33
34Pressing *s* will enable/disable sound, *w* will highlight your
35current position.
36
37## Building and installation
38
39To run the game without installing:
40
41```sh
42cmake .
43cmake --build .
44./phear
45```
46
47For systemwide installation:
48
49```sh
50cmake -DSYSTEMWIDE=ON .
51cmake --build .
52cmake --install .
53```
54
55## Editor
56
57Start the editor with `phear -e <map>`, use `0-9` keys to place
58objects, `s` to save the map, `q` to quit and `l` to enable lock-mode
59(lets you draw using arrow-keys). Play your map with `phear <map>`.
60
61## History and credits
62
63The game was originally written by Tom Rune Flo <<tom@x86.no>> with
64latest version 0.5.1 published on 2011-11-30. Currently maintained
65by [Dmitry Marakasov](https://github.com/AMDmi3) <<amdmi3@amdmi3.ru>>.
66
67## License
68
69CAVEZ of PHEAR is free software: you can redistribute it and/or
70modify it under the terms of the GNU General Public License as
71published by the Free Software Foundation, either version 3 of the
72License, or (at your option) any later version. See [COPYING](COPYING)
73for details.
74