graphics: Add new logo for FreeDM.

CaptainW kindly contributed a new logo for FreeDM in this thread:
http://www.doomworld.com/vb/freedoom/66962-freedm-needs-a-logo/

This uses the new logo for the title screen, menu header (M_DOOM) and
the large banner texture used in the FreeDM levels.

This fixes #12.
This commit is contained in:
Simon Howard 2014-10-03 04:02:11 +00:00
parent 5280916450
commit 750feed4ea
12 changed files with 38 additions and 19 deletions

View file

@ -7,13 +7,13 @@ m_dm.gif: ../m_dm.gif
convert -transparent '#00ffff' ../m_dm.gif m_dm.gif
fd1title.gif: titlepic.gif m_doom.gif
./create_caption m_doom.gif "Phase 1" $@
./create_caption titlepic.gif m_doom.gif "Phase 1" $@
fd2title.gif: titlepic.gif m_doom.gif
./create_caption m_doom.gif "Phase 2" $@
./create_caption titlepic.gif m_doom.gif "Phase 2" $@
fdmtitle.gif: titlepic.gif m_dm.gif
./create_caption m_dm.gif "Deathmatch" $@
fdmtitle.gif: ../captainw/fdmtitle.gif
./create_caption ../captainw/fdmtitle.gif $@
clean:
rm -f m_dm.gif m_doom.gif fd1title.gif fd2title.gif fdmtitle.gif

View file

@ -1,14 +1,28 @@
#!/bin/sh
convert titlepic.gif -fill white -font Helvetica-Bold \
-draw "image over 94,2 0,0 '$1'" \
-pointsize 20 \
-gravity north \
-draw "fill black stroke-width 4 stroke black text -5,65 '$2'" \
-draw "text -4.5,65 '$2'" \
-pointsize 11 \
-gravity southwest \
-draw "text 5,5 'http://freedoom.github.io/'" \
-gravity southeast \
-draw "text 10,5 'Version: $VERSION'" \
$3
draw_with_footer() {
input_file=$1;
output_file=$2;
shift; shift
convert $input_file -fill white -font Helvetica-Bold \
-pointsize 11 \
-gravity southwest \
-draw "text 5,5 'https://freedoom.github.io/'" \
-gravity southeast \
-draw "text 10,5 'Version: $VERSION'" \
"$@" \
$output_file
}
if [ $# = 4 ]; then
draw_with_footer "$1" "$4" \
-gravity north \
-draw "image over -6,2 0,0 '$2'" \
-pointsize 20 \
-draw "fill black stroke-width 4 stroke black text -5,65 '$3'" \
-draw "text -4.5,65 '$3'"
else
draw_with_footer "$1" "$2"
fi