view old/simple_pack/trash/pad.cpp @ 817:4e8fc627ed33

add CpuThreads.cc
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 May 2010 09:43:27 +0900 (2010-05-23)
parents 735f76483bb2
children
line wrap: on
line source
#include <iostream>
#include <SDL.h>
#include <SDL_opengl.h>
#include "pad.h"
using namespace std;

int pad(int button)
{
  Uint8 *keys=SDL_GetKeyState(NULL);
  
  if(button==UP && keys[SDLK_UP]==SDL_PRESSED)
    {
      return 1;
    }
  if(button==DOWN && keys[SDLK_DOWN]==SDL_PRESSED)
    {
      return 1;
    }
  if(button==RIGHT && keys[SDLK_RIGHT]==SDL_PRESSED)
    {
      return 1;
    }
  if(button==LEFT && keys[SDLK_LEFT]==SDL_PRESSED)
    {
      return 1;
    }
  return 0;
}