merged ppu code, added input+zapper, FDS/VS insert in menu
[fceu.git] / input / powerpad.c
CommitLineData
c62d2810 1/* FCE Ultra - NES/Famicom Emulator
2 *
3 * Copyright notice for this file:
e328100e 4 * Copyright (C) 2002 Xodnizel
c62d2810 5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <string.h>
e328100e 22#include <stdlib.h>
23#include "share.h"
c62d2810 24
25
e328100e 26static char side;
c62d2810 27static uint32 pprsb[2];
28static uint32 pprdata[2];
29
30static uint8 FP_FASTAPASS(1) ReadPP(int w)
31{
32 uint8 ret=0;
33 ret|=((pprdata[w]>>pprsb[w])&1)<<3;
34 ret|=((pprdata[w]>>(pprsb[w]+8))&1)<<4;
35 if(pprsb[w]>=4)
36 {
37 ret|=0x10;
38 if(pprsb[w]>=8)
39 ret|=0x08;
40 }
e328100e 41 if(!fceuindbg)
42 pprsb[w]++;
c62d2810 43 return ret;
44}
45
46static void FP_FASTAPASS(1) StrobePP(int w)
47{
48 pprsb[w]=0;
49}
50
51void FP_FASTAPASS(3) UpdatePP(int w, void *data, int arg)
52{
e328100e 53 static const char shifttableA[12]={8,9,0,1,11,7,4,2,10,6,5,3};
54 static const char shifttableB[12]={1,0,9,8,2,4,7,11,3,5,6,10};
55 int x;
56
57 pprdata[w]=0;
58
59 if(side=='A')
60 for(x=0;x<12;x++)
61 pprdata[w]|=(((*(uint32 *)data)>>x)&1)<<shifttableA[x];
62 else
63 for(x=0;x<12;x++)
64 pprdata[w]|=(((*(uint32 *)data)>>x)&1)<<shifttableB[x];
c62d2810 65}
66
e328100e 67static INPUTC PwrPadCtrl={ReadPP,0,StrobePP,UpdatePP,0,0};
c62d2810 68
e328100e 69static INPUTC *FCEU_InitPowerpad(int w)
c62d2810 70{
71 pprsb[w]=pprdata[w]=0;
e328100e 72 return(&PwrPadCtrl);
73}
74
75INPUTC *FCEU_InitPowerpadA(int w)
76{
77 side='A';
78 return(FCEU_InitPowerpad(w));
79}
80
81INPUTC *FCEU_InitPowerpadB(int w)
82{
83 side='B';
84 return(FCEU_InitPowerpad(w));
c62d2810 85}