mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
0545adfac3
Have fun!
37 lines
863 B
C++
37 lines
863 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "dCommonVars.h"
|
|
|
|
namespace dChatFilterDCF {
|
|
static const uint32_t header = ('D' + ('C' << 8) + ('F' << 16) + ('B' << 24));
|
|
static const uint32_t formatVersion = 1;
|
|
|
|
struct fileHeader {
|
|
uint32_t header;
|
|
uint32_t formatVersion;
|
|
};
|
|
};
|
|
|
|
class dChatFilter
|
|
{
|
|
public:
|
|
dChatFilter(const std::string& filepath, bool dontGenerateDCF);
|
|
~dChatFilter();
|
|
|
|
void ReadWordlistPlaintext(const std::string & filepath);
|
|
void ReadWordlistDCF(const std::string & filepath);
|
|
void ExportWordlistToDCF(const std::string & filepath);
|
|
bool IsSentenceOkay(const std::string& message, int gmLevel);
|
|
|
|
private:
|
|
bool m_DontGenerateDCF;
|
|
std::vector<size_t> m_Words;
|
|
std::vector<size_t> m_UserUnapprovedWordCache;
|
|
|
|
//Private functions:
|
|
size_t CalculateHash(const std::string& word);
|
|
bool IsInWordlist(size_t word);
|
|
};
|