cobble-core

crates.io Documentation MSRV Dependency Status License

A Rust library for managing, installing and launching Minecraft instances.

Usage

Authentication

```rust use cobble_core::profile::Profile; use std::sync::{atomic::AtomicBool, Arc};

let clientid = "".tostring(); let clientsecret = "".tostring();

let cancel = Arc::new(AtomicBool::new(false)); let (url, result) = Profile::authenticate(clientid, clientsecret, cancel)?;

println!("{}", url);

let profile: Profile = result.recv()??; println!("Minecraft Playername: {}", profile.player_name); ```

Installing

```rust use cobble_core::instance::{Instance, InstanceBuilder}; use std::sync::atomic::AtomicBool; use std::sync::Arc;

let instance: Instance = InstanceBuilder::default() .name("Test Instance".tostring()) .version("1.18.2".tostring()) .instancepath("./instance".tostring()) .librariespath("./libraries".tostring()) .assetspath("./assets".tostring()) .build()?;

let (tx, rx) = Instance::updatechannel(); let cancel = Arc::new(AtomicBool::new(false));

instance.full_install(tx, cancel)?; ```

Launching

```rust use cobblecore::instance::{Instance, InstanceBuilder}; use cobblecore::minecraft::launch_options::LaunchOptionsBuilder;

let instance: Instance = InstanceBuilder::default() .name("Test Instance".tostring()) .version("1.18.2".tostring()) .instancepath("./instance".tostring()) .librariespath("./libraries".tostring()) .assetspath("./assets".tostring()) .build()?;

instance.launch(&LaunchOptionsBuilder::default().build())?; ```

Cargo Features

| Feature | Description | |-----------|-----------------------------------------------| | gobject | Provides glib objects for the primary structs |

Future Development