98 lines
2.5 KiB
Rust
98 lines
2.5 KiB
Rust
use crate::mem::{
|
|
heap_clone, heap_drop, heap_move_nonnull, heap_move_ok, heap_remove,
|
|
};
|
|
use servicepoint::{
|
|
BitmapCommand, Cp437Grid, Cp437GridCommand, Origin, Packet,
|
|
};
|
|
use std::ptr::NonNull;
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_new(
|
|
grid: NonNull<Cp437Grid>,
|
|
origin_x: usize,
|
|
origin_y: usize,
|
|
) -> NonNull<Cp437GridCommand> {
|
|
heap_move_nonnull(Cp437GridCommand {
|
|
grid: unsafe { heap_remove(grid) },
|
|
origin: Origin::new(origin_x, origin_y),
|
|
})
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_from_grid(
|
|
grid: NonNull<Cp437Grid>,
|
|
) -> NonNull<Cp437GridCommand> {
|
|
heap_move_nonnull(unsafe { heap_remove(grid) }.into())
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_into_packet(
|
|
command: NonNull<Cp437GridCommand>,
|
|
) -> *mut Packet {
|
|
heap_move_ok(unsafe { heap_remove(command) }.try_into())
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_clone(
|
|
command: NonNull<Cp437GridCommand>,
|
|
) -> NonNull<Cp437GridCommand> {
|
|
unsafe { heap_clone(command) }
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_free(
|
|
command: NonNull<BitmapCommand>,
|
|
) {
|
|
unsafe { heap_drop(command) }
|
|
}
|
|
|
|
/// Moves the provided bitmap into the provided command.
|
|
///
|
|
/// This drops the previously contained [Cp437Grid].
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_set(
|
|
mut command: NonNull<Cp437GridCommand>,
|
|
grid: NonNull<Cp437Grid>,
|
|
) {
|
|
unsafe {
|
|
command.as_mut().grid = heap_remove(grid);
|
|
}
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_get(
|
|
mut command: NonNull<Cp437GridCommand>,
|
|
) -> *mut Cp437Grid {
|
|
&mut unsafe { command.as_mut() }.grid
|
|
}
|
|
|
|
/// Gets the origin field of the [Cp437GridCommand].
|
|
///
|
|
/// Rust equivalent: `cp437_command.origin`
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_get_origin(
|
|
command: NonNull<Cp437GridCommand>,
|
|
origin_x: NonNull<usize>,
|
|
origin_y: NonNull<usize>,
|
|
) {
|
|
unsafe {
|
|
let origin = &command.as_ref().origin;
|
|
*origin_x.as_ptr() = origin.x;
|
|
*origin_y.as_ptr() = origin.y;
|
|
}
|
|
}
|
|
|
|
/// Sets the origin field of the [Cp437GridCommand].
|
|
///
|
|
/// Rust equivalent: `cp437_command.origin = Origin::new(origin_x, origin_y)`
|
|
#[no_mangle]
|
|
pub unsafe extern "C" fn sp_cmd_cp437_grid_set_origin(
|
|
mut command: NonNull<Cp437GridCommand>,
|
|
origin_x: usize,
|
|
origin_y: usize,
|
|
) {
|
|
unsafe {
|
|
command.as_mut().origin = Origin::new(origin_x, origin_y);
|
|
}
|
|
}
|