mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 19:26:43 +01:00
Compare commits
11 Commits
v0.3.0
...
f4fa9e9c62
| Author | SHA1 | Date | |
|---|---|---|---|
| f4fa9e9c62 | |||
| 4c1ce8075e | |||
| 94764d631e | |||
| 8913fdaf6b | |||
| 195376cd28 | |||
| bf14d4bd3f | |||
| 0c68328700 | |||
| fb3fd5e8bb | |||
| b85f96b0bb | |||
| b69055b58d | |||
| 0878aa3f02 |
1815
Cargo.lock
generated
1815
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "uw8"
|
name = "uw8"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
@@ -11,7 +11,7 @@ native = ["wasmtime", "uw8-window", "cpal", "rubato" ]
|
|||||||
browser = ["warp", "tokio", "tokio-stream", "webbrowser"]
|
browser = ["warp", "tokio", "tokio-stream", "webbrowser"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmtime = { version = "19.0.1", optional = true }
|
wasmtime = { git = "https://github.com/bytecodealliance/wasmtime.git", rev = "0f48f939b9870036562ca02ff21253547a9f1a5c", optional = true }
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
env_logger = "0.11.3"
|
env_logger = "0.11.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
@@ -28,4 +28,4 @@ tokio-stream = { version = "0.1.15", features = ["sync"], optional = true }
|
|||||||
webbrowser = { version = "0.8.13", optional = true }
|
webbrowser = { version = "0.8.13", optional = true }
|
||||||
ansi_term = "0.12.1"
|
ansi_term = "0.12.1"
|
||||||
cpal = { version = "0.15.3", optional = true }
|
cpal = { version = "0.15.3", optional = true }
|
||||||
rubato = { version = "0.15.0", optional = true }
|
rubato = { version = "0.12.0", optional = true }
|
||||||
|
|||||||
@@ -15,9 +15,9 @@ See [here](https://exoticorn.github.io/microw8/) for more information and docs.
|
|||||||
|
|
||||||
## Downloads
|
## Downloads
|
||||||
|
|
||||||
* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.3.0/microw8-0.3.0-linux.tgz)
|
* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-linux.tgz)
|
||||||
* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.3.0/microw8-0.3.0-macos.tgz)
|
* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-macos.tgz)
|
||||||
* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.3.0/microw8-0.3.0-windows.zip)
|
* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-windows.zip)
|
||||||
|
|
||||||
The download includes
|
The download includes
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,14 @@ include "../include/microw8-api.cwa"
|
|||||||
export fn upd() {
|
export fn upd() {
|
||||||
let i: i32;
|
let i: i32;
|
||||||
loop pixels {
|
loop pixels {
|
||||||
let inline t = time() * 63 as f32;
|
let inline t = 16!56;
|
||||||
let lazy x = (i % 320 - 160) as f32;
|
let inline x = (i % 320 - 160) as f32;
|
||||||
let lazy y = (i / 320 - 120) as f32;
|
let inline y = (i #/ 320 - 120) as f32;
|
||||||
let inline d = 40000 as f32 / sqrt(x * x + y * y);
|
let inline d = 0xa000 as f32 / sqrt(x * x + y * y);
|
||||||
let inline u = atan2(x, y) * (512.0 / 3.141);
|
let inline a = atan2(x, y) * 163_f; // (512 / pi)
|
||||||
let inline c = ((i32.trunc_sat_f32_s(d + t * 2 as f32) ^ i32.trunc_sat_f32_s(u + t)) & 255) >> 4;
|
let inline u = i32.trunc_sat_f32_s(a) + t;
|
||||||
|
let inline v = i32.trunc_sat_f32_s(d) + t * 2;
|
||||||
|
let inline c = ((v ^ u) #/ 16) % 16;
|
||||||
i?FRAMEBUFFER = c;
|
i?FRAMEBUFFER = c;
|
||||||
|
|
||||||
branch_if (i := i + 1) < 320*240: pixels;
|
branch_if (i := i + 1) < 320*240: pixels;
|
||||||
|
|||||||
Binary file not shown.
@@ -31,19 +31,19 @@ Examplers for older versions:
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
### v0.3.0
|
### v0.4.0
|
||||||
|
|
||||||
* [Web runtime](v0.3.0)
|
* [Web runtime](../v0.4.0)
|
||||||
* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.3.0/microw8-0.3.0-linux.tgz)
|
* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-linux.tgz)
|
||||||
* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.3.0/microw8-0.3.0-macos.tgz)
|
* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-macos.tgz)
|
||||||
* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.3.0/microw8-0.3.0-windows.zip)
|
* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-windows.zip)
|
||||||
|
|
||||||
Changes:
|
Changes:
|
||||||
|
|
||||||
* add blitSprite and grabSprite API calls
|
* add support for sound on mono- and surround-only devices
|
||||||
* add support for integer scaling up to 16x for printing text
|
* update wasmtime dependency to fix performance regression in 0.3.0
|
||||||
* fix incompatibility with sound devices only offering 16bit audio formats
|
* add frame counter since module start at location 72
|
||||||
* add support for br_table instruction in packed carts
|
* add 6 and 7 parameter function types to base module
|
||||||
|
|
||||||
### Older versions
|
### Older versions
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ loaded.
|
|||||||
00000-00040: user memory
|
00000-00040: user memory
|
||||||
00040-00044: time since module start in ms
|
00040-00044: time since module start in ms
|
||||||
00044-0004c: gamepad state
|
00044-0004c: gamepad state
|
||||||
0004c-00050: reserved
|
0004c-00050: number of frames since module start
|
||||||
00050-00070: sound data (synced to sound thread)
|
00050-00070: sound data (synced to sound thread)
|
||||||
00070-00078: reserved
|
00070-00078: reserved
|
||||||
00078-12c78: frame buffer
|
00078-12c78: frame buffer
|
||||||
@@ -594,7 +594,7 @@ a base module provided by MicroW8.
|
|||||||
|
|
||||||
You can generate this base module yourself using
|
You can generate this base module yourself using
|
||||||
`uw8-tool`. As a quick summary, it provides all function
|
`uw8-tool`. As a quick summary, it provides all function
|
||||||
types with up to 5 parameters (i32 or f32) where the
|
types with up to 7 parameters (i32 or f32) where the
|
||||||
`f32` parameters always preceed the `i32` parameters.
|
`f32` parameters always preceed the `i32` parameters.
|
||||||
Then it includes all imports that MicroW8 provides,
|
Then it includes all imports that MicroW8 provides,
|
||||||
a function section with a single function of type
|
a function section with a single function of type
|
||||||
|
|||||||
@@ -2,6 +2,20 @@
|
|||||||
description = "Versions"
|
description = "Versions"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
|
### v0.4.0
|
||||||
|
|
||||||
|
* [Web runtime](../v0.4.0)
|
||||||
|
* [Linux](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-linux.tgz)
|
||||||
|
* [MacOS](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-macos.tgz)
|
||||||
|
* [Windows](https://github.com/exoticorn/microw8/releases/download/v0.4.0/microw8-0.4.0-windows.zip)
|
||||||
|
|
||||||
|
Changes:
|
||||||
|
|
||||||
|
* add support for sound on mono- and surround-only devices
|
||||||
|
* update wasmtime dependency to fix performance regression in 0.3.0
|
||||||
|
* add frame counter since module start at location 72
|
||||||
|
* add 6 and 7 parameter function types to base module
|
||||||
|
|
||||||
### v0.3.0
|
### v0.3.0
|
||||||
|
|
||||||
* [Web runtime](../v0.3.0)
|
* [Web runtime](../v0.3.0)
|
||||||
|
|||||||
1
site/static/v0.4.0/index.html
Normal file
1
site/static/v0.4.0/index.html
Normal file
File diff suppressed because one or more lines are too long
@@ -4,7 +4,7 @@
|
|||||||
<section>
|
<section>
|
||||||
<h1 class="text-center heading-text">A WebAssembly based fantasy console</h1>
|
<h1 class="text-center heading-text">A WebAssembly based fantasy console</h1>
|
||||||
</section>
|
</section>
|
||||||
<a href="v0.3.0">
|
<a href="v0.4.0">
|
||||||
<img class="demonstration-gif" style="width:640px;height:480px;image-rendering:pixelated" src="img/technotunnel.png"></img>
|
<img class="demonstration-gif" style="width:640px;height:480px;image-rendering:pixelated" src="img/technotunnel.png"></img>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@ use std::sync::{mpsc, Arc, Mutex};
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use std::{thread, time::Instant};
|
use std::{thread, time::Instant};
|
||||||
|
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, bail, Result};
|
||||||
use cpal::traits::*;
|
use cpal::traits::*;
|
||||||
use rubato::Resampler;
|
use rubato::Resampler;
|
||||||
use uw8_window::{Window, WindowConfig};
|
use uw8_window::{Window, WindowConfig};
|
||||||
@@ -27,6 +27,7 @@ struct UW8Instance {
|
|||||||
end_frame: TypedFunc<(), ()>,
|
end_frame: TypedFunc<(), ()>,
|
||||||
update: Option<TypedFunc<(), ()>>,
|
update: Option<TypedFunc<(), ()>>,
|
||||||
start_time: Instant,
|
start_time: Instant,
|
||||||
|
frame_counter: u32,
|
||||||
watchdog: Arc<Mutex<UW8WatchDog>>,
|
watchdog: Arc<Mutex<UW8WatchDog>>,
|
||||||
sound_tx: Option<mpsc::SyncSender<RegisterUpdate>>,
|
sound_tx: Option<mpsc::SyncSender<RegisterUpdate>>,
|
||||||
}
|
}
|
||||||
@@ -159,6 +160,7 @@ impl super::Runtime for MicroW8 {
|
|||||||
end_frame,
|
end_frame,
|
||||||
update,
|
update,
|
||||||
start_time: Instant::now(),
|
start_time: Instant::now(),
|
||||||
|
frame_counter: 0,
|
||||||
watchdog,
|
watchdog,
|
||||||
sound_tx,
|
sound_tx,
|
||||||
});
|
});
|
||||||
@@ -191,8 +193,11 @@ impl super::Runtime for MicroW8 {
|
|||||||
let mem = instance.memory.data_mut(&mut instance.store);
|
let mem = instance.memory.data_mut(&mut instance.store);
|
||||||
mem[64..68].copy_from_slice(&time.to_le_bytes());
|
mem[64..68].copy_from_slice(&time.to_le_bytes());
|
||||||
mem[68..72].copy_from_slice(&input.gamepads);
|
mem[68..72].copy_from_slice(&input.gamepads);
|
||||||
|
mem[72..76].copy_from_slice(&instance.frame_counter.to_le_bytes());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
instance.frame_counter = instance.frame_counter.wrapping_add(1);
|
||||||
|
|
||||||
instance.store.set_epoch_deadline(self.timeout as u64);
|
instance.store.set_epoch_deadline(self.timeout as u64);
|
||||||
if let Some(ref update) = instance.update {
|
if let Some(ref update) = instance.update {
|
||||||
if let Err(err) = update.call(&mut instance.store, ()) {
|
if let Err(err) = update.call(&mut instance.store, ()) {
|
||||||
@@ -328,26 +333,37 @@ fn init_sound(
|
|||||||
let mut configs: Vec<_> = device
|
let mut configs: Vec<_> = device
|
||||||
.supported_output_configs()?
|
.supported_output_configs()?
|
||||||
.filter(|config| {
|
.filter(|config| {
|
||||||
config.channels() == 2
|
config.sample_format() == cpal::SampleFormat::F32
|
||||||
&& (config.sample_format() == cpal::SampleFormat::F32
|
|| config.sample_format() == cpal::SampleFormat::I16
|
||||||
|| config.sample_format() == cpal::SampleFormat::I16)
|
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
|
if configs.is_empty() {
|
||||||
|
eprintln!(
|
||||||
|
"No suitable audio output config found on device \"{}\", available configs:",
|
||||||
|
device.name()?
|
||||||
|
);
|
||||||
|
for config in device.supported_output_configs()? {
|
||||||
|
eprintln!(" {}ch {}", config.channels(), config.sample_format());
|
||||||
|
}
|
||||||
|
bail!("Failed to configure audio out");
|
||||||
|
}
|
||||||
|
|
||||||
configs.sort_by_key(|config| {
|
configs.sort_by_key(|config| {
|
||||||
let rate = 44100
|
let rate = 44100
|
||||||
.max(config.min_sample_rate().0)
|
.max(config.min_sample_rate().0)
|
||||||
.min(config.max_sample_rate().0);
|
.min(config.max_sample_rate().0);
|
||||||
let prio = if rate >= 44100 {
|
let rate_prio = if rate >= 44100 {
|
||||||
rate - 44100
|
rate - 44100
|
||||||
} else {
|
} else {
|
||||||
(44100 - rate) * 1000
|
(44100 - rate) * 1000
|
||||||
};
|
};
|
||||||
prio + (config.sample_format() == cpal::SampleFormat::I16) as u32
|
let format_prio = (config.sample_format() == cpal::SampleFormat::I16) as u32;
|
||||||
|
let channels_prio = (config.channels() != 2) as u32 * 16777216;
|
||||||
|
rate_prio + format_prio + channels_prio
|
||||||
});
|
});
|
||||||
let config = configs
|
let config = configs.into_iter().next().unwrap();
|
||||||
.into_iter()
|
|
||||||
.next()
|
|
||||||
.ok_or_else(|| anyhow!("Could not find float or 16bit signed output config"))?;
|
|
||||||
let sample_rate = cpal::SampleRate(44100)
|
let sample_rate = cpal::SampleRate(44100)
|
||||||
.max(config.min_sample_rate())
|
.max(config.min_sample_rate())
|
||||||
.min(config.max_sample_rate());
|
.min(config.max_sample_rate());
|
||||||
@@ -359,6 +375,7 @@ fn init_sound(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
let sample_format = config.sample_format();
|
let sample_format = config.sample_format();
|
||||||
|
let num_channels = config.channels();
|
||||||
let config = cpal::StreamConfig {
|
let config = cpal::StreamConfig {
|
||||||
buffer_size,
|
buffer_size,
|
||||||
..config.config()
|
..config.config()
|
||||||
@@ -378,8 +395,8 @@ fn init_sound(
|
|||||||
None
|
None
|
||||||
} else {
|
} else {
|
||||||
let rs = rubato::FftFixedIn::new(44100, sample_rate, 128, 1, 2)?;
|
let rs = rubato::FftFixedIn::new(44100, sample_rate, 128, 1, 2)?;
|
||||||
let input_buffers = rs.input_buffer_allocate(true);
|
let input_buffers = rs.input_buffer_allocate();
|
||||||
let output_buffers = rs.output_buffer_allocate(true);
|
let output_buffers = rs.output_buffer_allocate();
|
||||||
Some(Resampler {
|
Some(Resampler {
|
||||||
resampler: rs,
|
resampler: rs,
|
||||||
input_buffers,
|
input_buffers,
|
||||||
@@ -392,7 +409,7 @@ fn init_sound(
|
|||||||
let mut pending_updates: Vec<RegisterUpdate> = Vec::with_capacity(30);
|
let mut pending_updates: Vec<RegisterUpdate> = Vec::with_capacity(30);
|
||||||
let mut current_time = 0;
|
let mut current_time = 0;
|
||||||
|
|
||||||
let mut callback = move |mut outer_buffer: &mut [f32], _: &_| {
|
let mut callback = move |mut outer_buffer: &mut [f32]| {
|
||||||
let mut first_update = true;
|
let mut first_update = true;
|
||||||
while let Ok(update) = rx.try_recv() {
|
while let Ok(update) = rx.try_recv() {
|
||||||
if first_update {
|
if first_update {
|
||||||
@@ -484,36 +501,126 @@ fn init_sound(
|
|||||||
current_time = current_time.wrapping_add((step_size * 500 / sample_rate).max(1) as i32);
|
current_time = current_time.wrapping_add((step_size * 500 / sample_rate).max(1) as i32);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let stream = if sample_format == cpal::SampleFormat::F32 {
|
|
||||||
device.build_output_stream(
|
|
||||||
&config,
|
|
||||||
callback,
|
|
||||||
move |err| {
|
|
||||||
dbg!(err);
|
|
||||||
},
|
|
||||||
None,
|
|
||||||
)?
|
|
||||||
} else {
|
|
||||||
device.build_output_stream(
|
|
||||||
&config,
|
|
||||||
move |mut buffer: &mut [i16], info| {
|
|
||||||
let mut float_buffer = [0f32; 256];
|
|
||||||
|
|
||||||
while !buffer.is_empty() {
|
fn f32_to_i16<F>(mut buffer: &mut [i16], callback: &mut F)
|
||||||
let step_size = buffer.len().min(float_buffer.len());
|
where
|
||||||
let step_buffer = &mut float_buffer[..step_size];
|
F: FnMut(&mut [f32]),
|
||||||
callback(step_buffer, info);
|
{
|
||||||
for (dest, src) in buffer.iter_mut().take(step_size).zip(step_buffer.iter()) {
|
let mut float_buffer = [0f32; 256];
|
||||||
*dest = (src.max(-1.0).min(1.0) * 32767.0) as i16;
|
|
||||||
}
|
while !buffer.is_empty() {
|
||||||
buffer = &mut buffer[step_size..];
|
let step_size = buffer.len().min(float_buffer.len());
|
||||||
}
|
let step_buffer = &mut float_buffer[..step_size];
|
||||||
},
|
callback(step_buffer);
|
||||||
move |err| {
|
for (dest, src) in buffer.iter_mut().take(step_size).zip(step_buffer.iter()) {
|
||||||
dbg!(err);
|
*dest = (src.max(-1.0).min(1.0) * 32767.0) as i16;
|
||||||
},
|
}
|
||||||
None,
|
buffer = &mut buffer[step_size..];
|
||||||
)?
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stereo_to_mono<F>(mut buffer: &mut [f32], callback: &mut F)
|
||||||
|
where
|
||||||
|
F: FnMut(&mut [f32]),
|
||||||
|
{
|
||||||
|
let mut in_buffer = [0f32; 256];
|
||||||
|
|
||||||
|
while !buffer.is_empty() {
|
||||||
|
let step_size = buffer.len().min(in_buffer.len() / 2);
|
||||||
|
let step_buffer = &mut in_buffer[..step_size * 2];
|
||||||
|
callback(step_buffer);
|
||||||
|
for (index, dest) in buffer.iter_mut().take(step_size).enumerate() {
|
||||||
|
*dest = (step_buffer[index * 2] + step_buffer[index * 2 + 1]) * 0.5;
|
||||||
|
}
|
||||||
|
buffer = &mut buffer[step_size..];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn stereo_to_surround<F>(mut buffer: &mut [f32], num_channels: usize, callback: &mut F)
|
||||||
|
where
|
||||||
|
F: FnMut(&mut [f32]),
|
||||||
|
{
|
||||||
|
let mut in_buffer = [0f32; 256];
|
||||||
|
buffer.fill(0.);
|
||||||
|
|
||||||
|
while !buffer.is_empty() {
|
||||||
|
let step_size = (buffer.len() / num_channels).min(in_buffer.len() / 2);
|
||||||
|
let step_buffer = &mut in_buffer[..step_size * 2];
|
||||||
|
callback(step_buffer);
|
||||||
|
for index in 0..step_size {
|
||||||
|
buffer[index * num_channels + 0] = step_buffer[index * 2 + 0];
|
||||||
|
buffer[index * num_channels + 1] = step_buffer[index * 2 + 1];
|
||||||
|
}
|
||||||
|
buffer = &mut buffer[step_size * num_channels..];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let stream = if sample_format == cpal::SampleFormat::F32 {
|
||||||
|
if num_channels == 2 {
|
||||||
|
device.build_output_stream(
|
||||||
|
&config,
|
||||||
|
move |buffer: &mut [f32], _| callback(buffer),
|
||||||
|
move |err| {
|
||||||
|
dbg!(err);
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)?
|
||||||
|
} else if num_channels == 1 {
|
||||||
|
device.build_output_stream(
|
||||||
|
&config,
|
||||||
|
move |buffer: &mut [f32], _| stereo_to_mono(buffer, &mut callback),
|
||||||
|
move |err| {
|
||||||
|
dbg!(err);
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)?
|
||||||
|
} else {
|
||||||
|
device.build_output_stream(
|
||||||
|
&config,
|
||||||
|
move |buffer: &mut [f32], _| {
|
||||||
|
stereo_to_surround(buffer, num_channels as usize, &mut callback)
|
||||||
|
},
|
||||||
|
move |err| {
|
||||||
|
dbg!(err);
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)?
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if num_channels == 2 {
|
||||||
|
device.build_output_stream(
|
||||||
|
&config,
|
||||||
|
move |buffer: &mut [i16], _| f32_to_i16(buffer, &mut callback),
|
||||||
|
move |err| {
|
||||||
|
dbg!(err);
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)?
|
||||||
|
} else if num_channels == 1 {
|
||||||
|
device.build_output_stream(
|
||||||
|
&config,
|
||||||
|
move |buffer: &mut [i16], _| {
|
||||||
|
f32_to_i16(buffer, &mut |b| stereo_to_mono(b, &mut callback))
|
||||||
|
},
|
||||||
|
move |err| {
|
||||||
|
dbg!(err);
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)?
|
||||||
|
} else {
|
||||||
|
device.build_output_stream(
|
||||||
|
&config,
|
||||||
|
move |buffer: &mut [i16], _| {
|
||||||
|
f32_to_i16(buffer, &mut |b| {
|
||||||
|
stereo_to_surround(b, num_channels as usize, &mut callback)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
move |err| {
|
||||||
|
dbg!(err);
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)?
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(Uw8Sound { stream, tx })
|
Ok(Uw8Sound { stream, tx })
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ impl BaseModule {
|
|||||||
|
|
||||||
let mut types = vec![];
|
let mut types = vec![];
|
||||||
let mut type_map = HashMap::new();
|
let mut type_map = HashMap::new();
|
||||||
for num_params in 0..6 {
|
for num_params in 0..8 {
|
||||||
for num_f32 in 0..=num_params {
|
for num_f32 in 0..=num_params {
|
||||||
for &result in &[None, Some(ValType::I32), Some(ValType::F32)] {
|
for &result in &[None, Some(ValType::I32), Some(ValType::F32)] {
|
||||||
let mut params = vec![];
|
let mut params = vec![];
|
||||||
|
|||||||
911
uw8-window/Cargo.lock
generated
911
uw8-window/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -6,11 +6,11 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
winit = "0.29.15"
|
|
||||||
env_logger = "0.11.3"
|
env_logger = "0.11.3"
|
||||||
|
winit = "0.28.6"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
pico-args = "0.5"
|
pico-args = "0.5"
|
||||||
wgpu = "0.19.3"
|
wgpu = "0.17"
|
||||||
pollster = "0.3.0"
|
pollster = "0.3.0"
|
||||||
bytemuck = { version = "1.15", features = [ "derive" ] }
|
bytemuck = { version = "1.15", features = [ "derive" ] }
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
use crate::{Input, WindowConfig, WindowImpl};
|
use crate::{Input, WindowConfig, WindowImpl};
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, Result};
|
||||||
use std::{sync::Arc, time::Instant};
|
use std::time::Instant;
|
||||||
|
|
||||||
use winit::{
|
use winit::{
|
||||||
dpi::PhysicalSize,
|
dpi::PhysicalSize,
|
||||||
event::{Event, WindowEvent},
|
event::{Event, VirtualKeyCode, WindowEvent},
|
||||||
event_loop::{ControlFlow, EventLoop},
|
event_loop::{ControlFlow, EventLoop},
|
||||||
keyboard::{Key, KeyCode, NamedKey, PhysicalKey},
|
|
||||||
platform::pump_events::{EventLoopExtPumpEvents, PumpStatus},
|
|
||||||
window::{Fullscreen, WindowBuilder},
|
window::{Fullscreen, WindowBuilder},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use winit::platform::run_return::EventLoopExtRunReturn;
|
||||||
|
|
||||||
mod crt;
|
mod crt;
|
||||||
mod fast_crt;
|
mod fast_crt;
|
||||||
mod square;
|
mod square;
|
||||||
@@ -21,7 +21,7 @@ use square::SquareFilter;
|
|||||||
|
|
||||||
pub struct Window {
|
pub struct Window {
|
||||||
_instance: wgpu::Instance,
|
_instance: wgpu::Instance,
|
||||||
surface: wgpu::Surface<'static>,
|
surface: wgpu::Surface,
|
||||||
_adapter: wgpu::Adapter,
|
_adapter: wgpu::Adapter,
|
||||||
device: wgpu::Device,
|
device: wgpu::Device,
|
||||||
queue: wgpu::Queue,
|
queue: wgpu::Queue,
|
||||||
@@ -29,7 +29,7 @@ pub struct Window {
|
|||||||
surface_config: wgpu::SurfaceConfiguration,
|
surface_config: wgpu::SurfaceConfiguration,
|
||||||
filter: Box<dyn Filter>,
|
filter: Box<dyn Filter>,
|
||||||
event_loop: EventLoop<()>,
|
event_loop: EventLoop<()>,
|
||||||
window: Arc<winit::window::Window>,
|
window: winit::window::Window,
|
||||||
gamepads: [u8; 4],
|
gamepads: [u8; 4],
|
||||||
next_frame: Instant,
|
next_frame: Instant,
|
||||||
is_fullscreen: bool,
|
is_fullscreen: bool,
|
||||||
@@ -39,7 +39,7 @@ pub struct Window {
|
|||||||
impl Window {
|
impl Window {
|
||||||
pub fn new(window_config: WindowConfig) -> Result<Window> {
|
pub fn new(window_config: WindowConfig) -> Result<Window> {
|
||||||
async fn create(window_config: WindowConfig) -> Result<Window> {
|
async fn create(window_config: WindowConfig) -> Result<Window> {
|
||||||
let event_loop = EventLoop::new()?;
|
let event_loop = EventLoop::new();
|
||||||
let window = WindowBuilder::new()
|
let window = WindowBuilder::new()
|
||||||
.with_inner_size(PhysicalSize::new(
|
.with_inner_size(PhysicalSize::new(
|
||||||
(320. * window_config.scale).round() as u32,
|
(320. * window_config.scale).round() as u32,
|
||||||
@@ -56,10 +56,8 @@ impl Window {
|
|||||||
|
|
||||||
window.set_cursor_visible(false);
|
window.set_cursor_visible(false);
|
||||||
|
|
||||||
let window = Arc::new(window);
|
|
||||||
|
|
||||||
let instance = wgpu::Instance::new(Default::default());
|
let instance = wgpu::Instance::new(Default::default());
|
||||||
let surface = instance.create_surface(window.clone())?;
|
let surface = unsafe { instance.create_surface(&window) }?;
|
||||||
let adapter = instance
|
let adapter = instance
|
||||||
.request_adapter(&wgpu::RequestAdapterOptions {
|
.request_adapter(&wgpu::RequestAdapterOptions {
|
||||||
power_preference: wgpu::PowerPreference::LowPower,
|
power_preference: wgpu::PowerPreference::LowPower,
|
||||||
@@ -121,93 +119,88 @@ impl Window {
|
|||||||
impl WindowImpl for Window {
|
impl WindowImpl for Window {
|
||||||
fn begin_frame(&mut self) -> Input {
|
fn begin_frame(&mut self) -> Input {
|
||||||
let mut reset = false;
|
let mut reset = false;
|
||||||
self.event_loop
|
self.event_loop.run_return(|event, _, control_flow| {
|
||||||
.set_control_flow(ControlFlow::WaitUntil(self.next_frame));
|
*control_flow = ControlFlow::WaitUntil(self.next_frame);
|
||||||
while self.is_open {
|
let mut new_filter = None;
|
||||||
let timeout = self.next_frame.saturating_duration_since(Instant::now());
|
match event {
|
||||||
let status = self.event_loop.pump_events(Some(timeout), |event, elwt| {
|
Event::WindowEvent { event, .. } => match event {
|
||||||
let mut new_filter = None;
|
WindowEvent::Resized(new_size) => {
|
||||||
match event {
|
self.surface_config.width = new_size.width;
|
||||||
Event::WindowEvent { event, .. } => match event {
|
self.surface_config.height = new_size.height;
|
||||||
WindowEvent::Resized(new_size) => {
|
self.surface.configure(&self.device, &self.surface_config);
|
||||||
self.surface_config.width = new_size.width;
|
self.filter.resize(&self.queue, new_size);
|
||||||
self.surface_config.height = new_size.height;
|
}
|
||||||
self.surface.configure(&self.device, &self.surface_config);
|
WindowEvent::CloseRequested => {
|
||||||
self.filter.resize(&self.queue, new_size);
|
self.is_open = false;
|
||||||
}
|
*control_flow = ControlFlow::Exit;
|
||||||
WindowEvent::CloseRequested => {
|
}
|
||||||
elwt.exit();
|
WindowEvent::KeyboardInput { input, .. } => {
|
||||||
}
|
fn gamepad_button(input: &winit::event::KeyboardInput) -> u8 {
|
||||||
WindowEvent::KeyboardInput { event, .. } => {
|
match input.scancode {
|
||||||
fn gamepad_button(input: &winit::event::KeyEvent) -> u8 {
|
44 => 16,
|
||||||
match input.physical_key {
|
45 => 32,
|
||||||
PhysicalKey::Code(KeyCode::KeyZ) => 16,
|
30 => 64,
|
||||||
PhysicalKey::Code(KeyCode::KeyX) => 32,
|
31 => 128,
|
||||||
PhysicalKey::Code(KeyCode::KeyA) => 64,
|
_ => match input.virtual_keycode {
|
||||||
PhysicalKey::Code(KeyCode::KeyS) => 128,
|
Some(VirtualKeyCode::Up) => 1,
|
||||||
_ => match input.logical_key {
|
Some(VirtualKeyCode::Down) => 2,
|
||||||
Key::Named(NamedKey::ArrowUp) => 1,
|
Some(VirtualKeyCode::Left) => 4,
|
||||||
Key::Named(NamedKey::ArrowDown) => 2,
|
Some(VirtualKeyCode::Right) => 8,
|
||||||
Key::Named(NamedKey::ArrowLeft) => 4,
|
_ => 0,
|
||||||
Key::Named(NamedKey::ArrowRight) => 8,
|
},
|
||||||
_ => 0,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if event.state == winit::event::ElementState::Pressed {
|
}
|
||||||
match event.logical_key {
|
if input.state == winit::event::ElementState::Pressed {
|
||||||
Key::Named(NamedKey::Escape) => {
|
match input.virtual_keycode {
|
||||||
elwt.exit();
|
Some(VirtualKeyCode::Escape) => {
|
||||||
}
|
self.is_open = false;
|
||||||
Key::Character(ref c) => match c.as_str() {
|
*control_flow = ControlFlow::Exit;
|
||||||
"f" => {
|
|
||||||
let fullscreen = if self.window.fullscreen().is_some() {
|
|
||||||
None
|
|
||||||
} else {
|
|
||||||
Some(Fullscreen::Borderless(None))
|
|
||||||
};
|
|
||||||
self.is_fullscreen = fullscreen.is_some();
|
|
||||||
self.window.set_fullscreen(fullscreen);
|
|
||||||
}
|
|
||||||
"r" => reset = true,
|
|
||||||
"1" => new_filter = Some(1),
|
|
||||||
"2" => new_filter = Some(2),
|
|
||||||
"3" => new_filter = Some(3),
|
|
||||||
"4" => new_filter = Some(4),
|
|
||||||
"5" => new_filter = Some(5),
|
|
||||||
_ => (),
|
|
||||||
},
|
|
||||||
_ => (),
|
|
||||||
}
|
}
|
||||||
|
Some(VirtualKeyCode::F) => {
|
||||||
|
let fullscreen = if self.window.fullscreen().is_some() {
|
||||||
|
None
|
||||||
|
} else {
|
||||||
|
Some(Fullscreen::Borderless(None))
|
||||||
|
};
|
||||||
|
self.is_fullscreen = fullscreen.is_some();
|
||||||
|
self.window.set_fullscreen(fullscreen);
|
||||||
|
}
|
||||||
|
Some(VirtualKeyCode::R) => reset = true,
|
||||||
|
Some(VirtualKeyCode::Key1) => new_filter = Some(1),
|
||||||
|
Some(VirtualKeyCode::Key2) => new_filter = Some(2),
|
||||||
|
Some(VirtualKeyCode::Key3) => new_filter = Some(3),
|
||||||
|
Some(VirtualKeyCode::Key4) => new_filter = Some(4),
|
||||||
|
Some(VirtualKeyCode::Key5) => new_filter = Some(5),
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
|
||||||
self.gamepads[0] |= gamepad_button(&event);
|
self.gamepads[0] |= gamepad_button(&input);
|
||||||
} else {
|
} else {
|
||||||
self.gamepads[0] &= !gamepad_button(&event);
|
self.gamepads[0] &= !gamepad_button(&input);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_ => (),
|
}
|
||||||
},
|
|
||||||
_ => (),
|
_ => (),
|
||||||
|
},
|
||||||
|
Event::RedrawEventsCleared => {
|
||||||
|
if Instant::now() >= self.next_frame
|
||||||
|
// workaround needed on Wayland until the next winit release
|
||||||
|
&& self.window.fullscreen().is_some() == self.is_fullscreen
|
||||||
|
{
|
||||||
|
*control_flow = ControlFlow::Exit
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if let Some(new_filter) = new_filter {
|
|
||||||
self.filter = create_filter(
|
|
||||||
&self.device,
|
|
||||||
&self.palette_screen_mode.screen_view,
|
|
||||||
self.window.inner_size(),
|
|
||||||
self.surface_config.format,
|
|
||||||
new_filter,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
match status {
|
|
||||||
PumpStatus::Exit(_) => self.is_open = false,
|
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
|
if let Some(new_filter) = new_filter {
|
||||||
if Instant::now() >= self.next_frame {
|
self.filter = create_filter(
|
||||||
break;
|
&self.device,
|
||||||
|
&self.palette_screen_mode.screen_view,
|
||||||
|
self.window.inner_size(),
|
||||||
|
self.surface_config.format,
|
||||||
|
new_filter,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
Input {
|
Input {
|
||||||
gamepads: self.gamepads,
|
gamepads: self.gamepads,
|
||||||
reset,
|
reset,
|
||||||
@@ -243,12 +236,10 @@ impl WindowImpl for Window {
|
|||||||
b: 0.0,
|
b: 0.0,
|
||||||
a: 1.0,
|
a: 1.0,
|
||||||
}),
|
}),
|
||||||
store: wgpu::StoreOp::Store,
|
store: true,
|
||||||
},
|
},
|
||||||
})],
|
})],
|
||||||
depth_stencil_attachment: None,
|
depth_stencil_attachment: None,
|
||||||
timestamp_writes: None,
|
|
||||||
occlusion_query_set: None,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
self.filter.render(&mut render_pass);
|
self.filter.render(&mut render_pass);
|
||||||
@@ -550,12 +541,10 @@ impl PaletteScreenMode {
|
|||||||
resolve_target: None,
|
resolve_target: None,
|
||||||
ops: wgpu::Operations {
|
ops: wgpu::Operations {
|
||||||
load: wgpu::LoadOp::Load,
|
load: wgpu::LoadOp::Load,
|
||||||
store: wgpu::StoreOp::Store,
|
store: true,
|
||||||
},
|
},
|
||||||
})],
|
})],
|
||||||
depth_stencil_attachment: None,
|
depth_stencil_attachment: None,
|
||||||
timestamp_writes: None,
|
|
||||||
occlusion_query_set: None,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
render_pass.set_pipeline(&self.pipeline);
|
render_pass.set_pipeline(&self.pipeline);
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="uw8">
|
<div id="uw8">
|
||||||
<a href="https://exoticorn.github.io/microw8">MicroW8</a> 0.3.0
|
<a href="https://exoticorn.github.io/microw8">MicroW8</a> 0.4.0
|
||||||
</div>
|
</div>
|
||||||
<div id="centered">
|
<div id="centered">
|
||||||
<canvas class="screen" id="screen" width="320" height="240">
|
<canvas class="screen" id="screen" width="320" height="240">
|
||||||
|
|||||||
@@ -240,6 +240,7 @@ export default function MicroW8(screen, config = {}) {
|
|||||||
await audioReadyPromise;
|
await audioReadyPromise;
|
||||||
|
|
||||||
let startTime = Date.now();
|
let startTime = Date.now();
|
||||||
|
let frameCounter = 0;
|
||||||
|
|
||||||
const timePerFrame = 1000 / 60;
|
const timePerFrame = 1000 / 60;
|
||||||
|
|
||||||
@@ -306,6 +307,7 @@ export default function MicroW8(screen, config = {}) {
|
|||||||
let time = Date.now() - startTime;
|
let time = Date.now() - startTime;
|
||||||
u32Mem[16] = time;
|
u32Mem[16] = time;
|
||||||
u32Mem[17] = pad | gamepad;
|
u32Mem[17] = pad | gamepad;
|
||||||
|
u32Mem[18] = frameCounter++;
|
||||||
if(instance.exports.upd) {
|
if(instance.exports.upd) {
|
||||||
instance.exports.upd();
|
instance.exports.upd();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user