-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME
217 lines (156 loc) · 7.62 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
HHexen 1.6.4
--------------------------------------------------------------------------------
About
This is a new release of Dan Olson's excellent Hacked Hexen by the authors
of Hammer of Thyrion (Hexen II). We're applying fixes, adding a few features,
and ensuring it runs on most *nix operating systems.
--------------------------------------------------------------------------------
Prereqs
There exist several versions of the hexen.wad file:
1.0 wads:
b2543a03521365261d0a0f74d5dd90f0 hexen.wad (20,128,392 bytes)
1077432e2690d390c256ac908b5f4efa hexdd.wad ( 4,429,700 bytes)
1.1 wads:
abb033caf81e26f12a2103e1fa25453f hexen.wad (20,083,672 bytes)
b68140a796f6fd7f3a5d3226a32b93be hexen.wad (21,078,584 bytes -- Mac version)
78d5898e99e220e4de64edaa0e479593 hexdd.wad ( 4,440,584 bytes)
Demo wad 1.0 (from PC shareware hexndemo.zip):
876a5a44c7b68f04b3bb9bc7a5bd69d6 hexen.wad (10,644,136 bytes)
Demo wad 1.1 (from Macintosh shareware MacHexenDemo.hqx):
925f9f5000e17dc84b0a6a3bed3a6f31 hexen.wad (13,596,228 bytes)
We've done our best to support the old 1.0 wad files, but strongly
suggest that you patch your wads to version 1.1 to avoid possible issues.
If for some reason patching is not an option and you run into problems,
compile hhexen to specifically use version 1.0 hexen.wad:
./configure --enable-oldwad
Saved games and recorded demos from different wad versions are not
compatible.
Those without the full retail version of Hexen can still play the demo.
The newest demo wad (a 4 level version from the MacHexen shareware) can be
downloaded from http://hhexen.sourceforgef.net. The PC shareware demo is
older, and not recommended: if you specifically want to use it, we suggest
recompiling hhexen with the --enable-oldwad option.
--------------------------------------------------------------------------------
Compiling
You'll need SDL and SDL-devel packages installed.
To compile the OpenGL version (hhexen-gl):
./configure
make
To compile the software version (hhexen-sdl):
./configure --disable-gl
make
The configure script accepts a new --with-audio=<driver> option. Valid
values are oss, sdl, and sdlmixer. sdl is the default option. sdlmixer
adds the ability of midi music playback, therefore, to compile with midi
playback:
./configure --with-audio=sdlmixer
make
To compile the software version (hhexen-svga, for the old-fashioned :))
./configure --enable-svga
make
It's essential that you run make clean between different types of builds
or different types of targets.
--------------------------------------------------------------------------------
Playing the Game
Put the file hexen.wad in the same directory where the hhexen binary is and
simply run the binary, for example:
./hhexen-gl
With the -h or --help option, you can see the basic command line switches.
To play the Deathkings of the Dark Citadel expansion pack, put hexdd.wad in
the same directory and run:
./hhexen-gl -file hexdd.wad
The -file option can also be used to play any extra hexen wads that you may
have. The option takes as many wad filename arguments as you give to it, at
least one name, of course. Remember, though, that the -file option makes the
engine to load extra wads: you always need hexen.wad as the base wad.
Currently, varying screen widths/resolutions are only supported in OpenGL
mode. Use, for example,
./hhexen-gl -width 1024 -height 768
A partial list of supported options is available using the "--help" option.
--------------------------------------------------------------------------------
Custom Music playback
Playback of external ogg, mp3 and midi files is available when hhexen is
configured with the "--with-audio=sdlmixer" option. This is done by placing
custom music files in $HOME/.hhexen/music .
A high quality OGG version of the original Hexen soundtrack is available for
download from Sycraft.org : http://sycraft.org/content/audio/hexen.shtml
To install, download the normal or high quality archive and unzip it. Create
the music directory:
mkdir -p $HOME/.hhexen/music (for most end users)
or:
mkdir -p <install_dir>/music (if you prefer that way..)
or:
mkdir -p <shared_datapath>/music (mostly for packagers)
Place the ogg files in that new "music" directory you just created. Now, when
the game is run, the new sound files should automatically be used.
--------------------------------------------------------------------------------
Hints
You can switch between windowed and fullscreen modes by the ALT-Enter key
combination.
Double-clicking with Mouse2 or Mouse3 acts as the 'activate' (or 'use') key.
There is still no way to assign mouse buttons to actions in the control-setup
menu; it needs some work. Currently, the mouse buttons can only be
assigned to a few actions:
mouseb_fire (fire)
mouseb_strafe (strafe)
mouseb_forward (move forward)
mouseb_jump (jump)
which is done by editing $HOME/.hhexen/hhexen.cfg and changing these values.
Button values are:
left mouse button = 0
middle mouse button = 1
right mouse button = 2
unused =-1
So, to make the right button jump, change the mouseb_jump line in hhexen.cfg,
like so:
mouseb_jump 2
The user created 4th class, Assassin, is not quite finished yet, and disabled by
default. It can be enabled with "configure --enable-assassin". The precompiled
binaries of HHexen do not have the assassin enabled.
Warning: There *will* be issues with the game saves made from assassin-enabled
binaries and from those without, they are not compatible.
--------------------------------------------------------------------------------
Short Changelog
Major changes in HHexen-1.6 since previous version HHexen-1.5:
* Fixed a rare menu related crash.
* Worked around audio corruption with the sdlmixer driver when SDL_mixer
tried looping the background music.
* Fixed interoperability of games saved on little and big endian machines:
the fix may break games saved on big endian machines using hhexen-1.5.x,
the saves from little endian machines are fully compatible.
* Added -waddir as a new command line option.
* Made sdlmixer driver to search the game's shared data path for external
music files.
* New configuration options for more flexibility especially for packagers.
* Other usual bug-fixes.
Major changes in HHexen-1.4/1.5 since Dan Olson's original HHexen-1.3:
* OpenGL intermission and finale screens fixed
* OpenGL screenshots (now bound to F12 and enabled by default)
* Transparent automap
* Support for big endian and 64 bit machines
* Fixed FreeBSD support
* Fixed ARM support
* Various hacks/fixes for the proper handling of different 1.0 and 1.1
wad file versions
* Added SDL audio driver: it is the default audio driver.
* Added SDL_mixer audio driver with midi playback support
* Added support for external music files (ogg, mp3, midi) using the
SDL_mixer audio driver.
* OpenGL is the default configuration now
* Game saves/loads work properly
* Controls-setup menu works properly with more complete support for
punctuation keys
* Many GCC/C/portability bug-fixes, support for newest gcc versions
* Incomplete assassin class is now disabled by default
* Other usual bug-fixes.
Release notes for Dan Olson's original HHexen-1.3:
* New character class: the assassin from Hexen 2
* OpenGL rendering (thanks to Jaakko and Karl)
* Normal and inverse mouselook
* Higher in-game mouse sensitivity
* In-game key configuration
--------------------------------------------------------------------------------
Contact
https://sourceforge.net/projects/hhexen/
sezero_at_users.sourceforge.net
stevenaaus_at_gmail_com