#scripting #emulation #citra

已删除 citra-scripting

Rust 对 Citra 脚本接口的接口

1 个不稳定版本

使用旧的 Rust 2015

0.1.1 2018 年 9 月 13 日
0.1.0 2018 年 9 月 13 日

206#emulation

MIT 协议

12KB
205

Citra Rust 脚本

Citra 脚本接口的基本接口。

需要安装 ZMQ 4.2.0+。

示例

读取内存的一部分

let connection = CitraConnection::connect().expect("Got error while connecting");

let memory = connection
    .read_memory(0x100000, 4)
    .expect("Failed to read memory");

assert_eq!(memory.len(), 4);

许可证

MIT 许可证 下可用。


lib.rs:

Rust 的 Citra 脚本接口的基本实现。

基于此处 Python 实现:https://github.com/citra-emu/citra/commit/04dd91be822aa2358e2160370f6082ab81ec4a2b

依赖关系

~775KB
~14K SLoC