Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidcellis/splitguides
Tool for speedrun notes that automatically advance with livesplit.
https://github.com/davidcellis/splitguides
speedrun speedrun-tool
Last synced: 1 day ago
JSON representation
Tool for speedrun notes that automatically advance with livesplit.
- Host: GitHub
- URL: https://github.com/davidcellis/splitguides
- Owner: DavidCEllis
- License: gpl-3.0
- Created: 2019-10-15T10:44:02.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-15T13:06:38.000Z (6 months ago)
- Last Synced: 2024-05-16T02:37:31.442Z (6 months ago)
- Topics: speedrun, speedrun-tool
- Language: Python
- Size: 1.88 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: COPYING
Awesome Lists containing this project
README
# SplitGuides #
**Speedrun notes display for Livesplit with markdown and html formatting**
SplitGuides is an application for displaying speedrun notes in sync with livesplit.
Requires *livesplit server* to be running.Includes a server version for rendering notes in browsers on another device
(eg: tablet/phone).## Install/Setup ##
1. Under the Livesplit layout editor add 'LiveSplit Server' (listed under 'control')
* Take note of the port number here, this is the value needed for
'Livesplit Server Port' in settings.
* Livesplit Server Hostname can be the local ip given. If SplitGuides is running
on the same machine as Livesplit 'localhost' (the default) should also work.
2. Download `SplitGuides_v.zip` from the
[**releases page**](https://github.com/DavidCEllis/SplitGuides/releases)
Where `` is the version number of the release.
3. Extract anywhere and run *splitguides.exe*### Alternative installs ###
#### Zipapp ####
There is now an experimental Python 'zipapp' build available for both the desktop and
server versions of SplitGuides. If you have Python 3.10 or later (preferably 3.12)
installed you can try downloading and running `SplitGuides_v.pyz` from the
same releases page.This will download and install the dependencies into a cache folder when first run
which will be reused on subsequent launches. If dependencies don't change between
releases of SplitGuides they won't be re-downloaded on update which should make
updates smaller.#### Python Wheel ####
There is also a Python Wheel provided of the application which can be installed into
a virtual environment for those familiar with Python virtual environments.## Usage ##
1. Connect with livesplit by starting the livesplit server component selecting
'Control' and 'Start Server' in livesplit.
2. Right click in the splitguides window and select 'Open Notes' and find the text file
containing the notes you wish to use.
3. Some configuration is available from the settings dialog.
Plain text formatting works the same way as SplitNotes.
Notes made for that should function fine in SplitGuides.Additionally Markdown and HTML formatted notes are supported.
These will be interpreted based on file extension (.md, .txt or .html).
Markdown and plain text formatted notes will automatically have line breaks
inserted in between lines.1. Comment lines still use square brackets.
2. By default splits will break on newlines, multiple newlines are ignored in this case.
* If a split separator is given, newlines are left as in the input to the
markdown/html processors.
## SplitGuides Server ##Included is a separate server version which launches a (local) webhost so you can view
the notes on another device on your local network.Launch **splitguides_server.exe** to start the service. A settings dialog will appear
so you can customise this version separately from the desktop version. After asking
for the notes file the server will launch serving those notes and will update
automatically as you split.If the hostname and port defaults aren't usable you can edit them
in the settings dialog.This version is intended for people doing runs on a single monitor so the notes can be
displayed on another device (a tablet or phone for example). Just connect to the host
and port given in a web browser.
## Configuration ##Configuration Options:
* Livesplit server hostname and port
* Display previous/next splits
* Split separator (leave blank for empty line separator)
* Font Size
* Text and Background Colour
* Alternative template HTML and CSS files
* Jinja2 templating is used for the HTML, use the included file as a guide
* Allows for further customising of the appearance if desired
* Hotkeys to offset the notes from the splits (not available in splitnotes server)
* This allows for some adjustment if the notes have ended up in the wrong place
relative to the splits.
* Server hostname and port (server only)
* This should be your local machine name on the network and an open port to
connect to from the device you wish to use to display the notes.## Example Notes ##
### Source ###
```markdown
# Dark Souls Remastered - SL1 NWW #
## Asylum ##
* Start Pyro + MK
* Keep Hilt
* Get Axe/Estus/Flame
* Asylum Skip
* Pick up a 200 soul
* Dupe the soul 99x
* Leave## Laurentius ##
* Pick up the firebombs
* Grab the 200 soul
* Ladder glitch
* Buy
* Max wooden arrows
* 4 blooming moss
* 2 throwing knifes
* Max (25) homeward bones
* Free Laurentius
* Darksign## GCS ##
* Dupe souls with the arrows
* Ascend flame to +15
* Buy flash sweat, combustion, fire orb
* Valley Run
* Get DCS/RTSR
* Upwarp
* Get GCS
```### Result ###
On Desktop:
![Image of splitguides rendering](resources/splits_example.png)
Via Splitnotes Server on Tablet:
![Image of splitguides server - yes this is an old iPad](resources/splitguides_server_example.jpg)
## Dependencies ##
* pyside6 - QT Gui Bindings
* jinja2 - Templating for the notes page
* bleach - Cleaning HTML to help protect if someone decided to make notes with a malicious script
* flask - Handling the server version
* markdown - Converting markdown to html for rendering
* keyboard - Global hotkeys to advance/reverse note offset to splits
* waitress - wsgi server for splitguides server---
Inspired by (but otherwise unassociated with) the original splitnotes:
https://github.com/joeloskarsson/SplitNotes