mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Global 'direct' usage of 'MemAllocSingleton()' has been jettisoned. Where possible, smart pointers were used instead. During the refactor, the following bugs were addressed and fixed: - The virtual destructor of 'CCVarIteratorInternal' was NOT called on destruction. - Class function 'KeyValues::MakeCopy' did NOT calculate the buffer size of the wide string correctly, the original calculation was 'len+1*sizeof(wchar_t)', but should've been '(len+1)*sizeof(wchar_t)'. Some other code changes include: - Tier0 include 'memstd.h' has been moved above all thirdparty includes, to make sure the memalloc functions get shadowed with ours in third party libraries as well. - RPak file paths string literals are now defines. - 'DestroyOverlay' has been refactored to match the assembly of the game.
64 lines
2.0 KiB
C
64 lines
2.0 KiB
C
#pragma once
|
|
#include "shared_pch.h"
|
|
#if !defined(DEDICATED) && !defined(PLUGINSDK)
|
|
#include <d3d11.h>
|
|
#endif // !DEDICATED && !PLUGINSDK
|
|
|
|
// Must be included before any third party lib!
|
|
// this header replaces the standard new/delete
|
|
// operators with our own, along with the standard
|
|
// malloc/free functions.
|
|
#include "tier0/memstd.h"
|
|
|
|
// Thirdparty includes.
|
|
#include "thirdparty/detours/include/detours.h"
|
|
#include "thirdparty/detours/include/idetour.h"
|
|
|
|
#include "thirdparty/lzham/include/lzham_assert.h"
|
|
#include "thirdparty/lzham/include/lzham_types.h"
|
|
#include "thirdparty/lzham/include/lzham.h"
|
|
|
|
#include "thirdparty/curl/include/curl/curl.h"
|
|
#include "thirdparty/nlohmann/json.hpp"
|
|
|
|
#if !defined(DEDICATED) && !defined(PLUGINSDK)
|
|
#include "thirdparty/imgui/imgui.h"
|
|
#include "thirdparty/imgui/imgui_internal.h"
|
|
#include "thirdparty/imgui/misc/imgui_logger.h"
|
|
#include "thirdparty/imgui/misc/imgui_editor.h"
|
|
#include "thirdparty/imgui/misc/imgui_utility.h"
|
|
#include "thirdparty/imgui/misc/cpp/imgui_stdlib.h"
|
|
#include "thirdparty/imgui/backends/imgui_impl_dx11.h"
|
|
#include "thirdparty/imgui/backends/imgui_impl_win32.h"
|
|
#endif // !DEDICATED && !PLUGINSDK
|
|
|
|
|
|
#pragma warning(push)
|
|
#pragma warning( disable : 4505 )
|
|
#include "thirdparty/spdlog/spdlog.h"
|
|
#include "thirdparty/spdlog/async.h"
|
|
#include "thirdparty/spdlog/sinks/ostream_sink.h"
|
|
#include "thirdparty/spdlog/sinks/basic_file_sink.h"
|
|
#include "thirdparty/spdlog/sinks/stdout_sinks.h"
|
|
#include "thirdparty/spdlog/sinks/stdout_color_sinks.h"
|
|
#include "thirdparty/spdlog/sinks/ansicolor_sink.h"
|
|
#include "thirdparty/spdlog/sinks/rotating_file_sink.h"
|
|
#pragma warning(pop)
|
|
|
|
// Tier0 includes.
|
|
#include "tier0/memaddr.h"
|
|
#include "tier0/utility.h"
|
|
#include "tier0/module.h"
|
|
#include "tier0/basetypes.h"
|
|
#include "tier0/platform.h"
|
|
#include "tier0/annotations.h"
|
|
#include "tier0/commonmacros.h"
|
|
#include "tier0/memalloc.h"
|
|
#include "tier0/tier0_iface.h"
|
|
#include "tier0/dbg.h"
|
|
|
|
// Tier1 includes.
|
|
#include "tier1/cvar.h"
|
|
#include "tier1/cmd.h"
|
|
#include "common/global.h"
|