r5sdk/r5dev/vproj/sdklauncher.vcxproj.filters

95 lines
3.4 KiB
Plaintext
Raw Normal View History

2021-04-13 04:45:22 -07:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="ui">
<UniqueIdentifier>{ce3f4cd9-6eb2-4133-b109-869c24225000}</UniqueIdentifier>
2021-04-13 04:45:22 -07:00
</Filter>
<Filter Include="core">
<UniqueIdentifier>{9dcfc3ae-597b-4e7a-8e51-11e438faa7f6}</UniqueIdentifier>
2021-04-13 04:45:22 -07:00
</Filter>
<Filter Include="public">
<UniqueIdentifier>{ba246dd9-0473-49d6-8cc0-64330570b81f}</UniqueIdentifier>
</Filter>
<Filter Include="launcher">
<UniqueIdentifier>{c593f57d-6b04-46e8-8778-02dcafaf969c}</UniqueIdentifier>
</Filter>
<Filter Include="resource">
2021-04-13 04:45:22 -07:00
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
<Filter Include="thirdparty">
<UniqueIdentifier>{b9c3ead5-38a0-4e31-8446-df55ebcbdb66}</UniqueIdentifier>
</Filter>
<Filter Include="thirdparty\detours">
<UniqueIdentifier>{82b18787-373d-42ce-8d8d-1e3adba8d3a0}</UniqueIdentifier>
</Filter>
<Filter Include="thirdparty\detours\include">
<UniqueIdentifier>{dc968871-7ca2-452b-a5b1-350a12dd54aa}</UniqueIdentifier>
</Filter>
2021-04-13 04:45:22 -07:00
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\core\stdafx.cpp">
<Filter>core</Filter>
</ClCompile>
<ClCompile Include="..\sdklauncher\basepanel.cpp">
<Filter>ui</Filter>
</ClCompile>
<ClCompile Include="..\sdklauncher\sdklauncher.cpp">
<Filter>launcher</Filter>
</ClCompile>
<ClCompile Include="..\public\utility\utility.cpp">
<Filter>public</Filter>
</ClCompile>
<ClCompile Include="..\public\utility\binstream.cpp">
<Filter>public</Filter>
</ClCompile>
2021-04-13 04:45:22 -07:00
</ItemGroup>
2021-08-01 02:25:29 -07:00
<ItemGroup>
<ResourceCompile Include="..\resource\sdklauncher.rc">
<Filter>resource</Filter>
Code base refactor + major performance and readability improvement. Read description for details. * Codebase restructured to SourceSDK codebase style and .cpp/.h assertion paths in the game executable. * Document most functions with valve style 'Purpose' blocks. * Rename variables to match the rest of the codebase and Valve's naming convention. * Dedicated DLL and the SDKLauncher now share the same codebase as the DevSDK. * Obtain globals or pointers directly instead of waiting for runtime initialized data. * Dynamically search for all functions and globals (this doesn't count for dedicated yet!). * Initialize most in-SDK variables. * Move certain prints and other utilities under ConVars to reduce verbosity and increase performance. * Print all pattern scan results through a virtual function to make it easier to add and debug new patterns in the future. * Type global var pointers appropriately if class or type is known and implemented. * Forward declare 'CClient' class to avoid having 2 'g_pClient' copies. * Add IDA's pseudo definitions for easier prototyping with decompiled assembly code. * RPAK decompress Command callback implementation. * Load decompressed RPaks from 'paks\Win32\' overriding the ones in 'paks\Win64\' (the decompress callback will automatically fix the header and write it to 'paks\Win32\'). * VPK decompress Command callback implementation. * Move CRC32 ands Adler32 to implementation files. * Server will print out more details about the connecting client. * Upgrade ImGui lib to v1.86. * Don't compile id3dx.h for dedicated. * Don't compile id3dx.cpp for dedicated * Implement DevMsg print function allowing to print information to the in-game VGUI/RUI console overlay, ImGui console overlay and the external windows console * Fixed bug where the Error function would not properly terminate the process when an error is called. This caused access violations for critical/non-recoverable errors. * Fixed bug where the game would crash if the console or server browser was enabled while the game was still starting up. * Several bug fixes for the dedicated server (warning: dedicated is still considered work-in-progress!).
2021-12-25 22:36:38 +01:00
</ResourceCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\thirdparty\detours\include\detver.h">
<Filter>thirdparty\detours\include</Filter>
</ClInclude>
<ClInclude Include="..\thirdparty\detours\include\syelog.h">
<Filter>thirdparty\detours\include</Filter>
</ClInclude>
<ClInclude Include="..\thirdparty\detours\include\detours.h">
<Filter>thirdparty\detours\include</Filter>
</ClInclude>
<ClInclude Include="..\core\stdafx.h">
<Filter>core</Filter>
</ClInclude>
<ClInclude Include="..\sdklauncher\basepanel.h">
<Filter>ui</Filter>
</ClInclude>
<ClInclude Include="..\sdklauncher\sdklauncher.h">
<Filter>launcher</Filter>
</ClInclude>
<ClInclude Include="..\sdklauncher\sdklauncher_res.h">
<Filter>launcher</Filter>
</ClInclude>
<ClInclude Include="..\sdklauncher\sdklauncher_const.h">
<Filter>launcher</Filter>
</ClInclude>
<ClInclude Include="..\launcher\launcherdefs.h">
<Filter>launcher</Filter>
</ClInclude>
<ClInclude Include="..\public\utility\utility.h">
<Filter>public</Filter>
</ClInclude>
<ClInclude Include="..\public\utility\binstream.h">
<Filter>public</Filter>
</ClInclude>
Merge indev into master. (#44) * Added separate function to resolve relative addresses in address.h * Added new patterns to the print function. * Updated IsFlagSet hooks. * Cleaned up code to properly mask off Dev and Cheat flags. * Added separate define from _DEBUG so you can define it in release builds for people without C++ Debug Restributeables. * Removed un-used define in hooks.h * Fixed potential crashes in r5net and added debug prints. * Potential crashes were when in certain post functions the returned status wasn't 200. * Changed map-select drop down menu, now it displays 'Map Name + Season' instead of file-name. (#41) * Host Server shows normal map names * Changed a few stuff... * redid some stuff that isn't crucial * Update CCompanion.cpp * Update CCompanion.cpp * Updated mapname displaying. * Moved "ServerMap" as a static object into CCompanion::HostServerSection(). Co-authored-by: IcePixelx <41352111+PixieCore@users.noreply.github.com> * prevent squirrel compiler errors from killing game process (#43) * Read description for all changes. * Added ability to register custom ConVar. * Added 2 custom ConVars to open the CGameConsole and CCompanion Windows. * Changed ResolveRelativeAddress. * Added Config System for the Gui. * Added ImGui::Hotkey. * Added the ability to change 2 hotkeys for opening the window for CGameConsole and CCompanion. * Changed pattern for Squirrel_CompilerError to use a String. * Added IMemAlloc::AllocWrapper to patterns.h * Changes in description. * Added icon to launcher.exe * Launcher.exe gets remnamed to Run R5 Reloaded.exe in launcher release compilation configuration. * Extended argument buffer for starting the game in launcher.exe. * Added exception printing if in the custom ConVars an invalid value gets passed. * Wrong return. * Added shortcut with launch params. * Fixed prints. Co-authored-by: Marcii0 <58266292+Marcii0@users.noreply.github.com> Co-authored-by: BobTheBob <32057864+BobTheBob9@users.noreply.github.com>
2021-08-19 15:26:44 +02:00
</ItemGroup>
<ItemGroup>
<Image Include="..\resource\ico\sdklauncher_rel.ico">
<Filter>resource</Filter>
Code base refactor + major performance and readability improvement. Read description for details. * Codebase restructured to SourceSDK codebase style and .cpp/.h assertion paths in the game executable. * Document most functions with valve style 'Purpose' blocks. * Rename variables to match the rest of the codebase and Valve's naming convention. * Dedicated DLL and the SDKLauncher now share the same codebase as the DevSDK. * Obtain globals or pointers directly instead of waiting for runtime initialized data. * Dynamically search for all functions and globals (this doesn't count for dedicated yet!). * Initialize most in-SDK variables. * Move certain prints and other utilities under ConVars to reduce verbosity and increase performance. * Print all pattern scan results through a virtual function to make it easier to add and debug new patterns in the future. * Type global var pointers appropriately if class or type is known and implemented. * Forward declare 'CClient' class to avoid having 2 'g_pClient' copies. * Add IDA's pseudo definitions for easier prototyping with decompiled assembly code. * RPAK decompress Command callback implementation. * Load decompressed RPaks from 'paks\Win32\' overriding the ones in 'paks\Win64\' (the decompress callback will automatically fix the header and write it to 'paks\Win32\'). * VPK decompress Command callback implementation. * Move CRC32 ands Adler32 to implementation files. * Server will print out more details about the connecting client. * Upgrade ImGui lib to v1.86. * Don't compile id3dx.h for dedicated. * Don't compile id3dx.cpp for dedicated * Implement DevMsg print function allowing to print information to the in-game VGUI/RUI console overlay, ImGui console overlay and the external windows console * Fixed bug where the Error function would not properly terminate the process when an error is called. This caused access violations for critical/non-recoverable errors. * Fixed bug where the game would crash if the console or server browser was enabled while the game was still starting up. * Several bug fixes for the dedicated server (warning: dedicated is still considered work-in-progress!).
2021-12-25 22:36:38 +01:00
</Image>
<Image Include="..\resource\ico\sdklauncher_dbg.ico">
<Filter>resource</Filter>
Merge indev into master. (#44) * Added separate function to resolve relative addresses in address.h * Added new patterns to the print function. * Updated IsFlagSet hooks. * Cleaned up code to properly mask off Dev and Cheat flags. * Added separate define from _DEBUG so you can define it in release builds for people without C++ Debug Restributeables. * Removed un-used define in hooks.h * Fixed potential crashes in r5net and added debug prints. * Potential crashes were when in certain post functions the returned status wasn't 200. * Changed map-select drop down menu, now it displays 'Map Name + Season' instead of file-name. (#41) * Host Server shows normal map names * Changed a few stuff... * redid some stuff that isn't crucial * Update CCompanion.cpp * Update CCompanion.cpp * Updated mapname displaying. * Moved "ServerMap" as a static object into CCompanion::HostServerSection(). Co-authored-by: IcePixelx <41352111+PixieCore@users.noreply.github.com> * prevent squirrel compiler errors from killing game process (#43) * Read description for all changes. * Added ability to register custom ConVar. * Added 2 custom ConVars to open the CGameConsole and CCompanion Windows. * Changed ResolveRelativeAddress. * Added Config System for the Gui. * Added ImGui::Hotkey. * Added the ability to change 2 hotkeys for opening the window for CGameConsole and CCompanion. * Changed pattern for Squirrel_CompilerError to use a String. * Added IMemAlloc::AllocWrapper to patterns.h * Changes in description. * Added icon to launcher.exe * Launcher.exe gets remnamed to Run R5 Reloaded.exe in launcher release compilation configuration. * Extended argument buffer for starting the game in launcher.exe. * Added exception printing if in the custom ConVars an invalid value gets passed. * Wrong return. * Added shortcut with launch params. * Fixed prints. Co-authored-by: Marcii0 <58266292+Marcii0@users.noreply.github.com> Co-authored-by: BobTheBob <32057864+BobTheBob9@users.noreply.github.com>
2021-08-19 15:26:44 +02:00
</Image>
2021-08-01 02:25:29 -07:00
</ItemGroup>
2021-04-13 04:45:22 -07:00
</Project>