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