Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (18 loc) · 1.17 KB

File metadata and controls

30 lines (18 loc) · 1.17 KB

FRC Team 2655 Autonomous Script Crafter

The Autonomous Script Crafter is a tool to allow anyone to build scripts for FRC robots in autonomous mode.

Installation and Use:

Prebuilt Installer/JAR(Recommended)

The easiest way to install the script crafter is to head over to the releases page and download the latest installer(exe).

For linux or MAC OS X download the jar file. NOTE:You will need java installed.

Build from source (Not Recommended):

  • Download the latest Java JDK and install it and add javac to the path.

  • Clone or download the repository and open a command prompt or terminal window in the src directory where it weas cloned.

  • Type the following commands

    Windows only

    dir /s /B *.java > sources.txt

    Linux/macOS only

    find -name "*.java" > sources.txt

    javac -d bin @sources.txt
    java -cp bin ./team2655/scriptcrafter/gui/ScriptCrafter
    
  • (OPTIONAL)To Package a jar file:

    jar -cfem ./ScriptCrafter.jar ./META-INF/MANIFEST.MF ./*/*/*