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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
use std::ffi::{c_void, CString};
use std::os::raw::c_char;

fn create_c_str(s: &str) -> Result<CString, MlxError> {
    match CString::new(s) {
        Ok(s) => Ok(s),
        Err(_) => Err(MlxError::Any(format!("Error creating string {}", s))),
    }
}

/// Enum for detecting errors in the minilibx.
#[derive(Debug)]
pub enum MlxError {
    /// Error that could happen when mlx_init returns a null pointer
    Init,
    /// Error that could happen when mlx_new_window returns a null pointer
    Window,
    /// Error that might happen in all other places. It contains the information about the error.
    Any(String),
}

pub fn init() -> Result<*mut c_void, MlxError> {
    extern "C" {
        pub fn mlx_init() -> *mut c_void;
    }

    unsafe {
        let ptr = mlx_init();
        if ptr.is_null() {
            Err(MlxError::Init)
        } else {
            Ok(ptr)
        }
    }
}

pub fn new_window(
    mlx_ptr: *mut c_void,
    size_x: i32,
    size_y: i32,
    title: &str,
) -> Result<*mut c_void, MlxError> {
    extern "C" {
        fn mlx_new_window(
            mlx_ptr: *mut c_void,
            size_x: i32,
            size_y: i32,
            title: *const c_char,
        ) -> *mut c_void;
    }

    let title = create_c_str(title)?;

    unsafe {
        let ptr = mlx_new_window(mlx_ptr, size_x, size_y, title.as_ptr());
        if ptr.is_null() {
            Err(MlxError::Window)
        } else {
            Ok(ptr)
        }
    }
}

