Skip to content

Commit

Permalink
Various doc files
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmojo committed Nov 1, 2020
1 parent 1aa2ad2 commit 425d57c
Show file tree
Hide file tree
Showing 5 changed files with 117 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ locale
raine

output
opk_data
raine.opk
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"C_Cpp.default.defines": [
"GCW0",
"HAS_CONSOLE",
"SDL"
],
"C_Cpp.default.includePath": [
"F:\\Virtualbox_VMs\\share\\src\\GCW0_include\\SDL"
]
}
40 changes: 40 additions & 0 deletions RG350_controls.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
* COIN 1

SELECT SDLK_ESCAPE

* START 1

START SDLK_RETURN

* MOVES

UP SDLK_UP
DOWN SDLK_DOWN
LEFT SDLK_LEFT
RIGHT SDLK_RIGHT

* BUTTONS

A SDLK_LCTRL
B SDLK_LALT
X SDLK_SPACE
Y SDLK_LSHIFT
L1 SDLK_TAB
R1 SDLK_BACKSPACE

* FRAME SKIP (-/+)

L2 SDLK_PAGEUP
R2 SDLK_PAGEDOWN

* SHOW FPS

R3 SDLK_KP_PERIOD

* STOP

POWER SDLK_HOME

* UNUSED

L3 SDLK_KP_DIVIDE
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ CXX=${target}-g++
INCDIR = -I/usr/${target}/include
STRIP = strip
ifeq ("${target}","gcw0")
CC=/opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc -std=c11
CXX=/opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ -std=c++11 -L/home/philippe/src/GLU/lib -L/home/philippe/src/gl4es/lib -L/home/philippe/src/muparser/lib
CC=/opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc -std=c11 -DGCW0
CXX=/opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ -std=c++11 -DGCW0 -L/home/philippe/src/GLU/lib -L/home/philippe/src/gl4es/lib -L/home/philippe/src/muparser/lib
INCDIR = -I/home/philippe/src/GLU/include -I/home/philippe/src/gl4es/include -I/home/philippe/src/muparser/include
STRIP = /opt/gcw0-toolchain/usr/bin/mipsel-linux-strip
endif
Expand Down
64 changes: 64 additions & 0 deletions raine_help.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
RAINE (680x0 Arcade Emulation) 0.91.10 (c)1998-2020(!) Raine Team

CPU:
USE: Raine <commands> <options> [gamename]|[file]

If you pass a file on the command line, it's assmued to be a neocd image,
either a zip or 7z file containing the files which were in the neocd iso
or a cue file (most usual)
or an iso file, in this case audio files are autodetected

Commands:

-game/-g [gamename] : Select a game to load (see game list)
-rp "path" : use this path as 1st rom path
-gamelist/-gl : Quick list of all games
-gameinfo/-listinfo|-li <gamename> : List info for a game, or all games
-romcheck/-rc <gamename> : Check roms are valid for a game, or all games
-romcheck-full/-rcf <gamename> : like romcheck, but load all the games, very slow now
-help/-h/-?/--help : Show command line options and list games
-joystick/-j [type] : Select joystick type (see list in raine.cfg)
-limitspeed/-l : Limit emulation speed to 60fps
-nogui/-n : Disable GUI (useful for frontends)
-cont : Enable continuous playing
-nocont : Disable continuous playing
-autoload : Enable auto savegame loading
-noautoload : Disable auto savegame loading
-screenx/-sx [width] : Select screen width
-screeny/-sy [height] : Select screen height
-geometry [width][xheight][+posx][+posy] : window placement (implies -nb)
-fullscreen/fs [0/1] : Set fullscreen mode on/off
-nb : No Border
-wb : With Border
-bpp/-depth [number] : Select screen colour depth
-rotate/-r [angle] : Rotate screen 0,90,180 or 270 degrees
-ror : Rotate screen 90 degrees
-rol : Rotate screen 270 degrees
-norotate/-nor : Ignore default rotation in game drivers
-flip/-f [0-3] : Flip screen on none, x, y or x+y axis
-flipx/-fx : Flip screen on x axis
-flipy/-fy : Flip screen on y axis
-noflip/-nof : Ignore default flipping in game drivers
-nc : no curl (disable curl usage to download roms)
-listdsw <gamename> : List dipswitches for a game, or all games
-region n : set region to number n. Pass -1 for values
-source_file/-lsf <gamename> : list source file

Options:

-verbose : Show extra information for romcheck mainly

SDL video options :

-video/-vm n : Video mode : 0 = opengl, 1 = yuv overlays
2 = normal blits
OpenGL options :
-render [0|1] : Renderer : 0 = DrawPixels, 1 = Texture
-dbuf [0|1] : Double buffer : 0 = off, 1 = on
-shader file : use file as shader
-filter [0|1] : opengl filtering, 0 = GL_NEAREST, 1 = GL_LINEAR

Other options are available only from the GUI/config file for now.

Version: 0.91.10
Games: 1069

0 comments on commit 425d57c

Please sign in to comment.