Cross-platform, sophisticated frontend for the libretro API. Licensed GPLv3.
Go to file
2011-08-20 03:22:19 +02:00
audio Do not link XAudio2 dynamically. Build with MinGW. 2011-08-20 03:22:19 +02:00
conf
docs Some more needed stuff ... 2011-08-18 00:24:57 +02:00
gfx Only use hack on X when in windowed mode. 2011-08-16 10:26:36 +02:00
input Fix up Win64 warnings/errors. 2011-08-19 13:33:10 +02:00
qb 0.7 baby! 2011-08-14 23:17:02 +02:00
record Update API usage of FFmpeg. Use 2 threads for encoding :) 2011-08-19 02:06:13 +02:00
tools
.gitignore
AUTHORS Updated copyrights. 2011-08-09 12:58:13 +02:00
autosave.c
autosave.h
bps.c BPS seems to work ... :) 2011-08-18 00:37:43 +02:00
bps.h Start adding support for BPS patches. 2011-08-18 00:05:56 +02:00
cheats.c
cheats.h
config.def.h Can record hi-res and filtered output. 2011-08-11 05:25:31 +02:00
config.features.h Fix build for XVideo. 2011-06-25 18:11:04 +02:00
configure
COPYING
driver.c Slight fixups. 2011-08-14 04:50:16 +02:00
driver.h Add CoreAudio driver. Untested. 2011-08-08 17:27:52 +02:00
dynamic.c
dynamic.h
fifo_buffer.c
fifo_buffer.h
file.c BPS seems to work ... :) 2011-08-18 00:37:43 +02:00
file.h
general.h Some more needed stuff ... 2011-08-18 00:24:57 +02:00
libsnes.hpp
Makefile Start adding support for BPS patches. 2011-08-18 00:05:56 +02:00
Makefile.win32 Do not link XAudio2 dynamically. Build with MinGW. 2011-08-20 03:22:19 +02:00
Makefile.win64 Do not link XAudio2 dynamically. Build with MinGW. 2011-08-20 03:22:19 +02:00
message.c
message.h
movie.c Fix endian issues in OSS driver. 2011-07-26 00:53:24 +02:00
movie.h
netplay.c Fix up Win64 warnings/errors. 2011-08-19 13:33:10 +02:00
netplay.h Should fix netplay for bSNES as well. 2011-06-26 16:02:18 +02:00
README.md
README.win32.txt
rewind.c
rewind.h
screenshot.c
screenshot.h
settings.c Can record hi-res and filtered output. 2011-08-11 05:25:31 +02:00
sha256.c
sha256.h
ssnes-zip
ssnes.c Some more needed stuff ... 2011-08-18 00:24:57 +02:00
ssnes.cfg Can record hi-res and filtered output. 2011-08-11 05:25:31 +02:00
strl.c
strl.h
ups.c
ups.h

SSNES

SSNES is a simple frontend for the libsnes library.

libsnes

libsnes is the emulator core of bSNES, the most accurate SNES emulator to date, in library form. The libsnes API has been implemented by SNES9x as well, allowing multiple different cores to be used for an emulator that supports libsnes. This enables the possibility of custom front-ends for the emulator.

Philosophy

SSNES attempts to be very small and lean, while still having all the useful core features expected from an emulator. It is used through command-line.

Dependencies

SSNES requires these libraries to build:

SSNES can utilize these libraries if enabled:

  • nvidia-cg-toolkit
  • libxml2 (bSNES XML shaders)
  • libfreetype2 (TTF font rendering on screen)
  • libsamplerate

SSNES needs at least one of these audio driver libraries:

  • ALSA
  • OSS
  • RoarAudio
  • RSound
  • OpenAL
  • JACK
  • SDL
  • XAudio2 (Win32)
  • PulseAudio

Building libsnes

  • Download bSNES source (link over).
  • Add -fPIC to flags in Makefile.
  • $ make library profile=performance (accuracy, compatibility are the other profiles. compatibility is a great choice for decent PCs. :D)
  • # make prefix=/usr library-install
  • # cp snes/libsnes/libsnes.hpp /usr/include/
  • ?!?!
  • Profit!

Configuring

The default configuration is defined in config.def.h. These can later be tweaked by using the ssnes config file. A sample configuration file is installed to /etc/ssnes.cfg. This is the system-wide config file. Each user should create a config file in $XDG_CONFIG_HOME/ssnes/ssnes.cfg. The users only need to configure a certain option if the desired value deviates from the value defined in config.def.h.

To configure joypads, start up jstest /dev/input/js0 to determine which joypad buttons (and axis) to use. It is also possible to use the ssnes-joyconfig tool as well for simple configuration.

Compiling and installing

Linux/Unix
As most packages, SSNES is built using the standard ./configure && make && make install Do note that the build system is not autotools based, but resembles it.

Notable options for ./configure: --with-libsnes=: Normally libsnes is located with -lsnes, however, this can be overridden. --enable-dynamic: Do not link to libsnes at compile time, but load libsnes dynamically at runtime. libsnes_path in config file defines which library to load. Useful for development.

Do note that these two options are mutually exclusive.

Win32
It is possible with MinGW to compile for Windows in either msys or Linux/Unix based systems. Do note that Windows build uses a static Makefile since configuration scripts create more harm than good on this platform. Libraries, headers, etc, needed to compile and run SSNES can be fetched with a Makefile target.

In Linux/Unix:
make -f Makefile.win32 libs
make -f Makefile.win32 CC=i486-mingw32-gcc CXX=i486-mingw32-g++

In MSYS: mingw32-make -f Makefile.win32 libs. # You will need to have wget in your patch for this command! MSYS should provide this.
mingw32-make -f Makefile.win32

Filters, bSNES XML shaders and Cg shader support

This is not strictly not necessary for an emulator, but it can be enabled if desired. For best performance, Cg shaders or bSNES XML shaders are recommended as they do not eat up valuable CPU time (assuming your GPU can handle the shaders). Cg shaders and XML shaders (GLSL) are compiled at run-time. All shaders share a common interface to pass some essential arguments such as texture size and viewport size. (Common for pixel art scalers) Some Cg shaders are included in hqflt/cg/ and could be used as an example. bSNES XML shaders can be found on various places on the net. Best place to start looking are the bSNES forums.

The Cg shaders closely resemble the GLSL shaders found in bSNES shader pack, so porting them is trivial if desired.