home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2000 June / CD-Gamer_2000-06_10_cd.bin / Patches / Quake3A / q3pointrelease_116n.exe / Main / pak2.pk3 / botfiles / chars.h next >
Encoding:
C/C++ Source or Header  |  1999-12-24  |  6.0 KB  |  127 lines

  1. //===========================================================================
  2. //
  3. // Name:            chars.h
  4. // Function:        bot characteristics
  5. // Programmer:        Mr Elusive (MrElusive@idsoftware.com)
  6. // Last update:        1999-12-20
  7. // Tab Size:        4 (real tabs)
  8. //===========================================================================
  9.  
  10. //unless specified, the higher the number, the better the characteristic, or
  11. //the greater the likelyhood of the characteristic occuring.
  12. //also, if any characteristic is ommited, the default value will be used from
  13. //the file in /bots/default_c.c
  14.  
  15. //========================================================
  16. //========================================================
  17. //name of character
  18. #define CHARACTERISTIC_NAME                            0    //string
  19. //gender of the bot
  20. #define CHARACTERISTIC_GENDER                        1    //string ("male", "female", "it")
  21. //attack skill
  22. // >  0.0 && <  0.2 = don't move
  23. // >  0.3 && <  1.0 = aim at enemy during retreat
  24. // >  0.0 && <  0.4 = only move forward/backward
  25. // >= 0.4 && <  1.0 = circle strafing
  26. // >  0.7 && <  1.0 = random strafe direction change
  27. #define CHARACTERISTIC_ATTACK_SKILL                    2    //float [0, 1]
  28. //weapon weight file
  29. #define CHARACTERISTIC_WEAPONWEIGHTS                3    //string
  30. //view angle difference to angle change factor
  31. #define CHARACTERISTIC_VIEW_FACTOR                    4    //float <0, 1]
  32. //maximum view angle change
  33. #define CHARACTERISTIC_VIEW_MAXCHANGE                5    //float [1, 360]
  34. //reaction time in seconds--the lower the number the better
  35. #define CHARACTERISTIC_REACTIONTIME                    6    //float [0, 5]
  36. //accuracy when aiming
  37. #define CHARACTERISTIC_AIM_ACCURACY                    7    //float [0, 1]
  38. //weapon specific aim accuracy
  39. #define CHARACTERISTIC_AIM_ACCURACY_MACHINEGUN        8    //float [0, 1]
  40. #define CHARACTERISTIC_AIM_ACCURACY_SHOTGUN            9    //float [0, 1]
  41. #define CHARACTERISTIC_AIM_ACCURACY_ROCKETLAUNCHER    10    //float [0, 1]
  42. #define CHARACTERISTIC_AIM_ACCURACY_GRENADELAUNCHER    11    //float [0, 1]
  43. #define CHARACTERISTIC_AIM_ACCURACY_LIGHTNING        12
  44. #define CHARACTERISTIC_AIM_ACCURACY_PLASMAGUN        13    //float [0, 1]
  45. #define CHARACTERISTIC_AIM_ACCURACY_RAILGUN            14
  46. #define CHARACTERISTIC_AIM_ACCURACY_BFG10K            15    //float [0, 1]
  47. //skill when aiming
  48. // >  0.0 && <  0.9 = aim is affected by enemy movement
  49. // >  0.4 && <= 0.8 = enemy linear leading
  50. // >  0.8 && <= 1.0 = enemy exact movement leading
  51. // >  0.5 && <= 1.0 = prediction shots when enemy is not visible
  52. // >  0.6 && <= 1.0 = splash damage by shooting nearby geometry
  53. #define CHARACTERISTIC_AIM_SKILL                    16    //float [0, 1]
  54. //weapon specific aim skill
  55. #define CHARACTERISTIC_AIM_SKILL_ROCKETLAUNCHER        17    //float [0, 1]
  56. #define CHARACTERISTIC_AIM_SKILL_GRENADELAUNCHER    18    //float [0, 1]
  57. #define CHARACTERISTIC_AIM_SKILL_PLASMAGUN            19    //float [0, 1]
  58. #define CHARACTERISTIC_AIM_SKILL_BFG10K                20    //float [0, 1]
  59. //========================================================
  60. //chat
  61. //========================================================
  62. //file with chats
  63. #define CHARACTERISTIC_CHAT_FILE                    21    //string
  64. //name of the character with respect to the name that appears when the bot chats
  65. #define CHARACTERISTIC_CHAT_NAME                    22    //string
  66. //type speed in characters per minute, good secretaries type about 350 cpm
  67. #define CHARACTERISTIC_CHAT_CPM                        23    //integer [1, 4000]
  68. //tendency to insult/praise
  69. #define CHARACTERISTIC_CHAT_INSULT                    24    //float [0, 1]
  70. //tendency to chat about miscellaneous subject
  71. #define CHARACTERISTIC_CHAT_MISC                    25    //float [0, 1]
  72. //tendency to chat at start or end of level
  73. #define CHARACTERISTIC_CHAT_STARTENDLEVEL            26    //float [0, 1]
  74. //tendency to chat entering or exiting the game
  75. #define CHARACTERISTIC_CHAT_ENTEREXITGAME            27    //float [0, 1]
  76. //tendency to chat when the character killed someone
  77. #define CHARACTERISTIC_CHAT_KILL                    28    //float [0, 1]
  78. //tendency to chat when the character died
  79. #define CHARACTERISTIC_CHAT_DEATH                    29    //float [0, 1]
  80. //tendency to chat when enemy commits suicide
  81. #define CHARACTERISTIC_CHAT_ENEMYSUICIDE            30    //float [0, 1]
  82. //tendency to chat when hit while chatting
  83. #define CHARACTERISTIC_CHAT_HITTALKING                31    //float [0, 1]
  84. //tendency to chat when bot was hit but didn't die
  85. #define CHARACTERISTIC_CHAT_HITNODEATH                32    //float [0, 1]
  86. //tendency to chat when bot hit the enemy but enemy didn't die
  87. #define CHARACTERISTIC_CHAT_HITNOKILL                33    //float [0, 1]
  88. //tendency to chat at random moments
  89. #define CHARACTERISTIC_CHAT_RANDOM                    34    //float [0, 1]
  90. //tendency to reply to chats
  91. #define CHARACTERISTIC_CHAT_REPLY                    35    //float [0, 1]
  92. //========================================================
  93. //movement
  94. //========================================================
  95. //tendency to crouch
  96. #define CHARACTERISTIC_CROUCHER                        36    //float [0, 1]
  97. //tendency to jump
  98. #define CHARACTERISTIC_JUMPER                        37    //float [0, 1]
  99. //tendency to walk
  100. #define CHARACTERISTIC_WALKER                        48    //float [0, 1]
  101. //tendency to jump using a weapon
  102. #define CHARACTERISTIC_WEAPONJUMPING                38    //float [0, 1]
  103. //tendency to use the grapple hook when available
  104. #define CHARACTERISTIC_GRAPPLE_USER                    39    //float [0, 1]
  105. //========================================================
  106. //goal
  107. //========================================================
  108. //item weight file
  109. #define CHARACTERISTIC_ITEMWEIGHTS                    40    //string
  110. //the aggression of the bot
  111. #define CHARACTERISTIC_AGGRESSION                    41    //float [0, 1]
  112. //the self preservation of the bot (rockets near walls etc.)
  113. #define CHARACTERISTIC_SELFPRESERVATION                42    //float [0, 1]
  114. //how likely the bot is to take revenge
  115. #define CHARACTERISTIC_VENGEFULNESS                    43    //float [0, 1]
  116. //tendency to camp
  117. #define CHARACTERISTIC_CAMPER                        44    //float [0, 1]
  118. //========================================================
  119. //========================================================
  120. //tendency to get easy frags (such as on chatting players)
  121. #define CHARACTERISTIC_EASY_FRAGGER                    45    //float [0, 1]
  122. //how alert the bot is (view distance)
  123. #define CHARACTERISTIC_ALERTNESS                    46    //float [0, 1]
  124. //how long the bot fires it's weapon (continuous or bursts)
  125. #define CHARACTERISTIC_FIRETHROTTLE                    47    //float [0, 1]
  126.  
  127.