NUmoria is a fork of Umoria
based on the v5.7.X
restoration release.
It aims to make playing classic Moria a more pleasant experience and more accessable to new players by:
- Giving the player the option to remove some of the more tedious elements from the base game.
- Implementing quality of life features.
- Implementing user interface improvements.
-
Color display option
- Colorize many items, monsters, dungeon features and menu entries.
- Adds Fire, lightning, and glowing effects.
- Add solid walls option.
-
Auto-haggle option
- Automatically agree on a price at the cost of a 10 percent tax on the final price of items you would otherwise have had to haggle for.
- All prices displayed in the stores will be the actual prices you have to pay.
-
Auto open doors option
- Automatically attempt to open a door by moving into it.
-
Full monster recall option
- When enabled, players know everything about a monster when using
(r)ecall
.
- When enabled, players know everything about a monster when using
-
Lost item feedback messages
- Losing an item due to elemental damage or theft now produces a message detail what was lost.
-
Revocable word-of-recall
- Reading a second word-of-recall before teleporting will cancel the first one.
Some features have been ported from old patches and Moria variants that are
based on Umoria v5.5.X
or below and therefore apply to the old C codebase.
These patches have been rewritten to apply to restoration project release C++
codebase. Please see the AUTHORS.numoria
file for full credits.
See CHANGELOG.numoria.md
for a more complete list of changes.
NUmoria offers are variety of Curses frontend builds.
ncurses
: Console frontendsdl2
: SDL2 Window frontendwingui
: Win32 Graphics mode
Building has only been tested on Linux. Windows binaries are cross-compiled
using mingw-w64
. Builds have not been tested on MacOS.
- Install build dependencies, eg:
apt install cmake libncurses-dev
- Build:
cmake -DNUMORIA_CURSES=ncurses -B 'build/numoria-ncurses/' -S .
cmake --build 'build/numoria-ncurses/'
- Package tarball:
cmake --build 'build/numoria-ncurses/' --target package
- Install build dependencies, eg:
apt install git cmake libsdl2-dev libsdl2-ttf-dev
- Build:
cmake -DNUMORIA_CURSES=sdl2 -B 'build/numoria-sdl2/' -S .
cmake --build 'build/numoria-sdl2/'
- Package tarball:
cmake --build 'build/numoria-sdl2/' --target package
- Install build dependencies, eg:
apt install git cmake mingw-w64
- Build:
cmake -DNUMORIA_CURSES=wingui -DCMAKE_TOOLCHAIN_FILE=cmake/Toolchains/mingw-w64-x86_64.cmake -B 'build/numoria-wingui/' -S .
cmake --build 'build/numoria-wingui/'
- Package zip:
cmake --build 'build/numoria-wingui/' --target package
-
You can also use
Ninja
as a build system. Pass-G Ninja
to thecmake
generate command. -
README.md
is the original README from upstream. It is included as it contains some useful information, however the build instructions are obsolete.