GTAdhocAPI
Gran Turismo (6) Adhoc API Documentation
Loading...
Searching...
No Matches
pdiext::MVoucher Class Reference

Handler for voucher/dlcs. More...

Inheritance diagram for pdiext::MVoucher:
System::Object

Public Member Functions

 MVoucher ()
 constructor taking no param More...
 
VoucherResultCode loadDRMModule ()
 Loads DRM Module. More...
 
VoucherResultCode unloadDRMModule ()
 Unloads DRM Module. More...
 
VoucherResultCode buildIndex ()
 Indexes all the voucher/edat files. More...
 
VoucherResultCode indexFirst ()
 Indexes the first voucher. More...
 
VoucherResultCode indexNext ()
 Indexes the next voucher. More...
 
Int indexIsDone ()
 Whether indexing is done. More...
 
Array< IntindexLoadFile (ByteData buffer)
 Loads decrypted edat file data into buffer. More...
 
VoucherResultCode indexIsValidNow ()
 
- Public Member Functions inherited from System::Object
 Object ()
 constructor taking no param More...
 
Bool isInstanceOf (Class classType)
 Returns whether an object is of a specific class/type. More...
 
Object getDeepCopy ()
 Gets a deep copy of this object. More...
 
void setDeepCopy (Object obj)
 Unk. More...
 
String dump ()
 Dumps all info about an object. More...
 
Object getObjectAttribute (string path)
 
void setObjectAttribute (string path, Object value)
 
Bool hasPrimitiveInterface ()
 Returns whether this object has a primitive interface. More...
 
Bool toBool ()
 Casts this object to Bool. More...
 
Byte toByte ()
 Casts this object to Byte. More...
 
Short toShort ()
 Casts this object to Short. More...
 
Int toInt ()
 Casts this object to Int. More...
 
Long toLong ()
 Casts this object to Long. More...
 
UByte toUByte ()
 Casts this object to UByte. More...
 
UShort toUShort ()
 Casts this object to UShort. More...
 
UInt toUInt ()
 Casts this object to UInt. More...
 
ULong toULong ()
 Casts this object to ULong. More...
 
Float toFloat ()
 Casts this object to Float. More...
 
Double toDouble ()
 Casts this object to Double. More...
 
String toString ()
 Casts this object to String. More...
 
Symbol toSymbol ()
 Casts this object to Symbol. More...
 
Bool hasArrayInterface ()
 Returns whether this object has an Array interface. More...
 
Int getArrayCount ()
 Gets the Array item count for this object. More...
 
void setArrayCount ()
 Sets the Array item count for this object. More...
 
Object getArrayElement (Object arg0)
 Gets an Array item for this object. More...
 
void setArrayElement (Object arg0, Object arg1)
 Sets the Array item for this object. More...
 
Bool hasMapInterface ()
 Returns whether this object has a Map interface. More...
 
int getMapCount ()
 Returns the count of items in the map. More...
 
void setMapElement (Object arg0, Object arg1)
 Returns whether the Map has a specific object key. Bool hasMapElement(Object arg0);. More...
 
Object getMapElement (Object arg0)
 Gets a Map element by key. More...
 
void hasGeneratorInterface ()
 Returns whether this object has a generator interface. More...
 
Iterator generator ()
 Returns generator (?) More...
 
void hasIteratorInterface ()
 Returns whether this object has an iterator. More...
 
Iterator iterator ()
 Gets the iterator for this object. More...
 
void hasVariableInterface ()
 Returns whether this object is a variable. More...
 
void hasFunctionInterface ()
 Returns whether this object has a function interface. More...
 
Object call ()
 Calls this object as a function. More...
 
Bool hasByteDataInterface ()
 Returns whether this object has a byte data interface. More...
 
Int getByteDataCount ()
 Returns the ByteData size for this object. More...
 
void setByteDataCount (Int count)
 Sets the ByteData size for this object. More...
 
