Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions js/arena-configs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Arena Configurations
* Auto-generated from maDisplayTools/configs/arenas/
* Last updated: 2026-01-30T15:23:37.594Z
* Last updated: 2026-02-11T13:35:39.006Z
*
* DO NOT EDIT MANUALLY - regenerate with: node scripts/generate-arena-configs.js
*/
Expand Down Expand Up @@ -68,6 +68,19 @@ const STANDARD_CONFIGS = {
"angle_offset_deg": -60
}
},
"G6_3x16_full": {
"label": "G6 (3×16) - 360°",
"description": "G6 arena, 3 rows × 16 columns",
"arena": {
"generation": "G6",
"num_rows": 3,
"num_cols": 16,
"columns_installed": null,
"orientation": "normal",
"column_order": "cw",
"angle_offset_deg": 0
}
},
"G41_2x12_ccw": {
"label": "G4.1 CCW (2×12) - 360°",
"description": "Standard G4.1 arena, 2 rows x 12 columns, 360 degree coverage, CCW column order",
Expand Down Expand Up @@ -186,9 +199,9 @@ const GENERATIONS = {

// Arena ID registry — per-generation namespaces (from maDisplayTools/configs/arena_registry/index.yaml)
const ARENA_REGISTRY = {
'G4': { 1: 'G4_4x12', 2: 'G4_3x12of18' },
'G4.1': { 1: 'G41_2x12_cw' },
'G6': { 1: 'G6_2x10', 2: 'G6_2x8of10', 3: 'G6_3x12of18' }
'G4': { 1: 'G4_4x12', 2: 'G4_3x12of18' },
'G4.1': { 1: 'G41_2x12_cw' },
'G6': { 1: 'G6_2x10', 2: 'G6_2x8of10', 3: 'G6_3x12of18' }
};

/**
Expand Down
25 changes: 23 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"test": "node tests/validate-arena-calculations.js",
"validate": "node tests/validate-arena-calculations.js",
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --check \"**/*.js\""
"format:check": "prettier --check \"**/*.js\"",
"generate:configs": "node scripts/generate-arena-configs.js"
},
"repository": {
"type": "git",
Expand All @@ -15,6 +16,7 @@
"author": "Reiser Lab",
"license": "MIT",
"devDependencies": {
"js-yaml": "^4.1.1",
"prettier": "^3.8.1"
}
}
Loading