Commit Graph

1653 Commits

Author SHA1 Message Date
Yamagi 7cb455459a Merge pull request #144 from smcv/source-date-epoch
savegame: ensure that BUILD_DATE is defined
2016-07-05 19:37:56 +02:00
Simon McVittie 38ff49e480 savegame: ensure that BUILD_DATE is defined
The game code does not include common.h, so it needs to redo this
part for builds without SOURCE_DATE_EPOCH, where BUILD_DATE will
not have been passed in from the outside.

Signed-off-by: Simon McVittie <smcv@debian.org>
2016-07-05 18:29:54 +01:00
Yamagi Burmeister 6d7d15af30 Fix Windows build. On Windows OpenAL32.dll must be opened at runtime. 2016-07-05 19:17:06 +02:00
Yamagi 5323873476 Merge pull request #143 from smcv/link-libopenal
Optionally link libopenal at compile time
2016-07-05 19:13:57 +02:00
Yamagi 0da70104e2 Merge pull request #142 from smcv/source-date-epoch
Override __DATE__ from SOURCE_DATE_EPOCH if set
2016-07-05 18:50:31 +02:00
Yamagi 3f6ce86c18 Merge pull request #141 from smcv/speling
Fix spelling errors detected by lintian
2016-07-05 18:18:51 +02:00
Simon McVittie 5887a9e79e Optionally link libopenal at compile time
In Linux distributions, having the executable depend on the right
libraries and arrange for them to be installed is straightforward,
and there's a lot of infrastructure for tracking which library
version a particular executable needs, including making sure we have
a version that contains all of the symbols that were used. Loading
libopenal at runtime defeats that infrastructure.

The ability to substitute a different-but-compatible libopenal,
or operate with reduced functionality without libopenal, might
still be desirable for generic/portable binary releases.

The CMake build system already linked the executable to
${OPENAL_LIBRARY} anyway, so it is already a hard dependency in that
build system.
2016-07-01 09:44:00 +01:00
Simon McVittie c00707d449 Override __DATE__ from SOURCE_DATE_EPOCH if set
For deterministic/reproducible builds (where the same source and
toolchain can be verified to produce the same binary, allowing
maliciously substituted binaries to be detected) it is desirable to
take the software's idea of the build date from the build system;
otherwise, the real-time clock at the time of building affects the
result, making it non-reproducible.

SOURCE_DATE_EPOCH is a distribution-neutral specification for how
to do that. It is meant to be set by meta-build systems such as
dpkg or RPM, using a date/time that is already part of the source code,
for example the date of the latest git commit, the date in
the package's debian/changelog, or the date in the RPM spec file.

See https://reproducible-builds.org/specs/source-date-epoch/ for the
specification of SOURCE_DATE_EPOCH, or https://reproducible-builds.org/
for more information on reproducible builds in general.
2016-07-01 09:41:23 +01:00
Simon McVittie 92668ca6b1 Fix spelling errors detected by lintian
Based on a patch by Fabian Greffrath against an earlier version of
yquake2.
2016-07-01 09:38:54 +01:00
Yamagi Burmeister 6d38cc8609 Bump version number to 5.35pre 2016-06-25 11:03:48 +02:00
Yamagi Burmeister c3894cb9de Update CHANGELOG 2016-06-25 10:28:42 +02:00
Yamagi Burmeister bb8be981d5 Bump version number to 5.34 2016-06-25 10:22:18 +02:00
Yamagi Burmeister b608264808 There're no open tasks. 2016-06-25 10:19:45 +02:00
Yamagi Burmeister 3ad89c2f0a libjpeg isn't needed anymore, add stb while here. 2016-06-25 10:17:05 +02:00
Yamagi Burmeister 4aa4db69ab Merge branch 'readme' 2016-06-25 10:11:47 +02:00
Yamagi Burmeister 83a9e20fa2 Preserve the old README as stuff/README.old 2016-06-25 10:07:59 +02:00
Yamagi Burmeister 9bd8b940db Add a new README, this time in markdown.
After some long discussions it was realizied that the old README had way
too much informations and was too unspecified on some topics. This new
README was written from scratch and focus on installing Quake II.
2016-06-25 10:02:45 +02:00
Yamagi Burmeister 5a384c79b1 Switch from an arch whitelist to an "all archs are supported" approach.
The old whitelist was a leftover from the early days of YQ2. It should
run on most / all architectures, as long SDL supports them. As suggested
by smcv in issue #138 generate the OSTYPE and ARCH defines by the build
system instead of hardcoding it.

