2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-21 00:47:53 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "DiscIO/Blob.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2009-02-21 23:44:40 +00:00
|
|
|
#include <winioctl.h>
|
2008-12-08 04:46:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
|
|
|
|
class DriveReader : public SectorReader
|
|
|
|
{
|
|
|
|
private:
|
2009-02-21 23:44:40 +00:00
|
|
|
DriveReader(const char *drive);
|
2014-03-08 00:54:44 +00:00
|
|
|
void GetBlock(u64 block_num, u8 *out_ptr) override;
|
2009-02-22 07:52:02 +00:00
|
|
|
|
2009-02-21 23:44:40 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
HANDLE hDisc;
|
2009-02-24 19:57:29 +00:00
|
|
|
PREVENT_MEDIA_REMOVAL pmrLockCDROM;
|
|
|
|
bool IsOK() {return hDisc != INVALID_HANDLE_VALUE;}
|
2009-02-21 23:44:40 +00:00
|
|
|
#else
|
2011-03-11 10:21:46 +00:00
|
|
|
File::IOFile file_;
|
2014-03-09 20:14:26 +00:00
|
|
|
bool IsOK() {return file_ != nullptr;}
|
2009-02-21 23:44:40 +00:00
|
|
|
#endif
|
|
|
|
s64 size;
|
2009-02-22 07:52:02 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
public:
|
2009-02-21 23:44:40 +00:00
|
|
|
static DriveReader *Create(const char *drive);
|
|
|
|
~DriveReader();
|
2014-03-08 00:54:44 +00:00
|
|
|
u64 GetDataSize() const override { return size; }
|
|
|
|
u64 GetRawSize() const override { return size; }
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-03-08 00:54:44 +00:00
|
|
|
virtual bool ReadMultipleAlignedBlocks(u64 block_num, u64 num_blocks, u8 *out_ptr) override;
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|