Difference between revisions of "Vortex API Events"
Pickysaurus (talk | contribs) m |
Pickysaurus (talk | contribs) m (→Commands) |
||
Line 339: | Line 339: | ||
| Example | | Example | ||
|<pre> | |<pre> | ||
− | context.api.events. | + | context.api.events.emit('start-download-url', url, fileName); |
</pre> | </pre> | ||
|- | |- | ||
Line 354: | Line 354: | ||
| Example | | Example | ||
|<pre> | |<pre> | ||
− | context.api.events. | + | context.api.events.emit('show-balloon', title, content); |
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Deploy Mods === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | deploy-mods | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Deploy Single Mod === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | deploy-single-mod | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Purge Mods In Path === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | purge-mods-in-path | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Purge Mods === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | purge-mods | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Start Install === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | start-install | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Start Install Download === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | start-install-download | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Remove Mod === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | remove-mod | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Create Mod === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | create-mod | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Update Categories === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | update-categories | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
+ | </pre> | ||
+ | |- | ||
+ | |} | ||
+ | === Activate Game === | ||
+ | Intruct Vortex to . | ||
+ | {| class="wikitable" style="width:80%" | ||
+ | | style="width:10%" | Name | ||
+ | | activate-game | ||
+ | |- | ||
+ | | Parameters | ||
+ | |<code></code> | ||
+ | |- | ||
+ | | Example | ||
+ | |<pre> | ||
+ | context.api.events.emit('', ); | ||
</pre> | </pre> | ||
|- | |- |
Revision as of 09:24, 17 June 2020
![]() |
This page will document all the events Vortex can send and receive using the Vortex API.
Contents
- 1 Interacting with events
- 2 Events
- 2.1 Mods Enabled
- 2.2 Game Mode Activated
- 2.3 Startup
- 2.4 Will Deploy
- 2.5 Did Deploy
- 2.6 Profile Will Change
- 2.7 Profile Did Change
- 2.8 Did Import Downloads
- 2.9 Will Move Downloads
- 2.10 Filehash Calculated
- 2.11 Added Files
- 2.12 Mod Enabled
- 2.13 Mod Disabled
- 2.14 Mod Content Changed
- 2.15 Will Purge
- 2.16 Did Purge
- 3 Commands
- 4 Internal Events
Interacting with events
You can both catch and emit all events inside Vortex. The Vortex API is accessed as a property of the context
object.
In order to have your extension respond to an event you can use the following:
context.api.events.on('eventName', callback); context.api.onAsync('eventName', callback);
To emit an event (or command) yourself use the following:
context.api.events.emit('eventName', callback); context.api.emitAndAwait('eventName', callback);
Notice that the asynchronous version is called from the API object directly, rather than from the events property.
Events
Mods Enabled
Emitted by Vortex when one or more mods are enabled.
Name | mods-enabled |
Parameters | (mods: string[], enabled: boolean, gameId: string)
|
Example | context.api.events.on('mods-enabled', (mods, enabled, gameId) => console.log(`${mods.count} mods ${enabled ? 'enabled' : 'disabled'} in ${gameId}`) ); |
Game Mode Activated
Emitted by Vortex when switching the currently managed game, including when the application first starts.
Name | gamemode-activated |
Parameters | (gameId: string)
|
Example | context.api.events.on('gamemode-activated', (gameId) => console.log(`Activated game mode in ${gameId}`) ); |
Notes |
|
Startup
Emitted by Vortex when the application first starts (after the extensions are loaded by before the UI is displayed).
Name | startup |
Parameters | none |
Example | context.api.events.on('startup', () => console.log('Vortex is starting up.') ); |
Will Deploy
Emitted asynchronously by Vortex before starting a deployment.
Name | will-deploy |
Parameters | (profileId: string, oldDeployment: { [modType: string]: IDeployedFile[] })
|
Example | context.api.onAsync('will-deploy', (profiled, oldDeployment) => console.log(`About to deploy mods for profile ${profileId}`) ); context.api.emitAndAwait('will-deploy', profileId, lastDeployment); |
Did Deploy
Emitted asynchronously by Vortex after finishing a deployment.
Name | did-deploy |
Parameters | (profileId: string, newDeployment: { [modType: string]: IDeployedFile[] })
|
Example | context.api.onAsync('did-deploy', (profiled, newDeployment) => console.log(`Finished deploying mods for profile ${profileId}`) ); context.api.emitAndAwait('did-deploy', profileId, thisDeployment); |
Profile Will Change
Emitted by Vortex before switching between profiles.
Name | profile-will-change |
Parameters | (newProfileId: string, enqueue: (cb: () => Promise<void>) => void)
|
Example | context.api.events.on('profile-will-change', (newProfileId, enqueue: () => undefined) => console.log(`Preparing to switch to profile ${newProfileId}`) ); |
Notes |
|
Profile Did Change
Emitted by Vortex after switching between profiles.
Name | profile-did-change |
Parameters | (newProfileId: string)
|
Example | context.api.events.on('profile-did-change', (newProfileId => console.log(`Finished switching to profile ${newProfileId}`) ); |
Notes |
|
Did Import Downloads
Emitted by Vortex after adding new downloads to the downloads section.
Name | did-import-downloads |
Parameters | (dlIds: string[])
|
Example | context.api.events.on('did-import-downloads', (dlIds => console.log(`Imported ${dlIds.length} downloads`) ); |
Will Move Downloads
Emitted by Vortex before the user relocates their download folder for a game.
Name | will-move-downloads |
Parameters | none |
Example | context.api.events.on('profile-did-change', (() => console.log('Vortex is preparing to move downloads.') ); |
Filehash Calculated
Emitted by Vortex after the user adds a new file and its MD5 has been calculated.
Name | filehash-calculated |
Parameters | (filePath: string, fileMD5: string, fileSize: number)
|
Example | context.api.events.on('filehash-calculated', (filePath, fileMD5, fileSize) => console.log(`File at ${filePath} is ${fileSize} bytes with MD5 of ${fileMD5}`) ); |
Added Files
Emitted asynchronously by Vortex if new files have been created in the mods folder and Vortex has attempted to identify where they came from.
Name | added-files |
Parameters | (profileId: string, newFiles: Array<{ filePath: string, candidates: string[] }>)
|
Example | context.api.onAsync('added-files', (profileId, newFiles) => { const fileInfo = newFiles.map(f => `File${f.filePath} could be a part of the following mods ${f.candidates.join('\n')}`).join('\n'); console.log(`New files detected in the mods folder for ${profileId}\n${fileInfo}`); }) ); |
Mod Enabled
Emitted by Vortex when a mod is toggled from disabled to enabled.
Name | mod-enabled |
Parameters | (profileId: string, modId: string)
|
Example | context.api.events.on('mod-enabled', (profileId, modId) => console.log(`Mod ${modId} enabled in ${profileId}`) ); |
Mod Disabled
Emitted by Vortex when a mod is toggled from enabled to disabled.
Name | mod-disabled |
Parameters | (profileId: string, modId: string)
|
Example | context.api.events.on('mod-disabled', (profileId, modId) => console.log(`Mod ${modId} disabled in ${profileId}`) ); |
Mod Content Changed
Emitted when Vortex determines the files inside a mod were changed (files might have been deleted or added). Primarily useful to update caches.
Name | mod-content-changed |
Parameters | (profileId: string, modId: string)
|
Example | context.api.events.on('mod-content-changed', (profileId, modId) => console.log(`Mod ${modId} in ${profileId} changed`) ); |
Will Purge
Emitted by Vortex before purging deployed mods.
Name | will-purge |
Parameters | (profileId: string, deployment: IDeployment)
|
Example | context.api.events.on('will-purge', (profileId, deployment) => console.log(`Preparing to purge on profile ${profileId}`) ); |
Did Purge
Emitted by Vortex after purging deployed mods.
Name | did-purge |
Parameters | (profileId: string)
|
Example | context.api.events.on('did-purge', (profileId) => console.log(`Finished purge on profile ${profileId}`) ); |
Commands
Start Download URL
Intruct Vortex to download the file at a given URL and name the resulting file.
Name | start-download-url |
Parameters | (url: string, fileName: string)
|
Example | context.api.events.emit('start-download-url', url, fileName); |
Show Balloon
Intruct Vortex to display a notification to the user.
Name | show-balloon |
Parameters | (title: string, content: string)
|
Example | context.api.events.emit('show-balloon', title, content); |
Deploy Mods
Intruct Vortex to .
Name | deploy-mods |
Parameters |
|
Example | context.api.events.emit('', ); |
Deploy Single Mod
Intruct Vortex to .
Name | deploy-single-mod |
Parameters |
|
Example | context.api.events.emit('', ); |
Purge Mods In Path
Intruct Vortex to .
Name | purge-mods-in-path |
Parameters |
|
Example | context.api.events.emit('', ); |
Purge Mods
Intruct Vortex to .
Name | purge-mods |
Parameters |
|
Example | context.api.events.emit('', ); |
Start Install
Intruct Vortex to .
Name | start-install |
Parameters |
|
Example | context.api.events.emit('', ); |
Start Install Download
Intruct Vortex to .
Name | start-install-download |
Parameters |
|
Example | context.api.events.emit('', ); |
Remove Mod
Intruct Vortex to .
Name | remove-mod |
Parameters |
|
Example | context.api.events.emit('', ); |
Create Mod
Intruct Vortex to .
Name | create-mod |
Parameters |
|
Example | context.api.events.emit('', ); |
Update Categories
Intruct Vortex to .
Name | update-categories |
Parameters |
|
Example | context.api.events.emit('', ); |
Activate Game
Intruct Vortex to .
Name | activate-game |
Parameters |
|
Example | context.api.events.emit('', ); |