1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//!
//! XMrs is a Safe SoundTracker Library
//!
//! ```
//! Module+--->Instrument+--->InstrDefault+--->Sample (Loop, Sustain Loop)
//! | | +--->Envelope (Pitch, Volume, Panning)
//! | | +--->Vibrato
//! | | +--->InstrMidi
//! | +--->InstrEkn (Euclidian Rythm Instrument)
//! | +--->InstrMidi
//! | +--->InstrOpl (Yamaha OPL)
//! | +--->InstrSid (MOS6581 SID Voices)
//! | +-+->InstrRobSid+--->InstrSid
//! +--->Pattern--->Row--->TrackUnit+--->TrackEffect
//! +--->GlobalEffect
//! ```
//!
//! You can load historical IT, S3M, SID, MOD, XM files using `import` (see `README.md`)
//!
//! You can serialize your work using serde
//!
extern crate alloc;
/// All effects
/// Envelope with Steroid
/// Instrument handling samples
/// Euclidian Rythm Instrument
/// Midi Instrument
/// Yamaha OPL Instrument
/// Rob Hubbard Instrument
/// MOS6581 SID Instrument
/// Instrument with Steroid
/// SoundTracker Module with Steroid
/// Period Helper
pub
/// A typical Note
/// Sample with Steroid
/// A slot
/// Vibrato with Steroid
/// All Waveform type
/// A simple way for random values
/// The Xmrs Prelude
/// Import historical files.
/// Do not use it directly: see Module load* fn impl