mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
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:
parent
ec9dcdd073
commit
affe9b53a1
12 changed files with 32 additions and 22 deletions
|
@ -1,15 +1,21 @@
|
|||
titlepic: freedoom.gif freedm.gif ultdoom.gif
|
||||
titlepic: fd1title.gif fd2title.gif fdmtitle.gif
|
||||
|
||||
freedoom.gif: titlepic.gif
|
||||
./create_caption Freedoom $@
|
||||
m_doom.gif: ../m_doom.gif
|
||||
convert -transparent '#00ffff' ../m_doom.gif m_doom.gif
|
||||
|
||||
freedm.gif: titlepic.gif
|
||||
./create_caption FreeDM $@
|
||||
m_dm.gif: ../m_dm.gif
|
||||
convert -transparent '#00ffff' ../m_dm.gif m_dm.gif
|
||||
|
||||
ultdoom.gif: titlepic.gif
|
||||
./create_caption "\"Ultimate Freedoom\"" $@
|
||||
fd1title.gif: titlepic.gif m_doom.gif
|
||||
./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:
|
||||
rm -f freedm.gif freedoom.gif ultdoom.gif
|
||||
rm -f m_dm.gif m_doom.gif fd1title.gif fd2title.gif fdmtitle.gif
|
||||
|
||||
.PHONY: clean
|
||||
|
|
|
@ -3,15 +3,17 @@
|
|||
DATE=`date +%Y/%m/%d`
|
||||
VERSION=`git describe` || VERSION=`cat ../../VERSION`
|
||||
|
||||
convert -fill white -font Helvetica-Bold \
|
||||
-pointsize 30 \
|
||||
convert titlepic.gif -fill white -font Helvetica-Bold \
|
||||
-draw "image over 94,2 0,0 '$1'" \
|
||||
-pointsize 20 \
|
||||
-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 \
|
||||
-gravity southwest \
|
||||
-draw "text 5,5 'http://freedoom.github.io/'" \
|
||||
-gravity southeast \
|
||||
-draw "text 10,25 'Version: $VERSION'" \
|
||||
-draw "text 10,5 '$DATE'" \
|
||||
titlepic.gif $2
|
||||
$3
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue