The RCWeb Snake Control App (app/snake-control) is the dedicated web-based remote control (D-Pad) mapped specifically to the app/snake arcade game, acting exclusively within the Asymmetric Pattern.


The script.js logic revolves entirely around translating user interactions into rapid string execution payloads bounded to the D-Pad constraint.
mousedown and touchstart DOM events, immediately short-circuiting them (e.preventDefault(), e.stopPropagation()) to eliminate default browser scrolling and zooming behaviors perfectly.navigator.vibrate(50) locally to ensure users don't have to look down at their phone to confirm their button press was registered by the glass screen.up(), down()) trigger static rc.send("snakeGame.up('" + rc.client + "');", "snake") strings, telling the central screen engine exactly who is trying to pivot.window.* API Listeners: Exposes public JavaScript functions locally on the DOM (window.updateScore, window.startCountdown). The central snake game server pushes direct JavaScript evaluation payloads explicitly commanding the phone's browser to execute these functions and alter the local UI colors to dynamically match the screen.