Looking to get into development? Have a soft spot for old console based RPG games? Why not build Umoria! A Rouge clone created in a day of limited graphics - but nevertheless a very addicting game for the time. I would say one of the more memorable games that got me interested in coding (game was so hard I wanted to reverse engineer the save format). Setting up for Windows development or tools (compiler/linker/libs/etc). Which ever option you go for, will need to enable C++ workflow - basic x86/64 tools/libs/command tools. CMake will be installed with either installer as long as you enabled C++. If you forget to check those options, you can go to Add/Remove programs and modify your choices. For this, w3e will be using the command prompt, so again, either product will work. Visual Studio IDE Visual Studio Build : If you chose Visual Studio, you have the option of including GIT tools when you install that. In either case, you can get the latest GIT Bash for windows from . GIT here When installing, you should use mostly all the defaults. Though, unless you are familiar with vim text editor, you should select a different editor when prompted. If wanting Notepad++ (a good choice) - Will need to install that first. Most importantly, some Coffee or Soda and a little bit of time - more if you are a complete stranger to development. 1. From the Windows start menu, you will want to find and run "Developer Command Prompt for VS 2019". This will bring you to a console window with the C++ dev tools available. You'll need a good place to put your code & build. For this example, we will use your documents folder. Follow along with these commands to checkout and build... %HOMEPATH%\Documents umoria umoria git clone http //github. /pjcast/umoria.git cd mkdir cd s: com Now, umoria uses curses to interact with the terminal... we need to get a windows version. Either download and extract this to umoria\PDCurses-3.8 or if on Windows 10, you can run: pdcurses zip file curl -L https://downloads.sourceforge. /project/pdcurses/pdcurses/ . /PDCurses- . .zip --output pdcurses.zip tar -xf pdcurses.zip net 3 8 3 8 After you have the sources for pdcurses you'll need to build the support library: cd PDCurses \wincon nmake -f Makefile.vc -3.8 Configure and build umoria ..\..\umoria CURSES_LIBRARY= \Documents\umoria\PDCurses- . \wincon\pdcurses.lib CURSES_INCLUDE_PATH= \Documents\umoria\PDCurses- . out out cmake -DCURSES_LIBRARY=" " -DCURSES_INCLUDE_PATH=" " -G "Visual Studio " -A Win32 ..\ cmake --build . cd set %HOMEPATH% 3 8 set %HOMEPATH% 3 8 mkdir cd %CURSES_LIBRARY% %CURSES_INCLUDE_PATH% 16 2019 Hopefully you had no errors along the way. In which case, you are ready to copy the exe to where the data files live, and start the app. umoria\Debug\umoria.exe umoria\ explorer umoria\ copy Once Windows Explorer opens, double click umoria.exe - You could have ran it in the terminal, but Windows terminals and pdcurses do not resize very well - at least, not umoria with pdcurses. So better to start it outside command prompt. Setting up for Linux development - Easy! Linux development is super easy nowadays. In this article, will be using Ubuntu, but any modern distro will do. Getting tools, getting umoria, building and running in a few lines... open a terminal and run the following commands: sudo apt-get install build-essential git cmake libncurses5-dev git https://github.com/pjcast/umoria.git umoria mkdir out && out cmake ../ make clone cd cd Just execute the binary and enjoy: Done! cd umoria ./umoria Creating the "out" directory (on both Windows and Linux) keeps CMake generated content outside the build tree - and doesn't pollute your code/repository. And if you mess up, you can simply delete the out directory and start over. Basic Game Guide Use ? for help. Have NumLock On and use your number pad to move. You can modify the controls somewhat, outside the scope of these. Strongly suggest you have a full size keyboard. Go into stores and barter - don't be too greedy, or the stores will ban you. Find the stairs (>) and go down. Ensure you equip a torch. Search the Internet and you will surely find tips for this game. See or https://umoria.org/ Wikipedia page