using new sdl_haa library
[drnoksnes] / language.h
1 /*******************************************************************************
2   Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3  
4   (c) Copyright 1996 - 2002 Gary Henderson (gary.henderson@ntlworld.com) and
5                             Jerremy Koot (jkoot@snes9x.com)
6
7   (c) Copyright 2001 - 2004 John Weidman (jweidman@slip.net)
8
9   (c) Copyright 2002 - 2004 Brad Jorsch (anomie@users.sourceforge.net),
10                             funkyass (funkyass@spam.shaw.ca),
11                             Joel Yliluoma (http://iki.fi/bisqwit/)
12                             Kris Bleakley (codeviolation@hotmail.com),
13                             Matthew Kendora,
14                             Nach (n-a-c-h@users.sourceforge.net),
15                             Peter Bortas (peter@bortas.org) and
16                             zones (kasumitokoduck@yahoo.com)
17
18   C4 x86 assembler and some C emulation code
19   (c) Copyright 2000 - 2003 zsKnight (zsknight@zsnes.com),
20                             _Demo_ (_demo_@zsnes.com), and Nach
21
22   C4 C++ code
23   (c) Copyright 2003 Brad Jorsch
24
25   DSP-1 emulator code
26   (c) Copyright 1998 - 2004 Ivar (ivar@snes9x.com), _Demo_, Gary Henderson,
27                             John Weidman, neviksti (neviksti@hotmail.com),
28                             Kris Bleakley, Andreas Naive
29
30   DSP-2 emulator code
31   (c) Copyright 2003 Kris Bleakley, John Weidman, neviksti, Matthew Kendora, and
32                      Lord Nightmare (lord_nightmare@users.sourceforge.net
33
34   OBC1 emulator code
35   (c) Copyright 2001 - 2004 zsKnight, pagefault (pagefault@zsnes.com) and
36                             Kris Bleakley
37   Ported from x86 assembler to C by sanmaiwashi
38
39   SPC7110 and RTC C++ emulator code
40   (c) Copyright 2002 Matthew Kendora with research by
41                      zsKnight, John Weidman, and Dark Force
42
43   S-DD1 C emulator code
44   (c) Copyright 2003 Brad Jorsch with research by
45                      Andreas Naive and John Weidman
46  
47   S-RTC C emulator code
48   (c) Copyright 2001 John Weidman
49   
50   ST010 C++ emulator code
51   (c) Copyright 2003 Feather, Kris Bleakley, John Weidman and Matthew Kendora
52
53   Super FX x86 assembler emulator code 
54   (c) Copyright 1998 - 2003 zsKnight, _Demo_, and pagefault 
55
56   Super FX C emulator code 
57   (c) Copyright 1997 - 1999 Ivar, Gary Henderson and John Weidman
58
59
60   SH assembler code partly based on x86 assembler code
61   (c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se) 
62
63  
64   Specific ports contains the works of other authors. See headers in
65   individual files.
66  
67   Snes9x homepage: http://www.snes9x.com
68  
69   Permission to use, copy, modify and distribute Snes9x in both binary and
70   source form, for non-commercial purposes, is hereby granted without fee,
71   providing that this license information and copyright notice appear with
72   all copies and any derived work.
73  
74   This software is provided 'as-is', without any express or implied
75   warranty. In no event shall the authors be held liable for any damages
76   arising from the use of this software.
77  
78   Snes9x is freeware for PERSONAL USE only. Commercial users should
79   seek permission of the copyright holders first. Commercial use includes
80   charging money for Snes9x or software derived from Snes9x.
81  
82   The copyright holders request that bug fixes and improvements to the code
83   should be forwarded to them so everyone can benefit from the modifications
84   in future versions.
85  
86   Super NES and Super Nintendo Entertainment System are trademarks of
87   Nintendo Co., Limited and its subsidiary companies.
88 *******************************************************************************/
89
90 /* This is where all the GUI text strings will eventually end up */
91
92 #define WINDOW_TITLE "Snes9X v%s for Windows(NK Custom)"
93
94 #define MY_REG_KEY   "Software\\Emulators\\Snes9X"
95
96 #define REG_KEY_VER  "1.31"
97
98 #define DISCLAIMER_TEXT        "Snes9X v%s for Windows.\r\n" \
99         "(c) Copyright 1996 - 2002 Gary Henderson and Jerremy Koot.\r\n" \
100         "(c) Copyright 2001- 2004 John Weidman.\r\n" \
101         "(c) Copyright 2002 - 2004 blip, Brad Jorsch, funkyass, Joel Yliluoma, Kris Bleakley, Matthew Kendora, Nach, Peter Bortas, zones.\r\n\r\n" \
102         "Snes9X is a Super Nintendo Entertainment System\r\n" \
103                 "emulator that allows you to play most games designed\r\n" \
104                 "for the SNES on your PC.\r\n\r\n" \
105                 "Please visit http://www.snes9x.com for\r\n" \
106                 "up-to-the-minute information and help on Snes9X.\r\n\r\n" \
107                 "Nintendo is a trade mark."
108
109
110 #define APP_NAME "Snes9x"
111 /* possible global strings */
112 #define SNES9X_INFO "Snes9x: Information"
113 #define SNES9X_WARN "Snes9x: WARNING!"
114 #define SNES9X_DXS "Snes9X: DirectSound"
115 #define SNES9X_SNDQ "Snes9X: Sound CPU Question"
116 #define SNES9X_NP_ERROR "Snes9X: NetPlay Error"
117 #define BUTTON_OK "&OK"
118 #define BUTTON_CANCEL "&Cancel"
119
120 /* Gamepad Dialog Strings */
121 #define INPUTCONFIG_TITLE "Input Configuration"
122 #define INPUTCONFIG_JPTOGGLE "Enable"
123 #define INPUTCONFIG_DIAGTOGGLE "Toggle Diagonals"
124 /* #define INPUTCONFIG_OK "&OK" */
125 /* #define INPUTCONFIG_CANCEL "&Cancel" */
126 #define INPUTCONFIG_JPCOMBO "Joypad #%d"
127 #define INPUTCONFIG_LABEL_UP "Up"
128 #define INPUTCONFIG_LABEL_DOWN "Down"
129 #define INPUTCONFIG_LABEL_LEFT "Left"
130 #define INPUTCONFIG_LABEL_RIGHT "Right"
131 #define INPUTCONFIG_LABEL_A "A"
132 #define INPUTCONFIG_LABEL_B "B"
133 #define INPUTCONFIG_LABEL_X "X"
134 #define INPUTCONFIG_LABEL_Y "Y"
135 #define INPUTCONFIG_LABEL_L "L"
136 #define INPUTCONFIG_LABEL_R "R"
137 #define INPUTCONFIG_LABEL_START "Start"
138 #define INPUTCONFIG_LABEL_SELECT "Select"
139 #define INPUTCONFIG_LABEL_UPLEFT "Up Left"
140 #define INPUTCONFIG_LABEL_UPRIGHT "Up Right"
141 #define INPUTCONFIG_LABEL_DOWNRIGHT "Down Right"
142 #define INPUTCONFIG_LABEL_DOWNLEFT "Down Left"
143 #define INPUTCONFIG_LABEL_BLUE "Blue means the current key/button is already mapped; Red means it's a Snes9x/Windows reserved key."
144
145 /* gaming buttons and axises */
146 #define GAMEDEVICE_JOYNUMPREFIX "(J%d)"
147 #define GAMEDEVICE_JOYBUTPREFIX "#[%d]"
148 #define GAMEDEVICE_XNEG "Left"
149 #define GAMEDEVICE_XPOS "Right"
150 #define GAMEDEVICE_YPOS "Up"
151 #define GAMEDEVICE_YNEG "Down"
152 #define GAMEDEVICE_POVLEFT "POV Left"
153 #define GAMEDEVICE_POVRIGHT "POV Right"
154 #define GAMEDEVICE_POVUP "POV Up"
155 #define GAMEDEVICE_POVDOWN "POV Down" 
156 #define GAMEDEVICE_POVDNLEFT "POV Dn Left" 
157 #define GAMEDEVICE_POVDNRIGHT "POV Dn Right" 
158 #define GAMEDEVICE_POVUPLEFT  "POV Up Left" 
159 #define GAMEDEVICE_POVUPRIGHT "POV Up Right" 
160 #define GAMEDEVICE_ZPOS "Z Up"
161 #define GAMEDEVICE_ZNEG "Z Down"
162 #define GAMEDEVICE_RPOS "R Up"
163 #define GAMEDEVICE_RNEG "R Down"
164 #define GAMEDEVICE_UPOS "U Up"
165 #define GAMEDEVICE_UNEG "U Down"
166 #define GAMEDEVICE_VPOS "V Up"
167 #define GAMEDEVICE_VNEG "V Down"
168 #define GAMEDEVICE_BUTTON "Button %d"
169
170 /* gaming general */
171 #define GAMEDEVICE_DISABLED "Disabled"
172
173 /* gaming keys */
174 #define GAMEDEVICE_KEY "#%d"
175 #define GAMEDEVICE_NUMPADPREFIX "Numpad-%c"
176 #define GAMEDEVICE_VK_TAB "Tab"
177 #define GAMEDEVICE_VK_BACK "Backspace"
178 #define GAMEDEVICE_VK_CLEAR "Delete"
179 #define GAMEDEVICE_VK_RETURN "Enter"
180 #define GAMEDEVICE_VK_LSHIFT "LShift"
181 #define GAMEDEVICE_VK_RSHIFT "RShift"
182 #define GAMEDEVICE_VK_LCONTROL "LCTRL"
183 #define GAMEDEVICE_VK_RCONTROL "RCTRL"
184 #define GAMEDEVICE_VK_LMENU "LAlt"
185 #define GAMEDEVICE_VK_RMENU "RAlt"
186 #define GAMEDEVICE_VK_PAUSE "Pause"
187 #define GAMEDEVICE_VK_CAPITAL "Capslock"
188 #define GAMEDEVICE_VK_ESCAPE "Disabled"
189 #define GAMEDEVICE_VK_SPACE "Space"
190 #define GAMEDEVICE_VK_PRIOR "PgUp"
191 #define GAMEDEVICE_VK_NEXT "PgDn"
192 #define GAMEDEVICE_VK_HOME "Home"
193 #define GAMEDEVICE_VK_END "End"
194 #define GAMEDEVICE_VK_LEFT "Left"
195 #define GAMEDEVICE_VK_RIGHT "Right"
196 #define GAMEDEVICE_VK_UP "Up"
197 #define GAMEDEVICE_VK_DOWN "Down"
198 #define GAMEDEVICE_VK_SELECT "Select"
199 #define GAMEDEVICE_VK_PRINT "Print"
200 #define GAMEDEVICE_VK_EXECUTE "Execute"
201 #define GAMEDEVICE_VK_SNAPSHOT "SnapShot"
202 #define GAMEDEVICE_VK_INSERT "Insert"
203 #define GAMEDEVICE_VK_DELETE "Delete"
204 #define GAMEDEVICE_VK_HELP "Help"
205 #define GAMEDEVICE_VK_LWIN "LWinKey"
206 #define GAMEDEVICE_VK_RWIN "RWinKey"
207 #define GAMEDEVICE_VK_APPS "AppKey"
208 #define GAMEDEVICE_VK_MULTIPLY "Numpad *"
209 #define GAMEDEVICE_VK_ADD "Numpad +"
210 #define GAMEDEVICE_VK_SEPARATOR "\\"
211 #define GAMEDEVICE_VK_OEM_1 "Semi-Colon"
212 #define GAMEDEVICE_VK_OEM_7 "Apostrophe"
213 #define GAMEDEVICE_VK_OEM_COMMA "Comma" 
214 #define GAMEDEVICE_VK_OEM_PERIOD "Period" 
215 #define GAMEDEVICE_VK_SUBTRACT "Numpad -"
216 #define GAMEDEVICE_VK_DECIMAL "Numpad ."
217 #define GAMEDEVICE_VK_DIVIDE "Numpad /"
218 #define GAMEDEVICE_VK_NUMLOCK "Num-lock"
219 #define GAMEDEVICE_VK_SCROLL "Scroll-lock"
220
221 /* evil things I found in WinProc */
222
223 #define WINPROC_TURBOMODE_ON "Turbo Mode Activated"
224 #define WINPROC_TURBOMODE_OFF "Turbo Mode Deactivated"
225 #define WINPROC_TURBOMODE_TEXT "Turbo Mode"
226 #define WINPROC_HDMA_TEXT "HDMA emulation"
227 #define WINPROC_BG1 "BG#1" /* Background Layers */
228 #define WINPROC_BG2 "BG#2"
229 #define WINPROC_BG3 "BG#3"
230 #define WINPROC_BG4 "BG#4"
231 #define WINPROC_SPRITES "Sprites"
232 #define WINPROC_PADSWAP "Joypad swapping" 
233 #define WINPROC_CONTROLERS0 "Multiplayer 5 on #0"
234 #define WINPROC_CONTROLERS1 "Joypad on #0"
235 #define WINPROC_CONTROLERS2 "Mouse on #1"
236 #define WINPROC_CONTROLERS3 "Mouse on #0"
237 #define WINPROC_CONTROLERS4 "Superscope on #1"
238 #define WINPROC_CONTROLERS5 "Justifier 1 on #1"
239 #define WINPROC_CONTROLERS6 "Justifier 2 on #1"
240 #define WINPROC_BGHACK "Background layering hack"
241 #define WINPROC_MODE7INTER "Mode 7 Interpolation"
242 #define WINPROC_TRANSPARENCY "Transparency effects"
243 #define WINPROC_CLIPWIN "Graphic clip windows"
244 #define WINPROC_PAUSE "Pause"
245 #define WINPROC_EMUFRAMETIME "Emulated frame time: %dms"
246 #define WINPROC_AUTOSKIP "Auto Frame Skip"
247 #define WINPROC_FRAMESKIP "Frame skip: %d"
248 #define WINPROC_TURBO_R_ON "Turbo R Activated"
249 #define WINPROC_TURBO_R_OFF "Turbo R Deactivated"
250 #define WINPROC_TURBO_L_ON "Turbo L Activated"
251 #define WINPROC_TURBO_L_OFF "Turbo L Deactivated"
252 #define WINPROC_TURBO_X_ON "Turbo X Activated"
253 #define WINPROC_TURBO_X_OFF "Turbo X Deactivated"
254 #define WINPROC_TURBO_Y_ON "Turbo Y Activated"
255 #define WINPROC_TURBO_Y_OFF "Turbo Y Deactivated"
256 #define WINPROC_TURBO_A_ON "Turbo A Activated"
257 #define WINPROC_TURBO_A_OFF "Turbo A Deactivated"
258 #define WINPROC_TURBO_B_ON "Turbo B Activated"
259 #define WINPROC_TURBO_B_OFF "Turbo B Deactivated"
260 #define WINPROC_TURBO_SEL_ON "Turbo Select Activated"
261 #define WINPROC_TURBO_SEL_OFF "Turbo Select Deactivated"
262 #define WINPROC_TURBO_START_ON "Turbo Start Activated"
263 #define WINPROC_TURBO_START_OFF "Turbo Start Deactivated"
264 #define WINPROC_FILTER_RESTART "You will need to restart Snes9x before the output image\nprocessing option change will take effect."
265 #define WINPROC_DISCONNECT "Disconnect from the NetPlay server first."
266 #define WINPROC_NET_RESTART "Your game will be reset after the ROM has been sent due to\nyour 'Sync Using Reset Game' setting.\n\n"
267 #define WINPROC_INTERPOLATED_SND "Interpolated sound"
268 #define WINPROC_SYNC_SND "Sync sound"
269 #define WINPROC_SND_OFF "Disabling the sound CPU emulation will help to improve\nemulation speed but you will not hear any sound effects\nor music. If you later want to re-enable the sound CPU\nemulation you will need to reset your game before it will\ntake effect.\n\nAre you sure this is what you want?"
270 #define WINPROC_SND_RESTART "You will need to reset your game or load another one\nbefore enabling the sound CPU will take effect."
271
272 /* Emulator Settings */
273
274 #define EMUSET_TITLE "Emulation Settings"
275 #define EMUSET_LABEL_FREEZE "Freeze Folder Directory"
276 #define EMUSET_BROWSE "&Browse..."
277 #define EMUSET_LABEL_ASRAM "Auto-Save S-RAM"
278 #define EMUSET_LABEL_ASRAM_TEXT "seconds after last change (0 disables auto-save)"
279 #define EMUSET_LABEL_SMAX "Skip at most"
280 #define EMUSET_LABEL_SMAX_TEXT "frames in auto-frame rate mode"
281 #define EMUSET_LABEL_STURBO "Skip Rendering"
282 #define EMUSET_LABEL_STURBO_TEXT "frames in Turbo mode"
283 #define EMUSET_TOGGLE_TURBO "Tab Toggles Turbo"
284
285 /* Netplay Options */
286
287 #define NPOPT_TITLE "Netplay Options"
288 #define NPOPT_LABEL_PORTNUM "Socket Port Number"
289 #define NPOPT_LABEL_PAUSEINTERVAL "Ask Server to Pause when"
290 #define NPOPT_LABEL_PAUSEINTERVAL_TEXT "frames behind"
291 #define NPOPT_LABEL_MAXSKIP "Maximum Frame Rate Skip"
292 #define NPOPT_SYNCBYRESET "Sync By Reset"
293 #define NPOPT_SENDROM "Send ROM Image to Client on Connect"
294 #define NPOPT_ACTASSERVER "Act As Server"
295 #define NPOPT_PORTNUMBLOCK "Port Settings"
296 #define NPOPT_CLIENTSETTINGSBLOCK "Client Settings"
297 #define NPOPT_SERVERSETTINGSBLOCK "Server Settings"
298
299 /* Netplay Connect */
300
301
302 #define NPCON_TITLE "Connect to Server"
303 #define NPCON_LABEL_SERVERADDY "Server Address"
304 #define NPCON_LABEL_PORTNUM "Port Number"
305 #define NPCON_CLEARHISTORY "Clear History"
306
307
308 /* Movie Messages */
309
310 #define MOVIE_INFO_REPLAY "Movie replay"
311 #define MOVIE_INFO_RECORD "Movie record"
312 #define MOVIE_INFO_RERECORD "Movie re-record"
313 #define MOVIE_INFO_REWIND "Movie rewind"
314 #define MOVIE_INFO_STOP "Movie stop"
315 #define MOVIE_INFO_END "Movie end"
316 #define MOVIE_INFO_RECORDING_ENABLED "Recording enabled"
317 #define MOVIE_INFO_RECORDING_DISABLED "Recording disabled"
318 #define MOVIE_ERR_SNAPSHOT_WRONG_MOVIE "Snapshot not from this movie"
319 #define MOVIE_ERR_SNAPSHOT_NOT_MOVIE "Not a movie snapshot"
320 #define MOVIE_ERR_COULD_NOT_OPEN "Could not open movie file."
321 #define MOVIE_ERR_NOT_FOUND "File not found."
322 #define MOVIE_ERR_WRONG_FORMAT "File is wrong format."
323 #define MOVIE_ERR_WRONG_VERSION "File is wrong version."
324
325
326 /*  AVI Messages */
327
328 #define AVI_CONFIGURATION_CHANGED "AVI recording stopped (configuration settings changed)."