mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
47 lines
1 KiB
C
47 lines
1 KiB
C
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
#include <fnd/memory_blob.h>
|
||
|
#include <fnd/List.h>
|
||
|
#include <nx/ISerialiseableBinary.h>
|
||
|
#include <nx/SacEntry.h>
|
||
|
|
||
|
class SacBinary :
|
||
|
public ISerialiseableBinary
|
||
|
{
|
||
|
public:
|
||
|
SacBinary();
|
||
|
SacBinary(const SacBinary& other);
|
||
|
SacBinary(const u8* bytes, size_t len);
|
||
|
|
||
|
bool operator==(const SacBinary& other) const;
|
||
|
bool operator!=(const SacBinary& other) const;
|
||
|
void operator=(const SacBinary& other);
|
||
|
|
||
|
// to be used after export
|
||
|
const u8* getBytes() const;
|
||
|
size_t getSize() const;
|
||
|
|
||
|
// export/import binary
|
||
|
void exportBinary();
|
||
|
void importBinary(const u8* bytes);
|
||
|
void importBinary(const u8* bytes, size_t len);
|
||
|
|
||
|
// variables
|
||
|
const fnd::List<SacEntry>& getServiceList() const;
|
||
|
void addService(const SacEntry& service);
|
||
|
private:
|
||
|
const std::string kModuleName = "SAC_BINARY";
|
||
|
|
||
|
// raw binary
|
||
|
fnd::MemoryBlob mBinaryBlob;
|
||
|
|
||
|
// variables
|
||
|
fnd::List<SacEntry> mServices;
|
||
|
|
||
|
void clearVariables();
|
||
|
bool isEqual(const SacBinary& other) const;
|
||
|
void copyFrom(const SacBinary& other);
|
||
|
};
|
||
|
|