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

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

View file

@ -613,7 +613,7 @@ M_DOOM
#else #else
#ifdef FREEDM #ifdef FREEDM
TITLEPIC 0 0 = fdmtitle TITLEPIC 0 0 = fdmtitle
M_DOOM = m_dm M_DOOM 40 -5 = m_dm
#else #else
TITLEPIC 0 0 = fd2title TITLEPIC 0 0 = fd2title
M_DOOM 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 convert -transparent '#00ffff' ../m_dm.gif m_dm.gif
fd1title.gif: titlepic.gif m_doom.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 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 fdmtitle.gif: ../captainw/fdmtitle.gif
./create_caption m_dm.gif "Deathmatch" $@ ./create_caption ../captainw/fdmtitle.gif $@
clean: clean:
rm -f m_dm.gif m_doom.gif fd1title.gif fd2title.gif fdmtitle.gif rm -f m_dm.gif m_doom.gif fd1title.gif fd2title.gif fdmtitle.gif

View file

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