Bug#404826: prboom.wad contains material from doom and wolfenstein 3d

Jon Dowland jon at alcopop.org
Sun Dec 31 22:07:46 CET 2006


On Sun, Dec 31, 2006 at 02:27:19PM +0000, Jon Dowland wrote:
> These have been dealt with: there's a configure option --disable-dogs 
> that can be used, and then the resources removed from prboom.wad. I've 
> got this part done.
...
> I'm now going to try and generate alternatives.

Ok I generated alternatives; the packages for sponsoring are at 
<http://mentors.debian.net/debian/pool/main/p/prboom/>. Moritz mailed to 
say he'd do it, but in case someone else beats him to it...

Also attached to this mail is the final script used to generate the 
replacement lumps (small alteration). The palette issue I alluded to 
earlier was solved by ensuring the base image had the right palette and 
not switching between formats.


-- 
Jon Dowland
-------------- next part --------------
#!/bin/sh

while read line; do
    set -- $line
    file="$1"
    width="$2"
    height="$3"
    shift
    shift
    shift
    text="$*"
    text=$(echo "$text" | tr a-z A-Z)

    convert -fill red -font Helvetica-Bold    \
      -resize "${width}x${height}!" \
      +antialias \
      -pointsize 16                \
        -gravity west         \
          -draw "text 0,0 '$text'"  \
        "base.gif" "$file"
done < output.txt


More information about the Pkg-games-devel mailing list