Kokopu - v4.13.0
    Preparing search index...

    Class AbstractNodeAbstract

    Base class for Node and Variation.

    Hierarchy (View Summary)

    Index

    Methods

    • Add the given NAG to the current node or variation.

      Parameters

      • nag: number

      Returns void

    • Remove all the NAGs from the current node or variation.

      Returns void

    • Remove all the key-value tag pairs from the the current node or variation.

      Returns void

      AbstractNode.tags for more details on tags.

    • Get the text comment (if any) associated to the current node or variation.

      Returns string | undefined

    • Set the text comment associated to the current node or variation.

      Parameters

      • value: string | undefined

        If undefined, the existing value (if any) is erased.

      • OptionalisLongComment: boolean

        false by default.

      Returns void

    • Remove from the the current node or variation the NAGs for which the given filter evaluates to false (and keep those for which it evaluates to true).

      Parameters

      • filter: (nag: number) => boolean

      Returns void

    • Remove from the the current node or variation the key-value tag pairs for which the given filter evaluates to false (and keep those for which it evaluates to true).

      Parameters

      • filter: (tagKey: string, tagValue: string) => boolean

      Returns void

      AbstractNode.tags for more details on tags.

    • Identifier of the Node that arise after playing distance moves starting from the current Node or Variation.

      REMARK: the ID returned by this method may not correspond to an existing Node if the underlying variation is not long enough. Still, in that case, the returned ID is always properly formed, and could correspond to a valid node later if the variation is extended.

      If distance is 0, this method returns the same result as AbstractNode.id.

      Parameters

      • distance: number

        Must be a positive integer.

      Returns string

    • Check whether the current node or variation has the given NAG or not.

      Parameters

      • nag: number

      Returns boolean

    • Identifier of the current Node or Variation within its parent Game.

      WARNING: the ID may change when variations are modified (added, removed, swapped, promoted...) among the parents the current node.

      Returns string

    • Whether the text comment associated to the current node or variation is long or short.

      Returns boolean

      false if no comment is defined.

    • Returns boolean

      Use obj instanceof Variation instead.

    • NAGs associated to the current node or variation.

      Returns number[]

      array sorted in increasing order.

    • Create a new node representing the given move, and append it to the current node or variation.

      If there are some pre-existing subsequent nodes, they are all erased.

      Parameters

      • move: string

        SAN representation of the move, or '--' for a null-move.

      Returns Node

      The newly created Node.

      exception.InvalidNotation if the move notation cannot be parsed, or if the parsed move would correspond to an illegal move.

    • Remove the given NAG from the current node or variation.

      Parameters

      • nag: number

      Returns void

    • Get the value associated to the given tag key on the current node or variation.

      Parameters

      • tagKey: string

      Returns string | undefined

      AbstractNode.tags for more details on tags.

    • Set the value associated to the given tag key on the current node or variation.

      Parameters

      • tagKey: string
      • value: string | undefined

        If undefined, the existing value (if any) is erased.

      Returns void

      AbstractNode.tags for more details on tags.

    • Return the keys of the tags associated to the current node or variation.

      The tag mechanism is a key-value associative container allowing to store some arbitrary data on each node or variation. In PGN, the tags are represented as [%tagKey tagValue] strings appended to text comments.

      The tag keys must be non-empty, and can contain only alphanumeric or underscore characters.

      Returns string[]

      array sorted in increasing order.