mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 10:16:42 +00:00
55 lines
No EOL
1.2 KiB
C++
55 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
#include <string>
|
|
#include <fnd/types.h>
|
|
#include <fnd/MemoryBlob.h>
|
|
#include <fnd/ISerialiseableBinary.h>
|
|
|
|
namespace nx
|
|
{
|
|
class SacEntry :
|
|
public fnd::ISerialiseableBinary
|
|
{
|
|
public:
|
|
SacEntry();
|
|
SacEntry(const std::string& name, bool isServer);
|
|
SacEntry(const SacEntry& other);
|
|
|
|
bool operator==(const SacEntry& other) const;
|
|
bool operator!=(const SacEntry& other) const;
|
|
void operator=(const SacEntry& other);
|
|
|
|
// to be used after export
|
|
const byte_t* getBytes() const;
|
|
size_t getSize() const;
|
|
|
|
// export/import binary
|
|
void exportBinary();
|
|
void importBinary(const byte_t* bytes, size_t len);
|
|
|
|
// variables
|
|
void clear();
|
|
bool isServer() const;
|
|
void setIsServer(bool isServer);
|
|
const std::string& getName() const;
|
|
void setName(const std::string& name);
|
|
private:
|
|
const std::string kModuleName = "SAC_ENTRY";
|
|
static const size_t kMaxServiceNameLen = 8;
|
|
|
|
enum SacEntryFlag
|
|
{
|
|
SAC_IS_SERVER = BIT(7),
|
|
SAC_NAME_LEN_MASK = BIT(7) - 1
|
|
};
|
|
|
|
// raw binary
|
|
fnd::MemoryBlob mBinaryBlob;
|
|
|
|
// variables
|
|
bool mIsServer;
|
|
std::string mName;
|
|
|
|
bool isEqual(const SacEntry& other) const;
|
|
void copyFrom(const SacEntry& other);
|
|
};
|
|
} |