601 lines
18 KiB
C
601 lines
18 KiB
C
/*
|
|
Copyright (C) 1997-2005 ZSNES Team ( zsKnight, _Demo_, pagefault, Nach )
|
|
|
|
http://www.zsnes.com
|
|
http://sourceforge.net/projects/zsnes
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later
|
|
version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifdef __UNIXSDL__
|
|
#include "gblhdr.h"
|
|
#define DIR_SLASH '/'
|
|
#else
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include <unistd.h>
|
|
#define DIR_SLASH '\\'
|
|
#ifdef __WIN32__
|
|
#include <windows.h>
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef __WIN32__
|
|
void ImportDirectX();
|
|
|
|
extern unsigned char KitchenSync, Force60hz;
|
|
|
|
#endif
|
|
|
|
extern unsigned char Palette0, pl1contrl, pl2contrl, MMXSupport, Force8b, ForcePal, GUIClick,
|
|
MouseDis, MusicRelVol, ScreenScale, SoundQuality, StereoSound, V8Mode,
|
|
antienab, cvidmode, debugdisble, debugger, enterpress, vsyncon, DisplayS,
|
|
SnowOn, Triplebufen, SPC700sh, OffBy1Line, DSPDisable, frameskip,
|
|
gammalevel, guioff, romtype, per2exec, scanlines, soundon, spcon,
|
|
showallext, autoloadstate, smallscreenon, autoloadmovie, ZMVZClose,
|
|
ZMVRawDump;
|
|
|
|
extern char *STCart2, fname;
|
|
|
|
void ConvertJoyMap1(), ConvertJoyMap2(), zstart(), makeextension();
|
|
|
|
#define put_line(x) \
|
|
if (lines_out == 22) \
|
|
{ \
|
|
puts(" -- Press Enter to Continue --"); \
|
|
getchar(); \
|
|
lines_out = 0; \
|
|
} \
|
|
puts(x); \
|
|
lines_out++;
|
|
|
|
static void display_help()
|
|
{
|
|
size_t lines_out = 0;
|
|
|
|
put_line("Usage : zsnes [-d,-f #, ... ] <filename.sfc>");
|
|
put_line(" Eg : zsnes -s -r 2 game.sfc");
|
|
put_line("");
|
|
put_line(" -0 Disable Color 0 modification in 8-bit modes");
|
|
put_line(" -1 #/-2 # Select Player 1/2 Input :");
|
|
put_line(" 0 = None 1 = Keyboard 2 = Joystick 3 = Gamepad");
|
|
put_line(" 4 = 4Button 5 = 6Button 6 = Sidewinder ");
|
|
put_line(" -3 Enable triple buffering (disables vsync)");
|
|
#ifdef __WIN32__
|
|
put_line(" -6 Force 60Hz refresh rate");
|
|
#endif
|
|
put_line(" -7 Disable SPC700 speedhack");
|
|
put_line(" -8 Force 8-bit sound");
|
|
put_line(" -9 Off by 1 line fix");
|
|
put_line(" -c Enable full/wide screen (when available)");
|
|
put_line(" -cc Enable small screen (when available)");
|
|
#ifdef __MSDOS__
|
|
put_line(" -d Start with debugger enabled");
|
|
#endif
|
|
put_line(" -dd Disable sound DSP emulation");
|
|
#ifdef __MSDOS__
|
|
put_line(" -e Skip enter key press at the beginning");
|
|
#endif
|
|
put_line(" -f # Enable fixed frame rate [0...9]");
|
|
#ifdef __MSDOS__
|
|
put_line(" -g # Specify gamma correction value [0...15]");
|
|
put_line(" (Only works properly in 8-bit modes)");
|
|
#endif
|
|
put_line(" -h Force HiROM");
|
|
put_line(" -j Disable Mouse (Automatically turns off right mouse click)");
|
|
put_line(" -k # Set Volume Level (0 .. 100)");
|
|
#ifdef __WIN32__
|
|
put_line(" -ks Enable the KitchenSync");
|
|
#endif
|
|
put_line(" -l Force LoROM");
|
|
put_line(" -m Disable GUI (Must specify ROM filename)");
|
|
put_line(" -mc Exit ZSNES when closing a movie (use with -zm)");
|
|
put_line(" -md Dump raw video (use with -zm)");
|
|
put_line(" -n # Enable scanlines (when available)");
|
|
put_line(" Where # is: 1 = full, 2 = 25%, 3 = 50%");
|
|
put_line(" -om Enable MMX support (when available)");
|
|
put_line(" -p # Percentage of instructions to execute [50..120]");
|
|
put_line(" -r # Set Sampling Sound Blaster Sampling Rate & Bit :");
|
|
put_line(" 0 = 8000Hz 1 = 11025Hz 2 = 22050Hz 3 = 44100Hz");
|
|
put_line(" 4 = 16000Hz 5 = 32000Hz 6 = 48000Hz");
|
|
put_line(" -s Enable SPC700/DSP emulation (Sound)");
|
|
put_line(" -sa Show all extensions in GUI (*.*)");
|
|
put_line(" -sn Enable Snowy GUI Background");
|
|
put_line(" -t Force NTSC timing");
|
|
put_line(" -u Force PAL timing");
|
|
put_line(" -v # Select Video Mode :");
|
|
#ifdef __WIN32__
|
|
#define VIDEO_MODE_COUNT 34
|
|
put_line(" 0 = 256x224 R WIN 1 = 256x224 R FULL");
|
|
put_line(" 2 = 512x448 R WIN 3 = 512x448 DR WIN");
|
|
put_line(" 4 = 640x480 S WIN 5 = 640x480 DS WIN");
|
|
put_line(" 6 = 640x480 DR FULL 7 = 640x480 DS FULL");
|
|
put_line(" 8 = 640x480 S FULL 9 = 768x672 R WIN");
|
|
put_line(" 10 = 768x672 DR WIN 11 = 800x600 S WIN");
|
|
put_line(" 12 = 800x600 DS WIN 13 = 800x600 S FULL");
|
|
put_line(" 14 = 800x600 DR FULL 15 = 800x600 DS FULL");
|
|
put_line(" 16 = 1024x768 S WIN 17 = 1024x768 DS WIN");
|
|
put_line(" 18 = 1024x768 S FULL 19 = 1024x768 DR FULL");
|
|
put_line(" 20 = 1024x768 DS FULL 21 = 1024x896 R WIN");
|
|
put_line(" 22 = 1024x896 DR WIN 23 = 1280x960 S WIN");
|
|
put_line(" 24 = 1280x960 DS WIN 25 = 1280x960 S FULL");
|
|
put_line(" 26 = 1280x960 DR FULL 27 = 1280x960 DS FULL");
|
|
put_line(" 28 = 1280x1024 S WIN 29 = 1280x1024 DS WIN");
|
|
put_line(" 30 = 1280x1024 S FULL 31 = 1280x1024 DR FULL");
|
|
put_line(" 32 = 1280x1024 DS FULL 33 = 1600x1200 S WIN");
|
|
put_line(" 34 = 1600x1200 DS WIN 35 = 1600x1200 DR FULL");
|
|
put_line(" 36 = 1600x1200 DS FULL");
|
|
#endif
|
|
#ifdef __UNIXSDL__
|
|
put_line(" 0 = 256x224 R WIN 1 = 256x224 R FULL");
|
|
put_line(" 2 = 512x448 DR WIN 3 = 512x448 DR FULL");
|
|
put_line(" 4 = 640x480 DR FULL 5 = 800x600 DR FULL");
|
|
#ifndef __OPENGL__
|
|
#define VIDEO_MODE_COUNT 5
|
|
#else
|
|
#define VIDEO_MODE_COUNT 21
|
|
put_line(" 6 = 256x224 OR WIN 7 = 512x448 ODR WIN");
|
|
put_line(" 8 = 640x480 ODS FULL 9 = 640x480 ODS WIN");
|
|
put_line(" 10 = 640x576 ODR WIN 11 = 768x672 ODR WIN");
|
|
put_line(" 12 = 800x600 ODS FULL 13 = 800x600 ODS WIN");
|
|
put_line(" 14 = 896x784 ODR WIN 15 = 1024x768 ODS FULL");
|
|
put_line(" 16 = 1024x768 ODS WIN 17 = 1024x896 ODR WIN");
|
|
put_line(" 18 = 1280x960 ODS FULL 19 = 1280x1024 ODR FULL");
|
|
put_line(" 20 = 1600x1200 ODS FULL 21 = VARIABLE ODS WIN");
|
|
#endif
|
|
#endif
|
|
#ifdef __MSDOS__
|
|
#define VIDEO_MODE_COUNT 18
|
|
put_line(" 0 = 256x224x8B (MODEQ) 1 = 256x240x8B (MODEQ)");
|
|
put_line(" 2 = 256x256x8B (MODEQ) 3 = 320x224x8B (MODEX)");
|
|
put_line(" 4 = 320x240x8B (MODEX) 5 = 320x256x8B (MODEX)");
|
|
put_line(" 6 = 640x480x16B (VESA1) 7 = 320x240x8B (VESA2)");
|
|
put_line(" 8 = 320x240x16B (VESA2) 9 = 320x480x8B (VESA2)");
|
|
put_line(" 10 = 320x480x16B (VESA2) 11 = 512x384x8B (VESA2)");
|
|
put_line(" 12 = 512x384x16B (VESA2) 13 = 640x400x8B (VESA2)");
|
|
put_line(" 14 = 640x400x16B (VESA2) 15 = 640x480x8B (VESA2)");
|
|
put_line(" 16 = 640x480x16B (VESA2) 17 = 800x600x8B (VESA2)");
|
|
put_line(" 18 = 800x600x16B (VESA2)");
|
|
#endif
|
|
put_line(" -w Enable vsync (disables triple buffering)");
|
|
put_line(" -y Enable Anti-Aliasing");
|
|
put_line(" -z Disable Stereo Sound");
|
|
put_line(" -zm # Auto load specified movie slot on startup ");
|
|
put_line(" -zs # Auto load specified save state slot on startup ");
|
|
put_line("");
|
|
put_line(" File Formats Supported by GUI : SMC,SFC,SWC,FIG,MGD,UFO,BIN,");
|
|
put_line(" 058,078,1,USA,EUR,JAP,ZIP,JMA");
|
|
put_line("");
|
|
#ifndef __UNIXSDL__
|
|
put_line(" Microsoft-style options (/option) are also accepted");
|
|
#endif
|
|
/*
|
|
#ifndef __MSDOS__
|
|
put_line(" --Netplay Parameters--");
|
|
put_line(" Commandline: /ABCDE <nickname> <fname> <IP Addy>");
|
|
put_line(" nickname = user nickname");
|
|
put_line(" fname = filename w/ full path (if L) or path name (if C)");
|
|
put_line(" IP Addy = IP Address (Client Only)");
|
|
put_line(" A = U (UDP - Recommended if works), T (TCP/IP)");
|
|
put_line(" B = S (Server), C (Client)");
|
|
put_line(" C = C (Chat first), L (load game first)");
|
|
put_line(" D = N (Stay in ZSNES after disconnect), Q (Quit after disconnect)");
|
|
put_line(" E = # of connections (Keep it 2 for now)");
|
|
#ifdef __WIN32__
|
|
put_line(" eg: ZSNESW /UCCN2 nickname d:\\snesroms 202.36.124.28");
|
|
#else
|
|
put_line(" eg: zsnes /UCCN2 nickname /home/zuser/snesroms 202.36.124.28");
|
|
#endif
|
|
#endif
|
|
*/
|
|
|
|
exit(1);
|
|
}
|
|
|
|
static size_t zatoi(const char *str)
|
|
{
|
|
const char *orig_str = str;
|
|
while (*str)
|
|
{
|
|
if (!isdigit(*str++)) { return(~0); }
|
|
}
|
|
return((size_t)atoi(orig_str));
|
|
}
|
|
|
|
static void handle_params(int argc, char *argv[])
|
|
{
|
|
int i;
|
|
|
|
#ifndef __MSDOS__
|
|
|
|
/*
|
|
if (argc >= 5 && argv[1][0] == '/' && strlen(argv[1]) == 6)
|
|
{
|
|
size_t i = 0, j = 0;
|
|
char *strp;
|
|
|
|
if (toupper(argv[1][1]) == 'T') UDPConfig=0;
|
|
|
|
//Next should be # of connections
|
|
|
|
while (argv[2][i]!=0)
|
|
{
|
|
switch (argv[2][i])
|
|
{
|
|
case '_':
|
|
case '-':
|
|
case '^':
|
|
case '=':
|
|
case '+':
|
|
case '[':
|
|
case ']':
|
|
if ( j < 10)
|
|
{
|
|
strp[j] = argv[2][i];
|
|
j++;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
if (((toupper(argv[2][i]) >= 'A') && (toupper(argv[2][i]) <= 'Z')) ||
|
|
((argv[2][i] >= '0') && (argv[2][i] <= '9')))
|
|
{
|
|
if (j < 10)
|
|
{
|
|
strp[j] = argv[2][i];
|
|
j++;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
i++;
|
|
}
|
|
strp[j] = 0;
|
|
|
|
}
|
|
*/
|
|
#endif
|
|
|
|
for (i = 1; i < argc; i++)
|
|
{
|
|
#ifndef __UNIXSDL__
|
|
if (argv[i][0] == '-' || argv[i][0] == '/')
|
|
#else
|
|
if (argv[i][0] == '-')
|
|
#endif
|
|
{
|
|
if (!argv[i][1]) //Nothing but a - or /
|
|
{
|
|
display_help();
|
|
}
|
|
else if (!argv[i][2]) //- followed by a single letter
|
|
{
|
|
switch (tolower(argv[i][1]))
|
|
{
|
|
case '0': //Palette 0 disable
|
|
Palette0 = 1;
|
|
break;
|
|
|
|
case '1': //Player 1 Input
|
|
i++;
|
|
if ((pl1contrl = zatoi(argv[i])) > 6)
|
|
{
|
|
puts("Player Input must be a value from 0 to 6!");
|
|
exit(1);
|
|
}
|
|
ConvertJoyMap1();
|
|
break;
|
|
|
|
case '2': //Player 2 Input
|
|
i++;
|
|
if ((pl2contrl = zatoi(argv[i])) > 6)
|
|
{
|
|
puts("Player Input must be a value from 0 to 6!");
|
|
exit(1);
|
|
}
|
|
ConvertJoyMap2();
|
|
break;
|
|
|
|
case '3': //Enable triple buffering
|
|
vsyncon = 0;
|
|
Triplebufen = 1;
|
|
break;
|
|
|
|
#ifdef __WIN32__
|
|
case '6': //Force 60Hz
|
|
Force60hz = 1;
|
|
break;
|
|
#endif
|
|
|
|
case '7': //SPC700 speed hack disable
|
|
SPC700sh = 1;
|
|
break;
|
|
|
|
case '8': //Force 8-bit sound
|
|
Force8b = 1;
|
|
break;
|
|
|
|
case '9': //Off by 1 line
|
|
OffBy1Line = 1;
|
|
break;
|
|
|
|
case 'c': //Enable full screen (when available)
|
|
ScreenScale = 1;
|
|
break;
|
|
|
|
case 'd': //Start with debugger enabled
|
|
debugger = 1;
|
|
debugdisble = 0;
|
|
break;
|
|
|
|
case 'e': //Skip enter key press at the beginning
|
|
enterpress = 1;
|
|
break;
|
|
|
|
case 'f': //Enable fixed frame rate
|
|
i++;
|
|
if ((frameskip = zatoi(argv[i])+1) > 10)
|
|
{
|
|
puts("Frame Skip must be a value of 0 to 9!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 'g': //Specify gamma correction value
|
|
i++;
|
|
if ((gammalevel = zatoi(argv[i])) > 15)
|
|
{
|
|
puts("Gamma Correction Level must be a value of 0 to 15!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 'h': //Force HiROM
|
|
romtype = 2;
|
|
break;
|
|
|
|
case 'j': //Disable Mouse
|
|
GUIClick = 0;
|
|
MouseDis = 1;
|
|
break;
|
|
|
|
case 'k': //Set Volume Level
|
|
i++;
|
|
if ((MusicRelVol = zatoi(argv[i])) > 100)
|
|
{
|
|
puts("Volume must be a value from 0 to 100!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 'l': //Force LoROM
|
|
romtype = 1;
|
|
break;
|
|
|
|
case 'm': //Disables GUI
|
|
guioff = 1;
|
|
break;
|
|
|
|
case 'n': //Enable scanlines (when available)
|
|
i++;
|
|
if ((scanlines = zatoi(argv[i])) > 3)
|
|
{
|
|
puts("Scanlines must be a value 1 to 3!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 'o': //Enable MMX support
|
|
MMXSupport = 0;
|
|
break;
|
|
|
|
case 'p': //Percentage of instructions to execute
|
|
i++;
|
|
per2exec = zatoi(argv[i]);
|
|
if (per2exec > 150 || per2exec < 50)
|
|
{
|
|
puts("Percentage of instructions to execute must be a value from 50 to 150!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 'r': //Set sampling rate
|
|
i++;
|
|
if ((SoundQuality = zatoi(argv[i])) > 6)
|
|
{
|
|
puts("Sound Sampling Rate must be a value of 0 to 6!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 's': //Enable SPC700/DSP emulation
|
|
spcon = 1;
|
|
soundon = 1;
|
|
break;
|
|
|
|
case 't': //Force NTSC
|
|
ForcePal = 1;
|
|
break;
|
|
|
|
case 'u': //Force Pal
|
|
ForcePal = 2;
|
|
break;
|
|
|
|
case 'v': //Select Video Mode
|
|
i++;
|
|
if ((cvidmode = zatoi(argv[i])) > VIDEO_MODE_COUNT)
|
|
{
|
|
puts("Invalid Video Mode!");
|
|
exit(1);
|
|
}
|
|
break;
|
|
|
|
case 'w': //Enable vsync
|
|
Triplebufen = 0;
|
|
vsyncon = 1;
|
|
break;
|
|
|
|
case 'y': //Enable anti-aliasing
|
|
antienab = 1;
|
|
break;
|
|
|
|
case 'z': //Disable stereo sound
|
|
StereoSound = 0;
|
|
break;
|
|
|
|
default:
|
|
display_help();
|
|
break;
|
|
}
|
|
}
|
|
else if (!argv[i][3]) //- followed by a two letters
|
|
{
|
|
if (tolower(argv[i][1]) == 'c' && tolower(argv[i][2]) == 'c') //Enable small screen
|
|
{
|
|
smallscreenon = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 'd' && tolower(argv[i][2]) == 'd') //Disable sound DSP emulation
|
|
{
|
|
DSPDisable = 1;
|
|
}
|
|
|
|
#ifdef __WIN32__
|
|
else if (tolower(argv[i][1]) == 'k' && tolower(argv[i][2]) == 's') //Enable KitchenSync
|
|
{
|
|
KitchenSync = 1;
|
|
}
|
|
#endif
|
|
|
|
else if (tolower(argv[i][1]) == 'm' && argv[i][2] == 'c') //Close ZSNES when ZMV closes
|
|
{
|
|
ZMVZClose = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 'm' && argv[i][2] == 'd') //Dump raw vid with ZMV
|
|
{
|
|
ZMVRawDump = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 'o' && tolower(argv[i][2]) == 'm') //Enable MMX support
|
|
{
|
|
MMXSupport = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 's' && tolower(argv[i][2]) == 'p') //Display sound information
|
|
{
|
|
DisplayS = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 's' && tolower(argv[i][2]) == 'a') //Show all extensions in GUI
|
|
{
|
|
showallext = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 's' && tolower(argv[i][2]) == 'n') //Enable Snowy GUI Background
|
|
{
|
|
SnowOn = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 'v' && argv[i][2] == '8') //V8 Mode
|
|
{
|
|
V8Mode = 1;
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 'z' && argv[i][2] == 's') //Autoload save state
|
|
{
|
|
i++;
|
|
if ((autoloadstate = zatoi(argv[i])+1) > 10)
|
|
{
|
|
puts("State load position must be a value of 0 to 9!");
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
else if (tolower(argv[i][1]) == 'z' && argv[i][2] == 'm') //Autoload movie
|
|
{
|
|
i++;
|
|
if ((autoloadmovie = zatoi(argv[i])+1) > 10)
|
|
{
|
|
puts("Movie load position must be a value of 0 to 9!");
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
else
|
|
{
|
|
display_help();
|
|
break;
|
|
}
|
|
}
|
|
else //- followed by more than 2 letters
|
|
{
|
|
display_help();
|
|
}
|
|
}
|
|
else //Param with no - or / prefix
|
|
{
|
|
char *fvar = &fname;
|
|
fvar[0] = strlen(argv[i]);
|
|
strncpy(&fvar[1],argv[i],127);
|
|
makeextension();
|
|
|
|
STCart2 = argv[i+1]; //Sufami Turbo second cart
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int argc;
|
|
char **argv;
|
|
|
|
void ccmdline()
|
|
{
|
|
handle_params(argc, argv);
|
|
}
|
|
|
|
#ifdef __WIN32__
|
|
extern HINSTANCE hInst;
|
|
int PASCAL WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
|
|
{
|
|
argc = __argc;
|
|
argv = __argv;
|
|
|
|
hInst=hInstance;
|
|
ImportDirectX();
|
|
|
|
zstart();
|
|
return(0);
|
|
}
|
|
|
|
#else
|
|
|
|
int main(int zargc, char *zargv[])
|
|
{
|
|
argc = zargc;
|
|
argv = zargv;
|
|
|
|
#ifdef __UNIXSDL__
|
|
handle_params(zargc, zargv);
|
|
#endif
|
|
|
|
zstart();
|
|
return(0);
|
|
}
|
|
#endif
|