Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.7 KiB

  1. //-----------------------------------------------------------------------------
  2. // server_nextbot_include.VPC
  3. //
  4. // This is a "helper" VPC that is meant to be included into the server_*.vpc
  5. // block of a game that wishes to use NextBot AI. These source files
  6. // are not part of the server_base.vpc so they aren't unnecessarily included
  7. // in games that don't need them.
  8. //-----------------------------------------------------------------------------
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE;$SRCDIR\game\server\NextBot"
  14. $PreprocessorDefinitions "$BASE;SERVER_NEXT_BOTS"
  15. }
  16. }
  17. $Project
  18. {
  19. $Folder "Source Files"
  20. {
  21. $Folder "NextBot"
  22. {
  23. $File "NextBot\NextBot.cpp"
  24. $File "NextBot\NextBot.h"
  25. $File "NextBot\NextBotBehavior.h"
  26. $File "NextBot\NextBotManager.cpp"
  27. $File "NextBot\NextBotManager.h"
  28. $File "NextBot\NextBotUtil.h"
  29. $File "NextBot\NextBotKnownEntity.h"
  30. $File "NextBot\NextBotGroundLocomotion.cpp"
  31. $File "NextBot\NextBotGroundLocomotion.h"
  32. $File "NextBot\simple_bot.cpp"
  33. $File "NextBot\simple_bot.h"
  34. $File "NextBot\functorutils.h"
  35. $File "$SRCDIR\game\shared\sharedfunctorutils.cpp"
  36. $File "$SRCDIR\game\shared\sharedfunctorutils.h"
  37. $Folder "NextBotInterfaces"
  38. {
  39. $File "NextBot\NextBotBodyInterface.cpp"
  40. $File "NextBot\NextBotBodyInterface.h"
  41. $File "NextBot\NextBotComponentInterface.cpp"
  42. $File "NextBot\NextBotComponentInterface.h"
  43. $File "NextBot\NextBotEventResponderInterface.h"
  44. $File "NextBot\NextBotHearingInterface.h"
  45. $File "NextBot\NextBotIntentionInterface.cpp"
  46. $File "NextBot\NextBotIntentionInterface.h"
  47. $File "NextBot\NextBotInterface.cpp"
  48. $File "NextBot\NextBotInterface.h"
  49. $File "NextBot\NextBotLocomotionInterface.cpp"
  50. $File "NextBot\NextBotLocomotionInterface.h"
  51. $File "NextBot\NextBotVisionInterface.cpp"
  52. $File "NextBot\NextBotVisionInterface.h"
  53. $File "NextBot\NextBotContextualQueryInterface.h"
  54. }
  55. $Folder "NextBotPath"
  56. {
  57. $File "NextBot\Path\NextBotChasePath.cpp"
  58. $File "NextBot\Path\NextBotChasePath.h"
  59. $File "NextBot\Path\NextBotRetreatPath.h"
  60. $File "NextBot\Path\NextBotPath.cpp"
  61. $File "NextBot\Path\NextBotPath.h"
  62. $File "NextBot\Path\NextBotPathFollow.cpp"
  63. $File "NextBot\Path\NextBotPathFollow.h"
  64. }
  65. $Folder "NextBotPlayer"
  66. {
  67. $File "NextBot\Player\NextBotPlayerBody.cpp"
  68. $File "NextBot\Player\NextBotPlayerBody.h"
  69. $File "NextBot\Player\NextBotPlayerLocomotion.cpp"
  70. $File "NextBot\Player\NextBotPlayerLocomotion.h"
  71. $File "NextBot\Player\NextBotPlayer.cpp"
  72. $File "NextBot\Player\NextBotPlayer.h"
  73. }
  74. $Folder "NextBotCommonBehaviors"
  75. {
  76. $File "NextBot\Behavior\BehaviorBackUp.h"
  77. $File "NextBot\Behavior\BehaviorMoveTo.h"
  78. }
  79. }
  80. }
  81. }