2010-12-08 08:26:18 +01:00
|
|
|
#ifndef UIDMAP_H
|
|
|
|
#define UIDMAP_H
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2010-12-10 04:50:08 +01:00
|
|
|
//class for handling the uid.sys in a virtual nand
|
|
|
|
//
|
2010-12-08 08:26:18 +01:00
|
|
|
class UIDmap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UIDmap( const QByteArray old = QByteArray() );
|
|
|
|
~UIDmap();
|
|
|
|
|
|
|
|
//makes sure there are the default entries in the map and that the entries are sane
|
|
|
|
bool Check();
|
|
|
|
|
|
|
|
//returns the uid for the given tid
|
|
|
|
//returns 0 if it is not found. or if autocreate is true, it will be created and the new uid returned
|
|
|
|
//numbers are in host endian
|
|
|
|
quint32 GetUid( quint64 tid, bool autoCreate = true );
|
|
|
|
|
|
|
|
//creates a new uid.sys with the system menu entry.
|
2010-12-10 04:50:08 +01:00
|
|
|
//if addFactorySetupDiscs is true, it will add some entries for the setup discs used in the wii factory
|
|
|
|
// ( serve no purpose other than to just exist )
|
2010-12-08 08:26:18 +01:00
|
|
|
void CreateNew( bool addFactorySetupDiscs = false );
|
|
|
|
|
2010-12-10 04:50:08 +01:00
|
|
|
//get th entire uid.sys data back in a state ready for writing to a nand
|
2010-12-08 08:26:18 +01:00
|
|
|
const QByteArray Data(){ return data; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
QByteArray data;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // UIDMAP_H
|