1. The inter-galactic travel business is booming, but there are only a limited number of hyperspace jump points to connect the cosmos.
2. These jump points represent nodes of a hyperspace network of lines through which space traffic may pass in either direction.
3. Hyperspace Traffic Control is tasked with monitoring and controlling congestion along these busy lines, where jump points may only serve a single travel direction at any point in time.
4. You are now in charge of Hyperspace Traffic Control at an important cluster of jump points, maximising the flow of inter-galactic traffic if you can.
5. You have 10 years. Good luck.
Edit/run this code below and then click the "Start Game" button to play:
from random import choice # lib only needed for example
from dexact.server import ActionTaker, launch_websocket_server
class HyperspaceTCActionTaker(ActionTaker):
@property
def state_map(self) -> dict[int, str]:
"""You can ignore this config property."""
return {
0: "latest_controller_actions",
1: "latest_left_jump_point_queues",
2: "latest_upper_jump_point_queues",
3: "latest_right_jump_point_queues",
}
def take_next_action(
self,
time: float,
states: dict[str, list[float]]
) -> list[float]:
"""
Modify this method to play!
Also check out the controller cheatsheet if needed:
umbralcalc.github.io/dexetera/cmd/hyperspacetc/cheatsheet.md
"""
return [choice([4, 5, 6]), choice([8, 9]), choice([11, 12])]
if __name__ == "__main__":
launch_websocket_server(HyperspaceTCActionTaker())