menus_bot.cfg 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. // bot menus and tools
  2. newmenu botmaps
  3. const genbotmaps [
  4. looplist $arg1 listmapname [
  5. menuitemmapload $listmapname (concat "tmp_botmap =" $listmapname "; startbotmap")
  6. ]
  7. ]
  8. genbotmaps $__defaultmaps
  9. tempalias tmp_botskill good
  10. tempalias tmp_numbots 1
  11. tempalias tmp_mode ""
  12. tempalias tmp_botmap ""
  13. tempalias tmp_isbotteammode 0
  14. // add bots
  15. const startbotmatch [
  16. if ($tmp_isbotteammode) [ // team botmode
  17. tempalias numrvsf (div $tmp_numbots 2)
  18. tempalias numcla (div $tmp_numbots 2)
  19. if (= (player1 team) 0) [ -= numcla 1 ] [
  20. if (= (player1 team) 1) [ -= numrvsf 1 ]
  21. ]
  22. if (&& (= $numrvsf $numcla) $needsswitch) [ -= numrvsf 1 ]
  23. addnbot $numrvsf RVSF $tmp_botskill
  24. addnbot $numcla CLA $tmp_botskill
  25. ] [ // bot FFA
  26. addnbot $tmp_numbots random $tmp_botskill
  27. ]
  28. ]
  29. const preparebotmatch [
  30. echo starting botmatch..
  31. tempalias needsswitch 0
  32. if (&& (!= (player1 team) 0) (!= (player1 team) 1)) [ needsswitch = 1; team RVSF ]
  33. // register event that is fired during mapload
  34. addOnLoadOnce [
  35. kickallbots
  36. startbotmatch // add bots
  37. mode 0 // reset mode for next maps
  38. ]
  39. mode $tmp_mode
  40. map $tmp_botmap $menuBotGameLength
  41. ]
  42. const afterdisconnect [
  43. if $connected [
  44. addOnLoadOnce $arg1
  45. disconnect
  46. ] [
  47. if (watchingdemo) [
  48. addOnLoadOnce $arg1
  49. stopdemo
  50. ] $arg1
  51. ]
  52. ]
  53. // register events and change map
  54. const startbotmap [ afterdisconnect preparebotmatch ]
  55. const emptymap [
  56. afterdisconnect [
  57. mode 0
  58. showmenu maps
  59. ]
  60. ]
  61. //// Main > Singleplayer ////
  62. newmenu singleplayer
  63. // teamplay not mature yet
  64. menuitem "Bot Team Deathmatch" [ tmp_mode = 7; tmp_isbotteammode = 1; showmenu botskill ]
  65. menuitem "Bot Deathmatch" [ tmp_mode = 8; tmp_isbotteammode = 0; showmenu botskill ]
  66. menuitem "Bot One Shot, One Kill" [ tmp_mode = 12; tmp_isbotteammode = 0; showmenu botskill ]
  67. menuitem "Bot Pistol Frenzy" [ tmp_mode = 18; tmp_isbotteammode = 0; showmenu botskill ]
  68. menuitem "Bot Last Swiss Standing" [ tmp_mode = 19; tmp_isbotteammode = 0; showmenu botskill ]
  69. menuitem "Bot Team Survivor" [ tmp_mode = 20; tmp_isbotteammode = 1; showmenu botskill ]
  70. menuitem "Bot Team One Shot, One Kill" [ tmp_mode = 21; tmp_isbotteammode = 1; showmenu botskill ]
  71. menuitem "Bot Survival" [ load_survival ; showmenu [Survival Mode] ]
  72. menuitem "" -1
  73. menuitem "Bot settings..." [ showmenu [Bot settings] ]
  74. menuitem "" -1
  75. menuitem "Empty map" emptymap
  76. menuitem "Search map..." [ showmenu [search map] ]
  77. searchmap = ""
  78. newmenu [search official map]
  79. menudirlist "packages/maps/official" cgz [map $arg1] 0 searchmap
  80. newmenu [search custom map]
  81. menudirlist "packages/maps" cgz [map $arg1] 0 searchmap
  82. newmenu [search map]
  83. menuitemtextinput "Part of map name or description: " "result $searchmap" [ searchmap = $arg1 ]
  84. menuitem "\f2\t [ Search in official maps ]" [ showmenu [search official map] ]
  85. menuitem "\f2\t [ Search in custom maps ]" [ showmenu [search custom map] ]
  86. const showmenu_enemies [ if ($tmp_isbotteammode) [ showmenu [team enemies] ] [ showmenu enemies ] ]
  87. newmenu botskill
  88. menuitem Best [ tmp_botskill = best; showmenu_enemies ]
  89. menuitem "Good (default)" [ tmp_botskill = good; showmenu_enemies ]
  90. menuitem Medium [ tmp_botskill = medium; showmenu_enemies ]
  91. menuitem Worse [ tmp_botskill = worse; showmenu_enemies ]
  92. menuitem Bad [ tmp_botskill = bad; showmenu_enemies ]
  93. const genenemyitems [
  94. loop i (listlen $arg1) [
  95. numplayers = (at $arg1 $i)
  96. if (= $arg2 0) [ // DM
  97. -= numplayers 1 // don't count yourself as enemy
  98. menutext = (concat (+ $numplayers 1) players)
  99. ] [ // TDM
  100. teamsize = (div $numplayers 2)
  101. menutext = (concatword $teamsize vs $teamsize)
  102. ]
  103. menuitem $menutext (concat [tmp_numbots =] $numplayers [; showmenu botmaps])
  104. ]
  105. ]
  106. newmenu enemies
  107. genenemyitems [2 4 8 12 16 24 32] 0
  108. newmenu [team enemies]
  109. genenemyitems [4 8 12 16 24 32] 1
  110. newmenu [Bot settings]
  111. menuitemslider "Bot match length in minutes: " 1 60 "$menuBotGameLength" 1 [ menuBotGameLength = $arg1 ]
  112. menuitemcheckbox "Idle bots?" "(idlebots 2)" [ idlebots $arg1 ]
  113. menuitemcheckbox "Bots attack?" "(botsshoot 2)" [ botsshoot $arg1 ]
  114. newmenu [Creating bot waypoints]
  115. menuitem "Waypoints..." [ showmenu Waypoints ]
  116. menuitem "Paths..." [ showmenu Paths ]
  117. menuitem "Other operations..." [ showmenu [Other bot operations] ]
  118. menuitem "" -1
  119. menuitem "Flood map with waypoints" wpflood
  120. menuitem "Save bot waypoints" wpsave
  121. newmenu Waypoints
  122. menuitem "Add a waypoint" [ addwp 0 ]
  123. menuitem "Add auto-connecting waypoint" [ addwp 1 ]
  124. menuitem "" -1
  125. menuitem "Delete nearest waypoint" delwp
  126. menuitem "Delete all waypoints" [ showmenu [Delete all waypoints] ]
  127. newmenu Paths
  128. menuitem "Create Start of 2-way path" addpath2way1
  129. menuitem "Create End of 2-way path" addpath2way2
  130. menuitem "Delete Start of 2-way path" delpath2way1
  131. menuitem "Delete End of 2-way path" delpath2way2
  132. menuitem "" -1
  133. menuitem "Create Start of 1-way path" addpath1way1
  134. menuitem "Create End of 1-way path" addpath1way2
  135. menuitem "Delete Start of 1-way path" delpath1way1
  136. menuitem "Delete End of 1-way path" delpath1way2
  137. newmenu [Other bot operations]
  138. menuitem "Set waypoint as jumpable" setjumpwp
  139. menuitem "Unset waypoint as jumpable" unsetjumpwp
  140. menuitem "Set waypoint direction (yaw)" setwpyaw
  141. menuitem "" -1
  142. menuitemslider "Waypoint visibility: " 0 1 [ ] ["Hide waypoints" "Show waypoints"] [ wpvisible $arg1 ]
  143. menuitemslider "Select/place waypoints by: " 0 1 "($xhairwpsel)" ["Your current location" "Clicking a point on the grid"] [ xhairwpsel $arg1 ]
  144. newmenu [Delete all waypoints]
  145. menuinit [ delallwps = 0 ] // Ensures this menu works correctly.
  146. menuitemcheckbox "Yes, delete all waypoints: " [delallwps = 1] [delallwps = $arg1]
  147. menuitem "\f2\t\t Apply!" [ if $delallwps wpclear [ showmenu [] ] ]