home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Phoenix Heaven Sunny 2
/
APPARE2.BIN
/
oh_towns
/
install
/
instgame.c
< prev
next >
Wrap
Text File
|
1995-06-20
|
2KB
|
94 lines
/*************************************************************************
* [ゲーム]インストール処理
*************************************************************************/
char *get_inst_game_mnu()
{
char *mnu;
if ( (mnu = MNU_open()) == NULL )
return (NULL);
MNU_datAdd( mnu, 0, 'A', Rom16x16, 0, "install_airhockey" , 0, "AIR HOCKEY" );
MNU_datAdd( mnu, 0, 'D', Rom16x16, 0, "install_drops" , 0, "Drops" );
MNU_datAdd( mnu, 0, 'L', Rom16x16, 0, "install_luckey" , 0, "LUCKY GAME" );
MNU_datAdd( mnu, 0, 'M', Rom16x16, 0, "install_mitamura" , 0, "MITAMURAショートプログラム集");
MNU_datAdd( mnu, 0, 'T', Rom16x16, 0, "install_mayor" , 0, "都市シミュレ-ションMayor" );
MNU_setPosition(mnu,-1);
return (mnu);
}
int install_airhockey()
{
static char *buf[5] =
{
"softname \"AIR HOCKEY\"",
"instfile /OH_TOWNS/AHOCKEY \"*.*\"",
"help AHOCKEY.DOC",
"item \"AIR HOCKEY\",AHOCKEY.EXP,,2",
NULL
};
return install_exec(buf);
}
int install_drops()
{
static char *buf[5] =
{
"softname \"Drops\"",
"instfile /OH_TOWNS/DROPS \"*.*\"",
"help DROPS.TXT",
"item \"Drops\",BALL.EXP,,2",
NULL
};
return install_exec(buf);
}
int install_mayor()
{
static char *buf[5] =
{
"softname \"「都市シミュレーション Mayor」\"",
"instfile /OH_TOWNS/MAYOR \"*.*\"",
"help MAYOR.MAN",
"item \"都市シミュレーション Mayor\",MAYOR.EXP,,2",
NULL
};
return install_exec(buf);
}
int install_luckey()
{
static char *buf[6] =
{
"softname \"LUCKY GAME \"",
"instfile /OH_TOWNS/LUCK \"*.*\"",
"help README.DOC",
"item \"LUCKY GAME/386\",LUCK386.EXP,,2",
"item \"LUCKY GAME/486\",LUCK486.EXP,,2",
NULL
};
return install_exec(buf);
}
int install_mitamura()
{
static char *buf[5] =
{
"softname \"MITAMURAショートプログラム集\"",
"instfile /OH_TOWNS/MITAMURA \"*.*\"",
"help README.DOC",
"item \"MITAMURAショートプログラム集\",STARTUP.EXP,,2",
NULL
};
return install_exec(buf);
}