Skip to main content

CachedAssetsManager

Index

Constructors

constructor

Properties

_cacheUpdater

_cacheUpdater: any

readonly_contentsSrc

_contentsSrc: string[]

List of the names of the files this library uses

_githubCache

_githubCache: any

_isFetching

_isFetching: boolean

readonly_langs

_langs: string[]

List of supported languages

cacheDirectoryPath

cacheDirectoryPath: string

Path of directory where StarRail cache data is stored

readonlyclient

client: StarRail

The client that instantiated this

readonlydefaultCacheDirectoryPath

defaultCacheDirectoryPath: string

Default path of StarRail cache data directory

Methods

_downloadCacheZip

  • _downloadCacheZip(options?: { ghproxy?: boolean }): Promise<void>

activateAutoCacheUpdater

  • activateAutoCacheUpdater(options?: { ghproxy?: boolean; instant?: boolean; onError?: (error: Error) => Promise<void>; onUpdateEnd?: () => Promise<void>; onUpdateStart?: () => Promise<void>; timeout?: number; useRawStarRailData?: boolean }): void
  • Parameters

    • options: { ghproxy?: boolean; instant?: boolean; onError?: (error: Error) => Promise<void>; onUpdateEnd?: () => Promise<void>; onUpdateStart?: () => Promise<void>; timeout?: number; useRawStarRailData?: boolean } = {}

    Returns void

cacheDirectorySetup

  • cacheDirectorySetup(): Promise<void>
  • Create the necessary folders and files, and if the directory cacheDirectoryPath did not exist, move the cache files from the default path.


    Returns Promise<void>

checkForUpdates

  • checkForUpdates(useRawStarRailData?: boolean): Promise<boolean>

  • Parameters

    Returns Promise<boolean>

    Whether the game data update is available or not.

deactivateAutoCacheUpdater

  • deactivateAutoCacheUpdater(): void

fetchAllContents

  • fetchAllContents(options: { ghproxy?: boolean; useRawStarRailData?: boolean }): Promise<void>
  • Parameters

    • options: { ghproxy?: boolean; useRawStarRailData?: boolean }

    Returns Promise<void>

fetchLanguageData

  • Obtains a text map for a specific language.


    Parameters

    Returns Promise<{}>

getJSONDataPath

  • getJSONDataPath(name: string): string

  • Parameters

    • name: string

      without extensions (.json)

    Returns string

    excel bin file path

getLanguageData


  • Parameters

    Returns {}

    text map for a specific language

    • [key string]: string

getLanguageDataPath


  • Parameters

    Returns string

    text map file path for a specific language

getObjectKeysManager

getStarRailCacheData

  • getStarRailCacheData(name: string): {}
  • Parameters

    • name: string

      without extensions (.json)

    Returns {}

    • [key string]: JsonObject

hasAllContents

  • hasAllContents(): boolean

  • Returns boolean

    whether all StarRail cache data files exist.

refreshAllData

  • refreshAllData(reload?: boolean): void
  • Clean memory of cache data. Then reload data that was loaded before the clean if reload is true. If reload is false, load each file as needed.


    Parameters

    • reload: boolean = false

    Returns void

removeUnusedTextData

  • Remove all unused text map entries


    Parameters

    Returns LanguageMap

updateContents

  • updateContents(options?: { ghproxy?: boolean; onUpdateEnd?: () => Promise<void>; onUpdateStart?: () => Promise<void>; useRawStarRailData?: boolean }): Promise<void>

  • Parameters

    • options: { ghproxy?: boolean; onUpdateEnd?: () => Promise<void>; onUpdateStart?: () => Promise<void>; useRawStarRailData?: boolean } = {}

    Returns Promise<void>

    true if there were any updates, false if there were no updates.