mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
commit
1dbe2a4ea2
179
Readme.md
179
Readme.md
@ -1,6 +1,6 @@
|
|||||||
# Dolphin - A GameCube and Wii Emulator
|
# Dolphin - A GameCube and Wii Emulator
|
||||||
|
|
||||||
[Homepage](https://dolphin-emu.org/) | [Project Site](https://github.com/dolphin-emu/dolphin) | [Buildbot](https://dolphin.ci) | [Forums](https://forums.dolphin-emu.org/) | [Wiki](https://wiki.dolphin-emu.org/) | [Issue Tracker](https://bugs.dolphin-emu.org/projects/emulator/issues) | [Coding Style](https://github.com/dolphin-emu/dolphin/blob/master/Contributing.md) | [Transifex Page](https://www.transifex.com/projects/p/dolphin-emu/)
|
[Homepage](https://dolphin-emu.org/) | [Project Site](https://github.com/dolphin-emu/dolphin) | [Buildbot](https://dolphin.ci) | [Forums](https://forums.dolphin-emu.org) | [Wiki](https://wiki.dolphin-emu.org) | [Github Wiki](https://github.com/dolphin-emu/dolphin/wiki) | [Issue Tracker](https://bugs.dolphin-emu.org/projects/emulator/issues) | [Coding Style](https://github.com/dolphin-emu/dolphin/blob/master/Contributing.md) | [Transifex Page](https://www.transifex.com/projects/p/dolphin-emu)
|
||||||
|
|
||||||
Dolphin is an emulator for running GameCube and Wii games on Windows,
|
Dolphin is an emulator for running GameCube and Wii games on Windows,
|
||||||
Linux, macOS, and recent Android devices. It's licensed under the terms
|
Linux, macOS, and recent Android devices. It's licensed under the terms
|
||||||
@ -51,11 +51,6 @@ git submodule update --init
|
|||||||
The "Release" solution configuration includes performance optimizations for the best user experience but complicates debugging Dolphin.
|
The "Release" solution configuration includes performance optimizations for the best user experience but complicates debugging Dolphin.
|
||||||
The "Debug" solution configuration is significantly slower, more verbose and less permissive but makes debugging Dolphin easier.
|
The "Debug" solution configuration is significantly slower, more verbose and less permissive but makes debugging Dolphin easier.
|
||||||
|
|
||||||
An installer can be created by using the `Installer.nsi` script in the
|
|
||||||
Installer directory. This will require the Nullsoft Scriptable Install System
|
|
||||||
(NSIS) to be installed. Creating an installer is not necessary to run Dolphin
|
|
||||||
since the Binary directory contains a working Dolphin distribution.
|
|
||||||
|
|
||||||
## Building for Linux and macOS
|
## Building for Linux and macOS
|
||||||
|
|
||||||
Dolphin requires [CMake](https://cmake.org/) for systems other than Windows. Many libraries are
|
Dolphin requires [CMake](https://cmake.org/) for systems other than Windows. Many libraries are
|
||||||
@ -75,7 +70,7 @@ A binary supporting a single architecture can be built using the following steps
|
|||||||
1. `mkdir build`
|
1. `mkdir build`
|
||||||
2. `cd build`
|
2. `cd build`
|
||||||
3. `cmake ..`
|
3. `cmake ..`
|
||||||
4. `make`
|
4. `make -j$(sysctl -n hw.logicalcpu)`
|
||||||
|
|
||||||
An application bundle will be created in `./Binaries`.
|
An application bundle will be created in `./Binaries`.
|
||||||
|
|
||||||
@ -98,7 +93,7 @@ To install to your system.
|
|||||||
1. `mkdir build`
|
1. `mkdir build`
|
||||||
2. `cd build`
|
2. `cd build`
|
||||||
3. `cmake ..`
|
3. `cmake ..`
|
||||||
4. `make`
|
4. `make -j $(nproc)`
|
||||||
5. `sudo make install`
|
5. `sudo make install`
|
||||||
|
|
||||||
### Linux Local Build Steps:
|
### Linux Local Build Steps:
|
||||||
@ -108,7 +103,7 @@ Useful for development as root access is not required.
|
|||||||
1. `mkdir Build`
|
1. `mkdir Build`
|
||||||
2. `cd Build`
|
2. `cd Build`
|
||||||
3. `cmake .. -DLINUX_LOCAL_DEV=true`
|
3. `cmake .. -DLINUX_LOCAL_DEV=true`
|
||||||
4. `make`
|
4. `make -j $(nproc)`
|
||||||
5. `ln -s ../../Data/Sys Binaries/`
|
5. `ln -s ../../Data/Sys Binaries/`
|
||||||
|
|
||||||
### Linux Portable Build Steps:
|
### Linux Portable Build Steps:
|
||||||
@ -119,7 +114,7 @@ Or useful for having multiple distinct Dolphin setups for testing/development/TA
|
|||||||
1. `mkdir Build`
|
1. `mkdir Build`
|
||||||
2. `cd Build`
|
2. `cd Build`
|
||||||
3. `cmake .. -DLINUX_LOCAL_DEV=true`
|
3. `cmake .. -DLINUX_LOCAL_DEV=true`
|
||||||
4. `make`
|
4. `make -j $(nproc)`
|
||||||
5. `cp -r ../Data/Sys/ Binaries/`
|
5. `cp -r ../Data/Sys/ Binaries/`
|
||||||
6. `touch Binaries/portable.txt`
|
6. `touch Binaries/portable.txt`
|
||||||
|
|
||||||
@ -141,28 +136,44 @@ automatically while building the Java code.
|
|||||||
|
|
||||||
## Uninstalling
|
## Uninstalling
|
||||||
|
|
||||||
When Dolphin has been installed with the NSIS installer, you can uninstall
|
On Windows, simply remove the extracted directory, unless it was installed with the NSIS installer,
|
||||||
Dolphin like any other Windows application.
|
in which case you can uninstall Dolphin like any other Windows application.
|
||||||
|
|
||||||
Linux users can run `cat install_manifest.txt | xargs -d '\n' rm` as root from the build directory
|
Linux users can run `cat install_manifest.txt | xargs -d '\n' rm` as root from the build directory
|
||||||
to uninstall Dolphin from their system.
|
to uninstall Dolphin from their system.
|
||||||
|
|
||||||
macOS users can simply delete Dolphin.app to uninstall it.
|
macOS users can simply delete Dolphin.app to uninstall it.
|
||||||
|
|
||||||
Additionally, you'll want to remove the global user directory (see below to
|
Additionally, you'll want to remove the global user directory if you don't plan on reinstalling Dolphin.
|
||||||
see where it's stored) if you don't plan to reinstall Dolphin.
|
|
||||||
|
|
||||||
## Command Line Usage
|
## Command Line Usage
|
||||||
|
|
||||||
`Usage: Dolphin [-h] [-d] [-l] [-e <str>] [-b] [-v <str>] [-a <str>]`
|
```Usage: Dolphin.exe [options]... [FILE]...
|
||||||
|
|
||||||
* -h, --help Show this help message
|
Options:
|
||||||
* -d, --debugger Show the debugger pane and additional View menu options
|
--version show program's version number and exit
|
||||||
* -l, --logger Open the logger
|
-h, --help show this help message and exit
|
||||||
* -e, --exec=<str> Load the specified file (DOL,ELF,WAD,GCM,ISO)
|
-u USER, --user=USER User folder path
|
||||||
* -b, --batch Exit Dolphin with emulator
|
-m MOVIE, --movie=MOVIE
|
||||||
* -v, --video_backend=<str> Specify a video backend
|
Play a movie file
|
||||||
* -a, --audio_emulation=<str> Low level (LLE) or high level (HLE) audio
|
-e <file>, --exec=<file>
|
||||||
|
Load the specified file
|
||||||
|
-n <16-character ASCII title ID>, --nand_title=<16-character ASCII title ID>
|
||||||
|
Launch a NAND title
|
||||||
|
-C <System>.<Section>.<Key>=<Value>, --config=<System>.<Section>.<Key>=<Value>
|
||||||
|
Set a configuration option
|
||||||
|
-s <file>, --save_state=<file>
|
||||||
|
Load the initial save state
|
||||||
|
-d, --debugger Show the debugger pane and additional View menu options
|
||||||
|
-l, --logger Open the logger
|
||||||
|
-b, --batch Run Dolphin without the user interface (Requires
|
||||||
|
--exec or --nand-title)
|
||||||
|
-c, --confirm Set Confirm on Stop
|
||||||
|
-v VIDEO_BACKEND, --video_backend=VIDEO_BACKEND
|
||||||
|
Specify a video backend
|
||||||
|
-a AUDIO_EMULATION, --audio_emulation=AUDIO_EMULATION
|
||||||
|
Choose audio emulation from [HLE|LLE]
|
||||||
|
```
|
||||||
|
|
||||||
Available DSP emulation engines are HLE (High Level Emulation) and
|
Available DSP emulation engines are HLE (High Level Emulation) and
|
||||||
LLE (Low Level Emulation). HLE is faster but less accurate whereas
|
LLE (Low Level Emulation). HLE is faster but less accurate whereas
|
||||||
@ -174,79 +185,65 @@ There's also "Null", which will not render anything, and
|
|||||||
"Software Renderer", which uses the CPU for rendering and
|
"Software Renderer", which uses the CPU for rendering and
|
||||||
is intended for debugging purposes only.
|
is intended for debugging purposes only.
|
||||||
|
|
||||||
## Sys Files
|
## DolphinTool Usage
|
||||||
|
```
|
||||||
|
usage: dolphin-tool COMMAND -h
|
||||||
|
|
||||||
* `wiitdb.txt`: Wii title database from [GameTDB](https://www.gametdb.com/)
|
commands supported: [convert, verify, header]
|
||||||
* `totaldb.dsy`: Database of symbols (for devs only)
|
```
|
||||||
* `GC/font_western.bin`: font dumps
|
|
||||||
* `GC/font_japanese.bin`: font dumps
|
|
||||||
* `GC/dsp_coef.bin`: DSP dumps
|
|
||||||
* `GC/dsp_rom.bin`: DSP dumps
|
|
||||||
* `Wii/clientca.pem`: Wii network certificate
|
|
||||||
* `Wii/clientcakey.pem`: Wii network certificate key
|
|
||||||
* `Wii/rootca.pem`: Wii network certificate issuer / CA
|
|
||||||
|
|
||||||
The DSP dumps included with Dolphin have been written from scratch and do not
|
```Usage: convert [options]... [FILE]...
|
||||||
contain any copyrighted material. They should work for most purposes, however
|
|
||||||
some games implement copy protection by checksumming the dumps. You will need
|
|
||||||
to dump the DSP files from a console and replace the default dumps if you want
|
|
||||||
to fix those issues.
|
|
||||||
|
|
||||||
Wii network certificates must be extracted from a Wii IOS. A guide for that can be found [here](https://wiki.dolphin-emu.org/index.php?title=Wii_Network_Guide).
|
Options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
-u USER, --user=USER User folder path, required for temporary processing
|
||||||
|
files.Will be automatically created if this option is
|
||||||
|
not set.
|
||||||
|
-i FILE, --input=FILE
|
||||||
|
Path to disc image FILE.
|
||||||
|
-o FILE, --output=FILE
|
||||||
|
Path to the destination FILE.
|
||||||
|
-f FORMAT, --format=FORMAT
|
||||||
|
Container format to use. Default is RVZ. [iso|gcz|wia|rvz]
|
||||||
|
-s, --scrub Scrub junk data as part of conversion.
|
||||||
|
-b BLOCK_SIZE, --block_size=BLOCK_SIZE
|
||||||
|
Block size for GCZ/WIA/RVZ formats, as an integer.
|
||||||
|
Suggested value for RVZ: 131072 (128 KiB)
|
||||||
|
-c COMPRESSION, --compression=COMPRESSION
|
||||||
|
Compression method to use when converting to WIA/RVZ.
|
||||||
|
Suggested value for RVZ: zstd [none|zstd|bzip|lzma|lzma2]
|
||||||
|
-l COMPRESSION_LEVEL, --compression_level=COMPRESSION_LEVEL
|
||||||
|
Level of compression for the selected method. Ignored
|
||||||
|
if 'none'. Suggested value for zstd: 5
|
||||||
|
```
|
||||||
|
|
||||||
## Folder Structure
|
```
|
||||||
|
Usage: verify [options]...
|
||||||
|
|
||||||
These folders are installed read-only and should not be changed:
|
Options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
-u USER, --user=USER User folder path, required for temporary processing
|
||||||
|
files.Will be automatically created if this option is
|
||||||
|
not set.
|
||||||
|
-i FILE, --input=FILE
|
||||||
|
Path to disc image FILE.
|
||||||
|
-a ALGORITHM, --algorithm=ALGORITHM
|
||||||
|
Optional. Compute and print the digest using the
|
||||||
|
selected algorithm, then exit. [crc32|md5|sha1]
|
||||||
|
```
|
||||||
|
|
||||||
* `GameSettings`: per-game default settings database
|
```
|
||||||
* `GC`: DSP and font dumps
|
Usage: header [options]...
|
||||||
* `Shaders`: post-processing shaders
|
|
||||||
* `Themes`: icon themes for GUI
|
|
||||||
* `Resources`: icons that are theme-agnostic
|
|
||||||
* `Wii`: default Wii NAND contents
|
|
||||||
|
|
||||||
## Packaging and udev
|
Options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
The Data folder contains a udev rule file for the official GameCube controller
|
-i FILE, --input=FILE
|
||||||
adapter and the Mayflash DolphinBar. Package maintainers can use that file in their packages for Dolphin.
|
Path to disc image FILE.
|
||||||
Users compiling Dolphin on Linux can also just copy the file to their udev
|
-b, --block_size Optional. Print the block size of GCZ/WIA/RVZ formats,
|
||||||
rules folder.
|
then exit.
|
||||||
|
-c, --compression Optional. Print the compression method of GCZ/WIA/RVZ
|
||||||
## User Folder Structure
|
formats, then exit.
|
||||||
|
-l, --compression_level
|
||||||
A number of user writeable directories are created for caching purposes or for
|
Optional. Print the level of compression for WIA/RVZ
|
||||||
allowing the user to edit their contents. On macOS and Linux these folders are
|
formats, then exit.
|
||||||
stored in `~/Library/Application Support/Dolphin/` and `~/.dolphin-emu`
|
```
|
||||||
respectively, but can be overwritten by setting the environment variable
|
|
||||||
`DOLPHIN_EMU_USERPATH`. On Windows the user directory is stored in the `My Documents`
|
|
||||||
folder by default, but there are various way to override this behavior:
|
|
||||||
|
|
||||||
* Creating a file called `portable.txt` next to the Dolphin executable will
|
|
||||||
store the user directory in a local directory called "User" next to the
|
|
||||||
Dolphin executable.
|
|
||||||
* If the registry string value `LocalUserConfig` exists in
|
|
||||||
`HKEY_CURRENT_USER/Software/Dolphin Emulator` and has the value **1**,
|
|
||||||
Dolphin will always start in portable mode.
|
|
||||||
* If the registry string value `UserConfigPath` exists in
|
|
||||||
`HKEY_CURRENT_USER/Software/Dolphin Emulator`, the user folders will be
|
|
||||||
stored in the directory given by that string. The other two methods will be
|
|
||||||
prioritized over this setting.
|
|
||||||
|
|
||||||
List of user folders:
|
|
||||||
|
|
||||||
* `Cache`: used to cache the ISO list
|
|
||||||
* `Config`: configuration files
|
|
||||||
* `Dump`: anything dumped from Dolphin
|
|
||||||
* `GameConfig`: additional settings to be applied per-game
|
|
||||||
* `GC`: memory cards and system BIOS
|
|
||||||
* `Load`: custom textures
|
|
||||||
* `Logs`: logs, if enabled
|
|
||||||
* `ScreenShots`: screenshots taken via Dolphin
|
|
||||||
* `StateSaves`: save states
|
|
||||||
* `Wii`: Wii NAND contents
|
|
||||||
|
|
||||||
## Custom Textures
|
|
||||||
|
|
||||||
Custom textures have to be placed in the user directory under
|
|
||||||
`Load/Textures/[GameID]/`. You can find the Game ID by right-clicking a game
|
|
||||||
in the ISO list and selecting "ISO Properties".
|
|
||||||
|
Loading…
Reference in New Issue
Block a user