2020-02-12 00:29:35 -08:00
|
|
|
/*
|
|
|
|
Title: C++ Aliasing Library
|
|
|
|
Author: Edward R. Gonzalez
|
|
|
|
Date:
|
|
|
|
|
|
|
|
Description:
|
|
|
|
This is a segment of the C++ Assist Library I use for other code.
|
|
|
|
|
|
|
|
This merely removes the need to use operators I don't like and wraps them in easier to manage typedefs, functions or macros
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
#include <algorithm >
|
|
|
|
#include <chrono >
|
|
|
|
#include <cstdarg >
|
2020-02-16 22:28:24 -08:00
|
|
|
#include <cstddef>
|
2020-02-15 19:32:26 -08:00
|
|
|
#include <exception >
|
|
|
|
#include <fstream >
|
2020-02-14 23:21:27 -08:00
|
|
|
#include <functional>
|
2020-02-15 19:32:26 -08:00
|
|
|
#include <iostream >
|
2020-02-16 22:28:24 -08:00
|
|
|
#include <cmath >
|
2020-02-15 19:32:26 -08:00
|
|
|
#include <memory >
|
|
|
|
#include <queue >
|
|
|
|
#include <sstream >
|
|
|
|
#include <stdexcept >
|
|
|
|
#include <string >
|
|
|
|
#include <vector >
|
|
|
|
#include <thread >
|
|
|
|
#include <tuple >
|
|
|
|
#include <utility >
|
2020-02-13 22:13:16 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
// Macros
|
|
|
|
|
|
|
|
#define sfn \
|
|
|
|
auto
|
|
|
|
|
|
|
|
#define deduce \
|
|
|
|
auto
|
|
|
|
|
|
|
|
#define Ref(_type) \
|
|
|
|
_type&
|
|
|
|
|
|
|
|
#define rRef(_type) \
|
|
|
|
_type&&
|
|
|
|
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
// Aliases
|
|
|
|
|
|
|
|
// Fundamental
|
|
|
|
|
|
|
|
using uInt64 = unsigned long long int;
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
|
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
// Pointers
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
using ptr = Type*;
|
|
|
|
|
|
|
|
template<typename ReturnType, typename... ParamTypes>
|
|
|
|
using FnPtr = ReturnType(*)(ParamTypes...);
|
|
|
|
|
2020-02-14 23:21:27 -08:00
|
|
|
template<typename FnType>
|
|
|
|
using Delegate = std::function<FnType>;
|
|
|
|
|
|
|
|
template<typename ReturnType, typename... ParamTypes>
|
|
|
|
using Func = ReturnType(ParamTypes...);
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
template<typename Type>
|
|
|
|
using UPtr = std::unique_ptr<Type>;
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
using SPtr = std::shared_ptr<Type>;
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
// Strings
|
|
|
|
|
|
|
|
template<typename CharType>
|
|
|
|
using RawString = ptr<CharType>;
|
|
|
|
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
using std::cout;
|
|
|
|
using std::endl;
|
|
|
|
using DataSize = std::size_t;
|
|
|
|
|
|
|
|
using Thread = std::thread;
|
|
|
|
|
|
|
|
template<typename... ObjectTypes>
|
|
|
|
using Tuple = std::tuple<ObjectTypes...>;
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
// Enum
|
|
|
|
|
|
|
|
enum class ExitCode
|
|
|
|
{
|
|
|
|
Success = EXIT_SUCCESS,
|
|
|
|
Failed = EXIT_FAILURE
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
// Functions
|
|
|
|
|
|
|
|
// Ptr
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
sfn Address(Ref(Type) _instance) -> ptr<Type>
|
|
|
|
{
|
|
|
|
return &_instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Type>
|
|
|
|
sfn Dref(ptr<Type> _type) -> Ref(Type)
|
|
|
|
{
|
|
|
|
return *_type;
|
|
|
|
}
|
|
|
|
|
2020-02-15 19:32:26 -08:00
|
|
|
template<typename Type, typename... ParamTypes>
|
|
|
|
sfn MakeUPtr(rRef(ParamTypes)... _params) -> UPtr<Type>
|
|
|
|
{
|
|
|
|
return std::make_unique<Type>(_params...);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Type, typename... ParamTypes>
|
|
|
|
sfn MakeSPtr(rRef(ParamTypes)... _params) -> SPtr<Type>
|
|
|
|
{
|
|
|
|
return std::make_shared<Type>(_params...);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-12 00:29:35 -08:00
|
|
|
|
|
|
|
// Exit
|
|
|
|
|
|
|
|
sfn Exit(ExitCode _code)
|
|
|
|
{
|
|
|
|
exit(int(_code));
|
|
|
|
}
|
2020-02-13 22:13:16 -08:00
|
|
|
|
|
|
|
// Error Stuff
|
|
|
|
|
|
|
|
sfn ErrorRuntime(const Ref(std::runtime_error) _error)
|
|
|
|
{
|
|
|
|
std::cout << "Runtime error occurred: " << _error.what() << std::endl;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2020-02-16 22:28:24 -08:00
|
|
|
|