pub fn clear_window(mlx_ptr: *mut c_void, win_ptr: *mut c_void) {
    extern "C" {
        fn mlx_clear_window(mlx_ptr: *mut c_void, win_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_clear_window(mlx_ptr, win_ptr);
    }
}

pub fn destroy_window(mlx_ptr: *mut c_void, win_ptr: *mut c_void) {
    extern "C" {
        fn mlx_destroy_window(mlx_ptr: *mut c_void, win_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_destroy_window(mlx_ptr, win_ptr);
    }
}

pub fn get_screen_size(mlx_ptr: *mut c_void) -> (i32, i32) {
    extern "C" {
        fn mlx_get_screen_size(mlx_ptr: *mut c_void, sizex: &mut i32, sizey: &mut i32) -> i32;
    }

    let mut sizex = 0;
    let mut sizey = 0;
    unsafe {
        mlx_get_screen_size(mlx_ptr, &mut sizex, &mut sizey);
    }
    (sizex, sizey)
}

pub fn pixel_put(mlx_ptr: *mut c_void, win_ptr: *mut c_void, x: i32, y: i32, color: i32) {
    extern "C" {
        fn mlx_pixel_put(
            mlx_ptr: *mut c_void,
            win_ptr: *mut c_void,
            x: i32,
            y: i32,
            color: i32,
        ) -> i32;
    }

    unsafe {
        mlx_pixel_put(mlx_ptr, win_ptr, x, y, color);
    }
}

pub fn string_put(
    mlx_ptr: *mut c_void,
    win_ptr: *mut c_void,
    x: i32,
    y: i32,
    color: i32,
    s: &str,
) -> Result<(), MlxError> {
    extern "C" {
        fn mlx_string_put(
            mlx_ptr: *mut c_void,
            win_ptr: *mut c_void,
            x: i32,
            y: i32,
            color: i32,
            string: *const c_char,
        ) -> i32;
    }

    let s = create_c_str(s)?;
    unsafe {
        mlx_string_put(mlx_ptr, win_ptr, x, y, color, s.as_ptr());
    }

    Ok(())
}

pub fn new_image(mlx_ptr: *mut c_void, width: i32, height: i32) -> Result<*mut c_void, MlxError> {
    extern "C" {
        fn mlx_new_image(mlx_ptr: *mut c_void, width: i32, height: i32) -> *mut c_void;
    }

    unsafe {
        let ptr = mlx_new_image(mlx_ptr, width, height);
        if ptr.is_null() {
            Err(MlxError::Any(format!(
                "Error creating image with {} width, {} height.",
                width, height
            )))
        } else {
            Ok(ptr)
        }
    }
}

pub struct XpmImage {
    pub ptr: *mut c_void,
    pub width: i32,
    pub height: i32,
}

pub fn xpm_to_image(mlx_ptr: *mut c_void, xpm_data: Vec<String>) -> Result<XpmImage, MlxError> {
    extern "C" {
        fn mlx_xpm_to_image(
            mlx_ptr: *mut c_void,
            xpm_data: *const *const c_char,
            width: &mut i32,
            height: &mut i32,
        ) -> *mut c_void;
    }

    let mut width = 0;
    let mut height = 0;
    unsafe {
        let ptr = mlx_xpm_to_image(
            mlx_ptr,
            xpm_data.as_ptr() as *const *const c_char,
            &mut width,
            &mut height,
        );
        if ptr.is_null() {
            Err(MlxError::Any(format!("Error creating xpm image.",)))
        } else {
            Ok(XpmImage { ptr, width, height })
        }
    }
}

pub fn xpm_file_to_image(mlx_ptr: *mut c_void, filename: &str) -> Result<XpmImage, MlxError> {
    extern "C" {
        fn mlx_xpm_file_to_image(
            mlx_ptr: *mut c_void,
            filename: *const c_char,
            width: &mut i32,
            height: &mut i32,
        ) -> *mut c_void;
    }

    let mut width = 0;
    let mut height = 0;
    let filename = create_c_str(filename)?;
    unsafe {
        let ptr = mlx_xpm_file_to_image(mlx_ptr, filename.as_ptr(), &mut width, &mut height);
        if ptr.is_null() {
            Err(MlxError::Any(format!("Error creating xpm image.",)))
        } else {
            Ok(XpmImage { ptr, width, height })
        }
    }
}

pub fn destroy_image(mlx_ptr: *mut c_void, img_ptr: *mut c_void) {
    extern "C" {
        fn mlx_destroy_image(mlx_ptr: *mut c_void, img_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_destroy_image(mlx_ptr, img_ptr);
    }
}

pub struct AddrData {
    pub area: *mut c_char,
    pub bits_per_pixel: i32,
    pub size_line: i32,
    pub endian: i32,
}

pub fn get_data_addr(img_ptr: *mut c_void) -> Result<AddrData, MlxError> {
    extern "C" {
        fn mlx_get_data_addr(
            img_ptr: *mut c_void,
            bits_per_pixel: &mut i32,
            size_line: &mut i32,
            endian: &mut i32,
        ) -> *mut c_char;
    }

    let area;
    let mut bits_per_pixel = 0;
    let mut size_line = 0;
    let mut endian = 0;
    unsafe {
        area = mlx_get_data_addr(img_ptr, &mut bits_per_pixel, &mut size_line, &mut endian);
        if area.is_null() {
            Err(MlxError::Any(format!(
                "Error when trying to access image data"
            )))
        } else {
            Ok(AddrData {
                area,
                bits_per_pixel,
                size_line,
                endian,
            })
        }
    }
}

pub fn put_image_to_window(
    mlx_ptr: *mut c_void,
    win_ptr: *mut c_void,
    img_ptr: *mut c_void,
    x: i32,
    y: i32,
) {
    extern "C" {
        fn mlx_put_image_to_window(
            mlx_ptr: *mut c_void,
            win_ptr: *mut c_void,
            img_ptr: *mut c_void,
            x: i32,
            y: i32,
        ) -> i32;
    }

    unsafe {
        mlx_put_image_to_window(mlx_ptr, win_ptr, img_ptr, x, y);
    }
}

pub fn get_color_value(mlx_ptr: *mut c_void, color: i32) -> u32 {
    extern "C" {
        fn mlx_get_color_value(mlx_ptr: *mut c_void, color: i32) -> u32;
    }

    unsafe { mlx_get_color_value(mlx_ptr, color) }
}

pub fn do_key_autorepeatoff(mlx_ptr: *mut c_void) {
    extern "C" {
        fn mlx_do_key_autorepeatoff(mlx_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_do_key_autorepeatoff(mlx_ptr);
    }
}

pub fn do_key_autorepeaton(mlx_ptr: *mut c_void) {
    extern "C" {
        fn mlx_do_key_autorepeaton(mlx_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_do_key_autorepeaton(mlx_ptr);
    }
}

pub fn mouse_move(mlx_ptr: *mut c_void, win_ptr: *mut c_void, x: i32, y: i32) {
    extern "C" {
        fn mlx_mouse_move(mlx_ptr: *mut c_void, win_ptr: *mut c_void, x: i32, y: i32) -> i32;
    }

    unsafe {
        mlx_mouse_move(mlx_ptr, win_ptr, x, y);
    }
}

pub fn mouse_hide(mlx_ptr: *mut c_void, win_ptr: *mut c_void) {
    extern "C" {
        fn mlx_mouse_hide(mlx_ptr: *mut c_void, win_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_mouse_hide(mlx_ptr, win_ptr);
    }
}

pub fn mouse_show(mlx_ptr: *mut c_void, win_ptr: *mut c_void) {
    extern "C" {
        fn mlx_mouse_show(mlx_ptr: *mut c_void, win_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_mouse_show(mlx_ptr, win_ptr);
    }
}

pub fn event_loop(mlx_ptr: *mut c_void) {
    extern "C" {
        fn mlx_loop(mlx_ptr: *mut c_void) -> i32;
    }

    unsafe {
        mlx_loop(mlx_ptr);
    }
}

pub fn mouse_hook<T>(win_ptr: *mut c_void, cb: T)
where
    T: FnMut(i32, i32, i32) + 'static,
{
    extern "C" {
        fn mlx_mouse_hook(
            win_ptr: *mut c_void,
            func_ptr: unsafe extern "C" fn(i32, i32, i32, *mut c_void),
            param: *mut c_void,
        ) -> i32;
    }

    unsafe extern "C" fn call_closure<F>(buttons: i32, x: i32, y: i32, data: *mut c_void)
    where
        F: FnMut(i32, i32, i32),
    {
        let callback_ptr = data as *mut F;
        let callback = &mut *callback_ptr;
        callback(buttons, x, y);
    }

    let callback = Box::into_raw(Box::new(cb));
    unsafe {
        mlx_mouse_hook(win_ptr, call_closure::<T>, callback as *mut c_void);
    }
}

pub fn key_hook<F>(win_ptr: *mut c_void, cb: F)
where
    F: FnMut(i32) + 'static,
{
    extern "C" {
        fn mlx_key_hook(
            win_ptr: *mut c_void,
            func_ptr: unsafe extern "C" fn(i32, *mut c_void),
            param: *mut c_void,
        ) -> i32;
    }

    unsafe extern "C" fn call_closure<F>(keycode: i32, data: *mut c_void)
    where
        F: FnMut(i32),
    {
        let callback_ptr = data as *mut F;
        let callback = &mut *callback_ptr;
        callback(keycode);
    }

    let callback = Box::into_raw(Box::new(cb));
    unsafe {
        mlx_key_hook(win_ptr, call_closure::<F>, callback as *mut c_void);
    }
}

pub fn expose_hook<F>(win_ptr: *mut c_void, cb: F)
where
    F: FnMut() + 'static,
{
    extern "C" {
        fn mlx_expose_hook(
            win_ptr: *mut c_void,
            func_ptr: unsafe extern "C" fn(*mut c_void),
            param: *mut c_void,
        ) -> i32;
    }

    unsafe extern "C" fn call_closure<F>(data: *mut c_void)
    where
        F: FnMut(),
    {
        let callback_ptr = data as *mut F;
        let callback = &mut *callback_ptr;
        callback();
    }

    let callback = Box::into_raw(Box::new(cb));
    unsafe {
        mlx_expose_hook(win_ptr, call_closure::<F>, callback as *mut c_void);
    }
}

pub fn loop_hook<F>(win_ptr: *mut c_void, cb: F)
where
    F: FnMut() + 'static,
{
    extern "C" {
        fn mlx_loop_hook(
            win_ptr: *mut c_void,
            func_ptr: unsafe extern "C" fn(*mut c_void),
            param: *mut c_void,
        ) -> i32;
    }

    unsafe extern "C" fn call_closure<F>(data: *mut c_void)
    where
        F: FnMut(),
    {
        let callback_ptr = data as *mut F;
        let callback = &mut *callback_ptr;
        callback();
    }

    let callback = Box::into_raw(Box::new(cb));
    unsafe {
        mlx_loop_hook(win_ptr, call_closure::<F>, callback as *mut c_void);
    }
}

pub fn hook<F>(win_ptr: *mut c_void, x_event: i32, x_mask: i32, cb: F)
where
    F: FnMut(),
{
    extern "C" {
        fn mlx_hook(
            win_ptr: *mut c_void,
            x_event: i32,
            x_mask: i32,
            func_ptr: unsafe extern "C" fn(*mut c_void),
            param: *mut c_void,
        ) -> i32;
    }

    unsafe extern "C" fn call_closure<F>(data: *mut c_void)
    where
        F: FnMut(),
    {
        let callback_ptr = data as *mut F;
        let callback = &mut *callback_ptr;
        callback();
    }

    let callback = Box::into_raw(Box::new(cb));
    unsafe {
        mlx_hook(
            win_ptr,
            x_event,
            x_mask,
            call_closure::<F>,
            callback as *mut c_void,
        );
    }
}