This repository has been archived on 2024-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
rustboyadvance-ng/rustboyadvance-core/src/gpu/render.rs
Michel Heily ef3f39defc Refactor rustboyadvance-core crate directory structure
Former-commit-id: 1aad71d283f7ec5a0f0328f9b683f51e459ae56f
Former-commit-id: 42bb30d300c17bace976d106f6da1aca8c0d7643
2020-05-01 18:13:11 +03:00

48 lines
1 KiB
Rust

pub(super) mod bitmap;
pub(super) mod obj;
pub(super) mod text;
pub(super) type Point = (i32, i32);
#[derive(Debug)]
pub(super) struct ViewPort {
pub origin: Point,
pub w: i32,
pub h: i32,
}
impl ViewPort {
pub fn new(w: i32, h: i32) -> ViewPort {
ViewPort {
origin: (0, 0),
w: w,
h: h,
}
}
pub fn contains_point(&self, p: Point) -> bool {
let (mut x, mut y) = p;
x -= self.origin.0;
y -= self.origin.1;
x >= 0 && x < self.w && y >= 0 && y < self.h
}
}
use super::consts::{DISPLAY_HEIGHT, DISPLAY_WIDTH};
pub(super) static SCREEN_VIEWPORT: ViewPort = ViewPort {
origin: (0, 0),
w: DISPLAY_WIDTH as i32,
h: DISPLAY_HEIGHT as i32,
};
pub(super) mod utils {
use super::Point;
#[inline]
pub fn transform_bg_point(ref_point: Point, screen_x: i32, pa: i32, pc: i32) -> Point {
let (ref_x, ref_y) = ref_point;
((ref_x + screen_x * pa) >> 8, (ref_y + screen_x * pc) >> 8)
}
}