Compare commits

..

1 Commits

Author SHA1 Message Date
748665ef5e Add suspension (testing) 2024-10-20 01:54:38 -04:00
3 changed files with 2 additions and 11 deletions

View File

@ -2,7 +2,7 @@ name: Rust
on:
push:
branches: ["main"]
branches: ["master"]
jobs:
build:

View File

@ -1,5 +1,3 @@
# mouse-free-fishing
Made for Fisch (Roblox game)
You can grab the latest release using [this link](https://git.tommyy.dev/tommy/mouse-free-fishing/actions/runs/latest/artifacts/mouse-free-fishing)

View File

@ -2,7 +2,6 @@ use std::sync::{Arc, Mutex};
use rdev::{simulate, Event, EventType, SimulateError};
use std::process::exit;
const ENTER_KEY: rdev::Key = rdev::Key::Return;
const SPACE_KEY: rdev::Key = rdev::Key::Space;
const ESCAPE_KEY: rdev::Key = rdev::Key::Escape;
const SUSPEND_KEY: rdev::Key = rdev::Key::SemiColon;
@ -23,10 +22,6 @@ fn main() {
let callback = move |event: Event| {
let mut matched: bool = false;
match event.event_type {
EventType::KeyPress(key) if key == ENTER_KEY => {
send(EventType::KeyPress(rdev::Key::KeyS));
send(EventType::KeyRelease(rdev::Key::KeyS));
},
EventType::KeyPress(key) if key == SPACE_KEY => {
let suspended = suspended.lock().unwrap();
if *suspended {
@ -42,8 +37,6 @@ fn main() {
return Some(event);
} else {
send(EventType::ButtonRelease(rdev::Button::Left));
send(EventType::KeyPress(rdev::Key::BackSlash));
send(EventType::KeyRelease(rdev::Key::BackSlash));
matched = true;
}
},