Add a little documentation
This commit is contained in:
parent
ed61f4a72b
commit
78f292f23f
@ -1,8 +1,21 @@
|
|||||||
fn main() {
|
fn main() {
|
||||||
|
|
||||||
// Compile the LeapMotion wrapper (and Leap itself)
|
// Compile the LeapMotion wrapper (and Leap itself)
|
||||||
cc::Build::new().file("cpp/wrapper.cc").flag("-Wno-deprecated").flag("-Wno-deprecated-copy").flag("-L dist").flag("-lLeap").flag("-lstdc++").compile("foo");
|
cc::Build::new()
|
||||||
// pkg_config::Config::new().probe("Leap").unwrap();
|
.file("cpp/wrapper.cc")
|
||||||
|
|
||||||
|
// Handle LeapMotion errors
|
||||||
|
.flag("-Wno-deprecated")
|
||||||
|
.flag("-Wno-deprecated-copy")
|
||||||
|
|
||||||
|
// Tell the compiler where leap is
|
||||||
|
.flag("-L dist")
|
||||||
|
.flag("-lLeap")
|
||||||
|
|
||||||
|
// Link with stdc++
|
||||||
|
.flag("-lstdc++")
|
||||||
|
|
||||||
|
// Compile into a proper library
|
||||||
|
.compile("leapwrapper");
|
||||||
|
|
||||||
// Set up the linker to include Leap
|
// Set up the linker to include Leap
|
||||||
println!("cargo:rustc-link-search=native=libodm/dist");
|
println!("cargo:rustc-link-search=native=libodm/dist");
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "../dist/Leap.h"
|
#include "../dist/Leap.h"
|
||||||
|
|
||||||
using namespace Leap;
|
|
||||||
|
|
||||||
//---- Start Public Functions ----//
|
//---- Start Public Functions ----//
|
||||||
extern "C" void beginEventLoop();
|
extern "C" void beginEventLoop();
|
||||||
extern "C" bool isControllerCreated();
|
extern "C" bool isControllerCreated();
|
||||||
@ -17,8 +15,8 @@ extern "C" const unsigned char *getImageRight();
|
|||||||
//---- End Public Functions ----//
|
//---- End Public Functions ----//
|
||||||
|
|
||||||
//---- Start Globals ----//
|
//---- Start Globals ----//
|
||||||
Controller *controller = nullptr;
|
Leap::Controller *controller = nullptr;
|
||||||
Frame *frame = nullptr;
|
Leap::Frame *frame = nullptr;
|
||||||
//---- End Globals ----//
|
//---- End Globals ----//
|
||||||
|
|
||||||
//---- Start Public Function Impls ----//
|
//---- Start Public Function Impls ----//
|
||||||
@ -28,11 +26,11 @@ void beginEventLoop()
|
|||||||
if (controller == nullptr)
|
if (controller == nullptr)
|
||||||
{
|
{
|
||||||
// Create a controller
|
// Create a controller
|
||||||
controller = new Controller();
|
controller = new Leap::Controller();
|
||||||
|
|
||||||
// Set device policy
|
// Set device policy
|
||||||
controller->setPolicy(Controller::POLICY_IMAGES);
|
controller->setPolicy(Leap::Controller::POLICY_IMAGES);
|
||||||
controller->setPolicy(Controller::POLICY_OPTIMIZE_HMD);
|
controller->setPolicy(Leap::Controller::POLICY_OPTIMIZE_HMD);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -47,10 +45,7 @@ void endEventLoop()
|
|||||||
|
|
||||||
void updateFrame()
|
void updateFrame()
|
||||||
{
|
{
|
||||||
// free(frame);
|
// This is currently unused, but may be needed for data caching in the future
|
||||||
// Frame f = controller->frame();
|
|
||||||
// frame = (Frame*) malloc(sizeof(f));
|
|
||||||
// memccpy(frame, f);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isControllerCreated() { return controller != nullptr; }
|
bool isControllerCreated() { return controller != nullptr; }
|
||||||
|
@ -1,7 +1,15 @@
|
|||||||
|
//! A simple image representation system using raw data from C code
|
||||||
|
|
||||||
|
/// A raw image representation
|
||||||
pub struct Image<'a> {
|
pub struct Image<'a> {
|
||||||
|
|
||||||
|
/// Image width
|
||||||
width: u32,
|
width: u32,
|
||||||
|
|
||||||
|
/// Image height
|
||||||
height: u32,
|
height: u32,
|
||||||
|
|
||||||
|
/// Raw image data
|
||||||
buffer: &'a [u8],
|
buffer: &'a [u8],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,13 +1,34 @@
|
|||||||
|
//! FFI definitions for LeapMotion wrapper code
|
||||||
|
|
||||||
extern {
|
extern {
|
||||||
|
|
||||||
|
/// Begin the device event loops, init the device, and push policy changes
|
||||||
pub fn beginEventLoop();
|
pub fn beginEventLoop();
|
||||||
|
|
||||||
|
/// Check if the controller object has been created
|
||||||
pub fn isControllerCreated() -> bool;
|
pub fn isControllerCreated() -> bool;
|
||||||
|
|
||||||
|
/// End everything and clean up
|
||||||
pub fn endEventLoop();
|
pub fn endEventLoop();
|
||||||
|
|
||||||
|
/// Poll for new data
|
||||||
pub fn updateFrame();
|
pub fn updateFrame();
|
||||||
|
|
||||||
|
/// Check if the device has a pair of camera images to work with
|
||||||
pub fn imageExists() -> bool;
|
pub fn imageExists() -> bool;
|
||||||
|
|
||||||
|
/// Get the camera image height
|
||||||
pub fn getImageHeight() -> libc::c_int;
|
pub fn getImageHeight() -> libc::c_int;
|
||||||
|
|
||||||
|
/// Get the camera image width
|
||||||
pub fn getImageWidth()-> libc::c_int;
|
pub fn getImageWidth()-> libc::c_int;
|
||||||
|
|
||||||
|
/// Get the number of bytes used to represent a single pixel (should always be 1)
|
||||||
pub fn getImageBPP() -> libc::c_int;
|
pub fn getImageBPP() -> libc::c_int;
|
||||||
|
|
||||||
|
/// Get a pointer to the left image pixel data
|
||||||
pub fn getImageLeft() -> *const u8;
|
pub fn getImageLeft() -> *const u8;
|
||||||
|
|
||||||
|
/// Get a pointer to the right image pixel data
|
||||||
pub fn getImageRight() -> *const u8;
|
pub fn getImageRight() -> *const u8;
|
||||||
}
|
}
|
@ -1,2 +1,4 @@
|
|||||||
|
//! LeapMotion-specific interface code
|
||||||
|
|
||||||
pub(self) mod ffi;
|
pub(self) mod ffi;
|
||||||
pub mod device;
|
pub mod device;
|
@ -1,3 +1,5 @@
|
|||||||
|
//! This crate contains the driver code for OpenDepthMap
|
||||||
|
|
||||||
#![feature(static_nobundle)]
|
#![feature(static_nobundle)]
|
||||||
|
|
||||||
pub mod leapmotion;
|
pub mod leapmotion;
|
||||||
|
Reference in New Issue
Block a user