mirror of https://github.com/libAthena/athena.git
31 lines
1.0 KiB
C++
31 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <map>
|
|
#include <vector>
|
|
#include <athena/Types.hpp>
|
|
|
|
struct LZLengthOffset {
|
|
atUint32 length; // The number of bytes compressed
|
|
atUint16 offset; // How far back in sliding window where bytes that match the lookAheadBuffer is located
|
|
bool operator==(const LZLengthOffset& lo_pair) const { return length == lo_pair.length && offset == lo_pair.offset; }
|
|
bool operator!=(const LZLengthOffset& lo_pair) const { return !operator==(lo_pair); }
|
|
};
|
|
|
|
class LZLookupTable {
|
|
public:
|
|
LZLookupTable();
|
|
explicit LZLookupTable(atInt32 minimumMatch, atInt32 slidingWindow = 4096, atInt32 lookAheadWindow = 18);
|
|
~LZLookupTable();
|
|
LZLengthOffset search(const atUint8* curPos, const atUint8* dataBegin, const atUint8* dataEnd);
|
|
void setLookAheadWindow(atInt32 lookAheadWindow);
|
|
|
|
private:
|
|
using LookupTable = std::multimap<std::vector<uint8_t>, int32_t>;
|
|
LookupTable table;
|
|
atInt32 m_minimumMatch = 3;
|
|
atInt32 m_slidingWindow = 4096;
|
|
atInt32 m_lookAheadWindow = 18;
|
|
std::vector<uint8_t> m_buffer;
|
|
};
|