Commit graph

22 commits

Author SHA1 Message Date
Mike Swanson
7282f2e5fe Makefile: Make sure all built files are removed in make clean. 2017-02-21 18:43:14 -08:00
Mike Swanson
63b72dbd63 Remove Boom special colormaps.
We’re not a Boom IWAD anymore, we can get rid of these.
2017-02-21 18:43:14 -08:00
Mike Swanson
8835afef5f Copyright date bump and apply SPDX tags.
The tags are shorthand for the license of each file and avoid
copying the full license text into each one (and avoids having
to manually update the dates in each one...).
2017-02-15 16:41:53 -08:00
Mike Swanson
9d1754c32e textures.cfg: Fix offset of BOSFA0 in A-BROWN4.
Fixes #367
2017-02-11 18:38:25 -08:00
Ayub Ahmed
9cbbbefab6 Aquatex fix (#324)
Redefine all of the new aquatex textures to be 128px tall.

This avoid tutti-frutti in vanilla Doom, where textures do not tile
property unless their heights are a multiple of 128.
2016-10-23 02:31:53 -04:00
Ayub Ahmed
9936ed7833 Add Aquatex textures
These are textures by @jmickle66666666 who has given permission
for them to be submitted to the project.
2016-10-15 23:53:49 -04:00
Simon Howard
991ff8180e textures: Clean up textures.cfg.
The formatting on this file was all over the place. Reformat all lines
to consistent, fixed columns and remove all tab characters.
2015-12-24 17:40:43 +01:00
Simon Howard
0822248318 textures: Add Doom 1 versions of conflicting textures.
Some textures which appear in both doom.wad and doom2.wad are defined
differently in each. We were always using the same definition in both
Phase 1 and Phase 2, causing compatibility problems with some levels
which expected a particular version of the texture.

To resolve, add both versions of the conflicting textures, controlled by
a new DOOM1_VERSIONS #define that allows which the version to be
selected. Use the doom.wad versions for Freedoom: Phase 1, and the
doom2.wad versions for Freedoom: Phase 2. This resolves part of #194.
2015-12-24 17:17:01 +01:00
Simon Howard
254602c6db lumps: Add README files for some directories.
These deserve to be documented.
2015-12-24 12:29:25 +01:00
Simon Howard
7902096915 lumps: Eliminate symlinks for texture lumps.
Copy these to the parent directory to avoid needing symlinks.
More progress towards #202.
2015-12-24 11:26:31 +01:00
Simon Howard
02bd566362 Update other scripts to support Python 3 build.
A couple of scripts were not Python 3 compatible. Update smtextgen to
use print() instead of bare print, and update the texture build script
to use the correct binary mode for writing binary files.
2014-10-28 03:55:43 +00:00
Simon Howard
977ea8090b patches: Add dummy level sign.
On the dummy.wad level used as a stand-in for levels that don't
exist yet, show a computer sign on the wall that gives a brief
useful message encouraging people to contribute to the project.
2014-09-29 04:33:38 +00:00
Simon Howard
335927bd5c textures: Add dummy entries for colormaps.
Add some dummy texture entries that match the colormaps stored in the
single player IWADs. This allows levels that use colormaps to at least
be loaded in non-Boom compatible source ports, even though the rest of
the levels might not work properly. It doesn't seem to do any harm.
2014-09-22 00:18:20 +00:00
Jeremy Elder
e40ae42637 patches: Remove arrow from exit sign.
Having an arrow on the exit sign makes some levels confusing, as the
arrow can sometimes be pointing in the wrong direction or be
otherwise misleading. There is some discussion on Doomworld:
http://www.doomworld.com/vb/post/1303596

As the arrow version still looks quite nice, keep it around as a
second exit sign texture (EXITSGN2); include both the red and the
green versions.
2014-09-13 23:18:07 -04:00
Simon Howard
d102be8d9e patches: Add plain color textures.
These are new textures that just contain flat plain colors.
2014-09-06 22:09:08 -04:00
Simon Howard
50da8daf49 textures: Add missing TNT texture definitions.
Add FALL3 texture definition needed for TNT compatibility, and add
extra texture definitions so that all the patches required for TNT
compatibility are included in the PNAMES list (and IWAD). Add
symlinks for TNT sky patches that just point to sky patches that we
already have. Fixes #43.
2014-01-27 00:08:11 +00:00
Simon Howard
ddbd396688 textures: Add textures.cfg as make dependency.
If textures.cfg changes, rebuild all texture lumps.
2014-01-26 22:07:13 +00:00
Simon Howard
085ced2434 textures: Add missing Plutonia texture definitions.
The Plutonia WAD includes some extra textures (and associated patches)
compared to the original doom2.wad. Add these missing textures, with
dummy "Plutonia versions" of textures where they conflict with
existing ones, so that we include all patches needed for compatibility.
Fixes #42.
2014-01-26 22:04:46 +00:00
Simon Howard
f76e05984a Fix git ignores for several generated files. 2014-01-22 05:47:06 +00:00
Simon Howard
71b30afa92 textures: Only include patches needed by textures.
Now that #1 is fixed, we can be certain that all patches needed for
compatibility are definitely being included in the PNAMES lists. It
therefore isn't necessary to include every patch in the patches/
directory in every WAD.

Extend the build-textures script to generate a text file containing
the list of PNAMES, and include this from the main config file. That
way, each IWAD only gets the patches it explicitly needs.
2014-01-17 03:59:52 +00:00
Simon Howard
d241e7f326 build: Fix 'make -j' handling.
Some build targets create multiple outputs, which can cause problems
when doing parallel builds. Clean up the build system so that all
subdir invocations come from the top-level Makefile and use $(MAKE).
Also fix the FREEDOOM/FREEDM lumps to really include the version
number by using $(shell ...) syntax.
2014-01-16 06:30:15 +00:00
Simon Howard
82d90f8e8a textures: Rewrite Freedoom's texture build system.
Stop using deutex's built-in texture builder and generate our own
texture lumps. This is essential for compatibility reasons: the
entries in the texture/pnames lumps must match the order of those
in the original IWADs. Failure to match ordering means that some
well-known WADs (eg. DTWID) would not work with Freedoom.

This fixes #1, and also means that Freedoom can now be built in
parallel using make's '-j' option.
2014-01-16 04:18:22 +00:00