Type Parameters

  • T

Constructors

Properties

animationManager: AnimationManager
game: Game

the BGA game class, usually it will be this

stocks: CardStock<T>[] = []
updateBackTimeoutId: any[] = []
updateFrontTimeoutId: any[] = []
updateMainTimeoutId: any[] = []

Methods

  • Returns if the animations are active. Animation aren't active when the window is not visible (document.visibilityState === 'hidden'), or game.instantaneousMode is true.

    Returns boolean

    if the animations are active.

  • Parameters

    • card: T
    • visible: boolean = true

    Returns HTMLDivElement

  • Flips the card.

    Parameters

    • card: T

      the card informations

    • Optional settings: FlipCardSettings

      the flip params (to update the card in current stock)

    Returns void

  • Parameters

    • card: T

      the card informations

    Returns HTMLElement

    the HTML element of an existing card

  • Returns number

    the card height set in the settings (undefined if unset)

  • Returns number

    the card with set in the settings (undefined if unset)

  • Returns ((deckId) => T)

      • (deckId): T
      • Parameters

        • deckId: string

        Returns T

  • Parameters

    • card: T

      the card informations

    Returns string

    the id for a card

  • Returns string

    the class to apply to selectable cards. Default 'bga-cards_selectable-card'.

  • Returns string

    the class to apply to selected cards. Default 'bga-cards_selected-card'.

  • Returns string

    the class to apply to selectable cards. Default 'bga-cards_disabled-card'.

  • Return if the card passed as parameter is suppose to be visible or not. Use isCardVisible from settings if set, else will check if card.type is defined

    Parameters

    • card: T

      the card informations

    Returns boolean

    the visiblility of the card (true means front side should be displayed)

  • Remove a card.

    Parameters

    Returns Promise<boolean>

  • Set the card to its front (visible) or back (not visible) side.

    Parameters

    • card: T

      the card informations

    • Optional visible: boolean

      if the card is set to visible face. If unset, will use isCardVisible(card)

    • Optional settings: FlipCardSettings

      the flip params (to update the card in current stock)

    Returns void

  • Update the card informations. Used when a card with just an id (back shown) should be revealed, with all data needed to populate the front.

    Parameters

    Returns void

Generated using TypeDoc