LJCoopz / emulatorjs

The original decompilation of emulatorjs. Retroarch in your browser!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EmulatorJS

Self-hosted Javascript emulation for various system.


If something doesn't work, please consider opening an Issue
with as many details as possible, as well as the console log.

The Screen Recording option currently doesn't support Audio .


Example Use ⸥ ⸢ Emulator Demo ⸥ ⸢ Beta


Where Did I Get This?

So I found this website called EmulatorJS.com and
I went into inspect and downloaded the resources.

I removed the ad server, and made everything work within your own domain.

This repository may soon make it possible to use all this open source.

The emulator is not illegal - the rom is - I am not responsible
for what people decide to do with this software.


Supported Systems

Nintendo

Game Boy Advance | Famicom / NES | Virtual Boy | Game Boy | SNES | DS | 64

Sega

Master System | Mega Drive | Game Gear | Saturn | 32X | CD

Atari

Jaguar | Lynx | 7800 | 2600

Other

TurboGrafs 16 PC Engine | WanderSwan Color | Neo Geo Poket | PlayStation | Arcade | MSX | 3DO


Usage

For questions please use the Issue tab.


Setup
  1. Download this repository.
    Code ➞ Download As Zip

  2. Use a WebServer to host the emulator.

  3. Use your Browser to navigate to localhost


ROMs

ROMs can be used as zip / rar / 7z archives.


Netplay

By default Netplay is disabled,
to enable it, add the following:

// ID in your website, required for netplay. Each game in your site should have a different ID
EJS_gameID = 1;

I have successfully rewrote the server side portion
of netplay, which you can now use to self host!

  1. Download the Server.

  2. Specify the servers address with:

EJS_netplayUrl = 'http://localhost:3000/'; // Absolute Url To Your Netplay Server

Custom Saves

To customize the filename of save states
simply add the following lines of code.

EJS_gameName = `Game Name`;

➞ Save Filename: Game Name.state


AD

To place an advertisement in front of the
play now screen, include the following line:

EJS_AdUrl = `URL`;

Interface Color

To use a different color for the emulator interface, use:

EJS_color = '#FF0000'; // Hex Color Code

Direct Start

To start the emulator immediately, add this line:

EJS_startOnLoaded = true;

For audio to play the user still
needs to interact with the page.


Custom Paths

Paths to emulator files can be customized with:

EJS_paths = {
    'fileName' : '/somepath',
    'emulator.js' : 'https://example.com/emulator.js',
    'n64-asmjs.data' : '/asdfds.data'
};

If a file is not defined, the default is used.


USING MAME SYSTEM

you must add the line

EJS_core = 'mame';

and the line

EJS_mameCore = '' // mame core options (example: '4|0')

set the mame core value to the mame core number (1 - 6) + | + save states supported (0 or 1)


LICENSE

Licenced under the Apache License 2.0

Read the whole license here

About

The original decompilation of emulatorjs. Retroarch in your browser!

License:Apache License 2.0


Languages

Language:JavaScript 99.6%Language:HTML 0.4%