graphics: Rename title screen.

By popular vote[1] on Doomworld we are ditching the "Ultimate" name
for Freedoom 1; the two IWADs are now named "Freedoom: Phase 1" and
"Freedoom: Phase 2". Rework the title screen to incorporate the logo
from the menu, and add a matching logo for FreeDM.

[1] http://www.doomworld.com/vb/freedoom/66855-renaming
This commit is contained in:
Simon Howard 2014-01-11 22:39:09 +00:00
parent ec9dcdd073
commit affe9b53a1
12 changed files with 32 additions and 22 deletions

5
.gitignore vendored
View file

@ -1,8 +1,7 @@
*.html *.html
deutex.log deutex.log
graphics/titlepic/freedm.gif graphics/titlepic/fd?title.gif
graphics/titlepic/freedoom.gif graphics/titlepic/m_*.gif
graphics/titlepic/ultdoom.gif
lumps/cph/misc-lumps/*map.lmp lumps/cph/misc-lumps/*map.lmp
lumps/cph/misc-lumps/playpal.lmp lumps/cph/misc-lumps/playpal.lmp
lumps/freedoom.lmp lumps/freedoom.lmp

View file

@ -580,12 +580,15 @@ D_ULTIMA = D_DM32
[graphics] [graphics]
#ifdef ULTDOOM #ifdef ULTDOOM
TITLEPIC 0 0 = doomuttl TITLEPIC 0 0 = fd1title
M_DOOM
#else #else
#ifdef FREEDM #ifdef FREEDM
TITLEPIC 0 0 = dmttl TITLEPIC 0 0 = fdmtitle
M_DOOM = m_dm
#else #else
TITLEPIC 0 0 = doomttl TITLEPIC 0 0 = fd2title
M_DOOM
#endif #endif
#endif #endif
@ -765,7 +768,6 @@ STFKILL4 -5 -2
STFGOD0 -5 -2 STFGOD0 -5 -2
STFDEAD0 -5 -1 STFDEAD0 -5 -1
M_EPISOD 0 0 M_EPISOD 0 0
M_DOOM -1 -1
M_RDTHIS 0 0 M_RDTHIS 0 0
M_OPTION 0 0 M_OPTION 0 0
M_QUITG 0 0 M_QUITG 0 0

BIN
graphics/ajapted/m_dm.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -1 +0,0 @@
titlepic/freedm.gif

View file

@ -1 +0,0 @@
titlepic/freedoom.gif

View file

@ -1 +0,0 @@
titlepic/ultdoom.gif

1
graphics/fd1title.gif Symbolic link
View file

@ -0,0 +1 @@
titlepic/fd1title.gif

1
graphics/fd2title.gif Symbolic link
View file

@ -0,0 +1 @@
titlepic/fd2title.gif

1
graphics/fdmtitle.gif Symbolic link
View file

@ -0,0 +1 @@
titlepic/fdmtitle.gif

1
graphics/m_dm.gif Symbolic link
View file

@ -0,0 +1 @@
ajapted/m_dm.gif

View file

@ -1,15 +1,21 @@
titlepic: freedoom.gif freedm.gif ultdoom.gif titlepic: fd1title.gif fd2title.gif fdmtitle.gif
freedoom.gif: titlepic.gif m_doom.gif: ../m_doom.gif
./create_caption Freedoom $@ convert -transparent '#00ffff' ../m_doom.gif m_doom.gif
freedm.gif: titlepic.gif m_dm.gif: ../m_dm.gif
./create_caption FreeDM $@ convert -transparent '#00ffff' ../m_dm.gif m_dm.gif
ultdoom.gif: titlepic.gif fd1title.gif: titlepic.gif m_doom.gif
./create_caption "\"Ultimate Freedoom\"" $@ ./create_caption m_doom.gif "Phase 1" $@
fd2title.gif: titlepic.gif m_doom.gif
./create_caption m_doom.gif "Phase 2" $@
fdmtitle.gif: titlepic.gif m_dm.gif
./create_caption m_dm.gif "Deathmatch" $@
clean: clean:
rm -f freedm.gif freedoom.gif ultdoom.gif rm -f m_dm.gif m_doom.gif fd1title.gif fd2title.gif fdmtitle.gif
.PHONY: clean .PHONY: clean

View file

@ -3,15 +3,17 @@
DATE=`date +%Y/%m/%d` DATE=`date +%Y/%m/%d`
VERSION=`git describe` || VERSION=`cat ../../VERSION` VERSION=`git describe` || VERSION=`cat ../../VERSION`
convert -fill white -font Helvetica-Bold \ convert titlepic.gif -fill white -font Helvetica-Bold \
-pointsize 30 \ -draw "image over 94,2 0,0 '$1'" \
-pointsize 20 \
-gravity north \ -gravity north \
-draw "text 0,30 $1" \ -draw "fill black stroke-width 4 stroke black text -5,65 '$2'" \
-draw "text -4.5,65 '$2'" \
-pointsize 11 \ -pointsize 11 \
-gravity southwest \ -gravity southwest \
-draw "text 5,5 'http://freedoom.github.io/'" \ -draw "text 5,5 'http://freedoom.github.io/'" \
-gravity southeast \ -gravity southeast \
-draw "text 10,25 'Version: $VERSION'" \ -draw "text 10,25 'Version: $VERSION'" \
-draw "text 10,5 '$DATE'" \ -draw "text 10,5 '$DATE'" \
titlepic.gif $2 $3