Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/Glide64/Keys.h
2 views
/*1* Glide64 - Glide video plugin for Nintendo 64 emulators.2* Copyright (c) 2002 Dave20013* Copyright (c) 2003-2009 Sergey 'Gonetz' Lipski4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public License16* along with this program; if not, write to the Free Software17* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA18*/1920//****************************************************************21//22// Glide64 - Glide Plugin for Nintendo 64 emulators23// Project started on December 29th, 200124//25// Authors:26// Dave2001, original author, founded the project in 2001, left it in 200227// Gugaman, joined the project in 2002, left it in 200228// Sergey 'Gonetz' Lipski, joined the project in 2002, main author since fall of 200229// Hiroshi 'KoolSmoky' Morii, joined the project in 200730//31//****************************************************************32//33// To modify Glide64:34// * Write your name and (optional)email, commented by your work, so I know who did it, and so that you can find which parts you modified when it comes time to send it to me.35// * Do NOT send me the whole project or file that you modified. Take out your modified code sections, and tell me where to put them. If people sent the whole thing, I would have many different versions, but no idea how to combine them all.36//37//****************************************************************38//39// Keys, used by Glide64.40// Since key codes are different for WinAPI and SDL, this difference is managed here41// Created by Sergey 'Gonetz' Lipski, July 200942//43//****************************************************************4445#ifndef Keys_H46#define Keys_H4748#define G64_VK_CONTROL 049#define G64_VK_ALT 150#define G64_VK_INSERT 251#define G64_VK_LBUTTON 352#define G64_VK_UP 453#define G64_VK_DOWN 554#define G64_VK_LEFT 655#define G64_VK_RIGHT 756#define G64_VK_SPACE 857#define G64_VK_BACK 958#define G64_VK_SCROLL 1059#define G64_VK_1 1160#define G64_VK_2 1261#define G64_VK_3 1362#define G64_VK_4 1463#define G64_VK_5 1564#define G64_VK_6 1665#define G64_VK_7 1766#define G64_VK_8 1867#define G64_VK_9 1968#define G64_VK_0 2069#define G64_VK_A 2170#define G64_VK_B 2271#define G64_VK_D 2372#define G64_VK_G 2473#define G64_VK_Q 2574#define G64_VK_R 2675#define G64_VK_S 2776#define G64_VK_V 2877#define G64_VK_W 297879#define G64_NUM_KEYS 308081class Glide64Keys82{83public:84Glide64Keys();85~Glide64Keys(){}86int operator[](unsigned int index){return _keys[index];}8788private:89int _keys[G64_NUM_KEYS];90};9192#endif //Keys_H939495