1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
use std::marker::PhantomData;
use std::mem;

use imgui::{ImColor32, ImStr, Ui};
use imgui_memory_editor_sys as sys;

/// Dear ImGui memory editor widget.
///  
/// Use by calling either `draw_contents` or
/// `draw_window` methods.
///  
/// ## Note:
/// While theoretically this struct is Send + Sync compatible, it doesn't
/// implement those traits, since Dear ImGui
/// [isn't thread safe](https://github.com/imgui-rs/imgui-rs/issues/392#issuecomment-737779381).
#[derive(Debug)]
pub struct MemoryEditor {
    raw_editor: sys::MemoryEditor,

    /// Avoid implementing Send and Sync, since Dear ImGui
    /// is not thread safe.
    /// [https://github.com/imgui-rs/imgui-rs/issues/392#issuecomment-737779381]
    _phantom_data: PhantomData<*const ()>,
}

impl Default for MemoryEditor {
    fn default() -> Self {
        Self::new()
    }
}

impl MemoryEditor {
    /// Create a new `MemoryEditor` instance.
    pub fn new() -> Self {
        Self {
            raw_editor: sys::MemoryEditor {
                // Settings
                Open: false,
                ReadOnly: false,
                Cols: 16,
                OptShowOptions: true,
                OptShowDataPreview: false,
                OptShowHexII: false,
                OptShowAscii: true,
                OptGreyOutZeroes: true,
                OptUpperCaseHex: true,
                OptMidColsCount: 8,
                OptAddrDigitsCount: 0,
                HighlightColor: 855638015, // (255, 255, 255, 50)
                ReadFn: None,
                WriteFn: None,
                HighlightFn: None,

                // State/Internals
                ContentsWidthChanged: false,
                DataPreviewAddr: usize::MAX - 1,
                DataEditingAddr: usize::MAX - 1,
                DataEditingTakeFocus: false,
                DataInputBuf: [0; 32],
                AddrInputBuf: [0; 32],
                GotoAddr: usize::MAX - 1,
                HighlightMin: usize::MAX - 1,
                HighlightMax: usize::MAX - 1,
                PreviewEndianess: 0,
                PreviewDataType: 4, // ImGuiDataType_S32
            },
            _phantom_data: PhantomData,
        }
    }

    /// Get the `Open` field.
    pub fn get_open(&self) -> bool {
        self.raw_editor.Open
    }

    /// Set the `Open` field.
    pub fn set_open(&mut self, open: bool) {
        self.raw_editor.Open = open;
    }

    /// Get the `ReadOnly` field.
    pub fn get_read_only(&self) -> bool {
        self.raw_editor.ReadOnly
    }

    /// Set the `ReadOnly` field.
    pub fn set_read_only(&mut self, read_only: bool) {
        self.raw_editor.ReadOnly = read_only;
    }

    /// Get the `Cols` field.
    pub fn get_cols(&self) -> chlorine::c_int {
        self.raw_editor.Cols
    }

    /// Set the `Cols` field.
    pub fn set_cols(&mut self, columns: chlorine::c_int) {
        self.raw_editor.Cols = columns;
    }

    /// Get the `HighlightColor` field.
    pub fn get_highlight_color(&self) -> ImColor32 {
        self.raw_editor.HighlightColor.into()
    }

    /// Set the `HighlightColor` field.
    pub fn set_highlight_color(&mut self, color: ImColor32) {
        self.raw_editor.HighlightColor = color.to_bits()
    }

    /// Get the `OptShowHexII` field.
    pub fn get_show_hexii(&self) -> bool {
        self.raw_editor.OptShowHexII
    }

    /// Set the `OptShowHexII` field.
    pub fn set_show_hexii(&mut self, show: bool) {
        self.raw_editor.OptShowHexII = show;
    }

    /// Get the `OptShowAscii` field.
    pub fn get_show_ascii(&self) -> bool {
        self.raw_editor.OptShowAscii
    }

    /// Set the `OptShowAscii` field.
    pub fn set_show_ascii(&mut self, show: bool) {
        self.raw_editor.OptShowAscii = show;
    }

    /// Get the `OptShowOptions` field.
    pub fn get_show_options(&self) -> bool {
        self.raw_editor.OptShowOptions
    }

    /// Set the `OptShowOptions` field.
    pub fn set_show_options(&mut self, show: bool) {
        self.raw_editor.OptShowOptions = show;
    }

    /// Get the `OptShowDataPreview` field.
    pub fn get_show_data_preview(&self) -> bool {
        self.raw_editor.OptShowDataPreview
    }

    /// Set the `OptShowDataPreview` field.
    pub fn set_show_data_preview(&mut self, show: bool) {
        self.raw_editor.OptShowDataPreview = show;
    }

    /// Get the `OptGreyOutZeroes` field.
    pub fn get_grey_out_zeroes(&self) -> bool {
        self.raw_editor.OptGreyOutZeroes
    }

