https://github.com/bnorm/robocode-robot-template
https://github.com/bnorm/robocode-robot-template
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bnorm/robocode-robot-template
- Owner: bnorm
- Created: 2020-12-24T20:47:12.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-03-01T22:05:44.000Z (over 5 years ago)
- Last Synced: 2025-10-24T05:41:50.751Z (8 months ago)
- Language: Kotlin
- Size: 57.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Robocode Robot Template
## Project Import
As a Gradle project, this project can be imported into most IDEs. To allow
indexing of the Robocode dependency, Robocode needs to be downloaded first. This
can be done by running the Gradle task `robocodeDownload`.
## Create Robot
Change the name of the class located at `src/main/kotlin/template/TemplateRobot`
and relocate to the desired package. Update `build.gradle.kts` to match the name
and classpath of the robot.
## Run Robocode
To run Robocode, use the Gradle task `robocodeRun`. To build the project so that
Robocode can use any Robots in the project, use the Gradle task `robotBin`. This
task can be executed with Gradle continuous mode (`--continuous`) to make the
development process easier.