-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
4,534 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
-- This is a battle plan file. Here you specify the rules and constraints | ||
-- of the battle. During battle you will not have control of these parameters | ||
-- as they will be set by tournament host | ||
|
||
-- DO NOT CHANGE FROM HERE ======================================= | ||
|
||
-- Enable to stop on robot malfunction and show error message | ||
DebugMode = true | ||
|
||
-- Maximum number of robots allowed to enter | ||
MaxRobots = 8 | ||
|
||
-- Starting Health of robot | ||
MaxRobotHealth = 10 | ||
|
||
-- Starting energy of robot (in seconds) | ||
MaxRobotEnergy = 30.0 | ||
|
||
-- Speed of step movement | ||
RobotMoveSpeed = 30.0 | ||
|
||
-- Duration of step movement | ||
RobotMoveTime = 0.4 | ||
|
||
-- Speed of turn movement (rad/s) | ||
RobotTurnSpeed = math.pi / 2.0 | ||
|
||
-- Duration of turn movement | ||
RobotTurnTime = 0.5 | ||
|
||
-- Maximum Game Time | ||
MaxGameTime = 600.0 | ||
|
||
-- Gun Cooldown Time | ||
GunCooldown = 0.2 | ||
|
||
-- Bullet Damage | ||
BulletDamage = 1 | ||
|
||
-- Bullet Speed | ||
BulletSpeed = 100.0 | ||
|
||
-- Self Destruct Bullet count | ||
SelfDestructBullets = 10 | ||
|
||
-- DO NOT CHANGE ABOVE HERE ======================================= | ||
|
||
|
||
-- Robots can be loaded into teams | ||
Teams = {} | ||
Teams["OLC"] = {"javidbot.lua", "javidbot.lua", "javidbot.lua", "brankbot.lua"} | ||
Teams["BadDudes"] = {"nullbot.lua", "nullbot.lua", "nullbot.lua", "nullbot.lua"} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.