GithubHelp home page GithubHelp logo

flubbaofward / ghostsngoblinsds Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 1.0 148 KB

Ghosts'n Goblins arcade emulator for Nintendo DS

Makefile 7.50% Batchfile 0.03% C 44.28% Assembly 48.19%
emulator nintendo-ds arcade-game capcom

ghostsngoblinsds's Introduction

GhostsNGoblinsDS V0.1.7

This is a Ghosts'n Goblins - Arcade emulator for the NDS. Crappy sound but you should still be able to enjoy the games though. =)

How to use

Depending on your flashcart you might have to DLDI patch the emulator. Create a folder named "acds" in either the root of your flash card or in the data folder. Now put gng.zip, gngc.zip into a folder where you have arcade roms.

When the emulator starts, you can either press L+R or tap on the screen to open up the menu (the emulator tries to load "Ghosts 'n Goblins" automagically on startup). Now you can use the cross or touchscreen to navigate the menus, A or double tap to select an option, B or the top of the screen to go back a step.

To select between the tabs use R & L or the touchscreen.

Menu

File

  • Load Game: Select a game to load.
  • Load State: Load a previously saved state for the currently running game.
  • Save State: Save a state for the current game.
  • Save Settings: Save the current settings.
  • Reset Game: Reset the currently running game.

Options

  • Controller:
    • Autofire: Select if you want autofire.
    • Controller: 2P start a 2 player game.
    • Swap A/B: Swap which NDS button is mapped to which arcade button.
  • Display:
    • Display: Here you can select if you want scaled or unscaled screenmode. Unscaled mode: L & R buttons scroll the screen up and down.
    • Scaling: Here you can select if you want flicker or barebones lineskip.
    • Gamma: Lets you change the gamma ("brightness").
  • Settings:
    • Speed: Switch between speed modes.
      • Normal: Game runs at it's normal speed.
      • 200%: Game runs at double speed.
      • Max: Game runs at 4 times normal speed (might change in the future).
      • 50%: Game runs at half speed.
    • Autoload State: Toggle Savestate autoloading. Automagically load the savestate associated with the selected game.
    • Autosave Settings: This will save settings when leaving menu if any changes are made.
    • Autopause Game: Toggle if the game should pause when opening the menu.
    • Powersave 2nd Screen: If graphics/light should be turned off for the GUI screen when menu is not active.
    • Emulator on Bottom: Select if top or bottom screen should be used for emulator, when menu is active emulator screen is allways on top.
    • Autosleep: Doesn't work.
  • Debug:
    • Debug Output: Show an FPS meter for now.
    • Disable Foreground: Turn on/off foreground rendering.
    • Disable Background: Turn on/off background rendering.
    • Disable Sprites: Turn on/off sprite rendering.
    • Step Frame: Emulate one frame.
  • Dipswitches: Lot of settings for the actual arcade game, difficulty/lives etc.

About

Some dumb info about the game and emulator...

Credits

Huge thanks to Loopy for the incredible PocketNES, without it this emu would
probably never have been made.
Thanks to:
Dwedit for help and inspiration with a lot of things.
Pierpaolo Prazzoli and the MAME team for information about the hardware.

Fredrik Ahlström

Twitter @TheRealFluBBa

http://www.github.com/FluBBaOfWard

ghostsngoblinsds's People

Contributors

flubbaofward avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

ghostsngoblinsds's Issues

Compile fails on latest ubuntu

demetris@demetris-TA770E3:~/Desktop/Development/GhostsNGoblinsDS$ git diff
diff --git a/source/FileHandling.c b/source/FileHandling.c
index 73fa0ff..7ccfcad 100644
--- a/source/FileHandling.c
+++ b/source/FileHandling.c
@@ -10,7 +10,7 @@
#include "FileHandling.h"
#include "Shared/EmuMenu.h"
#include "Shared/FileHelper.h"
-#include "Shared/unzip/unzipnds.h"
+#include "Shared/Unzip/unzipnds.h"
#include "Shared/EmubaseAC.h"
#include "Main.h"
#include "Gui.h"
diff --git a/source/Gui.c b/source/Gui.c
index 5fab871..10b4069 100644
--- a/source/Gui.c
+++ b/source/Gui.c
@@ -11,7 +11,7 @@
#include "io.h"
#include "ARM6809/Version.h"
#include "ARMZ80/Version.h"
-#include "GngVideo/Version.h"
+#include "GnGVideo/Version.h"

#define EMUVERSION "V0.1.6 2022-04-11"
I had to add these to fix compile but after this i got

linking GhostsNGoblinsDS.elf
/opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: FileHandling.o: in function loadRoms': /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/FileHandling.c:246: undefined reference to findFileWithCRC32InZip'
/opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/FileHandling.c:248: undefined reference to loadFileWithCRC32InZip' /opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/FileHandling.c:256: undefined reference to findFileWithCRC32InZip'
/opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/FileHandling.c:258: undefined reference to loadFileWithCRC32InZip' /opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: FileHelper.o: in function loadROM':
/home/demetris/Desktop/Development/GhostsNGoblinsDS/source/Shared/FileHelper.c:69: undefined reference to loadFileTypeInZip' /opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/Shared/FileHelper.c:91: undefined reference to cenHead'
/opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/Shared/FileHelper.c:91: undefined reference to zipFilename' /opt/devkitpro/devkitARM/bin/../lib/gcc/arm-none-eabi/12.1.0/../../../../arm-none-eabi/bin/ld: /home/demetris/Desktop/Development/GhostsNGoblinsDS/source/Shared/FileHelper.c:91: undefined reference to zipError'
collect2: error: ld returned 1 exit status
make[1]: *** [/opt/devkitpro/devkitARM/ds_rules:54: /home/demetris/Desktop/Development/GhostsNGoblinsDS/GhostsNGoblinsDS.elf] Error 1
make: *** [Makefile:121: build] Error 2

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.