Cross-platform, sophisticated frontend for the libretro API. Licensed GPLv3.
Go to file
2011-01-05 17:42:58 +01:00
audio Fix some issues with jack driver. 2011-01-01 04:50:35 +01:00
conf Add licensing info 2010-12-30 01:50:37 +01:00
gfx Add config option for XML shader. 2011-01-05 17:32:30 +01:00
hqflt Move default config location 2011-01-01 17:59:59 +01:00
qb Update build system for xml shaders. 2011-01-05 17:42:58 +01:00
.gitignore Update 2010-05-28 20:56:44 +02:00
AUTHORS Add authors file 2010-12-14 14:22:26 +01:00
config.def.h Add config option for XML shader. 2011-01-05 17:32:30 +01:00
configure Add quickbuild. 2010-12-30 02:52:02 +01:00
driver.c Add Jack audio driver. 2011-01-01 03:53:30 +01:00
driver.h Add config option for XML shader. 2011-01-05 17:32:30 +01:00
dynamic.c Add Jack audio driver. 2011-01-01 03:53:30 +01:00
dynamic.h Dynamic loading of libsnes. 2010-12-30 13:54:49 +01:00
file.c Dynamic loading of libsnes. 2010-12-30 13:54:49 +01:00
file.h Add licensing stuff. 2010-12-24 01:33:40 +01:00
general.h Add config option for XML shader. 2011-01-05 17:32:30 +01:00
Makefile Update build system for xml shaders. 2011-01-05 17:42:58 +01:00
README.md Move default config location 2011-01-01 17:59:59 +01:00
settings.c Add config option for XML shader. 2011-01-05 17:32:30 +01:00
ssnes.c Move default config location 2011-01-01 17:59:59 +01:00
ssnes.cfg Add config option for XML shader. 2011-01-05 17:32:30 +01:00

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. 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

SSNES needs one of these audio driver libraries:

  • ALSA
  • OSS
  • RoarAudio
  • RSound
  • OpenAL
  • JACK

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.

Compiling and installing

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.

Filters 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 are recommended as they do not eat up valuable CPU time. Cg shaders are compiled at run-time, and shaders could be dropped in. 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.

While these shaders are Cg, they closely resemble the GLSL shaders found in bSNES shader pack, so porting them is trivial.