This is a simple memory editor/viewer utility for the immediate mode UI library egui
Data Preview
section.It's best to look at the example in the examples/
folder, but one can initialise the editor with any struct of their choosing.
For example, a custom memory struct: ```rust let mut memory = Memory::new(); // Create a memory editor with a variety of ranges, need at least one, but can be as many as you want. let mut memeditor = MemoryEditor::new() .withaddressrange("All", 0..0xFFFF) .withaddressrange("IO", 0xFF00..0xFF80) .withwindow_title("Hello Editor!");
// In your egui rendering simply include the following. // The write function is optional, if you don't set it the UI will be in read-only mode. let mut isopen = true; memeditor.windowui( ctx, &mut isopen, &mut memory, |mem, address| mem.readvalue(address).into(), |mem, address, val| mem.writevalue(address, val), ); ```
To run the example do the following:
git clone https://github.com/Hirtol/egui_memory_editor
cd egui_memory_editor
cargo run --example simple --release