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

..03-May-2022-

.github/H06-Aug-2021-144115

bin/H03-May-2022-87

changes/H07-May-2022-

linux/H03-May-2022-4326

macos/H03-May-2022-5651

src/H06-Aug-2021-44,34735,312

tools/H06-Aug-2021-4220

windows/H03-May-2022-1110

.gitignoreH A D06-Aug-2021163 1814

BUILD.mdH A D06-Aug-20212.9 KiB11977

CHANGELOG.mdH A D06-Aug-202120.3 KiB625545

CONTRIBUTING.mdH A D06-Aug-20213.1 KiB12189

MakefileH A D06-Aug-20212.8 KiB11481

README.mdH A D06-Aug-20213.8 KiB11176

brogueH A D06-Aug-2021117 122

config.mkH A D06-Aug-2021582 238

README.md

1Brogue CE
2=========
3
4> *Countless adventurers before you have descended this torch-lit staircase,
5> seeking the promised riches below. As you reach the bottom and step into
6> the wide cavern, the doors behind you seal with a powerful magic...*
7>
8> ***Welcome to the Dungeons of Doom!***
9
10*Brogue* is a single-player strategy game set in the halls of a mysterious
11and randomly-generated dungeon. The objective is simple enough -- retrieve the
12fabled Amulet of Yendor from the 26th level -- but the dungeon is riddled with
13danger. Horrifying creatures and devious, trap-ridden terrain await. Yet it is
14also riddled with weapons, potions, and artifacts of forgotten power. Survival
15demands strength and cunning in equal measure as you descend, making the most
16of what the dungeon gives you. You will make sacrifices, narrow escapes,
17and maybe even some friends along the way -- but will you be one of the
18lucky few to return alive?
19
20- [Downloads][releases]
21- [Wiki](https://brogue.fandom.com/wiki/Brogue_Wiki)
22- [Forum (Reddit)](https://www.reddit.com/r/brogueforum/)
23- [Roguelikes Discord](https://discord.gg/9pmFGKx) (we have a #brogue channel)
24- IRC: ##brogue on Libera Chat
25- [Original website](https://sites.google.com/site/broguegame/)
26- [Android port](https://github.com/bilgincoskun/brogue-android-port/releases)
27
28
29Playing
30-------
31
32If you downloaded a [release][releases], you can open the game as follows:
33
34### Windows
35
36Go to the `bin` folder and run `brogue.exe`.
37
38### Mac
39
40Run the included app.
41
42As it's an unsigned program, you may have to convince macOS to let you run it.
43You can do this by right-clicking the app and choosing *Open* the first time you
44run it.
45
46### Linux
47
48Run the `./brogue` script in the same the folder as this file.
49
50Make sure you have SDL2 and SDL2_image installed via your package manager. The
51required packages are:
52
53- Debian/Ubuntu: `libsdl2-2.0-0 libsdl2-image-2.0-0`
54- Fedora: `SDL2 SDL2_image`
55- Arch: `sdl2 sdl2_image`
56
57You can also run `./make-link-for-desktop.sh` to generate a .desktop file to
58place on your desktop or applications folder.
59
60### More information
61
62If you're running the graphical version (default), the game window can be
63resized using the PageDown/PageUp or -/+ keys. Graphical tiles are included;
64press 'G' to toggle them.
65
66For some tips on playing the game, see the original website, linked above. Also
67check out the wiki -- although this version contains some modifications from
68what the wiki reports!
69
70If you downloaded the source code, you will need to build the game first. For
71instructions, see `BUILD.md`.
72
73On Windows, if you want to run from the command prompt, use `brogue-cmd.bat`
74instead of `brogue.exe`.
75
76
77About
78-----
79
80### What is Community Edition?
81
82Brogue was created by Brian Walker. This version, *Brogue: Community Edition*,
83is a continuation of its development. It has several main goals:
84
85- fix bugs and crashes
86- add useful quality of life and non-gameplay features
87- improve the gameplay and keep it exciting
88- ease development and maintenance
89- be a convenient base for forks and ports to new platforms
90
91### How is CE different from the original Brogue?
92
93Please refer to the changelog or release history for a complete list. There is
94also a wiki page: [Changes from original][cfo].
95
96[cfo]: https://github.com/tmewett/BrogueCE/wiki/Changes-from-original
97
98### How is the project run, and how are changes decided?
99
100The project is run with a "benevolent dictator" model, with myself (tmewett) in
101charge. There are many other testers and regular contributors; see the
102contribution guide to get involved!
103
104We always try to make changes in the same spirit as the rest of the game. Anyone
105can propose a change - all discussion occurs in our GitHub issue tracker or on
106our development Discord (see CONTRIBUTING.md). We also make sure that things are
107well play-tested.
108
109
110[releases]: https://github.com/tmewett/BrogueCE/releases
111