23 releases (10 stable)

2.3.1 Sep 7, 2024
2.2.3 Sep 4, 2024
2.1.0 Jul 16, 2024
2.0.0 Jun 9, 2024
0.1.0 May 21, 2024

#533 in Game dev

Download history 9/week @ 2024-06-20 4/week @ 2024-06-27 28/week @ 2024-07-04 172/week @ 2024-07-11 41/week @ 2024-07-18 56/week @ 2024-07-25 15/week @ 2024-08-01 391/week @ 2024-08-29 490/week @ 2024-09-05 160/week @ 2024-09-12 85/week @ 2024-09-19 54/week @ 2024-09-26 12/week @ 2024-10-03

313 downloads per month

Apache-2.0

43KB
962 lines

    // ** use sync() to sync up the methods, manifest() to get the manifest and save_and_load() to save in a file the version and convert to readable object
    let version: json_version::JsonVersion = sync().block_on(manifest()).versions.first().unwrap().save_and_load("1.20.8.json");
    // ** get the java home path to use in command
    let java_home = get_compatible_java("desy", &version.javaVersion);
    // ** download jar in "v.jar" of version (&version)
    mc::mc::download("v.jar", &version);
    // ** download the assets in "assets" of the assets (version)
    mc::utils::assets_utils::download_all("assets", &version);
    // ** get all libs necessary to init the game
    mc::utils::libs_utils::get_libs("libs".as_ref(),"bin" , &version.libraries).expect("TODO: panic message");
    // ** execute the game
    mc::utils::command_builder::Command {
    resources: CommandResourcesConfig {
    libraries: "libs".to_string(),
    jar_file: "v.jar".to_string(),
    bin: "bin".to_string(),
    },
    java_home: java_home.to_string(),
    game_dir: "".to_string(),
    assets: CommandAssetsConfig {
    assets_dir: "assets\\".to_string(),
    assets_index: version.assets.to_string(),
    },
    user: CommandUserConfig {
    user_type: "user".to_string(),
    client_id: "0".to_string(),
    uuid: "d0db8a3d-c392-4ae7-96e5-9365de33ab52".to_string(),
    xuid: "0".to_string(),
    access_token: "0".to_string(),
    user_name: "tuser".to_string(),
    },
    version: version.command_conf(),
    ram: CommandRamConfig {
    xmx: 4,
    xms: 2,
    },
    }.run();

Dependencies

~15–28MB
~443K SLoC