Check in of Cyberstella 1.2.1

- Completely removed the built-in games
- Renamed "Readme.txt" into "CyberstellaTodo.txt" and moved it into the root of the stella project.
- Added a few initilal Cyberstella informations to changes.txt. The WIN32 version now joins this log.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@102 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
gunfight 2002-05-16 10:08:18 +00:00
parent 367738ecd2
commit 9dfa788040
4 changed files with 40 additions and 18 deletions

View File

@ -12,6 +12,14 @@
Release History Release History
=============================================================================== ===============================================================================
Cyberstella 1.2.1 (May 16, 2002)
* Removed the built-in games until some legal stuff is sorted out
Cyberstella 1.2 (May 10, 2002)
* Initial release of a new WIN 32 port of Stella
DOS 1.2 to DOS 1.2.1: (April 28, 2002) DOS 1.2 to DOS 1.2.1: (April 28, 2002)
* Fixed a bug with control keys being confused with the pause key * Fixed a bug with control keys being confused with the pause key

View File

@ -1,7 +1,5 @@
Cyberstella V1.2 Cyberstella V1.2
Currently Open Todos:
Urgent: Urgent:
- Reasonably reduce the appearance of advertisment MessgageBoxes. - Reasonably reduce the appearance of advertisment MessgageBoxes.
- Check if games are running without stella.pro (?!?) - Check if games are running without stella.pro (?!?)

View File

@ -449,6 +449,14 @@ SOURCE=..\..\emucore\Control.hxx
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\..\emucore\Deserializer.cxx
# End Source File
# Begin Source File
SOURCE=..\..\emucore\Deserializer.hxx
# End Source File
# Begin Source File
SOURCE=..\..\emucore\Driving.cxx SOURCE=..\..\emucore\Driving.cxx
# End Source File # End Source File
# Begin Source File # Begin Source File
@ -537,6 +545,14 @@ SOURCE=..\..\emucore\Random.hxx
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\..\emucore\Serializer.cxx
# End Source File
# Begin Source File
SOURCE=..\..\emucore\Serializer.hxx
# End Source File
# Begin Source File
SOURCE=..\..\emucore\Sound.cxx SOURCE=..\..\emucore\Sound.cxx
# End Source File # End Source File
# Begin Source File # Begin Source File
@ -658,15 +674,15 @@ SOURCE=..\..\emucore\m6502\src\bspf\src\bspf.hxx
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\..\..\CyberstellaTodo.txt
# End Source File
# Begin Source File
SOURCE=..\..\build\M6502Hi.ins SOURCE=..\..\build\M6502Hi.ins
# End Source File # End Source File
# Begin Source File # Begin Source File
SOURCE=..\..\build\M6502Low.ins SOURCE=..\..\build\M6502Low.ins
# End Source File # End Source File
# Begin Source File
SOURCE=.\ReadMe.txt
# End Source File
# End Target # End Target
# End Project # End Project

View File

@ -215,25 +215,25 @@ LRESULT CCyberstellaView::displayNote(WPARAM wParam, LPARAM lParam)
void CCyberstellaView::OnGunfight() void CCyberstellaView::OnGunfight()
{ {
playRom(IDG_GUNFIGHT); playRom(IDG_GUNFIGHT);
MessageBox("If you'd like to play Gunfight on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); //MessageBox("If you'd like to play Gunfight on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK);
} }
void CCyberstellaView::OnJammed() void CCyberstellaView::OnJammed()
{ {
playRom(IDG_JAMMED); playRom(IDG_JAMMED);
MessageBox("If you'd like to play Jammed on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); //MessageBox("If you'd like to play Jammed on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK);
} }
void CCyberstellaView::OnQb() void CCyberstellaView::OnQb()
{ {
playRom(IDG_QB); playRom(IDG_QB);
MessageBox("If you'd like to play Qb on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); //MessageBox("If you'd like to play Qb on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK);
} }
void CCyberstellaView::OnThrust() void CCyberstellaView::OnThrust()
{ {
playRom(IDG_THRUST); playRom(IDG_THRUST);
MessageBox("If you'd like to play Thrust on a real VCS, you can order a cartridge for only $25\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); //MessageBox("If you'd like to play Thrust on a real VCS, you can order a cartridge for only $25\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK);
} }
void CCyberstellaView::playRom(LONG gameID) void CCyberstellaView::playRom(LONG gameID)
@ -286,8 +286,8 @@ void CCyberstellaView::playRom(LONG gameID)
for(int i=0; i<dwActualSize; i++) for(int i=0; i<dwActualSize; i++)
{ {
pImage[i] = gunfight[i]^(pszFileName[i%strlen(pszFileName)]); pImage[i] = gunfight[i]^(pszFileName[i%strlen(pszFileName)]);
} }*/
break;*/ break;
} }
case IDG_JAMMED: case IDG_JAMMED:
{ {
@ -299,8 +299,8 @@ void CCyberstellaView::playRom(LONG gameID)
for(int i=0; i<dwActualSize; i++) for(int i=0; i<dwActualSize; i++)
{ {
pImage[i] = jammed[i]^(pszFileName[i%strlen(pszFileName)]); pImage[i] = jammed[i]^(pszFileName[i%strlen(pszFileName)]);
} }*/
break;*/ break;
} }
case IDG_QB: case IDG_QB:
{ {
@ -312,8 +312,8 @@ void CCyberstellaView::playRom(LONG gameID)
for(int i=0; i<dwActualSize; i++) for(int i=0; i<dwActualSize; i++)
{ {
pImage[i] = qb[i]^(pszFileName[i%strlen(pszFileName)]); pImage[i] = qb[i]^(pszFileName[i%strlen(pszFileName)]);
} }*/
break;*/ break;
} }
case IDG_THRUST: case IDG_THRUST:
{ {
@ -325,8 +325,8 @@ void CCyberstellaView::playRom(LONG gameID)
for(int i=0; i<dwActualSize; i++) for(int i=0; i<dwActualSize; i++)
{ {
pImage[i] = thrust[i]^(pszFileName[i%strlen(pszFileName)]); pImage[i] = thrust[i]^(pszFileName[i%strlen(pszFileName)]);
} }*/
break;*/ break;
} }
default: default:
{ {