On this page, we describe the components of the "Runtime" infrastructure: roughly what players interact with in a direct way to play local and multiplayer games, browse the website, etc.
All components of the runtime infrastructure also need to fetch different assets and configurations to function, and that part is described on the Assets Serving page.
Elements with ⓘ on the diagram have tooltips. Hover over them to see more information.
PlayerPlayer's PCMain Websitehttps://www.beyondallreason.info, built using [Webflow](https://webflow.com/)Game ServerAll game servers are provisioned and maintained via Ansible playbook.
Repo: https://github.com/beyond-all-reason/ansible-spads-setupAssets ServingWe use multiple CDNs and endpoints for hosting different game assets and configuration.
We don't include all the arrows on the diagram for clarity.Email ServerDiscordLobby ServerThe server is provisioned and configured via Ansible playbook.
Repo: https://github.com/beyond-all-reason/ansible-teiserverBAR Live ServicesBAR Live Services https://bar-rts.com/ hosts replay, list of active matches etc
- Frontend: https://github.com/beyond-all-reason/bar-live-services
- Backend: https://github.com/beyond-all-reason/bar-db
Spring LauncherResponsible for downloading and updating engine and all of the assets before launching the game.
Repo: https://github.com/beyond-all-reason/spring-launcherRecoil Engine (dedicated)A special version of Recoil Engine that doesn't run any simulation, but synchronizes and forwards all game commands between players.
All the communication between Game and SPADS/teiserver happens via Autohost interface.SPADSManages individual lobby rooms
Repo: https://github.com/Yaribz/SPADSGame AssetsRecoil Enginepr-downloaderCLI application that downloads updates in efficient format understood by the engine.
Repo: https://github.com/beyond-all-reason/pr-downloaderGame AssetsEngine, Maps, Game filesTeiserverThe main "Server" of the game. https://server4.beyondallreason.info/
It faciliates:
- Communication between players and hosts
- Accounts management
- Rating
- Moderation
Repo: https://github.com/beyond-all-reason/teiserver/PostgreSQLChobbyThe lobby player sees when opening the game
Repo: https://github.com/beyond-all-reason/BYAR-ChobbyBAR GameThe actual core Beyond All Reason game
Repo: https://github.com/beyond-all-reason/Beyond-All-ReasonstartsusesstartsAutohost ProtocolreadsreadsstartsstartsCLI invokewritesreadsbridge protocolSMTPSpringLobby protocolSpringLobby protocolEngine ProtocolSpringLobby protocoluploads replaysembedshttps://www.beyondallreason.info, built using [Webflow](https://webflow.com/)All game servers are provisioned and maintained via Ansible playbook.
Repo: https://github.com/beyond-all-reason/ansible-spads-setupWe use multiple CDNs and endpoints for hosting different game assets and configuration.
We don't include all the arrows on the diagram for clarity.The server is provisioned and configured via Ansible playbook.
Repo: https://github.com/beyond-all-reason/ansible-teiserverBAR Live Services https://bar-rts.com/ hosts replay, list of active matches etc
- Frontend: https://github.com/beyond-all-reason/bar-live-services
- Backend: https://github.com/beyond-all-reason/bar-dbResponsible for downloading and updating engine and all of the assets before launching the game.
Repo: https://github.com/beyond-all-reason/spring-launcherA special version of Recoil Engine that doesn't run any simulation, but synchronizes and forwards all game commands between players.
All the communication between Game and SPADS/teiserver happens via Autohost interface.Manages individual lobby rooms
Repo: https://github.com/Yaribz/SPADSCLI application that downloads updates in efficient format understood by the engine.
Repo: https://github.com/beyond-all-reason/pr-downloaderEngine, Maps, Game filesThe main "Server" of the game. https://server4.beyondallreason.info/
It faciliates:
- Communication between players and hosts
- Accounts management
- Rating
- Moderation
Repo: https://github.com/beyond-all-reason/teiserver/The lobby player sees when opening the game
Repo: https://github.com/beyond-all-reason/BYAR-ChobbyThe actual core Beyond All Reason game
Repo: https://github.com/beyond-all-reason/Beyond-All-Reason
The main way players interact with the game is by launching and playing the game.
The entry point of the interaction is Spring Launcher, which is installed by the user via installer and is responsible for downloading all the other components of the game directly and via pr-downloader distributed with the launcher.
The launcher then starts the Recoil engine process with the "Menu" configured to be Chobby, which has the UI to log in, start a single-player game, etc. Chobby itself can't do much because it's written in Lua and constrained to use the engine APIs, but it has support for opening network sockets. For any advanced functions, e.g., Discord rich presence, triggering map downloads, it calls the launcher via the local network interface.
Chobby connects to the lobby server (teiserver) using the SpringLobby protocol for multiplayer features. It's responsible for starting the game in the same engine instance it's running in. For details about starting the game in the engine, see the article in Engine documentation.
teiserver is the central component that Chobby and game servers connect to. It handles account management, rating, moderation, chat, and overall passing messages between different components.
The one thing that teiserver doesn't do is create new rooms. The rooms are created by SPADS running on the Game Server. There is a single room per SPADS process, with a single special SPADS process used to start and stop new instances (see the diagram in the section below for details).
The lobby room logic is then split between teiserver and SPADS (It's something that is player visible: $ vs ! commands). SPADS contains the vast majority of lobby room logic and is responsible for starting the multiplayer game: starting the special engine dedicated instance and sending players the connection parameters.
SPADS communicates with the engine running on the server using the "Autohost" protocol and has admin privileges to execute different commands, e.g., the !stop command is executed in SPADS, and it's SPADS that resolves the vote and decides whether to stop the battle or not.
Players also have access to the main website: https://www.beyondallreason.info/. The website is created in Webflow, but it also contains <iframe> with pages from https://bar-rts.com/ (BAR Live Services) that contain more interactive parts: replay browser, list of active battles, etc. BAR Live Services is a custom frontend and backend hosted on a dedicated VM, with PostgreSQL, etc.
Recoil Engine (dedicated)SPADSSPADS (Cluster Manager)Game Assetscronpr-downloaderMap SyncerA dedicated service that watches changes in maps-metadata and makes sure that server has all the maps by downloading new ones and removing old.
Source: https://github.com/beyond-all-reason/maps-metadata/tree/main/tools/map_syncerSPADS ConfigurationAll SPADS configuration is stored in https://github.com/beyond-all-reason/spads_config_bar
The configuration incudes all plugins, their configuration, and a bunch of scripts used on the server.Replay Upload ScriptJust a small bash script that is triggered by SPADS to upload replay for public matches to BAR live servicespluginsWe run [*plenty*](https://github.com/beyond-all-reason/spads_config_bar/tree/main/var/plugins) of different plugins, we call out BAR manager as it's to some degree special.unitsync.soDynamically loaded `unitsync.so` library from engine distribution that is used to read information about assets, list game version, modoptions etc.pluginsBar ManagerA special BAR dedicated plugin with some BAR centric functionality.
Source: https://github.com/beyond-all-reason/spads_config_bar/blob/main/var/plugins/barmanager.pyCluster ManagerA plugin that monitors how many SPADS processes are running and spins up new ones as needed, to make sure there is always some free lobby room available.startsstartsAutohost ProtocolCLI invokewriteswritesreadsreadsreadsreadstrigger update scriptA dedicated service that watches changes in maps-metadata and makes sure that server has all the maps by downloading new ones and removing old.
Source: https://github.com/beyond-all-reason/maps-metadata/tree/main/tools/map_syncerAll SPADS configuration is stored in https://github.com/beyond-all-reason/spads_config_bar
The configuration incudes all plugins, their configuration, and a bunch of scripts used on the server.Just a small bash script that is triggered by SPADS to upload replay for public matches to BAR live servicesWe run [*plenty*](https://github.com/beyond-all-reason/spads_config_bar/tree/main/var/plugins) of different plugins, we call out BAR manager as it's to some degree special.Dynamically loaded `unitsync.so` library from engine distribution that is used to read information about assets, list game version, modoptions etc.A special BAR dedicated plugin with some BAR centric functionality.
Source: https://github.com/beyond-all-reason/spads_config_bar/blob/main/var/plugins/barmanager.pyA plugin that monitors how many SPADS processes are running and spins up new ones as needed, to make sure there is always some free lobby room available.
Recoil Engine (dedicated)SPADSSPADS (Cluster Manager)Game Assetscronpr-downloaderMap SyncerA dedicated service that watches changes in maps-metadata and makes sure that server has all the maps by downloading new ones and removing old.
Source: https://github.com/beyond-all-reason/maps-metadata/tree/main/tools/map_syncerSPADS ConfigurationAll SPADS configuration is stored in https://github.com/beyond-all-reason/spads_config_bar
The configuration incudes all plugins, their configuration, and a bunch of scripts used on the server.Replay Upload ScriptJust a small bash script that is triggered by SPADS to upload replay for public matches to BAR live servicespluginsWe run [*plenty*](https://github.com/beyond-all-reason/spads_config_bar/tree/main/var/plugins) of different plugins, we call out BAR manager as it's to some degree special.unitsync.soDynamically loaded `unitsync.so` library from engine distribution that is used to read information about assets, list game version, modoptions etc.pluginsBar ManagerA special BAR dedicated plugin with some BAR centric functionality.
Source: https://github.com/beyond-all-reason/spads_config_bar/blob/main/var/plugins/barmanager.pyCluster ManagerA plugin that monitors how many SPADS processes are running and spins up new ones as needed, to make sure there is always some free lobby room available.startsstartsAutohost ProtocolCLI invokewriteswritesreadsreadsreadsreadstrigger update scriptA dedicated service that watches changes in maps-metadata and makes sure that server has all the maps by downloading new ones and removing old.
Source: https://github.com/beyond-all-reason/maps-metadata/tree/main/tools/map_syncerAll SPADS configuration is stored in https://github.com/beyond-all-reason/spads_config_bar
The configuration incudes all plugins, their configuration, and a bunch of scripts used on the server.Just a small bash script that is triggered by SPADS to upload replay for public matches to BAR live servicesWe run [*plenty*](https://github.com/beyond-all-reason/spads_config_bar/tree/main/var/plugins) of different plugins, we call out BAR manager as it's to some degree special.Dynamically loaded `unitsync.so` library from engine distribution that is used to read information about assets, list game version, modoptions etc.A special BAR dedicated plugin with some BAR centric functionality.
Source: https://github.com/beyond-all-reason/spads_config_bar/blob/main/var/plugins/barmanager.pyA plugin that monitors how many SPADS processes are running and spins up new ones as needed, to make sure there is always some free lobby room available.