You've already forked AstralRinth
forked from didirus/AstralRinth
69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
/**
|
|
* All theseus API calls return serialized values (both return values and errors);
|
|
* So, for example, addDefaultInstance creates a blank Profile object, where the Rust struct is serialized,
|
|
* and deserialized into a usable JS object.
|
|
*/
|
|
import { invoke } from '@tauri-apps/api/tauri'
|
|
|
|
// Add empty default instance
|
|
export async function addDefaultInstance() {
|
|
return await invoke('profile_create_empty')
|
|
}
|
|
|
|
/// Creates instance
|
|
/// Returns a path to the profile created
|
|
export async function create(name, game_version, modloader, loader_version, icon) {
|
|
return await invoke('profile_create', { name, game_version, modloader, loader_version, icon })
|
|
}
|
|
|
|
// Remove a profile
|
|
export async function remove(path) {
|
|
return await invoke('profile_remove', { path })
|
|
}
|
|
|
|
// Get a profile by path
|
|
// Returns a Profile
|
|
export async function get(path) {
|
|
return await invoke('profile_get', { path })
|
|
}
|
|
|
|
// Get a copy of the profile set
|
|
// Returns hashmap of path -> Profile
|
|
export async function list() {
|
|
return await invoke('profile_list')
|
|
}
|
|
|
|
// Add a project to a profile from a version
|
|
// Returns a path to the new project file
|
|
export async function add_project_from_version(path, version_id) {
|
|
return await invoke('profile_add_project_from_version', { path, version_id })
|
|
}
|
|
|
|
// Add a project to a profile from a path + project_type
|
|
// Returns a path to the new project file
|
|
export async function add_project_from_path(path, project_path, project_type) {
|
|
return await invoke('profile_add_project_from_path', { path, project_path, project_type })
|
|
}
|
|
|
|
// Toggle disabling a project
|
|
export async function toggle_disable_project(path, project_path) {
|
|
return await invoke('profile_toggle_disable_project', { path, project_path })
|
|
}
|
|
|
|
// Remove a project
|
|
export async function remove_project(path, project_path) {
|
|
return await invoke('profile_remove_project', { path, project_path })
|
|
}
|
|
|
|
// Run Minecraft using a pathed profile
|
|
// Returns PID of child
|
|
export async function run(path) {
|
|
return await invoke('profile_run', { path })
|
|
}
|
|
|
|
// Run Minecraft using a pathed profile
|
|
// Waits for end
|
|
export async function run_wait(path) {
|
|
return await invoke('profile_run_wait', { path })
|
|
}
|