Compare commits

...

7 Commits

Author SHA1 Message Date
LagoLunatic 5e389438c7
Merge 6f05b6b964 into 7aa878b48e 2024-12-02 01:15:32 -05:00
LagoLunatic 6f05b6b964 Also update variable name in rlwinm.rs 2024-12-02 01:15:30 -05:00
LagoLunatic d773b8c14f Change variable name
Co-authored-by: Luke Street <luke@street.dev>
2024-12-02 01:15:30 -05:00
LagoLunatic c0e9af54a5 Remove trailing newline when displaying decoded rlwinm info 2024-12-02 01:15:30 -05:00
LagoLunatic 1f6b4ac8c4 Display decoded rlwinm info to hover tooltip 2024-12-02 01:15:30 -05:00
LagoLunatic 8150f9832c Update .gitignore 2024-12-02 01:15:30 -05:00
LagoLunatic bd6dc5988a Fix missing dependency feature for objdiff-gui 2024-12-02 01:15:30 -05:00
4 changed files with 9 additions and 5 deletions

2
.gitignore vendored
View File

@ -18,4 +18,4 @@ android.keystore
*.frag
*.vert
*.metal
.vscode/launch.json
.vscode/

View File

@ -95,7 +95,7 @@ exec = "0.3"
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]

View File

@ -149,6 +149,10 @@ fn ins_hover_ui(
ui.colored_label(appearance.highlight_color, "Extern".to_string());
}
}
if let Some(decoded) = rlwinmdec::decode(&ins.formatted) {
ui.colored_label(appearance.highlight_color, decoded.trim());
}
});
}

View File

@ -16,13 +16,13 @@ pub fn rlwinm_decode_window(
egui::Window::new("Rlwinm Decoder").open(show).show(ctx, |ui| {
ui.text_edit_singleline(&mut state.text);
ui.add_space(10.0);
if let Some(demangled) = rlwinmdec::decode(&state.text) {
if let Some(decoded) = rlwinmdec::decode(&state.text) {
ui.scope(|ui| {
ui.style_mut().override_text_style = Some(TextStyle::Monospace);
ui.colored_label(appearance.replace_color, &demangled);
ui.colored_label(appearance.replace_color, decoded.trim());
});
if ui.button("Copy").clicked() {
ui.output_mut(|output| output.copied_text = demangled);
ui.output_mut(|output| output.copied_text = decoded);
}
} else {
ui.scope(|ui| {