![]() |
#1 |
Rookie
Join Date: Jun 2009
Posts: 3
![]() |
Compiling a pure console version on Windows with MingW
Dear all,
I love playing angband but was not satisfied with the look of it on Windows. The fonts used in the official binary are too large or too small for my taste, and I wish I could play directly in the console, like I do on linux machines. However, it is still possible to compile the latest version of Angband (4.1.3) to run in a Windows console, with only very minor changes to the code. I share these below for anyone who experienced the same issues. Step 0: You need a compiler... I assume that you have installed MingW and the base development libraries. If not, there are posts explaiing how to fo this in this forum. Step 1: Make sure you have the *ncurses* library installed. Contrary to what is written in the Makefile, pdcurses will not be sufficient. You need term.h, which only comes with ncurses. To do that, type mingw-get in a console, then select and install libncurses-dev Move to the angband/src folder Step 2: Modify Makefile.win lines 50 and 51 with the correct install path of ncurses Code:
PDCURSES_INC = C:/MinGW/include/ncurses PDCURSES_LIB = C:/MinGW/lib/libncurses.a Step 3: If you try to compile the console version right now it will fail because a few headers do not exist on Windows. These are the locale stuff, and the sound. We do not need either for this version so we can comment these problems out. Code:
In main.c comment out line 38 "#include "langinfo.h" lines 467-473 Comment out the full section "if (setlocale(LC_CTYPE, "")) {..." Code:
In sound-core.c, line 62 Comment out the line " { "win", "Windows sound module", init_sound_win }, " Code:
In main-gcu.c replace line 66 "_stdcall void Sleep(int);" with "void Sleep(int);" Step 4: Compile Code:
mingw32-make -f Makefile.win CONSOLE=yes MINGW=yes ![]() ![]() Edit: updated instructions: The last change should be done in main-gcu.c and not main.c Line 38 should also be commented out in main.c (langinfo.h does not exist on windows) Last edited by Once; October 29, 2018 at 19:43. |
![]() |
![]() |
![]() |
#2 |
Vanilla maintainer
Join Date: Apr 2007
Location: Canberra, Australia
Age: 56
Posts: 9,355
Donated: $60
![]() ![]() |
Thanks for that. I've filed a change to add those to the official compiling instructions.
__________________
One for the Dark Lord on his dark throne In the Land of Mordor where the Shadows lie. |
![]() |
![]() |
![]() |
#3 |
Rookie
Join Date: Jun 2009
Posts: 3
![]() |
Thanks !
I noticed I had forgotten one instruction so I edited the first post. |
![]() |
![]() |
![]() |
#4 |
Prophet
Join Date: Apr 2008
Posts: 2,926
![]() |
Lovely. Does this work with Necklace of the Eye?
__________________
PWMAngband variant maintainer - check http://powerwyrm.monsite-orange.fr (or http://www.mangband.org/forum/viewforum.php?f=9) to learn more about this new variant! |
![]() |
![]() |
![]() |
#5 |
Rookie
Join Date: Jun 2009
Posts: 3
![]() |
|
![]() |
![]() |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Compiling 4.1 on Windows 10 | fizzix | Development | 3 | May 3, 2018 02:25 |
Build failures on stripped Windows (mingw) | Pete Mack | Vanilla | 1 | April 10, 2013 08:08 |
Compiling V for Windows | Therem Harth | Vanilla | 8 | September 4, 2011 23:36 |
Compiling a "Windows Console" version | Dean Anderson | Development | 34 | December 3, 2010 22:00 |
Love The New Windows Console Patch | Malak Darkhunter | Vanilla | 0 | December 8, 2007 18:50 |