#ifndef CREATURELIB_CORE_HPP #define CREATURELIB_CORE_HPP #include #include #include #include #define export extern "C" [[maybe_unused]] #define CreatureLibException 2; #define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__) class ExceptionHandler { static std::string _creatureLibLastException; public: static void SetLastException(std::string function, const std::exception& e) { std::stringstream ss; ss << "[" << function << "] " << e.what(); _creatureLibLastException = ss.str(); } static const char* GetLastException() { return _creatureLibLastException.c_str(); } }; #define Try(data) \ try { \ data; \ return 0; \ } catch (const std::exception& e) { \ ExceptionHandler::SetLastException(__FUNCTION__, e); \ return CreatureLibException; \ } #define SIMPLE_GET_FUNC(type, name, returnType) \ export returnType CreatureLib_##type##_##name(const type* p) { return p->name(); } #define BORROWED_GET_FUNC(type, name, returnType) \ export returnType CreatureLib_##type##_##name(const type* p) { return p->name().GetRaw(); } #define SMART_GET_FUNC(type, name, returnType) \ export returnType CreatureLib_##type##_##name(const type* p) { return p->name().get(); } #define DESTRUCTOR(type) \ export void CreatureLib_##type##_Destruct(const type* p) { delete p; } #endif // CREATURELIB_CORE_HPP