The role of Flounceball Team Manager:

1. You've been made the manager of a mysterious sport named 'flounceball', with unknown and seemingly random rules.

2. The objective of the game is for your team to score more points than the opposition team, but how they are directly scored is hidden from you.

3. All you know is, at different times, players will perform poorly and others will perform really well, depending entirely on their pitch location.

4. To influence the game as a manager, you can continuously teleport your players to different positions on the circular field.

5. You have 5 minutes. Good luck.

How to play:

Edit/run this code below and then click the "Start Game" button to play:


import math, random, itertools # libs only needed for example
from dexact.server import ActionTaker, launch_websocket_server


class FlounceballActionTaker(ActionTaker):
    @property
    def state_map(self) -> dict[int, str]:
        """You can ignore this config property."""
        return {
            0: "latest_manager_actions",
            23: "latest_match_state",
        }

    def take_next_action(
        self, 
        time: float,
        states: dict[str, list[float]]
    ) -> list[float]:
        """
        Modify this method to play!
        Also check out the manager cheatsheet if needed:
        umbralcalc.github.io/dexetera/cmd/flounceball/cheatsheet.md
        """
        return list(itertools.chain(*[
            (random.uniform(0, 100), random.uniform(0, 2*math.pi)) 
            for _ in range(0, 10)
        ]))


if __name__ == "__main__":
    launch_websocket_server(FlounceballActionTaker())