選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

87 行
2.0 KiB

  1. /*
  2. * ttyvaders Textmode shoot'em up
  3. * Copyright (c) 2002 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. */
  22. #include <stdlib.h>
  23. #include "common.h"
  24. void draw_status(game *g)
  25. {
  26. static char dots30[] = "------------------------------";
  27. static char dashes30[] = "==============================";
  28. /* Draw life jauge */
  29. ee_color(EE_GRAY);
  30. ee_goto(4, 1);
  31. ee_putstr(dots30);
  32. if(g->p->life > MAX_LIFE * 7 / 10)
  33. {
  34. ee_color(EE_GREEN);
  35. }
  36. else if(g->p->life > MAX_LIFE * 3 / 10)
  37. {
  38. ee_color(EE_YELLOW);
  39. }
  40. else
  41. {
  42. ee_color(EE_RED);
  43. }
  44. ee_goto(4, 1);
  45. ee_putstr(dashes30 + (MAX_LIFE - g->p->life) * 30 / MAX_LIFE);
  46. ee_color(EE_WHITE);
  47. ee_goto(1, 1);
  48. ee_putstr("L |");
  49. ee_goto(34, 1);
  50. ee_putstr("|");
  51. /* Draw weapon jauge */
  52. ee_color(EE_GRAY);
  53. ee_goto(42, 1);
  54. ee_putstr(dots30 + 10);
  55. if(g->p->special > MAX_SPECIAL * 9 / 10)
  56. {
  57. ee_color(EE_WHITE);
  58. }
  59. else if(g->p->special > MAX_SPECIAL * 3 / 10)
  60. {
  61. ee_color(EE_CYAN);
  62. }
  63. else
  64. {
  65. ee_color(EE_BLUE);
  66. }
  67. ee_goto(42, 1);
  68. ee_putstr(dashes30 + 10 + (MAX_SPECIAL - g->p->special) * 20 / MAX_SPECIAL);
  69. ee_color(EE_WHITE);
  70. ee_goto(39, 1);
  71. ee_putstr("S |");
  72. ee_goto(62, 1);
  73. ee_putstr("|");
  74. }