|
|
|
@ -1,52 +1,70 @@
@@ -1,52 +1,70 @@
|
|
|
|
|
//! Texture environment support. See `<c3d/texenv.h>` for more information.
|
|
|
|
|
//! Texture combiner support. See <https://www.khronos.org/opengl/wiki/Texture_Combiners>
|
|
|
|
|
//! for more details.
|
|
|
|
|
|
|
|
|
|
use bitflags::bitflags; |
|
|
|
|
|
|
|
|
|
use crate::Instance; |
|
|
|
|
|
|
|
|
|
/// A texture combiner, also called a "texture environment" (hence the struct name).
|
|
|
|
|
/// See also [`texenv.h` documentation](https://oreo639.github.io/citro3d/texenv_8h.html).
|
|
|
|
|
#[doc(alias = "C3D_TexEnv")] |
|
|
|
|
pub struct TexEnv<'a> { |
|
|
|
|
pub struct TexEnv { |
|
|
|
|
raw: *mut citro3d_sys::C3D_TexEnv, |
|
|
|
|
_instance: &'a mut Instance, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
impl<'a> TexEnv<'a> { |
|
|
|
|
#[doc(alias = "C3D_TexEnvInit")] |
|
|
|
|
pub fn set(&self, _instance: &mut Instance, id: Id) { |
|
|
|
|
unsafe { |
|
|
|
|
// SAFETY: pointee is only copied from, not modified
|
|
|
|
|
citro3d_sys::C3D_SetTexEnv(id.0, self.raw); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// https://oreo639.github.io/citro3d/texenv_8h.html#a9eda91f8e7252c91f873b1d43e3728b6
|
|
|
|
|
pub(crate) const TEXENV_COUNT: usize = 6; |
|
|
|
|
|
|
|
|
|
pub fn get(instance: &'a mut Instance, id: Id) -> Self { |
|
|
|
|
unsafe { |
|
|
|
|
impl TexEnv { |
|
|
|
|
pub(crate) fn new(stage: Stage) -> Self { |
|
|
|
|
let mut result = unsafe { |
|
|
|
|
Self { |
|
|
|
|
raw: citro3d_sys::C3D_GetTexEnv(id.0), |
|
|
|
|
_instance: instance, |
|
|
|
|
raw: citro3d_sys::C3D_GetTexEnv(stage.0 as _), |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
result.reset(); |
|
|
|
|
result |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Re-initialize the texture combiner to its default state.
|
|
|
|
|
pub fn reset(&mut self) { |
|
|
|
|
unsafe { |
|
|
|
|
citro3d_sys::C3D_TexEnvInit(self.raw); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Configure the source values of the texture combiner.
|
|
|
|
|
///
|
|
|
|
|
/// # Parameters
|
|
|
|
|
///
|
|
|
|
|
/// - `mode`: which [`Mode`]\(s) to set the sourc operand(s) for.
|
|
|
|
|
/// - `source0`: the first [`Source`] operand to the texture combiner
|
|
|
|
|
/// - `source1` and `source2`: optional additional [`Source`] operands to use
|
|
|
|
|
#[doc(alias = "C3D_TexEnvSrc")] |
|
|
|
|
pub fn src( |
|
|
|
|
&mut self, |
|
|
|
|
mode: Mode, |
|
|
|
|
s1: Source, |
|
|
|
|
s2: Option<Source>, |
|
|
|
|
s3: Option<Source>, |
|
|
|
|
source0: Source, |
|
|
|
|
source1: Option<Source>, |
|
|
|
|
source2: Option<Source>, |
|
|
|
|
) -> &mut Self { |
|
|
|
|
unsafe { |
|
|
|
|
citro3d_sys::C3D_TexEnvSrc( |
|
|
|
|
self.raw, |
|
|
|
|
mode.bits(), |
|
|
|
|
s1 as _, |
|
|
|
|
s2.unwrap_or(Source::PrimaryColor) as _, |
|
|
|
|
s3.unwrap_or(Source::PrimaryColor) as _, |
|
|
|
|
) |
|
|
|
|
source0 as _, |
|
|
|
|
source1.unwrap_or(Source::PrimaryColor) as _, |
|
|
|
|
source2.unwrap_or(Source::PrimaryColor) as _, |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
self |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// Configure the texture combination function.
|
|
|
|
|
///
|
|
|
|
|
/// # Parameters
|
|
|
|
|
///
|
|
|
|
|
/// - `mode`: the [`Mode`]\(s) the combination function will apply to.
|
|
|
|
|
/// - `func`: the [`CombineFunc`] used to combine textures.
|
|
|
|
|
#[doc(alias = "C3D_TexEnvFunc")] |
|
|
|
|
pub fn func(&mut self, mode: Mode, func: CombineFunc) -> &mut Self { |
|
|
|
|
unsafe { |
|
|
|
|
citro3d_sys::C3D_TexEnvFunc(self.raw, mode.bits(), func as _); |
|
|
|
@ -57,17 +75,23 @@ impl<'a> TexEnv<'a> {
@@ -57,17 +75,23 @@ impl<'a> TexEnv<'a> {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bitflags! { |
|
|
|
|
/// Whether to operate on colors, alpha values, or both.
|
|
|
|
|
#[doc(alias = "C3D_TexEnvMode")] |
|
|
|
|
pub struct Mode: citro3d_sys::C3D_TexEnvMode { |
|
|
|
|
#[allow(missing_docs)] |
|
|
|
|
const RGB = citro3d_sys::C3D_RGB; |
|
|
|
|
#[allow(missing_docs)] |
|
|
|
|
const ALPHA = citro3d_sys::C3D_Alpha; |
|
|
|
|
#[allow(missing_docs)] |
|
|
|
|
const BOTH = citro3d_sys::C3D_Both; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// A source operand of a [`TexEnv`]'s texture combination.
|
|
|
|
|
#[derive(Debug, Clone, Copy)] |
|
|
|
|
#[repr(u32)] |
|
|
|
|
#[doc(alias = "GPU_TEVSRC")] |
|
|
|
|
#[allow(missing_docs)] |
|
|
|
|
pub enum Source { |
|
|
|
|
PrimaryColor = ctru_sys::GPU_PRIMARY_COLOR, |
|
|
|
|
FragmentPrimaryColor = ctru_sys::GPU_FRAGMENT_PRIMARY_COLOR, |
|
|
|
@ -81,9 +105,11 @@ pub enum Source {
@@ -81,9 +105,11 @@ pub enum Source {
|
|
|
|
|
Previous = ctru_sys::GPU_PREVIOUS, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// The combination function to apply to the [`TexEnv`] operands.
|
|
|
|
|
#[derive(Debug, Clone, Copy)] |
|
|
|
|
#[repr(u32)] |
|
|
|
|
#[doc(alias = "GPU_COMBINEFUNC")] |
|
|
|
|
#[allow(missing_docs)] |
|
|
|
|
pub enum CombineFunc { |
|
|
|
|
Replace = ctru_sys::GPU_REPLACE, |
|
|
|
|
Modulate = ctru_sys::GPU_MODULATE, |
|
|
|
@ -95,5 +121,15 @@ pub enum CombineFunc {
@@ -95,5 +121,15 @@ pub enum CombineFunc {
|
|
|
|
|
Dot3Rgba = ctru_sys::GPU_DOT3_RGBA, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// A texture combination stage identifier. This index doubles as the order
|
|
|
|
|
/// in which texture combinations will be applied.
|
|
|
|
|
// (I think?)
|
|
|
|
|
#[derive(Copy, Clone, Debug)] |
|
|
|
|
pub struct Id(/* TODO maybe non pub? idk */ pub libc::c_int); |
|
|
|
|
pub struct Stage(pub(crate) usize); |
|
|
|
|
|
|
|
|
|
impl Stage { |
|
|
|
|
/// Get a stage index. Valid indices range from 0 to 5.
|
|
|
|
|
pub fn new(index: usize) -> Option<Self> { |
|
|
|
|
(index < 6).then_some(Self(index)) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|