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.
master
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

@ -696,3 +696,8 @@ N: Mikael Haladyn
E: mikaelhhome@yahoo.dk
S: nub_hat
D: levels, musics
F: captainw
S: CaptainW
E: avortement.rate@gmail.com
D: graphics

View File

@ -613,7 +613,7 @@ M_DOOM
#else
#ifdef FREEDM
TITLEPIC 0 0 = fdmtitle
M_DOOM = m_dm
M_DOOM 40 -5 = m_dm
#else
TITLEPIC 0 0 = fd2title
M_DOOM

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

BIN
graphics/captainw/m_dm.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -1 +1 @@
ajapted/m_dm.gif
captainw/m_dm.gif

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

BIN
patches/captainw/logo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@ -1 +1 @@
rellik/logo.gif
captainw/logo.gif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB