All Projects → LtPeriwinkle → mist

LtPeriwinkle / mist

Licence: other
minimal, improved speedrun timer

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to mist

flitter
A Livesplit-inspired speedrunning split timer for Linux/macOS terminal. Supports global hotkeys.
Stars: ✭ 112 (+229.41%)
Mutual labels:  speedrun, speedrun-timer
Splitter
A speedrunning timer for macOS
Stars: ✭ 34 (+0%)
Mutual labels:  speedrun, speedrun-timer
SourceAutoRecord
Speedrun plugin for Source Engine games.
Stars: ✭ 47 (+38.24%)
Mutual labels:  speedrun
LiveSplitOne
A version of LiveSplit that works on a lot of platforms.
Stars: ✭ 172 (+405.88%)
Mutual labels:  speedrun
Unload
An advanced automatic speedrun load time remover for community verifiers.
Stars: ✭ 20 (-41.18%)
Mutual labels:  speedrun
pyautosplit
Autosplitter for Linux (for the LiveSplit Server)
Stars: ✭ 34 (+0%)
Mutual labels:  speedrun-timer
salty bot
Twitch chat bot
Stars: ✭ 15 (-55.88%)
Mutual labels:  speedrun

mist

Lines of code

a minimal, improved speedrun timer

Changelog
Latest Release

Planned features

Once all planned features are complete, I will likely stop developing this and only squash bugs etc. More might still be added to this list.

  • Cross platform
    • Linux
    • Windows
    • MacOS (compiled & tested in macOS catalina VM)
  • Human-readable split file (using ron)
  • LiveSplit split file transposing (split tool)
  • (limited) customizability
    • custom fonts/font sizes
    • custom colors
    • keybinds
    • timer backgrounds
    • panels (sum of best etc)
    • time rounding (30/60/off)
    • very limited timer layout (i.e. use two rows for splits like option available in LiveSplit)
  • split file creation tool
    • edit existing msf
    • convert lss to msf
    • create new splits
    • actually good and usable (hardest part)
  • fps-based time conversion (so that the timer always ends on a time that corresponds to a possible frame time)
  • dynamic colors
  • different run comparisons
    • sum of best
    • pb
    • none
    • average
  • hot reloading
    • split file reloading
    • config reloading
  • plugins
    • autoloading from plugins directory (probably run as some kind of child process thing?)
    • communicate with plugins through ipc (i.e. unix socket, windows named pipe)
    • plugins that are shipped with this repo (a discord presence, some kind of notes plugin, maybe more)
  • search for config/assets in standard os-specific dirs rather than hard-coded one (allows for packaging, installation, etc)
  • better way to find fonts than paths in config file
  • skip splits (because somehow i missed this all along)

Unplanned features

These features will not be implemented, in the spirit of minimalism.

  • Autosplitters
  • Horizontal timer layout
  • Ingame time
  • Internet time sync
  • SRC/SRL/splits.io/racetime.gg integration
  • GIFs
  • Split icons

Installation

Compiling from source

Probably the best way to try this out is to compile it from source. To do this you need rust installed, and an installation guide for that can be found here.

Features

This package provides two features, bg and icon. icon sets the icon of the application when it is running, and requires sdl2_image. bg allows for configuration of a background image, and requires both sdl2_image and sdl2_gfx. To use only icon (removing gfx requirement), append

--no-default-features --features=icon

to the cargo commands below. For only bg, do the same except replace icon with bg. Finally, to remove both, remove the --features altogether.

When you run mist, make sure it is in the same directory as the assets directory or else it won't work.

Linux

Requirements are SDL2, SDL2_Image and SDL2_TTF shared libraries, as well as development libraries. On ubuntu:

sudo apt-get install libsdl2-2.0.0 libsdl2-ttf-2.0.0 libsdl2-image-2.0.0 libsdl2-gfx-2.0.0 libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-gfx-dev

On arch:

sudo pacman -S sdl2 sdl2_ttf sdl2_image sdl2_gfx

Clone this repo (git clone https://github.com/LtPeriwinkle/mist), enter the directory, and run cargo build --release. Move the resulting binary from ./target/release/ into the repository root (or just the same folder as assets/) to run.

Windows

Follow this guide to set up your SDL dependencies. You will have to follow this process for SDL2, SDL_Image and SDL2_TTF, whose development stuff is available here and here. I had to use vcpkg to get sdl_gfx and then copy the .lib file to the folder specified by in the guide.

Compile with cargo build --release then move the exe as well as the sdl related dlls into the same folder as the assets folder to run it.

MacOS

Install sdl2, sdl image and sdl ttf. Using homebrew:

brew install sdl2 sdl2_image sdl2_ttf sdl2_gfx

Then you should be able to run cargo build --release.

Usage

The default keybinds are:
F1: Open new split file
Space: Start/split/stop
Enter: Pause
R: Reset
: Previous comparison
: Next comparison
Mousewheel: Scroll splits up/down (if there are more than fit in the window)

Mist reads configuration info from assets/mist.cfg in the directory where its executable is located.

Credits

Thanks to Xeryph and Komali for testing, bug reports, and help on things.

Licensing

Like Rust itself, mist is licensed under MIT or Apache 2.0, at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].