Struct ittech::ModuleFlags[][src]

pub struct ModuleFlags { /* fields omitted */ }

Implementations

impl ModuleFlags[src]

pub const STEREO: ModuleFlags[src]

On = Stereo, Off = Mono

pub const VOL_0_MIX_OPTIMIZATIONS: ModuleFlags[src]

If on, no mixing occurs if the volume at mixing time is 0 (redundant v1.04+)

pub const USE_INSTRUMENTS: ModuleFlags[src]

On = Use instruments, Off = Use samples

pub const LINEAR_SLIDES: ModuleFlags[src]

On = Linear slides, Off = Amiga slides

pub const OLD_EFFECTS: ModuleFlags[src]

On = Old Effects, Off = IT Effects Differences:

  • Vibrato is updated EVERY frame in IT mode, whereas it is updated every non-row frame in other formats. Also, it is two times deeper with Old Effects ON.
  • Command Oxx will set the sample offset to the END of a sample instead of ignoring the command under old effects mode.
  • (More to come, probably)

On = Link Effect G's memory with Effect E/F. Also Gxx with an instrument present will cause the envelopes to be retriggered. If you change a sample on a row with Gxx, it'll adjust the frequency of the current note according to:

NewFrequency = OldFrequency * NewC5 / OldC5;

pub const USE_MIDI_PITCH: ModuleFlags[src]

Use MIDI pitch controller, Pitch depth given by PWD

pub const REQUEST_MIDI_CONFIG_EMBEDDED: ModuleFlags[src]

Request embedded MIDI configuration (Coded this way to permit cross-version saving)

pub const MESSAGE_ATTACHED: ModuleFlags[src]

On = song message attached. Song message: Stored at offset given by "Message Offset" field. Length = MsgLgth. NewLine = 0Dh (13 dec) EndOfMsg = 0

Note: v1.04+ of IT may have song messages of up to 8000 bytes included.

pub const MIDI_CONIFG_EMBEDDED: ModuleFlags[src]

MIDI configuration embedded

pub const fn empty() -> ModuleFlags[src]

Returns an empty set of flags

pub const fn all() -> ModuleFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<ModuleFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> ModuleFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> ModuleFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: ModuleFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: ModuleFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: ModuleFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: ModuleFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: ModuleFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: ModuleFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for ModuleFlags[src]

impl BitAnd<ModuleFlags> for ModuleFlags[src]

type Output = ModuleFlags

The resulting type after applying the & operator.

fn bitand(self, other: ModuleFlags) -> ModuleFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<ModuleFlags> for ModuleFlags[src]

fn bitand_assign(&mut self, other: ModuleFlags)[src]

Disables all flags disabled in the set.

impl BitOr<ModuleFlags> for ModuleFlags[src]

type Output = ModuleFlags

The resulting type after applying the | operator.

fn bitor(self, other: ModuleFlags) -> ModuleFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<ModuleFlags> for ModuleFlags[src]

fn bitor_assign(&mut self, other: ModuleFlags)[src]

Adds the set of flags.

impl BitXor<ModuleFlags> for ModuleFlags[src]

type Output = ModuleFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: ModuleFlags) -> ModuleFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<ModuleFlags> for ModuleFlags[src]

fn bitxor_assign(&mut self, other: ModuleFlags)[src]

Toggles the set of flags.

impl Clone for ModuleFlags[src]

impl Copy for ModuleFlags[src]

impl Debug for ModuleFlags[src]

impl Eq for ModuleFlags[src]

impl Extend<ModuleFlags> for ModuleFlags[src]

impl FromIterator<ModuleFlags> for ModuleFlags[src]

impl Hash for ModuleFlags[src]

impl LowerHex for ModuleFlags[src]

impl Not for ModuleFlags[src]

type Output = ModuleFlags

The resulting type after applying the ! operator.

fn not(self) -> ModuleFlags[src]

Returns the complement of this set of flags.

impl Octal for ModuleFlags[src]

impl Ord for ModuleFlags[src]

impl PartialEq<ModuleFlags> for ModuleFlags[src]

impl PartialOrd<ModuleFlags> for ModuleFlags[src]

impl StructuralEq for ModuleFlags[src]

impl StructuralPartialEq for ModuleFlags[src]

impl Sub<ModuleFlags> for ModuleFlags[src]

type Output = ModuleFlags

The resulting type after applying the - operator.

fn sub(self, other: ModuleFlags) -> ModuleFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<ModuleFlags> for ModuleFlags[src]

fn sub_assign(&mut self, other: ModuleFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for ModuleFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.