    /// Set the `OptGreyOutZeroes` field.
    pub fn set_grey_out_zeroes(&mut self, greyout: bool) {
        self.raw_editor.OptGreyOutZeroes = greyout;
    }

    /// Get the `OptUpperCaseHex` field.
    pub fn get_upper_case_hex(&self) -> bool {
        self.raw_editor.OptUpperCaseHex
    }

    /// Set the `OptUpperCaseHex` field.
    pub fn set_upper_case_hex(&mut self, uppercase: bool) {
        self.raw_editor.OptUpperCaseHex = uppercase;
    }

    /// Get the `OptMidColsCount` field.
    pub fn get_mid_cols_count(&self) -> chlorine::c_int {
        self.raw_editor.OptMidColsCount
    }

    /// Set the `OptMidColsCount` field.
    pub fn set_mid_cols_count(&mut self, count: chlorine::c_int) {
        self.raw_editor.OptMidColsCount = count;
    }

    /// Get the `OptAddrDigitsCount` field.
    pub fn get_addr_digits_count(&self) -> chlorine::c_int {
        self.raw_editor.OptAddrDigitsCount
    }

    /// Set the `OptAddrDigitsCount` field.
    pub fn set_addr_digits_count(&mut self, count: chlorine::c_int) {
        self.raw_editor.OptAddrDigitsCount = count;
    }

    /// Set the `ReadFn` field.
    ///  
    /// You can only pass in ordinary functions
    /// and stateless closures, if you pass anything
    /// else this function **will panic**.
    pub fn set_read_fn<F>(&mut self, _: F)
    where
        F: Fn(*const sys::ImU8, usize) -> sys::ImU8,
    {
        assert!(mem::size_of::<F>() == 0);

        unsafe extern "C" fn wrapped<F: Fn(*const sys::ImU8, usize) -> sys::ImU8>(
            mem_data: *const sys::ImU8,
            offset: usize,
        ) -> sys::ImU8 {
            mem::zeroed::<F>()(mem_data, offset)
        }

        self.raw_editor.ReadFn = Some(wrapped::<F>);
    }

    /// Set the `WriteFn` field.
    ///  
    /// You can only pass in ordinary functions
    /// and stateless closures, if you pass anything
    /// else this function **will panic**.
    pub fn set_write_fn<F>(&mut self, _: F)
    where
        F: Fn(*mut sys::ImU8, usize, sys::ImU8),
    {
        assert!(mem::size_of::<F>() == 0);

        unsafe extern "C" fn wrapped<F: Fn(*mut sys::ImU8, usize, sys::ImU8)>(
            mem_data: *mut sys::ImU8,
            offset: usize,
            value: sys::ImU8,
        ) {
            mem::zeroed::<F>()(mem_data, offset, value);
        }

        self.raw_editor.WriteFn = Some(wrapped::<F>);
    }

    /// Set the `HighlightFn` field.
    ///  
    /// You can only pass in ordinary functions
    /// and stateless closures, if you pass anything
    /// else this function **will panic**.
    pub fn set_highlight_fn<F>(&mut self, _: F)
    where
        F: Fn(*const sys::ImU8, usize) -> bool,
    {
        assert!(mem::size_of::<F>() == 0);

        unsafe extern "C" fn wrapped<F: Fn(*const sys::ImU8, usize) -> bool>(
            mem_data: *const sys::ImU8,
            offset: usize,
        ) -> bool {
            mem::zeroed::<F>()(mem_data, offset)
        }

        self.raw_editor.HighlightFn = Some(wrapped::<F>);
    }

    /// Render only the contents of the memory editor, without any window.
    ///  
    /// The `base_display_addr` field has a default value of `0x0000` if
    /// `None` is passed as an argument.
    pub fn draw_contents(&mut self, _: &Ui, mem_data: &mut [u8], base_display_addr: Option<usize>) {
        let mem_edit = (&mut self.raw_editor) as *mut sys::MemoryEditor;

        let mem_size = mem_data.len();
        let mem_data = mem_data.as_mut_ptr() as *mut chlorine::c_void;

        unsafe {
            sys::DrawContents(
                mem_edit,
                mem_data,
                mem_size,
                base_display_addr.unwrap_or(0x0000),
            );
        }
    }

    /// Render standalone memory editor, in a window.
    ///  
    /// The `base_display_addr` field has a default value of `0x0000` if
    /// `None` is passed as an argument.
    pub fn draw_window(
        &mut self,
        _: &Ui,
        title: &ImStr,
        mem_data: &mut [u8],
        base_display_addr: Option<usize>,
    ) {
        let mem_edit = (&mut self.raw_editor) as *mut sys::MemoryEditor;

        let mem_size = mem_data.len();
        let mem_data = mem_data.as_mut_ptr() as *mut chlorine::c_void;

        unsafe {
            sys::DrawWindow(
                mem_edit,
                title.as_ptr(),
                mem_data,
                mem_size,
                base_display_addr.unwrap_or(0x0000),
            );
        }
    }
}