Compare commits

..

10 Commits

13 changed files with 212 additions and 234 deletions

340
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@ description = "An emulator for the Virtual Boy."
repository = "https://git.virtual-boy.com/PVB/lemur" repository = "https://git.virtual-boy.com/PVB/lemur"
publish = false publish = false
license = "MIT" license = "MIT"
version = "0.7.3" version = "0.7.1"
edition = "2024" edition = "2024"
[dependencies] [dependencies]

View File

@ -1,39 +1,24 @@
# This Dockerfile produces a base image for builds. # This Dockerfile produces a base image for builds.
# It includes all dependencies necessary to cross-compile for Windows/MacOS/Linux. # It includes all dependencies necessary to cross-compile for Windows/MacOS/Linux.
FROM debian:bookworm AS osxcross FROM crazymax/osxcross:latest-ubuntu AS osxcross
ADD --chmod=644 "https://apt.llvm.org/llvm-snapshot.gpg.key" /etc/apt/trusted.gpg.d/apt.llvm.org.asc
WORKDIR /build/osxcross
ADD "https://github.com/tpoechtrager/osxcross.git#47936a512273bb3b414b5a2e83043c92eabc7ae7" .
ADD "https://github.com/joseluisq/macosx-sdks/releases/download/14.5/MacOSX14.5.sdk.tar.xz" ./tarballs/MacOSX14.5.sdk.tar.xz
RUN apt-get update && \
apt-get install -y ca-certificates
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
RUN apt-get update && \
apt-get install -y bash bzip2 clang-20 git lld-20 llvm-20 make patch xz-utils && \
ln -s $(which clang-20) /usr/bin/clang && \
ln -s $(which clang++-20) /usr/bin/clang++ && \
ln -s $(which ld64.lld-20) /usr/bin/ld64.lld && \
SDK_VERSION=14.5 UNATTENDED=1 ENABLE_COMPILER_RT_INSTALL=1 TARGET_DIR=/osxcross ./build.sh
FROM rust:1.89-bookworm FROM rust:latest
ADD --chmod=644 "https://apt.llvm.org/llvm-snapshot.gpg.key" /etc/apt/trusted.gpg.d/apt.llvm.org.asc
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
RUN rustup target add x86_64-pc-windows-msvc && \ RUN rustup target add x86_64-pc-windows-msvc && \
rustup target add x86_64-apple-darwin && \ rustup target add x86_64-apple-darwin && \
rustup target add aarch64-apple-darwin && \ rustup target add aarch64-apple-darwin && \
apt-get update && \ apt-get update && \
apt-get install -y clang-20 lld-20 libc6-dev libasound2-dev libudev-dev genisoimage mingw-w64 && \ apt-get install -y clang-19 lld-19 libc6-dev libasound2-dev libudev-dev genisoimage mingw-w64 && \
cargo install cargo-bundle xwin && \ cargo install cargo-bundle xwin && \
xwin --accept-license splat --output xwin && \ xwin --accept-license splat --output xwin && \
rm -rf .xwin-cache && \ rm -rf .xwin-cache && \
ln -s $(which clang-20) /usr/bin/clang && \ ln -s $(which clang-19) /usr/bin/clang && \
ln -s $(which clang++-20) /usr/bin/clang++ ln -s $(which clang++-19) /usr/bin/clang++
COPY --from=osxcross /osxcross /osxcross COPY --from=osxcross /osxcross /osxcross
ENV PATH="/osxcross/bin:$PATH" \ ENV PATH="/osxcross/bin:$PATH" \
LD_LIBRARY_PATH="/osxcross/lib" \ LD_LIBRARY_PATH="/osxcross/lib" \
CC="clang-20" CXX="clang++-20" AR="llvm-ar-20" \ CC="clang-19" CXX="clang++-19" AR="llvm-ar-19" \
CC_x86_64-apple-darwin="o64-clang" \ CC_x86_64-apple-darwin="o64-clang" \
CXX_x86_64-apple-darwin="o64-clang++" \ CXX_x86_64-apple-darwin="o64-clang++" \
CC_aarch64-apple-darwin="oa64-clang" \ CC_aarch64-apple-darwin="oa64-clang" \
@ -42,11 +27,10 @@ ENV PATH="/osxcross/bin:$PATH" \
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS="-Clinker-plugin-lto -Clinker=clang -Clink-arg=-fuse-ld=lld" \ CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS="-Clinker-plugin-lto -Clinker=clang -Clink-arg=-fuse-ld=lld" \
SHROOMS_CFLAGS_x86_64-pc-windows-msvc="-flto" \ SHROOMS_CFLAGS_x86_64-pc-windows-msvc="-flto" \
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_RUSTFLAGS="-Lnative=/xwin/crt/lib/x86_64 -Lnative=/xwin/sdk/lib/um/x86_64 -Lnative=/xwin/sdk/lib/ucrt/x86_64 -Clinker-plugin-lto -Clink-arg=-fuse-ld=lld" \ CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_RUSTFLAGS="-Lnative=/xwin/crt/lib/x86_64 -Lnative=/xwin/sdk/lib/um/x86_64 -Lnative=/xwin/sdk/lib/ucrt/x86_64 -Clinker-plugin-lto -Clink-arg=-fuse-ld=lld" \
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER="lld-link-20" \ CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER="lld-link-19" \
CARGO_TARGET_X86_64_APPLE_DARWIN_LINKER="o64-clang" \ CARGO_TARGET_X86_64_APPLE_DARWIN_LINKER="o64-clang" \
CARGO_TARGET_X86_64_APPLE_DARWIN_AR="llvm-ar-20" \ CARGO_TARGET_X86_64_APPLE_DARWIN_AR="llvm-ar-19" \
CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER="oa64-clang" \ CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER="oa64-clang" \
CARGO_TARGET_AARCH64_APPLE_DARWIN_AR="llvm-ar-20" \ CARGO_TARGET_AARCH64_APPLE_DARWIN_AR="llvm-ar-19" \
RC_PATH="llvm-rc-20" \ RC_PATH="llvm-rc-19" \
MACOSX_DEPLOYMENT_TARGET="14.5" MACOSX_DEPLOYMENT_TARGET="14.5"
ENTRYPOINT ["bash"]

