2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
#include "CDClientDatabase.h"
|
|
|
|
#include "Singleton.h"
|
2023-03-20 13:10:52 +00:00
|
|
|
#include "DluAssert.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2023-11-22 02:05:15 +00:00
|
|
|
#include <cstdint>
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
// CPPLinq
|
2022-01-01 09:38:45 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define NOMINMAX
|
|
|
|
// windows.h has min and max macros that breaks cpplinq
|
2022-07-28 13:39:57 +00:00
|
|
|
#endif
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "cpplinq.hpp"
|
|
|
|
|
2023-03-26 10:09:04 +00:00
|
|
|
// Used for legacy
|
|
|
|
#define UNUSED(x)
|
|
|
|
|
2023-03-20 13:10:52 +00:00
|
|
|
// Enable this to skip some unused columns in some tables
|
|
|
|
#define UNUSED_COLUMN(v)
|
|
|
|
|
2024-01-08 23:32:09 +00:00
|
|
|
// Use this to skip unused defaults for unused entries in some tables
|
|
|
|
#define UNUSED_ENTRY(v, x)
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
#pragma warning (disable : 4244) //Disable double to float conversion warnings
|
|
|
|
#pragma warning (disable : 4715) //Disable "not all control paths return a value"
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
template<class Table>
|
|
|
|
class CDTable : public Singleton<Table> {
|
|
|
|
protected:
|
|
|
|
virtual ~CDTable() = default;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
2023-03-20 13:10:52 +00:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
class LookupResult {
|
|
|
|
typedef std::pair<T, bool> DataType;
|
|
|
|
public:
|
|
|
|
LookupResult() { m_data.first = T(); m_data.second = false; };
|
|
|
|
LookupResult(T& data) { m_data.first = data; m_data.second = true; };
|
|
|
|
inline const T& Data() { return m_data.first; };
|
|
|
|
inline const bool& FoundData() { return m_data.second; };
|
|
|
|
private:
|
|
|
|
DataType m_data;
|
|
|
|
};
|