1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 17:58:41 +00:00
Go to file
2011-02-18 23:51:51 +01:00
audio Update RSound to use callback locks. 2011-02-08 17:50:38 +01:00
conf Update licensing headers. 2011-01-23 20:29:28 +01:00
docs hrm... 2011-02-18 14:49:15 +01:00
gfx Add pausing when window loses focus :p 2011-02-05 21:45:44 +01:00
hqflt Update licensing headers. 2011-01-23 20:29:28 +01:00
input Add pausing when window loses focus :p 2011-02-05 21:45:44 +01:00
qb Updates for Win32. 2011-02-15 16:42:55 +01:00
record Adding some comments. 2011-01-04 23:55:41 +01:00
tools Pausing support. 2011-02-05 20:46:58 +01:00
.gitignore Update gitignore 2011-02-06 12:57:52 +01:00
AUTHORS Add authors file 2010-12-14 14:22:26 +01:00
autosave.c Fix potential problem. Some cleanup. 2011-02-18 23:51:51 +01:00
autosave.h Fix potential problem. Some cleanup. 2011-02-18 23:51:51 +01:00
config.def.h Add autosave possibility. 2011-02-10 21:16:59 +01:00
config.features.h Add in feature check printing for XAudio and Pulse. 2011-01-30 00:30:54 +01:00
configure Add quickbuild. 2010-12-30 02:52:02 +01:00
COPYING Add GPLv3 text I suppose. 2011-01-25 13:31:55 +01:00
driver.c Make the hermite resampling core more robust. 2011-02-06 18:38:04 +01:00
driver.h Add pausing when window loses focus :p 2011-02-05 21:45:44 +01:00
dynamic.c Update licensing headers. 2011-01-23 20:29:28 +01:00
dynamic.h Update licensing headers. 2011-01-23 20:29:28 +01:00
file.c Some more logic hooked up. 2011-02-02 12:10:27 +01:00
file.h Add save state slots. 2011-01-23 23:09:54 +01:00
general.h Fix potential problem. Some cleanup. 2011-02-18 23:51:51 +01:00
libsnes.hpp Add autosave possibility. 2011-02-10 21:16:59 +01:00
Makefile Some start on netplay. :) 2011-02-13 16:40:24 +01:00
Makefile.win32 Updates for Win32. 2011-02-15 16:42:55 +01:00
message.c Update licensing headers. 2011-01-23 20:29:28 +01:00
message.h Update licensing headers. 2011-01-23 20:29:28 +01:00
movie.c Hrm. 2011-02-02 20:15:00 +01:00
movie.h Initial code for movie playback. 2011-02-02 11:47:05 +01:00
netplay.c Fix potential problem. Some cleanup. 2011-02-18 23:51:51 +01:00
netplay.h More changes to netplay. Still quite broken, but it's not far away! 2011-02-14 20:11:46 +01:00
README.md Add hermite resampler core :) SRC is disabled by default. 2011-02-06 13:29:48 +01:00
README.win32.txt Add a simple README for Win32. 2011-01-29 19:43:05 +01:00
rewind.c Fix up stuff. Alignment is done in client code. 2011-01-31 18:27:21 +01:00
rewind.h Fix up stuff. Alignment is done in client code. 2011-01-31 18:27:21 +01:00
settings.c Add autosave possibility. 2011-02-10 21:16:59 +01:00
ssnes.c Fix potential problem. Some cleanup. 2011-02-18 23:51:51 +01:00
ssnes.cfg Cleanups, add --frames. 2011-02-15 15:32:26 +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. 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.