2012-01-21 21:57:41 +01:00
|
|
|
/****************************************************************************
|
2012-09-22 15:47:52 +02:00
|
|
|
* Copyright (C) 2010 by Dimok
|
|
|
|
* (C) 2012 by FIX94
|
2012-01-21 21:57:41 +01:00
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any
|
|
|
|
* damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any
|
|
|
|
* purpose, including commercial applications, and to alter it and
|
|
|
|
* redistribute it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
|
|
* must not claim that you wrote the original software. If you use
|
|
|
|
* this software in a product, an acknowledgment in the product
|
|
|
|
* documentation would be appreciated but is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
|
|
* must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any source
|
|
|
|
* distribution.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef DEVICE_HANDLER_HPP_
|
|
|
|
#define DEVICE_HANDLER_HPP_
|
|
|
|
|
|
|
|
#include "PartitionHandle.h"
|
2012-07-18 16:09:28 +02:00
|
|
|
#include "usbstorage.h"
|
|
|
|
#include "libwbfs/libwbfs.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
2012-07-18 16:09:28 +02:00
|
|
|
/**
|
|
|
|
* libogc device names.
|
|
|
|
*/
|
2012-01-21 21:57:41 +01:00
|
|
|
enum
|
|
|
|
{
|
2012-07-18 16:09:28 +02:00
|
|
|
SD = 0,
|
|
|
|
USB1,
|
|
|
|
USB2,
|
|
|
|
USB3,
|
|
|
|
USB4,
|
|
|
|
USB5,
|
|
|
|
USB6,
|
|
|
|
USB7,
|
|
|
|
USB8,
|
|
|
|
MAXDEVICES
|
2012-01-21 21:57:41 +01:00
|
|
|
};
|
|
|
|
|
2012-07-18 16:09:28 +02:00
|
|
|
/**
|
|
|
|
* libogc device names.
|
|
|
|
*/
|
|
|
|
const char DeviceName[MAXDEVICES][8] =
|
2012-01-21 21:57:41 +01:00
|
|
|
{
|
2012-07-18 16:09:28 +02:00
|
|
|
"sd",
|
|
|
|
"usb1",
|
|
|
|
"usb2",
|
|
|
|
"usb3",
|
|
|
|
"usb4",
|
|
|
|
"usb5",
|
|
|
|
"usb6",
|
|
|
|
"usb7",
|
|
|
|
"usb8",
|
2012-01-21 21:57:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class DeviceHandler
|
|
|
|
{
|
2012-09-20 18:09:32 +02:00
|
|
|
public:
|
2012-09-22 15:47:52 +02:00
|
|
|
void Init();
|
2012-09-20 18:09:32 +02:00
|
|
|
void SetModes();
|
2018-07-09 16:53:35 +02:00
|
|
|
void SetMountUSB(bool using_usb);
|
2012-09-20 18:09:32 +02:00
|
|
|
void MountAll();
|
|
|
|
void UnMountAll();
|
|
|
|
bool Mount(int dev);
|
|
|
|
bool IsInserted(int dev);
|
|
|
|
void UnMount(int dev);
|
|
|
|
|
|
|
|
//! Individual Mounts/UnMounts...
|
|
|
|
bool MountSD();
|
|
|
|
bool MountAllUSB();
|
|
|
|
bool MountUSBPort1();
|
|
|
|
|
2012-10-15 21:16:14 +02:00
|
|
|
bool SD_Inserted() { return sd.IsInserted(); }
|
2013-02-14 22:30:48 +01:00
|
|
|
bool USB_Inserted() { return usb.IsInserted(); }
|
2012-09-20 18:09:32 +02:00
|
|
|
bool UsablePartitionMounted();
|
|
|
|
bool PartitionUsableForNandEmu(int Partition);
|
|
|
|
void WaitForDevice(const DISC_INTERFACE *Handle);
|
|
|
|
|
2012-10-15 21:16:14 +02:00
|
|
|
void UnMountSD() { sd.UnMountAll(); }
|
2012-09-20 18:09:32 +02:00
|
|
|
void UnMountUSB(int pos);
|
|
|
|
void UnMountAllUSB();
|
|
|
|
|
2013-02-14 22:30:48 +01:00
|
|
|
PartitionHandle *GetUSBHandleFromPartition(int part);
|
|
|
|
const DISC_INTERFACE *GetUSBInterface();
|
2012-09-20 18:09:32 +02:00
|
|
|
|
2012-09-22 15:47:52 +02:00
|
|
|
int PathToDriveType(const char *path);
|
|
|
|
const char * GetFSName(int dev);
|
|
|
|
int GetFSType(int dev);
|
|
|
|
u16 GetUSBPartitionCount();
|
|
|
|
const char *PathToFSName(const char *path) { return GetFSName(PathToDriveType(path)); }
|
|
|
|
wbfs_t *GetWbfsHandle(int dev);
|
|
|
|
s32 OpenWBFS(int dev);
|
2012-09-20 18:09:32 +02:00
|
|
|
|
|
|
|
/* Special Devolution Stuff */
|
2012-11-17 18:30:24 +01:00
|
|
|
bool MountDevolution();
|
|
|
|
void UnMountDevolution();
|
2012-09-20 18:09:32 +02:00
|
|
|
private:
|
|
|
|
bool MountUSB(int part);
|
|
|
|
|
2012-10-15 21:16:14 +02:00
|
|
|
PartitionHandle sd;
|
2013-02-14 22:30:48 +01:00
|
|
|
PartitionHandle usb;
|
2012-09-20 18:09:32 +02:00
|
|
|
/* Special Devolution Stuff */
|
2012-10-15 21:16:14 +02:00
|
|
|
PartitionHandle OGC_Device;
|
2012-01-21 21:57:41 +01:00
|
|
|
};
|
|
|
|
|
2012-09-22 15:47:52 +02:00
|
|
|
extern DeviceHandler DeviceHandle;
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
#endif
|