Compare commits

..

No commits in common. "d4ad9bc5ca5bd61240a730f8ab23f35d237cb560" and "5b240996ccfe3fe2eaf81b1d0d361e27c193a05e" have entirely different histories.

6 changed files with 2551 additions and 94 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
/target
.vscode
.cargo
Cargo.lock

2517
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,17 +1,16 @@
[package]
name = "bevy_rustysynth"
description = "A plugin which adds MIDI file and soundfont audio support to the bevy engine via rustysynth."
version = "0.5.0"
version = "0.4.0"
edition = "2021"
license = "0BSD OR MIT OR Apache-2.0"
repository = "https://git.soaos.dev/soaos/bevy_rustysynth"
repository = "https://git.soaos.dev/bevy_rustysynth"
[dependencies]
rustysynth = "1.3"
itertools = "0.14"
async-channel = "2.3"
rodio = "0.20"
lazy_static = "1.5"
[dependencies.bevy]
version = "0.15"

View File

@ -2,6 +2,8 @@
![Crates](https://img.shields.io/crates/v/bevy_rustysynth)
![License](https://img.shields.io/badge/license-0BSD%2FMIT%2FApache-blue.svg)
![Tag](https://img.shields.io/github/v/tag/exvacuum/bevy_rustysynth)
![Build](https://img.shields.io/github/actions/workflow/status/exvacuum/bevy_rustysynth/rust.yml)
A plugin which adds MIDI file and soundfont audio support to the bevy engine via rustysynth.
@ -10,22 +12,22 @@ From version 0.4, the crate has undergone significant rewrites, and now works wi
## Compatibility
| Crate Version | Bevy Version |
| ------------- | ------------ |
| 0.5 | 0.15 |
| 0.2 | 0.14 |
|--- |--- |
| 0.3-0.4 | 0.15 |
| 0.1-0.2 | 0.14 |
## Installation
### crates.io
```toml
[dependencies]
bevy_rustysynth = "0.5"
bevy_rustysynth = "0.4"
```
### Using git URL in Cargo.toml
```toml
[dependencies.bevy_rustysynth]
git = "https://git.soaos.dev/soaos/bevy_rustysynth.git"
git = "https://git.soaos.dev/bevy_rustysynth.git"
```
## Usage

View File

@ -1,15 +1,13 @@
use bevy::asset::{io::Reader, AssetLoader, LoadContext};
#[cfg(feature = "bevy_audio")]
use bevy::prelude::*;
use itertools::Itertools;
use rustysynth::{MidiFile, MidiFileSequencer, SoundFont, Synthesizer, SynthesizerSettings};
use std::{
io::{self, Cursor}, sync::Arc, time::Duration
};
#[cfg(feature = "kira")]
use std::future::Future;
use std::{
io::{self, Cursor},
sync::Arc,
time::Duration,
};
#[cfg(feature = "bevy_audio")]
use bevy::prelude::*;
use bevy::asset::{io::Reader, AssetLoader, LoadContext};
use itertools::Itertools;
use rustysynth::{MidiFile, MidiFileSequencer, SoundFont, Synthesizer, SynthesizerSettings};
use crate::SOUNDFONT;
@ -43,6 +41,7 @@ impl Default for MidiNote {
}
}
/// AssetLoader for MIDI files (.mid/.midi)
#[derive(Default, Debug)]
pub struct MidiAssetLoader;
@ -57,7 +56,7 @@ pub struct MidiFileDecoder {
impl MidiFileDecoder {
/// Construct and render a MIDI sequence with the given MIDI data and soundfont.
pub fn new(midi_data: Vec<u8>, soundfont: Arc<SoundFont>) -> Self {
pub async fn new(midi_data: Vec<u8>, soundfont: Arc<SoundFont>) -> Self {
let sample_rate = 44100_usize;
let settings = SynthesizerSettings::new(sample_rate as i32);
let synthesizer =
@ -162,10 +161,7 @@ mod bevy_audio {
type DecoderItem = <MidiFileDecoder as Iterator>::Item;
fn decoder(&self) -> Self::Decoder {
MidiFileDecoder::new(
self.0.clone(),
SOUNDFONT.lock().unwrap().as_ref().unwrap().clone(),
)
bevy::tasks::block_on(MidiFileDecoder::new(self.0.clone(), SOUNDFONT.get().unwrap().clone()))
}
}
@ -245,8 +241,7 @@ mod kira {
impl MidiAudioExtensions for AudioSource {
async fn from_midi_file(data: Vec<u8>) -> Self {
let decoder =
MidiFileDecoder::new(data, SOUNDFONT.lock().unwrap().as_ref().unwrap().clone());
let decoder = MidiFileDecoder::new(data, SOUNDFONT.get().unwrap().clone()).await;
let frames = decoder
.data
.chunks(2)
@ -267,10 +262,7 @@ mod kira {
}
async fn from_midi_sequence(sequence: Vec<MidiNote>) -> Self {
let decoder = MidiFileDecoder::new_sequence(
sequence,
SOUNDFONT.lock().unwrap().as_ref().unwrap().clone(),
);
let decoder = MidiFileDecoder::new_sequence(sequence, SOUNDFONT.get().unwrap().clone());
let frames = decoder
.data
.chunks(2)

View File

@ -4,19 +4,17 @@
#[cfg(all(feature = "bevy_audio", feature = "kira"))]
compile_error!("Cannot compile with both bevy_audio and kira features enabled simultaneously. Please disable one of these features");
#[cfg(feature = "bevy_audio")]
use bevy::audio::AddAudioSource;
use bevy::prelude::*;
use lazy_static::lazy_static;
use rustysynth::SoundFont;
use std::{
io::Read,
sync::{Arc, OnceLock},
};
#[cfg(feature = "hl4mgm")]
use std::io::Cursor;
use std::{
fs::{self, File},
io::Read,
path::PathBuf,
sync::{Arc, Mutex},
};
#[cfg(feature = "bevy_audio")]
use bevy::audio::AddAudioSource;
mod assets;
pub use assets::*;
@ -24,22 +22,11 @@ pub use assets::*;
#[cfg(feature = "hl4mgm")]
pub(crate) static HL4MGM: &[u8] = include_bytes!("./embedded_assets/hl4mgm.sf2");
lazy_static! {
pub(crate) static ref DEFAULT_SOUNDFONT: Arc<Mutex<Option<Arc<SoundFont>>>> =
Arc::new(Mutex::new(None));
pub(crate) static ref SOUNDFONT: Arc<Mutex<Option<Arc<SoundFont>>>> =
Arc::new(Mutex::new(None));
}
#[derive(SystemSet, Hash, Clone, PartialEq, Eq, Debug)]
pub enum RustySynthSet {
Setup,
Update,
}
pub(crate) static SOUNDFONT: OnceLock<Arc<SoundFont>> = OnceLock::new();
/// This plugin configures the soundfont used for playback and registers MIDI assets.
#[derive(Debug)]
pub struct RustySynthPlugin<R: Read + Clone + 'static> {
pub struct RustySynthPlugin<R: Read + Send + Sync + Clone + 'static> {
/// Reader for soundfont data.
pub soundfont: R,
}
@ -55,50 +42,11 @@ impl Default for RustySynthPlugin<Cursor<&[u8]>> {
impl<R: Read + Send + Sync + Clone + 'static> Plugin for RustySynthPlugin<R> {
fn build(&self, app: &mut App) {
*DEFAULT_SOUNDFONT.lock().unwrap() = Some(Arc::new(
let _ = SOUNDFONT.set(Arc::new(
SoundFont::new(&mut self.soundfont.clone()).unwrap(),
));
info!("Setting Soundfont Initially");
*SOUNDFONT.lock().unwrap() = DEFAULT_SOUNDFONT.lock().unwrap().clone();
app.init_asset_loader::<MidiAssetLoader>()
.add_event::<SetSoundfontEvent>()
.add_systems(Startup, handle_set_soundfont.in_set(RustySynthSet::Setup))
.add_systems(Update, handle_set_soundfont.in_set(RustySynthSet::Update));
app.init_asset_loader::<MidiAssetLoader>();
#[cfg(feature = "bevy_audio")]
app.init_asset::<MidiAudio>()
.add_audio_source::<MidiAudio>();
}
}
pub(crate) fn set_soundfont<R: Read + 'static>(mut reader: R) {
info!("Setting Soundfont");
*SOUNDFONT.lock().unwrap() = Some(Arc::new(SoundFont::new(&mut reader).unwrap()));
}
/// Event for setting the soundfont after initialization
/// This will not affect sounds which have already been rendered
#[derive(Event)]
pub enum SetSoundfontEvent {
/// Load soundfont from bytes
Bytes(Vec<u8>),
/// Load soundfont at path
Path(PathBuf),
/// Load default soundfont
Default,
}
fn handle_set_soundfont(mut event_reader: EventReader<SetSoundfontEvent>) {
for event in event_reader.read() {
match event {
SetSoundfontEvent::Bytes(items) => {
set_soundfont(Cursor::new(items.clone()));
}
SetSoundfontEvent::Path(path_buf) => {
set_soundfont(File::open(path_buf).unwrap());
}
SetSoundfontEvent::Default => {
*SOUNDFONT.lock().unwrap() = DEFAULT_SOUNDFONT.lock().unwrap().clone();
}
}
app.init_asset::<MidiAudio>().add_audio_source::<MidiAudio>();
}
}