graphics: Generate the HELP screen programatically.

The original Doom HELP screen showed the default key bindings for the
game's controls. This is not so useful nowadays: at worst it's
outright misleading because the player might not be using the
defaults, but it's also redundant because most modern source ports
allow the key bindings to be changed via the menus, which doubles as a
convenient list of the current key bindings.

Z0k suggested an alternative HELP screen that shows the items and
powerups available in the game. More discussion can be seen in this
thread: http://www.doomworld.com/vb/freedoom/69458-help/
This commit is contained in:
Simon Howard 2014-07-27 03:28:14 +00:00
parent fa4d3b9a2d
commit 18be2c988c
6 changed files with 284 additions and 16 deletions

View file

@ -249,5 +249,4 @@ font = Font('fontchars', kerning_table=FONT_KERNING_RULES)
generate_graphics(red_graphics, color=COLOR_RED)
generate_graphics(blue_graphics, color=COLOR_BLUE)
generate_graphics(white_graphics, color=COLOR_WHITE)
generate_graphics(transparent_graphics, color=COLOR_RED, bgcolor=None)