在c中编写一个简单的游戏

时间:2015-02-19 12:03:03

标签: c stty

到目前为止,我制作了一张简单的地图(由我的终端中的字符制作而成),并且我试图获得一个' O'在其中四处走动。我觉得很烦人,每次我想要移动我必须按回车键。我找到了stty命令,我想检查当前状态是什么,将其设置为raw,并且当我完成时将其返回到它之前的状态。如果有人知道更好的方式,我很乐意听到它。我正在使用Ubuntu。

编辑: 这就是我所做的:

#include <stdio.h>
#include <stdlib.h>
#define MAX_Y 12
#define MAX_X 23

typedef enum {
  _notOk=0,
  _Ok
}_state;

typedef struct {
  int x, y;
  char map[MAX_Y][MAX_X];

}_map;

void mapPrint(_map gameState);
_state mapMove(_map* gameState);

int main()
{
  char gameMode=_Ok;
  _map gameState={
    .x=1,
    .y=1,
    .map={
    "######################",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "#                    #",
    "######################"}
  }; 



  system ("/bin/stty raw");
  do
  {
    mapPrint(gameState);
    gameMode=mapMove(&gameState); 
  } while(gameMode);
  system ("/bin/stty cooked");

  return 0;
}

void mapPrint(_map gameState)
{
  int i, j;

  system("clear");
  for(i=0; i<MAX_Y; i++)
  {
    for(j=0; j<MAX_X; j++)
      if (i==gameState.y && j==gameState.x)
    printf("%c", '0');
      else
    printf("%c", gameState.map[i][j]);
    printf("\n");
  }

}


_state mapMove(_map* gameState)
{
  char c=getchar();

  while (c!='w' && c!='a' && c!='s' && c!='d')
  {
    printf("Pomera se sa WASD!\n");
    c=getchar();
  }


  switch(c)
  {
    case 'w': (*gameState).y--; break;
    case 'a': (*gameState).x--; break;
    case 's': (*gameState).y++; break;
    case 'd': (*gameState).x++; break;
  }

  if((*gameState).map[(*gameState).y][(*gameState).x]==' ')
    return _Ok;

  return _notOk;  
}

我是初学者。

1 个答案:

答案 0 :(得分:1)

如果您想使用程序,在Unix系统下,您可以使用termios函数(tcsetattrtcgetattr)。正如所建议的,ncurses库可以为您完成大部分痛苦的工作:在屏幕上设置终端属性