Int getByteDataCapacity ()
 Returns the ByteData capacity for this object. More...
 
void setByteDataCapacity (Int capacity)
 Sets the ByteData capacity for this object. More...
 
ByteData getByteData ()
 Gets the underlaying ByteData. More...
 
void setByteData (ByteData bytedata)
 Sets the underlaying ByteData. More...
 
void hasObjectSelectorInterface ()
 Returns whether this object has an object selector interface. More...
 
void self ()
 Gets the get for this object if it has a get interface. More...
 
void getArchiveTree ()
 
void setArchiveTree ()
 
ByteData serialize ()
 Serializes this object. More...
 
void deserialize (ByteData serializedData)
 Deserializes this object. More...
 
void defined (Object obj)
 Returns whether a certain object is defined within this object. More...
 
Array find_all (FunctionObject func)
 Finds all the elements in this object that matches the predicates. More...
 
void each_all (FunctionObject func)
 Applies callback to all elements in this object. More...
 
Array map_all (FunctionObject< Object > func)
 Maps all the elements in this object. More...
 
Bool operator!= ()
 Returns whether this object is not equal to another. More...
 
Bool operator== ()
 Returns whether this object is equal to another. More...
 

Additional Inherited Members

- Public Attributes inherited from System::Object
Int rc_size
 Getter-only. Reference counter size of this object. More...
 
Object rc_class
 Getter-only. Type name of the object. More...
 
Int rc_count
 Getter-only. Reference count of this object. More...
 
Int weak_count
 Getter-only. Weak reference count of this object. More...
 
Class class_id
 Class (type) object for this object. More...
 

Detailed Description

Handler for voucher/dlcs.

var voucher = pdiext::MVoucher();
var res = voucher.loadDRMModule();
if (res < 0)
{
// Failed to load module
return;
}
res = voucher.buildIndex();
if (res < 0)
{
// Failed to build index of files
voucher.unloadDRMModule();
return;
}
voucher.indexFirst();
while (!voucher.indexIsDone())
{
var buf = ByteData(...);
var [res, size] = voucher.indexLoadFile(buf);
{
// Handle each result code
}
// Do something with buf
voucher.indexNext();
}
voucher.unloadDRMModule();
Handler for voucher/dlcs.
Definition: MVoucher.cpp:42

Definition at line 41 of file MVoucher.cpp.

Constructor & Destructor Documentation

◆ MVoucher()

pdiext::MVoucher::MVoucher ( )
inline

constructor taking no param

Definition at line 45 of file MVoucher.cpp.

Member Function Documentation

◆ buildIndex()

VoucherResultCode pdiext::MVoucher::buildIndex ( )

Indexes all the voucher/edat files.

Files from the "vou" folder in the dlcontents mount point, which will be /USRDIR/vou

◆ indexFirst()

VoucherResultCode pdiext::MVoucher::indexFirst ( )

Indexes the first voucher.

◆ indexIsDone()

Int pdiext::MVoucher::indexIsDone ( )

Whether indexing is done.

◆ indexIsValidNow()

VoucherResultCode pdiext::MVoucher::indexIsValidNow ( )

◆ indexLoadFile()

Array< Int > pdiext::MVoucher::indexLoadFile ( ByteData  buffer)

Loads decrypted edat file data into buffer.

Returns
Array((VoucherResultCode) result, size)

◆ indexNext()

VoucherResultCode pdiext::MVoucher::indexNext ( )

Indexes the next voucher.

◆ loadDRMModule()

VoucherResultCode pdiext::MVoucher::loadDRMModule ( )

Loads DRM Module.

Doesn't actually seem to do anything or load any sort of module, may not even be needed

◆ unloadDRMModule()

VoucherResultCode pdiext::MVoucher::unloadDRMModule ( )

Unloads DRM Module.

Doesn't actually seem to do anything or unload any sort of module, may not even be needed


The documentation for this class was generated from the following file: