1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2024-12-12 11:29:50 +00:00
UltimateTrainingModpack/src/lib.rs

51 lines
1.1 KiB
Rust
Raw Normal View History

#![feature(proc_macro_hygiene)]
2020-04-08 04:21:52 +00:00
2020-04-09 09:10:23 +00:00
use skyline::nn::account::{self, Uid, GetLastOpenedUser, GetNickname, Nickname};
use smash::hash40;
2020-04-10 01:54:01 +00:00
#[skyline::main(name = "module_name_test")]
2020-04-08 04:21:52 +00:00
pub fn main() {
2020-04-12 23:34:43 +00:00
println!("Hello from Skyline Rust Plugin!");
2020-04-08 04:21:52 +00:00
2020-04-08 05:13:06 +00:00
for i in 0..3 {
println!("{}", i);
2020-04-08 04:21:52 +00:00
}
2020-04-09 09:10:23 +00:00
let nickname = unsafe { get_last_user_nickname() };
println!("Last nickname: {}", nickname);
2020-04-12 23:34:43 +00:00
println!("Contents of file: {:?}", std::fs::read_to_string("sd:/test.txt"));
2020-04-10 01:54:01 +00:00
println!("Compile-time hash40 of 'accel_x': {:010X}", hash40("accel_x"));
let string = "accel_x";
println!("Runtime hash40 of '{}': {:010X}", string, hash40(string));
}
2020-04-09 09:10:23 +00:00
unsafe fn get_last_user_nickname() -> Nickname {
2020-04-10 01:54:01 +00:00
account::Initialize();
2020-04-09 09:10:23 +00:00
let uid = &mut Uid::new();
let mut nick = Nickname::new();
GetLastOpenedUser(uid);
GetNickname(&mut nick, uid);
nick
}
/*
use skyline::{
libc::{fopen, FileOpenMode, fwrite_slice, fclose},
c_str
};
fn write_to_file(file: &str, contents: &str) {
unsafe {
let file = fopen(c_str(file), FileOpenMode::Write);
fwrite_slice(contents.as_bytes(), file);
fclose(file);
2020-04-09 02:39:10 +00:00
}
2020-04-09 09:10:23 +00:00
}*/