Savegame compatibility is provided by bumping the savegame version. Old
savegames are compared against the old OSTYPE and ARCH defined, new ones
against the new defines. This compatibility code should be removed
somewhere in the distant future.
2016-06-11 09:23:10 +02:00
Daniel Gibson da6ad6953d Use software gamma for OSX, fix #134
Hardware gamma is broken, especially in fullscreen, and a Mac user told me
that setting HW/screen gamma on OSX is a bad idea anyway, because it resets
the monitor calibration.
The game /should/ look ok with vid_gamma 1 (if your display is configured
properly), but if you think it's too dark set it a bit higher and do
vid_restart.
2016-05-28 16:04:07 +02:00
Daniel Gibson 1894165737 README: don't pretend we provide OSX binaries (missed things) 2016-05-20 01:30:54 +02:00
Daniel Gibson ae2ebab17e README: don't pretend we provide OSX binaries 2016-05-20 01:27:54 +02:00
Yamagi Burmeister 6f64efbd17 Disable gl_ext_multitexturing by default.
Multitexturing was enabled by default in 0f7b422. It gives a small but
on todays hardware neglectable performance boost, but caused several
problems over the years. For example gl_showtris doesn't work with it
and there's at least one render glitch in city3.bsp.
2016-05-01 09:01:39 +02:00
Yamagi Burmeister b4d16ab6b3 Some additions to last commit:
- SOLID_BBOX seems to be more correct.
- Make debris SOLID_BBOX, too.
2016-04-29 17:40:33 +02:00
Daniel Gibson 07477e0f75 Make gibs solid so they move with conveyor belts etc, like in fact2
not sure if this has any drawbacks, seems to work good so far.

No idea why id apparently deactivated this at some point, maybe to
optimize performance?
2016-04-16 21:04:32 +02:00
Yamagi Burmeister eaee1d71d5 Rename cl_stereo* cvars to gl_stereo*.
They're renderer cvars, not client cvars.
2016-04-07 17:01:09 +02:00
Yamagi Burmeister 238ccb8adf Fix warnings with clang after the stereo merge 2016-04-07 16:57:32 +02:00
Valery Guskov f6c596c1c5 better default configuration for 3d 2016-04-04 23:57:59 +03:00
Valery Guskov 9693004afb removed unused variable 2016-04-04 23:57:08 +03:00
Valery Guskov e9dcf8d09e added 3d crosshair model 2016-04-04 23:53:16 +03:00
Valery Guskov 6ed4843257 too long line in readme 2016-04-04 23:49:36 +03:00
Valery Guskov 71255bde57 fixed spacing in readme 2016-04-04 23:48:47 +03:00
Valery Guskov c168e501de added stereo support info to readme 2016-04-04 23:48:08 +03:00
Valery Guskov 43bd9deccd Update LICENSE 2016-04-04 23:37:27 +03:00
Valery Guskov 3ed18bd7fe Merge branch 'feature-stereo' 2016-04-04 23:29:53 +03:00
Valery Guskov 248bebeca6 unncecessary newlines 2016-04-04 22:41:27 +03:00
Valery Guskov d09c942b52 added pause changes from stereo-quake 2016-04-04 22:25:53 +03:00
Valery Guskov 45d3dd0a2f fixed loading display
i guess
2016-04-04 20:55:17 +03:00
Valery Guskov 135fb021e5 fixed viewports a bit 2016-04-04 19:33:18 +03:00
Valery Guskov 294a4dfbb9 cleaning up
removed non-minimal changes from porting stereo-quake
2016-04-04 00:25:20 +03:00
Valery Guskov 2e87216abf Revert "ported meatball crosshair"
This reverts commit 1e6f016fca.
2016-04-04 00:11:03 +03:00
Valery Guskov bfa212f6ba correct models provide skin path 2016-04-03 19:26:16 +03:00
Valery Guskov b3bea99597 added new code for 3d crosshair
original meat can be thrown out
2016-04-03 00:26:35 +03:00
Valery Guskov 1e6f016fca ported meatball crosshair
copied from http://www.quakewiki.net/archives/qdevels/quake2/12_1_98.html
2016-04-02 01:24:14 +03:00
Valery Guskov b662cb9979 added split view basic support 2016-04-01 16:22:28 +03:00
Valery Guskov 0f8bda3c33 first attempt at porting separation support
ported from stereo-quake
http://www.benryves.com/products/stereoquake
2016-04-01 08:51:11 +03:00
Yamagi 1c3dce7be0 Merge pull request #128 from Jarvik7/master
Fix broken OSX makefile
2016-03-17 09:05:32 +01:00
Martin Hauke 629c714469 Cmake: Add option for systemwide installation of game assets 2016-03-17 09:00:50 +01:00
Jarvik7 ca753d4f87 Fix broken OSX makefile
Makefile rewrite forgot to include OpenAL folders for Darwin
2016-03-17 11:26:39 +08:00
Daniel Gibson 7f7ba1870b Bump version to 5.34pre 2016-01-30 20:03:33 +01:00
Daniel Gibson 50fe9cfdbc Bump version to 5.33 2016-01-30 19:48:00 +01:00