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
pub mod ext;
#[macro_use]
extern crate cfg_if;
cfg_if! {
if #[cfg(windows)] {
extern crate winapi;
use winapi::shared::windef::HWND;
use winapi::um::winuser::*;
use winapi::um::libloaderapi::GetModuleHandleW;
use winapi::ctypes::c_int;
use std::os::windows::ffi::OsStrExt;
use std::os::raw::c_char;
use std::io::Error;
use std::ffi::{CStr, OsStr, CString};
use std::iter::once;
pub mod winback;
pub use self::winback as backend;
}
else if #[cfg(unix)] {
extern crate x11_dl;
use std::ffi::{CStr, CString};
use libc::c_char;
pub mod x11back;
pub use self::x11back as backend;
}
}
extern crate image;
use image::{ImageBuffer, Rgb, Pixel};
extern crate libc;
use std::mem;
use std::ptr::null_mut;
use std::ptr;
pub struct CWinRep {
pub title: String,
pub width: usize,
pub height: usize,
pub pixels: ImageBuffer<Rgb<u8>, Vec<u8>>,
init_flag: bool,
pub exit_flag: bool,
dirty_extents: [usize; 4],
#[cfg(unix)]
x11_disp_ptr: *mut x11_dl::xlib::Display,
#[cfg(unix)]
x11_window_ptr: std::os::raw::c_ulong,
#[cfg(unix)]
x11_gc_ptr: x11_dl::xlib::GC,
#[cfg(unix)]
xlib_dl_obj: x11_dl::xlib::Xlib,
#[cfg(windows)] win32_win_ptr: winback::Window,
}
pub struct CWin {
pub rep: CWinRep,
event_callbacks: Vec<Box<extern fn(*mut CWinRep, *const c_char )>>,
}
impl CWin {
pub fn new() -> CWin {
return CWin::new_detail("Untitled Window", 800, 600);
}
pub fn new_detail<S: Into<String>>(title: S, width: u32, height: u32) -> CWin {
let title = title.into();
return CWin {
rep: CWinRep {
title: title,
width: width as usize,
height: height as usize,
pixels: ImageBuffer::new(width, height),
init_flag: false,
exit_flag: false,
dirty_extents: [width as usize, height as usize, 0, 0],
#[cfg(unix)]
x11_window_ptr: unsafe { mem::uninitialized() },
#[cfg(unix)]
x11_gc_ptr: unsafe { mem::uninitialized() },
#[cfg(unix)]
x11_disp_ptr: unsafe { mem::uninitialized() },
#[cfg(unix)]
xlib_dl_obj: unsafe { mem::uninitialized() },
#[cfg(windows)]
win32_win_ptr: unsafe { mem::uninitialized() },
},
event_callbacks: vec![],
};
}
pub fn to_ffi_ptr(mut self) -> *mut CWin {
let boxed = Box::new(self);
return Box::into_raw(boxed);
}
pub fn add_callback(&mut self, function: extern fn(*mut CWinRep, *const c_char )) {
self.event_callbacks.push(Box::new(function));
}
pub fn call_callbacks(&mut self, event_string: *const c_char) {
let cwinrep : *mut CWinRep = &mut self.rep;
self.event_callbacks.iter_mut().for_each(|c| {
(c)(cwinrep, event_string.clone());
});
}
pub fn write_px(&mut self, x: u32, y: u32, rgb: [u8; 3]) {
self.rep.write_px(x, y, rgb);
}
}
impl CWinRep {
pub fn write_px(&mut self, x: u32, y: u32, rgb: [u8; 3]) {
let x = x as usize;
let y = y as usize;
if x < self.dirty_extents[0] {
self.dirty_extents[0] = x;
}
if x > self.dirty_extents[2] {
self.dirty_extents[2] = x+1;
}
if y < self.dirty_extents[1] {
self.dirty_extents[1] = y;
}
if y > self.dirty_extents[3] {
self.dirty_extents[3] = y+1;
}
self.pixels.get_pixel_mut(x as u32, y as u32).data = rgb;
}
}
pub trait RenderBack {
fn init(&mut self);
fn redraw_dirty(&mut self);
fn redraw_box(&mut self, x1: usize, y1: usize, x2: usize, y2: usize);
fn event_tick(&self) -> *const c_char;
fn event_loop(&mut self);
}