| name | decode |
| description | DECODE 2025-2026 FTC game reference. Use when programming autonomous routines, calculating scores, understanding field layout, or working with game-specific coordinates. |
| license | MIT |
| compatibility | Claude Code, Codex CLI, VS Code Copilot, Cursor |
| metadata | {"author":"ncssm-robotics","version":"1.1.0","category":"game","season":"2025-2026"} |
DECODE 2025-2026 FTC Game
DECODE presented by RTX is the 2025-2026 FIRST Tech Challenge game where teams collect, classify, and score artifacts to unlock patterns and motifs.
Quick Start
| Element | Description |
|---|
| Artifacts | Ball-shaped game pieces (Purple and Green) |
| Control Limit | Maximum 3 artifacts at a time |
| Cycle | Collect → Classify/Score → Repeat |
| Field | 144" × 144" (12ft × 12ft) |
Match Structure
| Period | Duration | Notes |
|---|
| Autonomous | 30 seconds | Pre-programmed robot actions |
| Driver-Controlled | 2 minutes | Manual control with gamepad |
| End Game | Last 30 seconds | Bonus scoring opportunities |
Field Layout (Pedro Coordinates)
Y = 144" (back wall)
┌────────────────────────────────────┐
│ │
│ [GOALS] [GOALS] │
│ │
│ ┌─────────┐ │
│ │CLASSIFIER │
│ └─────────┘ │
│ │
│ [ARTIFACTS] │
│ │
│ ┌──────┐ ┌──────┐ │
│ │ RED │ │ BLUE │ │
│ │START │ │START │ │
│ └──────┘ └──────┘ │
└────────────────────────────────────┘
Y = 0" (audience wall)
X = 0" X = 144"
Key Positions (Pedro Coordinates)
See FIELD_POSITIONS.md for complete coordinates.
| Location | X (in) | Y (in) | Heading (°) |
|---|
| Red Start | 7 | 7 | 0 |
| Blue Start | 137 | 7 | 180 |
| Classifier | 24 | 72 | 90 |
Robot Mechanisms
Based on game strategy:
- Intake - Collect artifacts from field
- Indexer - Hold up to 3 artifacts, feed to shooter
- Shooter - Flywheel + turret + hood for launching
- Vision - Limelight 3A for target tracking
Coordinate Conversion Scripts
Use python to execute conversion scripts (no external dependencies required):
python scripts/convert.py ftc-to-pedro 0 0 90
python scripts/convert.py tile-to-pedro 3 3
python scripts/convert.py tile-center 2 4
python scripts/convert.py mirror-blue 7 6.75 0
python scripts/convert.py all 72 72
Reference Documentation
Anti-Patterns
Don't: Hard-code field positions
val scorePose = Pose(24.0, 48.0, Math.toRadians(90.0))
object FieldPositions {
val SCORE_HIGH_LEFT = Pose(24.0, 48.0, Math.toRadians(90.0))
}
val scorePose = FieldPositions.SCORE_HIGH_LEFT
Don't: Ignore artifact control limits
fun collectArtifact() {
intake.run()
}
fun collectArtifact() {
if (artifactCount < 3) {
intake.run()
artifactCount++
}
}
Don't: Mix coordinate systems
val pose = Pose(ftcX, pedroY, heading)
val pedroPose = CoordinateConversion.ftcToPedro(ftcX, ftcY, heading)
Official Resources