Hypseus Singe game demos on Youtube
If you have older game content, ensure you update the existing lua and other data with files from
this repository. Backup your existing data, then overwrite the metadata with repository files.
You only require the video and audio files from your existing version (see below).
These games are updated frequently, ensure files are up-to-date.
Feel free to submit pull requests for any fixes or improvements.
From version 2.10.4, Hypseus Singe supports full resolution 32bit overlays and overlay switching.
A reworking of game overlays has taken place that uses the new overlay switching functions, and removes the legacy fixed overlay routines. All games in this repo now have been switched to use the new functions. You should therefore begin to replace the .singe
LUA code on existing games with the latest code from this repository. A future version of hypseus
will remove the legacy overlay compeltely and overlays will/may look misaligned, or not work, on releases beyond 2.10.4 of hypseus.
The following categories still apply, but new sbc
games will utilize the Minimal
overlay switching within the 00-singe2/Framework
. Some games have been left within the sbc
categories as they do not utilize the Framework
and remain to allow running on the lower spec hardware. The 00-singe2-ports-gungames
being the most obvious. These games should still update LUA from the repo to ensure overlays are aligned correctly moving forward.
For any third party full game repos, video/audio from these is still valid. You are only required to change the LUA and peripheral files of these games to the new format. No re-encoding is required with ffmpeg
. These repos should update their files in due course. This is analagous to updating the game ROM
to a later version.
This will allow a recategorization of currently ported games which were created to run on lower
powered single-board computer devices, such as the Raspberry Pi and RK3328, and used
minimalist overlays. These will now be part of the 00-singe2-ports-sbc
folder.
Note: This format is now deprecated in favor of the new Minimal Overlay within the 00-singe2
games folder.
A subsection of the above ports were gun games, used by communities such as Sinden Gun
owners. These also use minimalist overlays, but continue to simulate the 8bit 'American Laser
Games' (ALG) games, from which they derive, using upscaled (AI enhanced) video. These will
be now within 00-singe2-ports-gungames
.
The 00-singe2
folder will contain Singe 2 games using native sprites, fonts and full overlays.
LUA changes are only to restructure asset layout.
All games will still require the MPEG-2 and Ogg, video and audio streams required by the
Daphne VLDP. So recoding of mp4 and other formats is still required.
Download the latest complete repository via Releases (zip or tgz).
This repo does not contain Copyrighted © material, purely fan made graphics, sounds and LUA scripts.
All data in the subdirectories of this repository has been ported from Singe 2 LUA.
You should not need to alter any of the peripheral data in these subdirectories. However, these
are customizable games. If you make improvements, please consider contributing back to the repository.
The only required step is to obtain the video files from Singe 2 for your required game and perform
a video conversion as detailed below using ffmpeg. This can be performed on any PC including
Windows: https://ffmpeg.org/download.html
Once you have the new .m2v and .ogg video and audio files:
- Check the duration and frame numbers match
FRAMEINFO.md
(see below). - Move them into the relevant subdirectory from this repository.
- Install the subdirectory into your Hypseus Singe ROM folder location.
- Play the game.
The files in this repository should be installed alongside the required game video (m2v) and audio (ogg) files.
Refer to the game framefile (txt) for video file layout structure.
This repository does not contain any game video or audio files. You are required to acquire these files from other
sources, archive.org may help.
Download the latest complete repository via Releases (zip or tgz).
For Singe 2 video/audio recoding follow the instructions below:
Singe 2 game files in this repository are based around various releases of Singe 2 games.
Check FRAMEINFO.md
for the required video size for each game.
Always check FRAMEINFO.md
.
Frame information from mediainfo
will be provided for the Singe 2 video files in a file called FRAMEINFO.md
in each folder:
mediainfo --Inform='Video;%FrameCount%' <file>
mediainfo --Inform='Video;%Duration%' <file>
mediainfo
can usually be installed in Linux via packaging, e.g.:
sudo apt-get install mediainfo
In Windows: https://mediaarea.net/en/MediaInfo/Download/Windows
View -> Tree
Debug -> Advanced Mode
Look for 'Duration' and 'Frame Count'
This should allow you to know the correct video files required.
ffmpeg -i <original>.mp4 -an -qscale:v 4 -b:v 6000k -codec:v mpeg2video <game>.m2v
Singe 2 has an audio bug and audio is delayed in the original MP4, check with VLC. Use -ss
to delay encode start:
ffmpeg -i <original>.mp4 -ss 00:00:00.330 -vn -c:a libvorbis -ar 44100 -map a -b:a 160k <game>.ogg
e.g.
ffmpeg -i FaI.mp4 -an -qscale:v 4 -b:v 6000k -codec:v mpeg2video fireandice.m2v
ffmpeg -i FaI.mp4 -ss 00:00:00.330 -vn -c:a libvorbis -ar 44100 -map a -b:a 160k fireandice.ogg
If your device is struggling with the HD content, this is likely on a RPi, you can resize HD in one of these operations:
ffmpeg -i FaI.mp4 -an -qscale:v 4 -b:v 6000k -vf scale=1280:720 -codec:v mpeg2video fireandice.m2v
ffmpeg -i FaI.mp4 -an -qscale:v 4 -b:v 6000k -vf tpad=stop_mode=clone:stop_duration=2,scale=1280:720 -codec:v mpeg2video fireandice.m2v
If sound is out of sync, use -ss
to delay audio encode start in ms
(hh:mm:ss.SSS) on the orignal MP4:
ffmpeg -i DL2E.mp4 -ss 00:00:00.330 -vn -c:a libvorbis -ar 44100 -map a -b:a 160k dl2e.ogg
You can fix any existing .ogg
files with delay easily, using:
mv dl2e.ogg dl2e_delayed.ogg
ffmpeg -i dl2e_delayed.ogg -ss 00:00:00.330 -c copy dl2e.ogg