View File

@ -1,4 +0,0 @@
Types: deb deb-src
URIs: http://apt.llvm.org/bookworm/
Suites: llvm-toolchain-bookworm-20
Components: main

View File

@ -1,4 +0,0 @@
set -e
docker build --pull -f build.Dockerfile -t lemur-build .
MSYS_NO_PATHCONV=1 docker run -it --rm -v .:/app -w /app lemur-build /app/scripts/do-bundle.sh

View File

@ -24,7 +24,8 @@ if ! command -v docker 2>&1 >/dev/null; then
exit 1 exit 1
fi fi
./scripts/bundle.sh docker build -f build.Dockerfile -t lemur-build .
MSYS_NO_PATHCONV=1 docker run -it --rm -v .:/app -w /app --entrypoint bash lemur-build /app/scripts/do-bundle.sh
body=$(cat <<EOF body=$(cat <<EOF
## How to install ## How to install

@ -1 +1 @@
Subproject commit 8598eab087cced12b92a411f6c7f2eb9de51310f Subproject commit ecbd103917315e3aa24fd2a682208f5548ec5d1b

View File

@ -217,9 +217,10 @@ impl ApplicationHandler<UserEvent> for Application {
.focused .focused
.as_ref() .as_ref()
.and_then(|id| self.viewports.get_mut(id)) .and_then(|id| self.viewports.get_mut(id))
&& viewport.app.handle_gamepad_event(&event)
{ {
return; if viewport.app.handle_gamepad_event(&event) {
return;
}
} }
self.controllers.handle_gamepad_event(&event); self.controllers.handle_gamepad_event(&event);
} }
@ -300,10 +301,10 @@ impl ApplicationHandler<UserEvent> for Application {
fn exiting(&mut self, _event_loop: &ActiveEventLoop) { fn exiting(&mut self, _event_loop: &ActiveEventLoop) {
let (sender, receiver) = oneshot::channel(); let (sender, receiver) = oneshot::channel();
if self.client.send_command(EmulatorCommand::Exit(sender)) if self.client.send_command(EmulatorCommand::Exit(sender)) {
&& let Err(error) = receiver.recv_timeout(Duration::from_secs(5)) if let Err(error) = receiver.recv_timeout(Duration::from_secs(5)) {
{ error!(%error, "could not gracefully exit.");
error!(%error, "could not gracefully exit."); }
} }
} }
} }

View File

