Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added support for commodore computer systems knowed as Amiga #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pixmap/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ pixmaps_DATA = \
boycottadvance-sdl.png \
bsnes.png \
coleco-colecovision.png \
commodore-amiga.png \
desmume.png \
emerson-arcadia2001.png \
entex-adventurevision.png \
fairchild-channelf.png \
fbzx.png \
fceux.png \
fuse.png \
fs-uae.png \
gambatte.png \
gce-vectrex.png \
generator.png \
Expand Down Expand Up @@ -69,6 +71,7 @@ pixmaps_DATA = \
snk-neogeopocketcolor.png \
spectemu.png \
stella.png \
uae.png \
virtualjaguar.png \
visualboyadvance.png \
xe.png \
Expand Down
Binary file added pixmap/commodore-amiga.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pixmap/fs-uae.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pixmap/uae.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions src/core/default_systems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,37 @@ void CSystemManager::generateDefaultSystems(void){
l_system->addEmulator(l_emulator);
addSystem(*l_system);

/*
* Commodore - Amiga
*/
l_system = new CSystem();
l_system->setName(_("Commodore Amiga"));
l_system->setDescription(_("Amiga Corporation' intented fusion of a computer and video game console released in 1985 as Amiga Commodore"));
l_system->setIconFile(GELIDE_PIXMAPS"commodore-amiga.png");
// Emulador UAE original
l_emulator.setId(0);
l_emulator.setName(_("UAE"));
l_emulator.setDescription(_("Unix Amiga Emulator, firts emulator for Commodore Amiga started as Unnusable Amiga Emulator at 1995 today abandonware"));
l_emulator.setVersion("0.8.29");
l_emulator.setAuthor(_("Bernd Schmidt"));
l_emulator.setHomepage("");
l_emulator.setPath("/usr/bin/uae"); // here due in that times there's no inclusion of emulators as games (i really thing emulator are not game)
l_emulator.setParams(" -s gfx_fullscreen_amiga=yes floppy1=\"$gf\" "); // let floppy default and load the software as additional floppy 1
l_emulator.setIconFile(GELIDE_PIXMAPS"uae.png");
l_system->addEmulator(l_emulator);
// Emulador FS-UAE
l_emulator.setId(0);
l_emulator.setName(_("Fs-UAE"));
l_emulator.setDescription(_("Best unix Amiga emulator its the Frode-Solheim-UAE based on the experimental code from original UAE developers"));
l_emulator.setVersion("2.5.37");
l_emulator.setAuthor(_("Frode Solheim"));
l_emulator.setHomepage("http://fs-uae.net");
l_emulator.setPath("/usr/bin/fs-uae");
l_emulator.setParams(" --fullscreen=1 --floppy_drive_1=\"$gf\" --floppies_dir=\"$bp\"");
l_emulator.setIconFile(GELIDE_PIXMAPS"fs-uae.png");
l_system->addEmulator(l_emulator);
addSystem(*l_system);

/*
* Bandai - WonderSwan Color
*/
Expand Down