Skip to content

Sequence Diagram

Holistic Picture

The sequence diagram below illustrates the interaction flow between different components in the GamingPanda gaming system:

  • Player - user's web browser
  • Client - client system with own website
  • GamingPanda - hidden from Player
  • Game - one of game product implementations, visible to Player

Gaming System Sequence Diagram

Flow Description

  1. Initial Login and Game Entry

    • Player logs into the Client system
    • Player selects and enters a game
  2. User Information Processing

    • For new users or when user information needs updating:
      • Client sends game/start request to GamingPanda
      • GamingPanda returns game_url
    • Client redirects Player into the game
  3. Game Session

    • Client opens the game for Player
    • Game session begins
  4. Game Round Cycle

    • During each game round:
      • "balance" request is made to check player's current balance
      • "debit" request is made when player places bets
      • "credit_n_settle" request is made when player wins

This interaction flow ensures seamless integration between all components while maintaining secure financial transactions through the GamingPanda system.