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
use crate::event::Event;
use crate::cx::Cx;
pub trait AppMain{
fn handle_event(&mut self, cx: &mut Cx, event: &Event);
}
#[macro_export]
macro_rules!app_main {
( $ app: ident) => {
#[cfg(not(any(target_arch = "wasm32", target_os="android")))]
pub fn app_main() {
if Cx::pre_start(){
return
}
let app = std::rc::Rc::new(std::cell::RefCell::new(None));
let mut cx = std::rc::Rc::new(std::cell::RefCell::new(Cx::new(Box::new(move | cx, event | {
if let Event::Construct = event {
*app.borrow_mut() = Some($app::new_main(cx));
}
if let Event::LiveEdit = event{
app.borrow_mut().update_main(cx);
}
<dyn AppMain>::handle_event(app.borrow_mut().as_mut().unwrap(), cx, event);
}))));
live_design(&mut *cx.borrow_mut());
cx.borrow_mut().init_cx_os();
Cx::event_loop(cx);
}
/*
#[cfg(target_os = "android")]
#[no_mangle]
pub unsafe extern "C" fn Java_dev_makepad_android_Makepad_onNewCx(_: *const std::ffi::c_void, _: *const std::ffi::c_void) -> i64 {
Cx::android_entry(||{
let app = std::rc::Rc::new(std::cell::RefCell::new(None));
let mut cx = Box::new(Cx::new(Box::new(move | cx, event | {
if let Event::Construct = event {
*app.borrow_mut() = Some($app::new_main(cx));
}
if let Event::LiveEdit = event{
app.borrow_mut().update_main(cx);
}
app.borrow_mut().as_mut().unwrap().handle_event(cx, event);
})));
live_design(&mut cx);
cx.init_cx_os();
cx
})
}*/
#[cfg(target_os = "android")]
#[no_mangle]
pub unsafe extern "C" fn Java_dev_makepad_android_MakepadNative_activityOnCreate(
_: *const std::ffi::c_void,
_: *const std::ffi::c_void,
activity: *const std::ffi::c_void,
) {
Cx::android_entry(activity, ||{
let app = std::rc::Rc::new(std::cell::RefCell::new(None));
let mut cx = Box::new(Cx::new(Box::new(move | cx, event | {
if let Event::Construct = event {
*app.borrow_mut() = Some($app::new_main(cx));
}
if let Event::LiveEdit = event{
app.borrow_mut().update_main(cx);
}
app.borrow_mut().as_mut().unwrap().handle_event(cx, event);
})));
live_design(&mut cx);
cx.init_cx_os();
cx
})
}
#[cfg(target_arch = "wasm32")]
pub fn app_main() {}
#[export_name = "wasm_create_app"]
#[cfg(target_arch = "wasm32")]
pub extern "C" fn create_wasm_app() -> u32 {
let app = std::rc::Rc::new(std::cell::RefCell::new(None));
let mut cx = Box::new(Cx::new(Box::new(move | cx, event | {
if let Event::Construct = event {
*app.borrow_mut() = Some($app::new_main(cx));
}
if let Event::LiveEdit = event{
app.borrow_mut().update_main(cx);
}
app.borrow_mut().as_mut().unwrap().handle_event(cx, event);
})));
live_design(&mut cx);
cx.init_cx_os();
Box::into_raw(cx) as u32
}
#[export_name = "wasm_process_msg"]
#[cfg(target_arch = "wasm32")]
pub unsafe extern "C" fn wasm_process_msg(msg_ptr: u32, cx_ptr: u32) -> u32 {
let cx = &mut *(cx_ptr as *mut Cx);
cx.process_to_wasm(msg_ptr)
}
}
}