@ -498,11 +498,11 @@ impl Emulator {
let Some(sim) = self.sims.get_mut(sim_id.to_index()) else { let Some(sim) = self.sims.get_mut(sim_id.to_index()) else {
return true; return true;
}; };
if let Some(text) = sim.take_stdout() if let Some(text) = sim.take_stdout() {
&& stdout.send(text).is_err() if stdout.send(text).is_err() {
{ sim.watch_stdout(false);
sim.watch_stdout(false); return false;
return false; }
} }
true true
}); });

View File

@ -169,7 +169,7 @@ impl MemoryRef<'_> {
T::from_bytes(&self.inner[from..to]) T::from_bytes(&self.inner[from..to])
} }
pub fn range<T: MemoryValue>(&self, start: usize, count: usize) -> MemoryIter<'_, T> { pub fn range<T: MemoryValue>(&self, start: usize, count: usize) -> MemoryIter<T> {
let from = start * size_of::<T>(); let from = start * size_of::<T>();
let to = from + (count * size_of::<T>()); let to = from + (count * size_of::<T>());
MemoryIter::new(&self.inner[from..to]) MemoryIter::new(&self.inner[from..to])

View File

@ -462,7 +462,7 @@ impl GameWindow {
self.config = new_config; self.config = new_config;
} }
fn button_for(&self, ctx: &Context, text: &str, command: Command) -> Button<'_> { fn button_for(&self, ctx: &Context, text: &str, command: Command) -> Button {
let button = Button::new(text); let button = Button::new(text);
match self.shortcuts.shortcut_for(command) { match self.shortcuts.shortcut_for(command) {
Some(shortcut) => button.shortcut_text(ctx.format_shortcut(&shortcut)), Some(shortcut) => button.shortcut_text(ctx.format_shortcut(&shortcut)),

View File

@ -62,8 +62,8 @@ impl HotkeysWindow {
} }
}); });
}); });
if let Some(command) = self.now_binding if let Some(command) = self.now_binding {
&& let Some(shortcut) = ui.input_mut(|i| { if let Some(shortcut) = ui.input_mut(|i| {
i.events.iter().find_map(|event| match event { i.events.iter().find_map(|event| match event {
Event::Key { Event::Key {
key, key,
@ -73,10 +73,10 @@ impl HotkeysWindow {
} => Some(KeyboardShortcut::new(*modifiers, *key)), } => Some(KeyboardShortcut::new(*modifiers, *key)),
_ => None, _ => None,
}) })
}) }) {
{ self.shortcuts.set(command, shortcut);
self.shortcuts.set(command, shortcut); self.now_binding = None;
self.now_binding = None; }
} }
} }

View File

@ -86,10 +86,10 @@ impl UiExt for Ui {
let (rect, _) = ui.allocate_at_least(Vec2::new(100.0, 100.0), Sense::hover()); let (rect, _) = ui.allocate_at_least(Vec2::new(100.0, 100.0), Sense::hover());
ui.painter().rect_filled(rect, 0.0, *color); ui.painter().rect_filled(rect, 0.0, *color);
let resp = ui.text_edit_singleline(hex); let resp = ui.text_edit_singleline(hex);
if resp.changed() if resp.changed() {
&& let Ok(new_color) = HexColor::from_str_without_hash(hex) if let Ok(new_color) = HexColor::from_str_without_hash(hex) {
{ *color = new_color.color();
*color = new_color.color(); }
} }
resp resp
}, },
@ -301,11 +301,11 @@ impl<T: Number> Widget for NumberEdit<'_, T> {
let mut delta = None; let mut delta = None;
if self.arrows { if self.arrows {
let arrow_left = res.rect.max.x - 16.0; let arrow_left = res.rect.max.x + 4.0;
let arrow_right = res.rect.max.x; let arrow_right = res.rect.max.x + 20.0;
let arrow_top = res.rect.min.y; let arrow_top = res.rect.min.y - 2.0;
let arrow_middle = (res.rect.min.y + res.rect.max.y) / 2.0; let arrow_middle = (res.rect.min.y + res.rect.max.y) / 2.0;
let arrow_bottom = res.rect.max.y; let arrow_bottom = res.rect.max.y + 2.0;
let top_arrow_rect = Rect { let top_arrow_rect = Rect {
min: (arrow_left, arrow_top).into(), min: (arrow_left, arrow_top).into(),