2014-07-30 14:17:46 +04:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2.9 Update (#64)
* Fixed bots not camping in camp spots.
Fixed chatter/radio message cycling. (need feedback).
Fixed CTs unable to defuse bomb.
Fixed backward jump path generation in waypoint editor.
Fixed autoradius in waypoint editor.
Fixed autoradius menu non closeable.
Fixed bots version display on entering game.
Fixed memory leak in DLL-loader. (non metamod).
Fixed bots able to see through smoke.
Fixed team-detection on non-standard modes.
Fixed quota & autovacate management.
Fixed bunch of warnings from static analyzers.
Greatly imporoved grenade throwing.
Grealty reduced bot CPU usage.
* Fixed stack-corruption in memory-file reader.
Fixed A* pathfinder not working correctly.
Fixed 'Tried to write to uninitialized sizebuf_t error' on bot add/remove.
Minor tweaks to camping and bot enemy aiming
* Make clang happy.
* Fixed VIP-dection on some maps.
Fixed occupied waypoint checker.
Small refactoring of code with clang-format.
* Fixed clang compilation
* Fixed compilation.
* Debugging seek cover task.
Some more code cleanup.
* Fixed typos.
* Fixes to attack movement.
Revert Z component updates.
* Fixes for aiming at enemy.
Fixes for seek cover & enemy hunt tasks.
More refactoring.
* Making clang happy once again?
Tweaked grenade timers.
* Revised language comparer hasher
* Fixed build.
* Fixed build.
* Optimized headshot offsets.
Optimized aim errors and enemy searches.
Get rid of preprocessor macroses.
Added back yb_think_fps. Use with caution.
* Minor refactoring of code.
* Check if tracking entity is still alive.
Do not duck in crouch-goal waypoints.
Remove ancient hack with failed goals.
* Get rid of c++14 stuff.
Tweaked isOccupiedPoint.
* Changed pickup check radius.
* Fix compilation.
* Fixed bots ignore breakables.
Fixed A* pathfinder.
Fixed searching for optimal waypoints.
Fixed bot waypoint reachability functions.
* Get rid of new/delete calls in pathfinder.
Disallow access to yapb waypoint menu on hlds.
Minor refactoring.
* Updated linux/osx makefile
* Spaces -> Tabs in makefile.
Made G++ happy.
* Updated makefile.
* Fixed heap buffer overflow in config loader code.
* Lowered CPU usage a bit, by using "waypoint buckets" for searching closest node.
Do not traceline for doors on map, that have no doors.
Get rid stack-based containers.
* Remove win-only debug crap.
* Refactored string class.
* Fix OSX compiling.
* Minor refactoring of corelib to use cpp move-semantic.
* Use reference for active grenades searcher.
* Use system's atan2f () as it's eror rate is a bit lower.
Fixed bots continuously stays in throw smoke task.
Fixed bots reaching camp-goal jumping or stays they for some time.
Increased radius for searching targets for grenades.
Tweaked bot difficulty levels.
Improved sniper weapon handling. Trying to stand still while shooting.
Increase retreat level only if sniper weapon is low on ammo.
Fixed predict path enemy tracking timer is always true.
Allow bots to process their tasks while on freezetime, so on small maps they already aiming enemies when freezetime ends.
Fied bots endlessy trying to pickup weapons.
Reduce surpise timers when holding sniper weapons.
New aim-at-head position calculation.
Shoot delay timers are now based on bot's difficulty.
Prefer smoke grenades more than flashbangs.
Fixed kill-all bot command not killing one random bot for first time use.
Do not play with jump velocity, now using the same as in waypoints.
Tweaked shift move, so zero move speed not overriden with shift speed.
Radius waypoint searcher use waypoint bucket as well.
Increase reachability radius for dest waypoint, if it's currenlty owned by other bot.
Partially fixed bots choice to use unreachable waypoints.
* Makes OSX clang happy?
* Support for compiling on llvm-win32, makefile to be done.
Increased default reachability time.
* Fixed build.
* Move level-initialization stuff from Spawn to ServerActivate, so bot will not check init-stuff every entity spawn. This should save few CPU cycles.
* Fixed active grenades list not working after changelevel.
Reworked items pickup code, so every bot is not firing sphere search every time, but instead we maintain our own list of intresting entities, so every bot is accessing this list. This should lower CPU usage more a little.
* Precache should be done in spawn...
* Do not use engfuncs in intresting entities.
* Fixed GCC-8.2 warnings.
Minor refactoring.
* Added some safety checks to intresting entities.
Get rid of stdc++ dependency for GCC & ICC under linux.
* Remove -g from release make.
Cosmetic changes.
* Re-enabled debug overlay.
* Remove test header...
* Some static-analyzer warnings fixed.
Support for X64 build for FWGS Xash3D Engine.
* Reduced time between selecting grenade and throwing it away.
Do not try to kill bots that already dead with kill command.
Several fixes from static-analyzers.
* Update CI.
* Fixed bot's not added after the changelevel on Xash3D engine.
* Revert commit that enables movement during freezetime. Everything goes bad, when there is no freezetime....
* Bots will try to not strafe while in combat if seeing enemy only partially.
Do not use "shift" when considering stuck.
* Weapon price for Elite is 800$ since CS 1.6...
* Fixed bots at difficulty 0 can't shoot enemies.
* Cosmetic change.
* Fixed assert in ClientDisconnect when quitting game while meta unloaded yapb module.
Consider freed entities as invalid.
* Bigger distance for throwing he grenades.
* Faster version of atan2f().
* Removed accidentally left SSE header.
* Cosmetic changes to enums.
* Tweaked difficulty levels.
Bots on Android will have a difficulty level 2 by default.
Fixed LTO builds under linux.
* Do not consider Android CS as legacy.
* Get rid of system's math functions. Just for fun)
* Use SSE2 for sincos function.
* Fixed failed during load wayponts still allows to add bots, thus causing bot to crash.
Added ability to delete waypoint by number using "yb wp delete".
Enabled Link Time Optimization for Linux and OSX.
* Fixed CI Builds.
2018-10-28 19:26:36 +03:00
|
|
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
|
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
|
|
|
|
<Configuration>Debug</Configuration>
|
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
|
|
|
<Configuration>Release</Configuration>
|
|
|
|
|
|
<Platform>Win32</Platform>
|
|
|
|
|
|
</ProjectConfiguration>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ClInclude Include="..\include\compress.h" />
|
2.9 Update (#64)
* Fixed bots not camping in camp spots.
Fixed chatter/radio message cycling. (need feedback).
Fixed CTs unable to defuse bomb.
Fixed backward jump path generation in waypoint editor.
Fixed autoradius in waypoint editor.
Fixed autoradius menu non closeable.
Fixed bots version display on entering game.
Fixed memory leak in DLL-loader. (non metamod).
Fixed bots able to see through smoke.
Fixed team-detection on non-standard modes.
Fixed quota & autovacate management.
Fixed bunch of warnings from static analyzers.
Greatly imporoved grenade throwing.
Grealty reduced bot CPU usage.
* Fixed stack-corruption in memory-file reader.
Fixed A* pathfinder not working correctly.
Fixed 'Tried to write to uninitialized sizebuf_t error' on bot add/remove.
Minor tweaks to camping and bot enemy aiming
* Make clang happy.
* Fixed VIP-dection on some maps.
Fixed occupied waypoint checker.
Small refactoring of code with clang-format.
* Fixed clang compilation
* Fixed compilation.
* Debugging seek cover task.
Some more code cleanup.
* Fixed typos.
* Fixes to attack movement.
Revert Z component updates.
* Fixes for aiming at enemy.
Fixes for seek cover & enemy hunt tasks.
More refactoring.
* Making clang happy once again?
Tweaked grenade timers.
* Revised language comparer hasher
* Fixed build.
* Fixed build.
* Optimized headshot offsets.
Optimized aim errors and enemy searches.
Get rid of preprocessor macroses.
Added back yb_think_fps. Use with caution.
* Minor refactoring of code.
* Check if tracking entity is still alive.
Do not duck in crouch-goal waypoints.
Remove ancient hack with failed goals.
* Get rid of c++14 stuff.
Tweaked isOccupiedPoint.
* Changed pickup check radius.
* Fix compilation.
* Fixed bots ignore breakables.
Fixed A* pathfinder.
Fixed searching for optimal waypoints.
Fixed bot waypoint reachability functions.
* Get rid of new/delete calls in pathfinder.
Disallow access to yapb waypoint menu on hlds.
Minor refactoring.
* Updated linux/osx makefile
* Spaces -> Tabs in makefile.
Made G++ happy.
* Updated makefile.
* Fixed heap buffer overflow in config loader code.
* Lowered CPU usage a bit, by using "waypoint buckets" for searching closest node.
Do not traceline for doors on map, that have no doors.
Get rid stack-based containers.
* Remove win-only debug crap.
* Refactored string class.
* Fix OSX compiling.
* Minor refactoring of corelib to use cpp move-semantic.
* Use reference for active grenades searcher.
* Use system's atan2f () as it's eror rate is a bit lower.
Fixed bots continuously stays in throw smoke task.
Fixed bots reaching camp-goal jumping or stays they for some time.
Increased radius for searching targets for grenades.
Tweaked bot difficulty levels.
Improved sniper weapon handling. Trying to stand still while shooting.
Increase retreat level only if sniper weapon is low on ammo.
Fixed predict path enemy tracking timer is always true.
Allow bots to process their tasks while on freezetime, so on small maps they already aiming enemies when freezetime ends.
Fied bots endlessy trying to pickup weapons.
Reduce surpise timers when holding sniper weapons.
New aim-at-head position calculation.
Shoot delay timers are now based on bot's difficulty.
Prefer smoke grenades more than flashbangs.
Fixed kill-all bot command not killing one random bot for first time use.
Do not play with jump velocity, now using the same as in waypoints.
Tweaked shift move, so zero move speed not overriden with shift speed.
Radius waypoint searcher use waypoint bucket as well.
Increase reachability radius for dest waypoint, if it's currenlty owned by other bot.
Partially fixed bots choice to use unreachable waypoints.
* Makes OSX clang happy?
* Support for compiling on llvm-win32, makefile to be done.
Increased default reachability time.
* Fixed build.
* Move level-initialization stuff from Spawn to ServerActivate, so bot will not check init-stuff every entity spawn. This should save few CPU cycles.
* Fixed active grenades list not working after changelevel.
Reworked items pickup code, so every bot is not firing sphere search every time, but instead we maintain our own list of intresting entities, so every bot is accessing this list. This should lower CPU usage more a little.
* Precache should be done in spawn...
* Do not use engfuncs in intresting entities.
* Fixed GCC-8.2 warnings.
Minor refactoring.
* Added some safety checks to intresting entities.
Get rid of stdc++ dependency for GCC & ICC under linux.
* Remove -g from release make.
Cosmetic changes.
* Re-enabled debug overlay.
* Remove test header...
* Some static-analyzer warnings fixed.
Support for X64 build for FWGS Xash3D Engine.
* Reduced time between selecting grenade and throwing it away.
Do not try to kill bots that already dead with kill command.
Several fixes from static-analyzers.
* Update CI.
* Fixed bot's not added after the changelevel on Xash3D engine.
* Revert commit that enables movement during freezetime. Everything goes bad, when there is no freezetime....
* Bots will try to not strafe while in combat if seeing enemy only partially.
Do not use "shift" when considering stuck.
* Weapon price for Elite is 800$ since CS 1.6...
* Fixed bots at difficulty 0 can't shoot enemies.
* Cosmetic change.
* Fixed assert in ClientDisconnect when quitting game while meta unloaded yapb module.
Consider freed entities as invalid.
* Bigger distance for throwing he grenades.
* Faster version of atan2f().
* Removed accidentally left SSE header.
* Cosmetic changes to enums.
* Tweaked difficulty levels.
Bots on Android will have a difficulty level 2 by default.
Fixed LTO builds under linux.
* Do not consider Android CS as legacy.
* Get rid of system's math functions. Just for fun)
* Use SSE2 for sincos function.
* Fixed failed during load wayponts still allows to add bots, thus causing bot to crash.
Added ability to delete waypoint by number using "yb wp delete".
Enabled Link Time Optimization for Linux and OSX.
* Fixed CI Builds.
2018-10-28 19:26:36 +03:00
|
|
|
|
<ClInclude Include="..\include\yapb.h" />
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<ClInclude Include="..\include\corelib.h" />
|
2016-03-01 13:37:10 +03:00
|
|
|
|
<ClInclude Include="..\include\engine.h" />
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<ClInclude Include="..\include\engine\const.h" />
|
|
|
|
|
|
<ClInclude Include="..\include\engine\eiface.h" />
|
|
|
|
|
|
<ClInclude Include="..\include\engine\extdll.h" />
|
|
|
|
|
|
<ClInclude Include="..\include\engine\meta_api.h" />
|
|
|
|
|
|
<ClInclude Include="..\include\engine\progdefs.h" />
|
|
|
|
|
|
<ClInclude Include="..\include\engine\util.h" />
|
|
|
|
|
|
<ClInclude Include="..\include\globals.h" />
|
2016-01-30 13:15:50 +03:00
|
|
|
|
<ClInclude Include="..\include\platform.h" />
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<ClInclude Include="..\include\resource.h" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2016-01-27 21:40:47 +03:00
|
|
|
|
<ClCompile Include="..\source\basecode.cpp" />
|
2015-06-07 19:43:16 +03:00
|
|
|
|
<ClCompile Include="..\source\combat.cpp" />
|
2016-03-01 13:37:10 +03:00
|
|
|
|
<ClCompile Include="..\source\engine.cpp" />
|
2014-09-09 18:30:40 +04:00
|
|
|
|
<ClCompile Include="..\source\manager.cpp" />
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<ClCompile Include="..\source\chatlib.cpp" />
|
|
|
|
|
|
<ClCompile Include="..\source\globals.cpp" />
|
|
|
|
|
|
<ClCompile Include="..\source\interface.cpp" />
|
|
|
|
|
|
<ClCompile Include="..\source\navigate.cpp" />
|
|
|
|
|
|
<ClCompile Include="..\source\support.cpp" />
|
|
|
|
|
|
<ClCompile Include="..\source\waypoint.cpp" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ResourceCompile Include="yapb.rc" />
|
|
|
|
|
|
</ItemGroup>
|
2016-09-13 22:45:47 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="makefile" />
|
|
|
|
|
|
</ItemGroup>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<PropertyGroup Label="Globals">
|
|
|
|
|
|
<ProjectGuid>{C232645A-3B99-48F4-A1F3-F20CF0A9568B}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>yapb</RootNamespace>
|
2015-06-04 11:52:48 +03:00
|
|
|
|
<TargetPlatformVersion>8.1</TargetPlatformVersion>
|
2016-02-29 23:50:16 +03:00
|
|
|
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
|
|
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
2.9 Update (#64)
* Fixed bots not camping in camp spots.
Fixed chatter/radio message cycling. (need feedback).
Fixed CTs unable to defuse bomb.
Fixed backward jump path generation in waypoint editor.
Fixed autoradius in waypoint editor.
Fixed autoradius menu non closeable.
Fixed bots version display on entering game.
Fixed memory leak in DLL-loader. (non metamod).
Fixed bots able to see through smoke.
Fixed team-detection on non-standard modes.
Fixed quota & autovacate management.
Fixed bunch of warnings from static analyzers.
Greatly imporoved grenade throwing.
Grealty reduced bot CPU usage.
* Fixed stack-corruption in memory-file reader.
Fixed A* pathfinder not working correctly.
Fixed 'Tried to write to uninitialized sizebuf_t error' on bot add/remove.
Minor tweaks to camping and bot enemy aiming
* Make clang happy.
* Fixed VIP-dection on some maps.
Fixed occupied waypoint checker.
Small refactoring of code with clang-format.
* Fixed clang compilation
* Fixed compilation.
* Debugging seek cover task.
Some more code cleanup.
* Fixed typos.
* Fixes to attack movement.
Revert Z component updates.
* Fixes for aiming at enemy.
Fixes for seek cover & enemy hunt tasks.
More refactoring.
* Making clang happy once again?
Tweaked grenade timers.
* Revised language comparer hasher
* Fixed build.
* Fixed build.
* Optimized headshot offsets.
Optimized aim errors and enemy searches.
Get rid of preprocessor macroses.
Added back yb_think_fps. Use with caution.
* Minor refactoring of code.
* Check if tracking entity is still alive.
Do not duck in crouch-goal waypoints.
Remove ancient hack with failed goals.
* Get rid of c++14 stuff.
Tweaked isOccupiedPoint.
* Changed pickup check radius.
* Fix compilation.
* Fixed bots ignore breakables.
Fixed A* pathfinder.
Fixed searching for optimal waypoints.
Fixed bot waypoint reachability functions.
* Get rid of new/delete calls in pathfinder.
Disallow access to yapb waypoint menu on hlds.
Minor refactoring.
* Updated linux/osx makefile
* Spaces -> Tabs in makefile.
Made G++ happy.
* Updated makefile.
* Fixed heap buffer overflow in config loader code.
* Lowered CPU usage a bit, by using "waypoint buckets" for searching closest node.
Do not traceline for doors on map, that have no doors.
Get rid stack-based containers.
* Remove win-only debug crap.
* Refactored string class.
* Fix OSX compiling.
* Minor refactoring of corelib to use cpp move-semantic.
* Use reference for active grenades searcher.
* Use system's atan2f () as it's eror rate is a bit lower.
Fixed bots continuously stays in throw smoke task.
Fixed bots reaching camp-goal jumping or stays they for some time.
Increased radius for searching targets for grenades.
Tweaked bot difficulty levels.
Improved sniper weapon handling. Trying to stand still while shooting.
Increase retreat level only if sniper weapon is low on ammo.
Fixed predict path enemy tracking timer is always true.
Allow bots to process their tasks while on freezetime, so on small maps they already aiming enemies when freezetime ends.
Fied bots endlessy trying to pickup weapons.
Reduce surpise timers when holding sniper weapons.
New aim-at-head position calculation.
Shoot delay timers are now based on bot's difficulty.
Prefer smoke grenades more than flashbangs.
Fixed kill-all bot command not killing one random bot for first time use.
Do not play with jump velocity, now using the same as in waypoints.
Tweaked shift move, so zero move speed not overriden with shift speed.
Radius waypoint searcher use waypoint bucket as well.
Increase reachability radius for dest waypoint, if it's currenlty owned by other bot.
Partially fixed bots choice to use unreachable waypoints.
* Makes OSX clang happy?
* Support for compiling on llvm-win32, makefile to be done.
Increased default reachability time.
* Fixed build.
* Move level-initialization stuff from Spawn to ServerActivate, so bot will not check init-stuff every entity spawn. This should save few CPU cycles.
* Fixed active grenades list not working after changelevel.
Reworked items pickup code, so every bot is not firing sphere search every time, but instead we maintain our own list of intresting entities, so every bot is accessing this list. This should lower CPU usage more a little.
* Precache should be done in spawn...
* Do not use engfuncs in intresting entities.
* Fixed GCC-8.2 warnings.
Minor refactoring.
* Added some safety checks to intresting entities.
Get rid of stdc++ dependency for GCC & ICC under linux.
* Remove -g from release make.
Cosmetic changes.
* Re-enabled debug overlay.
* Remove test header...
* Some static-analyzer warnings fixed.
Support for X64 build for FWGS Xash3D Engine.
* Reduced time between selecting grenade and throwing it away.
Do not try to kill bots that already dead with kill command.
Several fixes from static-analyzers.
* Update CI.
* Fixed bot's not added after the changelevel on Xash3D engine.
* Revert commit that enables movement during freezetime. Everything goes bad, when there is no freezetime....
* Bots will try to not strafe while in combat if seeing enemy only partially.
Do not use "shift" when considering stuck.
* Weapon price for Elite is 800$ since CS 1.6...
* Fixed bots at difficulty 0 can't shoot enemies.
* Cosmetic change.
* Fixed assert in ClientDisconnect when quitting game while meta unloaded yapb module.
Consider freed entities as invalid.
* Bigger distance for throwing he grenades.
* Faster version of atan2f().
* Removed accidentally left SSE header.
* Cosmetic changes to enums.
* Tweaked difficulty levels.
Bots on Android will have a difficulty level 2 by default.
Fixed LTO builds under linux.
* Do not consider Android CS as legacy.
* Get rid of system's math functions. Just for fun)
* Use SSE2 for sincos function.
* Fixed failed during load wayponts still allows to add bots, thus causing bot to crash.
Added ability to delete waypoint by number using "yb wp delete".
Enabled Link Time Optimization for Linux and OSX.
* Fixed CI Builds.
2018-10-28 19:26:36 +03:00
|
|
|
|
<PlatformToolset>v141</PlatformToolset>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<UseOfMfc>false</UseOfMfc>
|
2016-03-12 19:56:09 +03:00
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
|
|
|
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
|
|
|
<UseOfMfc>false</UseOfMfc>
|
2.9 Update (#64)
* Fixed bots not camping in camp spots.
Fixed chatter/radio message cycling. (need feedback).
Fixed CTs unable to defuse bomb.
Fixed backward jump path generation in waypoint editor.
Fixed autoradius in waypoint editor.
Fixed autoradius menu non closeable.
Fixed bots version display on entering game.
Fixed memory leak in DLL-loader. (non metamod).
Fixed bots able to see through smoke.
Fixed team-detection on non-standard modes.
Fixed quota & autovacate management.
Fixed bunch of warnings from static analyzers.
Greatly imporoved grenade throwing.
Grealty reduced bot CPU usage.
* Fixed stack-corruption in memory-file reader.
Fixed A* pathfinder not working correctly.
Fixed 'Tried to write to uninitialized sizebuf_t error' on bot add/remove.
Minor tweaks to camping and bot enemy aiming
* Make clang happy.
* Fixed VIP-dection on some maps.
Fixed occupied waypoint checker.
Small refactoring of code with clang-format.
* Fixed clang compilation
* Fixed compilation.
* Debugging seek cover task.
Some more code cleanup.
* Fixed typos.
* Fixes to attack movement.
Revert Z component updates.
* Fixes for aiming at enemy.
Fixes for seek cover & enemy hunt tasks.
More refactoring.
* Making clang happy once again?
Tweaked grenade timers.
* Revised language comparer hasher
* Fixed build.
* Fixed build.
* Optimized headshot offsets.
Optimized aim errors and enemy searches.
Get rid of preprocessor macroses.
Added back yb_think_fps. Use with caution.
* Minor refactoring of code.
* Check if tracking entity is still alive.
Do not duck in crouch-goal waypoints.
Remove ancient hack with failed goals.
* Get rid of c++14 stuff.
Tweaked isOccupiedPoint.
* Changed pickup check radius.
* Fix compilation.
* Fixed bots ignore breakables.
Fixed A* pathfinder.
Fixed searching for optimal waypoints.
Fixed bot waypoint reachability functions.
* Get rid of new/delete calls in pathfinder.
Disallow access to yapb waypoint menu on hlds.
Minor refactoring.
* Updated linux/osx makefile
* Spaces -> Tabs in makefile.
Made G++ happy.
* Updated makefile.
* Fixed heap buffer overflow in config loader code.
* Lowered CPU usage a bit, by using "waypoint buckets" for searching closest node.
Do not traceline for doors on map, that have no doors.
Get rid stack-based containers.
* Remove win-only debug crap.
* Refactored string class.
* Fix OSX compiling.
* Minor refactoring of corelib to use cpp move-semantic.
* Use reference for active grenades searcher.
* Use system's atan2f () as it's eror rate is a bit lower.
Fixed bots continuously stays in throw smoke task.
Fixed bots reaching camp-goal jumping or stays they for some time.
Increased radius for searching targets for grenades.
Tweaked bot difficulty levels.
Improved sniper weapon handling. Trying to stand still while shooting.
Increase retreat level only if sniper weapon is low on ammo.
Fixed predict path enemy tracking timer is always true.
Allow bots to process their tasks while on freezetime, so on small maps they already aiming enemies when freezetime ends.
Fied bots endlessy trying to pickup weapons.
Reduce surpise timers when holding sniper weapons.
New aim-at-head position calculation.
Shoot delay timers are now based on bot's difficulty.
Prefer smoke grenades more than flashbangs.
Fixed kill-all bot command not killing one random bot for first time use.
Do not play with jump velocity, now using the same as in waypoints.
Tweaked shift move, so zero move speed not overriden with shift speed.
Radius waypoint searcher use waypoint bucket as well.
Increase reachability radius for dest waypoint, if it's currenlty owned by other bot.
Partially fixed bots choice to use unreachable waypoints.
* Makes OSX clang happy?
* Support for compiling on llvm-win32, makefile to be done.
Increased default reachability time.
* Fixed build.
* Move level-initialization stuff from Spawn to ServerActivate, so bot will not check init-stuff every entity spawn. This should save few CPU cycles.
* Fixed active grenades list not working after changelevel.
Reworked items pickup code, so every bot is not firing sphere search every time, but instead we maintain our own list of intresting entities, so every bot is accessing this list. This should lower CPU usage more a little.
* Precache should be done in spawn...
* Do not use engfuncs in intresting entities.
* Fixed GCC-8.2 warnings.
Minor refactoring.
* Added some safety checks to intresting entities.
Get rid of stdc++ dependency for GCC & ICC under linux.
* Remove -g from release make.
Cosmetic changes.
* Re-enabled debug overlay.
* Remove test header...
* Some static-analyzer warnings fixed.
Support for X64 build for FWGS Xash3D Engine.
* Reduced time between selecting grenade and throwing it away.
Do not try to kill bots that already dead with kill command.
Several fixes from static-analyzers.
* Update CI.
* Fixed bot's not added after the changelevel on Xash3D engine.
* Revert commit that enables movement during freezetime. Everything goes bad, when there is no freezetime....
* Bots will try to not strafe while in combat if seeing enemy only partially.
Do not use "shift" when considering stuck.
* Weapon price for Elite is 800$ since CS 1.6...
* Fixed bots at difficulty 0 can't shoot enemies.
* Cosmetic change.
* Fixed assert in ClientDisconnect when quitting game while meta unloaded yapb module.
Consider freed entities as invalid.
* Bigger distance for throwing he grenades.
* Faster version of atan2f().
* Removed accidentally left SSE header.
* Cosmetic changes to enums.
* Tweaked difficulty levels.
Bots on Android will have a difficulty level 2 by default.
Fixed LTO builds under linux.
* Do not consider Android CS as legacy.
* Get rid of system's math functions. Just for fun)
* Use SSE2 for sincos function.
* Fixed failed during load wayponts still allows to add bots, thus causing bot to crash.
Added ability to delete waypoint by number using "yb wp delete".
Enabled Link Time Optimization for Linux and OSX.
* Fixed CI Builds.
2018-10-28 19:26:36 +03:00
|
|
|
|
<PlatformToolset>v141</PlatformToolset>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
|
|
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<_ProjectFileVersion>12.0.21005.1</_ProjectFileVersion>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
|
|
<OutDir>.\debug\</OutDir>
|
|
|
|
|
|
<IntDir>.\debug\inf\</IntDir>
|
|
|
|
|
|
<IgnoreImportLibrary>true</IgnoreImportLibrary>
|
|
|
|
|
|
<LinkIncremental>true</LinkIncremental>
|
|
|
|
|
|
<EmbedManifest>false</EmbedManifest>
|
2016-02-29 23:50:16 +03:00
|
|
|
|
<CodeAnalysisRuleSet>NativeRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
|
|
<OutDir>.\release\</OutDir>
|
|
|
|
|
|
<IntDir>.\release\inf\</IntDir>
|
|
|
|
|
|
<IgnoreImportLibrary>false</IgnoreImportLibrary>
|
|
|
|
|
|
<LinkIncremental>false</LinkIncremental>
|
|
|
|
|
|
<GenerateManifest>false</GenerateManifest>
|
|
|
|
|
|
<EmbedManifest>false</EmbedManifest>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
|
|
<PreBuildEvent>
|
2015-06-04 13:14:22 +03:00
|
|
|
|
<Command>
|
|
|
|
|
|
</Command>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PreBuildEvent>
|
|
|
|
|
|
<CustomBuildStep>
|
|
|
|
|
|
<Command />
|
|
|
|
|
|
</CustomBuildStep>
|
|
|
|
|
|
<Midl>
|
|
|
|
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
|
<MkTypLibCompatible>true</MkTypLibCompatible>
|
|
|
|
|
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
|
|
|
|
<TargetEnvironment>Win32</TargetEnvironment>
|
|
|
|
|
|
<TypeLibraryName>.\debug/yapb.tlb</TypeLibraryName>
|
|
|
|
|
|
<HeaderFileName />
|
|
|
|
|
|
</Midl>
|
|
|
|
|
|
<ClCompile>
|
|
|
|
|
|
<Optimization>Disabled</Optimization>
|
|
|
|
|
|
<AdditionalIncludeDirectories>..\include\engine;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
|
<PreprocessorDefinitions>WIN32;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
|
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
|
|
|
|
<PrecompiledHeader />
|
|
|
|
|
|
<PrecompiledHeaderFile>core.h</PrecompiledHeaderFile>
|
|
|
|
|
|
<PrecompiledHeaderOutputFile>.\debug\inf\yapb.pch</PrecompiledHeaderOutputFile>
|
|
|
|
|
|
<ExpandAttributedSource>false</ExpandAttributedSource>
|
|
|
|
|
|
<AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput>
|
|
|
|
|
|
<AssemblerListingLocation>.\debug\asm\</AssemblerListingLocation>
|
|
|
|
|
|
<ObjectFileName>.\debug\obj\</ObjectFileName>
|
|
|
|
|
|
<ProgramDataBaseFileName>.\debug\inf</ProgramDataBaseFileName>
|
|
|
|
|
|
<BrowseInformation />
|
|
|
|
|
|
<BrowseInformationFile />
|
|
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
|
|
|
|
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
|
|
|
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
|
|
|
|
|
<CompileAs>Default</CompileAs>
|
2016-03-12 14:35:44 +03:00
|
|
|
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
2016-03-12 14:35:44 +03:00
|
|
|
|
<FloatingPointModel>Strict</FloatingPointModel>
|
|
|
|
|
|
<StringPooling>true</StringPooling>
|
2016-03-12 19:56:09 +03:00
|
|
|
|
<InlineFunctionExpansion>Default</InlineFunctionExpansion>
|
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</ClCompile>
|
|
|
|
|
|
<ResourceCompile>
|
|
|
|
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
|
<Culture>0x0409</Culture>
|
|
|
|
|
|
</ResourceCompile>
|
|
|
|
|
|
<PreLinkEvent>
|
|
|
|
|
|
<Command />
|
|
|
|
|
|
</PreLinkEvent>
|
|
|
|
|
|
<Link>
|
|
|
|
|
|
<OutputFile>.\debug\yapb.dll</OutputFile>
|
|
|
|
|
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
|
|
<ProgramDatabaseFile>.\debug\inf\yapb.pdb</ProgramDatabaseFile>
|
|
|
|
|
|
<GenerateMapFile>true</GenerateMapFile>
|
|
|
|
|
|
<MapFileName>.\debug\inf\yapb.map</MapFileName>
|
|
|
|
|
|
<MapExports>true</MapExports>
|
|
|
|
|
|
<SubSystem>Windows</SubSystem>
|
|
|
|
|
|
<OptimizeReferences>false</OptimizeReferences>
|
|
|
|
|
|
<EnableCOMDATFolding>false</EnableCOMDATFolding>
|
|
|
|
|
|
<DataExecutionPrevention />
|
|
|
|
|
|
<ImportLibrary>.\debug\inf\yapb.lib</ImportLibrary>
|
|
|
|
|
|
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2015-06-04 13:59:00 +03:00
|
|
|
|
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</Link>
|
|
|
|
|
|
<PostBuildEvent>
|
2015-06-04 13:14:22 +03:00
|
|
|
|
<Command>
|
|
|
|
|
|
</Command>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PostBuildEvent>
|
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
|
|
<PreBuildEvent>
|
2015-06-04 13:14:22 +03:00
|
|
|
|
<Command>
|
|
|
|
|
|
</Command>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PreBuildEvent>
|
|
|
|
|
|
<CustomBuildStep>
|
|
|
|
|
|
<Command />
|
|
|
|
|
|
</CustomBuildStep>
|
|
|
|
|
|
<Midl>
|
|
|
|
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
|
<MkTypLibCompatible>true</MkTypLibCompatible>
|
|
|
|
|
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
|
|
|
|
<TargetEnvironment>Win32</TargetEnvironment>
|
|
|
|
|
|
<TypeLibraryName>.\Release/yapb.tlb</TypeLibraryName>
|
|
|
|
|
|
<HeaderFileName />
|
|
|
|
|
|
</Midl>
|
|
|
|
|
|
<ClCompile>
|
2015-06-04 11:52:48 +03:00
|
|
|
|
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
2016-03-12 19:56:09 +03:00
|
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
|
|
|
|
|
<EnableFiberSafeOptimizations>false</EnableFiberSafeOptimizations>
|
|
|
|
|
|
<AdditionalIncludeDirectories>..\mmgr;..\include\engine;..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
2015-07-11 19:54:46 +03:00
|
|
|
|
<ExceptionHandling>false</ExceptionHandling>
|
2016-03-25 14:56:40 +03:00
|
|
|
|
<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>
|
2016-01-27 21:40:47 +03:00
|
|
|
|
<PrecompiledHeaderFile>
|
|
|
|
|
|
</PrecompiledHeaderFile>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<PrecompiledHeaderOutputFile>.\release\inf\yapb.pch</PrecompiledHeaderOutputFile>
|
|
|
|
|
|
<AssemblerListingLocation>.\release\asm\</AssemblerListingLocation>
|
|
|
|
|
|
<ProgramDataBaseFileName>.\release\inf\</ProgramDataBaseFileName>
|
|
|
|
|
|
<WarningLevel>Level4</WarningLevel>
|
|
|
|
|
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
2016-10-18 20:34:02 +03:00
|
|
|
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<CompileAs>CompileAsCpp</CompileAs>
|
|
|
|
|
|
<InterproceduralOptimization>SingleFile</InterproceduralOptimization>
|
|
|
|
|
|
<FlushDenormalResultsToZero>true</FlushDenormalResultsToZero>
|
|
|
|
|
|
<Parallelization>false</Parallelization>
|
2015-06-04 11:52:48 +03:00
|
|
|
|
<FloatingPointModel>Fast</FloatingPointModel>
|
2015-06-06 14:19:19 +03:00
|
|
|
|
<Optimization>Full</Optimization>
|
2015-07-11 19:54:46 +03:00
|
|
|
|
<GenerateAlternateCodePaths>AVXI</GenerateAlternateCodePaths>
|
|
|
|
|
|
<UseProcessorExtensions>AVXI</UseProcessorExtensions>
|
2015-07-26 21:47:29 +03:00
|
|
|
|
<MinimalRebuild>false</MinimalRebuild>
|
2016-01-27 21:40:47 +03:00
|
|
|
|
<PrecompiledHeaderOutputFileDirectory />
|
|
|
|
|
|
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
|
|
|
|
|
<OmitFramePointers>true</OmitFramePointers>
|
|
|
|
|
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
2016-01-30 14:02:28 +03:00
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
2016-03-12 19:56:09 +03:00
|
|
|
|
<StringPooling>true</StringPooling>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</ClCompile>
|
|
|
|
|
|
<ResourceCompile>
|
|
|
|
|
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
|
|
<Culture>0x0409</Culture>
|
|
|
|
|
|
<ResourceOutputFileName>$(IntDir)%(Filename).res</ResourceOutputFileName>
|
|
|
|
|
|
</ResourceCompile>
|
|
|
|
|
|
<PreLinkEvent>
|
|
|
|
|
|
<Command />
|
|
|
|
|
|
</PreLinkEvent>
|
|
|
|
|
|
<ProjectReference>
|
|
|
|
|
|
<LinkLibraryDependencies>true</LinkLibraryDependencies>
|
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
|
<Link>
|
|
|
|
|
|
<OutputFile>.\release\yapb.dll</OutputFile>
|
|
|
|
|
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
|
|
|
|
|
<DelayLoadDLLs>user32.dll;ws2_32.dll;%(DelayLoadDLLs)</DelayLoadDLLs>
|
2016-10-18 20:34:02 +03:00
|
|
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<GenerateMapFile>false</GenerateMapFile>
|
|
|
|
|
|
<SubSystem>Windows</SubSystem>
|
2015-06-04 13:59:00 +03:00
|
|
|
|
<OptimizeReferences>false</OptimizeReferences>
|
|
|
|
|
|
<EnableCOMDATFolding>false</EnableCOMDATFolding>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
<SetChecksum>false</SetChecksum>
|
|
|
|
|
|
<RandomizedBaseAddress>false</RandomizedBaseAddress>
|
|
|
|
|
|
<DataExecutionPrevention />
|
|
|
|
|
|
<TurnOffAssemblyGeneration>true</TurnOffAssemblyGeneration>
|
|
|
|
|
|
<ImportLibrary>.\release\inf\yapb.lib</ImportLibrary>
|
|
|
|
|
|
<TargetMachine>MachineX86</TargetMachine>
|
|
|
|
|
|
<MinimumRequiredVersion />
|
|
|
|
|
|
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
2015-06-04 11:52:48 +03:00
|
|
|
|
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
|
2015-06-04 13:59:00 +03:00
|
|
|
|
<ImageHasSafeExceptionHandlers>
|
|
|
|
|
|
</ImageHasSafeExceptionHandlers>
|
2016-01-30 14:02:28 +03:00
|
|
|
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
2016-01-27 21:40:47 +03:00
|
|
|
|
<FullProgramDatabaseFile>true</FullProgramDatabaseFile>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</Link>
|
|
|
|
|
|
<PostBuildEvent>
|
2015-06-04 13:14:22 +03:00
|
|
|
|
<Command>
|
|
|
|
|
|
</Command>
|
2014-07-30 14:17:46 +04:00
|
|
|
|
</PostBuildEvent>
|
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
|
|
<ImportGroup Label="ExtensionTargets">
|
|
|
|
|
|
</ImportGroup>
|
|
|
|
|
|
</Project>
|