Bomberman Arena is a shared-screen maze battle for RCWeb. One browser becomes the full arena display, while every phone becomes a live controller for its own bomber. Players weave through walls and crates, plant bombs, uncover upgrades, and keep affecting the round even after getting knocked out.
Bomberman Arena turns the familiar bomb-maze formula into a lively room game. The shared screen shows the whole field: solid walls, breakable crates, live bombs, blast flames, powerups, round countdowns, and the scoreboard. Phones handle the private player-side interaction: movement, bomb placement, and ghost actions.
The arena is built around round-based survival. Living players move through the maze, break crates, and uncover powerups that increase blast range, bomb capacity, or movement speed. The last living bomber wins the round, keeps the win on the board, and the maze resets for the next one.
Getting eliminated does not take you out of the game completely. Defeated players return as ghosts. Ghosts can pass through the maze and convert the action button from placing bombs into a temporary hazard pulse, so even after death they can still pressure the surviving players and influence the outcome of the round.
Open /bomberman/ on the shared screen. Players scan the QR code to open /bomberman-control/ on their phones in the same room. As soon as players are connected, the arena can begin and rebuild itself round after round automatically.
Use the direction pad on your phone to move through the maze. While alive, the action button places a bomb. Bombs explode after a short fuse, sending flames outward in straight lines until they hit a wall or run out of range.
Blow up crates to open paths and reveal powerups. A flame upgrade extends blast range, a bomb upgrade increases how many bombs you can have active at once, and speed upgrades let you move more aggressively through the maze.
If a blast catches you, you become a ghost for the rest of the round. Ghosts move differently and use the action button to seed a temporary hazard instead of placing a bomb. When only one living player remains, the round ends, the winner gets the win, and the arena resets for the next round.
Bomberman Arena uses RCWeb's room-based WebSocket layer to split the game between one display and many phone controllers. The display and all phones join the same RCWeb room using the rc values injected by the Java server. The display publishes a QR code with that room already selected, so players can jump directly into the correct arena without setup friction.
The display owns the live simulation. It builds the maze, tracks bombs, flames, crates, powerups, player positions, ghost state, round flow, and scoreboard updates, and decides when rounds begin and end. Because the shared screen is the single source of truth, every phone sees the same blasts, the same upgrades, and the same winner resolution.
Phones communicate with the display through comms.js and RCWeb function calls. A controller registers a player, streams movement direction and action presses, and receives targeted updates for mode, score, wins, bomb count, blast range, cooldown status, and action label. The result feels like a proper shared arcade arena, but it runs on RCWeb's lightweight Java backend and vanilla browser apps.