Changeset 65 for libcaca/trunk
- Timestamp:
- Dec 23, 2002, 5:44:28 PM (20 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/README
r27 r65 1 2 Building ttyvaders 3 ================== 4 5 Run configure then make. Configure flags are: 6 7 --enable-slang: use the SLang library (default) 8 --enable-ncurses: use the ncurses library 1 9 2 10 -
libcaca/trunk/TODO
r55 r65 3 3 * let the ship pick up bonuses 4 4 5 *handle life5 DONE 23 Dec 2002: handle life 6 6 7 7 * alien swarms, programmed behaviour -
libcaca/trunk/configure.ac
r63 r65 19 19 [ --enable-ncurses ncurses graphics support (default disabled)]) 20 20 21 USE_SLANG=false 22 USE_NCURSES=false 21 23 if test "${enable_ncurses}" = "yes" 22 24 then 23 25 AC_CHECK_HEADER(ncurses.h,:,AC_MSG_ERROR([cannot find ncurses headers])) 24 26 AC_CHECK_LIB(ncurses,initscr,:,AC_MSG_ERROR([cannot find ncurses library])) 27 USE_NCURSES=: 25 28 else 26 29 if test "${enable_slang}" != "no" … … 28 31 AC_CHECK_HEADER(slang.h,:,AC_MSG_ERROR([cannot find slang headers])) 29 32 AC_CHECK_LIB(slang,SLkp_init,:,AC_MSG_ERROR([cannot find slang library])) 33 USE_SLANG=: 30 34 else 31 35 : … … 33 37 fi 34 38 35 AM_CONDITIONAL(USE_SLANG, test "${enable_slang}" != "no")36 AM_CONDITIONAL(USE_NCURSES, test "${enable_ncurses}" = "yes")39 AM_CONDITIONAL(USE_SLANG, ${USE_SLANG}) 40 AM_CONDITIONAL(USE_NCURSES, ${USE_NCURSES}) 37 41 38 42 AC_OUTPUT([ -
libcaca/trunk/src/weapons.c
r49 r65 4 4 * All Rights Reserved 5 5 * 6 * $Id: weapons.c,v 1.1 2 2002/12/23 09:28:37sam Exp $6 * $Id: weapons.c,v 1.13 2002/12/23 16:44:28 sam Exp $ 7 7 * 8 8 * This program is free software; you can redistribute it and/or modify … … 494 494 gfx_color( GRAY ); 495 495 gfx_goto( x - 1, y + 3 ); 496 gfx_putchar( ' °' );496 gfx_putchar( ':' ); 497 497 gfx_goto( x + 2, y + 4 ); 498 gfx_putchar( ' °' );498 gfx_putchar( ':' ); 499 499 gfx_goto( x, y + 4 ); 500 500 gfx_putchar( '.' ); … … 512 512 gfx_color( GRAY ); 513 513 gfx_goto( x + 2, y + 3 ); 514 gfx_putchar( ' °' );514 gfx_putchar( ':' ); 515 515 gfx_goto( x + 1, y + 4 ); 516 gfx_putchar( ' °' );516 gfx_putchar( ':' ); 517 517 gfx_goto( x - 1, y + 4 ); 518 518 gfx_putchar( '.' ); … … 532 532 gfx_color( GRAY ); 533 533 gfx_goto( x, y + 4 ); 534 gfx_putchar( ' °' );534 gfx_putchar( ':' ); 535 535 gfx_goto( x + 2, y + 4 ); 536 536 gfx_putchar( '.' ); … … 550 550 gfx_color( GRAY ); 551 551 gfx_goto( x, y + 3 ); 552 gfx_putchar( ' °' );552 gfx_putchar( ':' ); 553 553 gfx_goto( x + 1, y + 4 ); 554 gfx_putchar( ' °' );554 gfx_putchar( ':' ); 555 555 gfx_goto( x, y + 5 ); 556 556 gfx_putchar( '.' );
Note: See TracChangeset
for help on using the changeset viewer.