2009-03-13 07:25:00 +00:00
|
|
|
/* Pcsx2 - Pc Ps2 Emulator
|
|
|
|
* Copyright (C) 2002-2009 Pcsx2 Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
2009-03-15 03:18:31 +00:00
|
|
|
|
|
|
|
|
2009-03-13 07:25:00 +00:00
|
|
|
#ifndef __SIOAPI_H__
|
|
|
|
#define __SIOAPI_H__
|
|
|
|
|
|
|
|
// Note; this header is experimental, and will be a shifting target. Only use this if you are willing to repeatedly fix breakage.
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Based on PS2E Definitions by
|
|
|
|
linuzappz@hotmail.com,
|
|
|
|
* shadowpcsx2@yahoo.gr,
|
|
|
|
* and florinsasu@hotmail.com
|
|
|
|
*/
|
2009-03-15 03:18:31 +00:00
|
|
|
|
2009-03-13 07:25:00 +00:00
|
|
|
#include "Pcsx2Api.h"
|
|
|
|
|
|
|
|
/* SIO plugin API */
|
|
|
|
|
2009-03-15 03:18:31 +00:00
|
|
|
// Called by SIO_TYPE_MTAP plugins to change the slot.
|
|
|
|
// Slot is then passed to memcard and pad plugins on SIOstartPoll.
|
2009-03-15 09:30:31 +00:00
|
|
|
// MTAP SIO plugins should ignore slot values on startPoll, as should RMs (probably).
|
|
|
|
|
|
|
|
// Port isn't strictly necessary, but doesn't hurt.
|
2016-11-12 15:28:37 +00:00
|
|
|
typedef int(CALLBACK *SIOchangeSlotCB)(int port, int slot);
|
2009-03-15 03:18:31 +00:00
|
|
|
|
2009-03-14 02:39:40 +00:00
|
|
|
// Basic functions.
|
2009-03-13 07:25:00 +00:00
|
|
|
|
2009-03-15 03:18:31 +00:00
|
|
|
// Types is an or-ed combination of SioTypes to initialize. It'd probably be simplest
|
|
|
|
// just to make each SIO plugin support only one type, for simplicity.
|
|
|
|
// SIOchangeSlotCB should *only* be called by MTAP plugins.
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(s32)
|
|
|
|
SIOinit(int types, SIOchangeSlotCB f);
|
2009-03-15 03:18:31 +00:00
|
|
|
|
2009-03-14 02:12:17 +00:00
|
|
|
// Single plugin can only be PAD, MTAP, RM, or MC. Only load one plugin of each type,
|
|
|
|
// but not both a PAD and MTAP. Simplifies plugin selection and interface, as well
|
|
|
|
// as API.
|
2009-03-14 02:39:40 +00:00
|
|
|
// pDisplay normally is passed a handle to the GS plugins window.
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(s32)
|
|
|
|
SIOopen(void *pDisplay);
|
|
|
|
EXPORT_C_(void)
|
|
|
|
SIOclose();
|
|
|
|
EXPORT_C_(void)
|
|
|
|
SIOshutdown();
|
2009-03-15 03:18:31 +00:00
|
|
|
|
|
|
|
// Returns 0 if device doesn't exist. Means old pad plugins can just say nothing
|
|
|
|
// connected to other slots, and SIOpoll won't be called on those slots, ideally.
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(s32)
|
|
|
|
SIOstartPoll(u8 deviceType, u32 port, u32 slot, u8 *returnValue);
|
2009-03-15 03:18:31 +00:00
|
|
|
|
2009-03-14 02:12:17 +00:00
|
|
|
// Returns 0 on the last output byte.
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(s32)
|
|
|
|
SIOpoll(u8 value, u8 *returnValue);
|
2009-03-13 07:25:00 +00:00
|
|
|
|
|
|
|
// returns: SIO_TYPE_{PAD,MTAP,RM,MC}
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(u32)
|
|
|
|
SIOquery();
|
2009-03-13 07:25:00 +00:00
|
|
|
|
|
|
|
// extended funcs
|
|
|
|
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(void)
|
|
|
|
SIOconfigure();
|
|
|
|
EXPORT_C_(keyEvent *)
|
|
|
|
CALLBACK SIOkeyEvent();
|
2009-03-15 09:30:31 +00:00
|
|
|
|
|
|
|
// Save one type at a time. If a plugin supports all 4 types,
|
|
|
|
// should expect 4 calls. Increases savestate compatibility.
|
2016-11-12 15:28:37 +00:00
|
|
|
EXPORT_C_(s32)
|
|
|
|
SIOfreeze(u8 mode, freezeData *data, int type);
|
|
|
|
EXPORT_C_(void)
|
|
|
|
SIOabout();
|
|
|
|
EXPORT_C_(s32)
|
|
|
|
SIOtest();
|
2009-03-14 02:39:40 +00:00
|
|
|
|
|
|
|
enum {
|
2016-11-12 15:28:37 +00:00
|
|
|
SIO_TYPE_PAD = 0x00000001,
|
|
|
|
SIO_TYPE_MTAP = 0x00000004,
|
|
|
|
SIO_TYPE_RM = 0x00000040,
|
|
|
|
SIO_TYPE_MC = 0x00000100
|
2009-03-14 02:39:40 +00:00
|
|
|
} SioTypes;
|
2009-03-13 07:25:00 +00:00
|
|
|
|
|
|
|
#endif // __SIOAPI_H__
|