X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=fceu.git;a=blobdiff_plain;f=input.h;h=14586d05d8dee6dbd0647d2b5b25d98b1de1a4cd;hp=8cec68af7a06a428340ed3fa9a623edbe3d40532;hb=4769605c072bf4a5ccbb8d685365b36ff3eb1667;hpb=c62d28102c77e19c291c78bf6bf7f0a81abd54b9 diff --git a/input.h b/input.h index 8cec68a..14586d0 100644 --- a/input.h +++ b/input.h @@ -3,7 +3,7 @@ typedef struct { void FP_FASTAPASS(1) (*Write)(uint8 v); void FP_FASTAPASS(1) (*Strobe)(int w); void FP_FASTAPASS(3) (*Update)(int w, void *data, int arg); - void FP_FASTAPASS(3) (*SLHook)(int w, uint8 *buf, int line); + void FP_FASTAPASS(3) (*SLHook)(int w, uint8 *bg, uint8 *spr, uint32 linets, int final); void FP_FASTAPASS(3) (*Draw)(int w, uint8 *buf, int arg); } INPUTC; @@ -12,7 +12,7 @@ typedef struct { void FP_FASTAPASS(1) (*Write)(uint8 v); void (*Strobe)(void); void FP_FASTAPASS(2) (*Update)(void *data, int arg); - void FP_FASTAPASS(2) (*SLHook)(uint8 *buf, int line); + void FP_FASTAPASS(3) (*SLHook)(uint8 *bg, uint8 *spr, uint32 linets, int final); void FP_FASTAPASS(2) (*Draw)(uint8 *buf, int arg); } INPUTCFC; @@ -20,4 +20,22 @@ void DrawInput(uint8 *buf); void UpdateInput(void); void InitializeInput(void); extern void (*PStrobe[2])(void); -extern void (*InputScanlineHook)(uint8 *buf, int line); +extern void (*InputScanlineHook)(uint8 *bg, uint8 *spr, uint32 linets, int final); + +#define FCEUNPCMD_RESET 0x01 +#define FCEUNPCMD_POWER 0x02 + +#define FCEUNPCMD_VSUNICOIN 0x07 +#define FCEUNPCMD_VSUNIDIP0 0x08 +#define FCEUNPCMD_FDSINSERT 0x18 +#define FCEUNPCMD_FDSSELECT 0x1A +void FCEU_DoSimpleCommand(int cmd); + +void FCEUI_FDSSelect(void); +int FCEUI_FDSInsert(void); +void FCEUI_VSUniToggleDIP(int w); +void FCEUI_VSUniCoin(void); +void FCEUI_ResetNES(void); +void FCEUI_PowerNES(void); + +extern char lastLoadedGameName [2048];