commandline options that were previously booleans now take either a 0 or
1 after them, specifying false or true, respectively. For example, one
can now specify window centering be on with "-center 1" and off with
"-center 0".
The option previously named "-nohog" has been renamed "-accurate", which
more accurately describes its function.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@111 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
saving/loading states, etc). Makes the message much easier to see.
Implemented in the core code, so DOS, X11 and SDL will take advantage
of it.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@109 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
with eight 4K banks. Marble Craze (a new homebrew game) should work now.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@107 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
now always compiled into the SDL and X11 versions.
Default is to use the CPU-intensive (normal) timing code. The less CPU-
intensive timing can be selected with the commandline argument '-nohog', or
by setting 'nohog = 1' in the rc file.
Note that the nohog setting works much better in SDL vs. X11, since SDL_Delay()
seems to have a finer granularity than usleep().
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@105 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
- 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@103 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
- 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
Appropriate error messages are printed to the screen.
Changed location for rc and state files for X11 and SDL versions.
When Stella starts, it will create the directories '.stella' and
'.stella/state' under $HOME, if they don't already exist.
All state files will be placed in '$HOME/.stella/state'. The locations
for the rc and properties file have also changed. They are now
found in '$HOME/.stella/stellarc' and '$HOME/.stella/stella.pro'.
Changed shading of the screen when pause is pressed. Now the colors
are set to 75% of normal, not 50% (as before). I think this looks
better. Also, shading is no longer performed in 8-bit modes, since
there weren't enough colors to do it anyway.
Made joystick code optional again in the X11 and SDL versions. This
is in preparation for a code merge (in the SDL version) for the
Zaurus PDA.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@101 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
saving.
For now, CartE0 is still being tested, and CartMC has not been implemented at
all. This is a problem right now, since I don't have access to an MC
cartridge image.
Other than that, all the other Cartridge types are working fine with every
ROM I've thrown at the current code.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@100 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
Changes I had to do where:
Adding #include "bspf.hxx" to the headers of the new classes.
Fixing a myriad of (in VC++ 6.0 illegal) uInt32 redefinitions
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@99 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
- Updated Todos in Cyberstella/ReadMe.txt
Woah! 137 lines of ToDos! The fastest growing branch in the whole project! :-)
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@98 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
We're working on a GPL conform solution though, so check back soon.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@97 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
For now, state support is present only in the SDL port. The following
keys are used to access state stuff:
F9: save state to current slot
F10: change current slot (cycles from 0 through 9)
F11: load state from current slot
Messages will appear onscreen indicating success or failure.
State files are saved named as the md5sum of the current ROM, with an
extension of .stx appended, where x is the current slot (from 0 through 9).
For now, these state files are saved in the current working directory.
I plan on moving them to a $HOME/.stella/state directory for both the X11
and SDL ports. The Windows and DOS versions can choose other, more relevant
locations.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@96 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
Not all cartridges have been implemented. Some are working perfectly,
such as those without RAM. Others are hopefully working, but require
further testing (like bank switching). A few are not working at all,
most notably CartAR and CartMC.
Please test extensively.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@95 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
store integers and booleans, even on systems with different variable
widths.
Currently, they are used to implement the storage and retrieval of binary
data that make up the state files.
I'd appreciate testing on systems with different variable widths and
endianness (other than i386).
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@94 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
are in System.cxx, and can be accessed from the various ports through
the Console.
To save state, call theConsole->system.saveState(string filename, string
md5sum). The filename should include the full path and can be anything.
The md5sum is obvious and is used to make sure that the filename is actually
a state file for the current ROM.
To load state, call theConsole->system().loadState(string filename, string
md5sum. These variables have the same meaning as above.
For now, only the SDL port has access to these. Support will be added for
all ports when I do some more testing.
I'd appreciate some bug reports, especially related to sound handing on
state load.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@93 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
After spending some hours of reading through all sorts of licensing nonsensense, I think we might be on the save side with this new disclaimer now.
Maybe someone with more sense for such crap and more understanding for the english language might read through that stuff again and see if there's yet still any possible trapdoors I've overlooked.
Anyway, if there's no other choice, I'll remove these games completely again without any trace, before I risk that any rights to these games get drawn away from their original authors.
Greetings,
Manuel.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@91 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
*GRMBLFX*
Someday I should know how windows messages work...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@90 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
in when stella.pro is to be loaded. I hope this is ok
for the other versions, too?
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@89 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
- Gunfight added with permission from Manuel Polik
- Jammed Full Version(!) added with permission from Thomas Jentzsch
- Qb added with permission from Andrew Davie
- Thrust added with permission from Thomas Jentzsch
Conversions done with BIN2H, a utillity created by
Manuel Polik with help from Thomas Jentzsch.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@88 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
- Added a Tooltip for the Play button as requested by Thomas :-)
- Items are now sorted even when stella.pro is missing.
-Aded a warning message when stella.pro is missing.
- Display states are updated: Now correct path and # games are shown.
- Built in Gunfight, Thrust, Jammed & Qb with permission from their authors.
- The usual minor changes here and there...
- updated Cyberstella readme.txt with tons of feature requests and todos...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@87 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
Hi there!
Check Cyberstella/ReadMe.txt for my current ToDo list.
Feel free to add/edit/remove/suggest :-)
When the *urgent* stuff is done, Cyberstella is ready to be released.
Main problem at the moment is: Window does neither send me the
ItemActivate message when ENTER is pressed, nor do WM_KEYDOWN
messages come through when the ENTER key is pressed. Hm...
Any ideas appreciated... :-)
(Not really a bug, as you can start games via menu, toolbar and
direct doubleclick now, but it should do on ENTER too, I'd say...)
Greetings,
Manuel
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@86 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
(1) Indicated that the pause function was added to the DOS version
as well
(2) Fixed the statement regarding what happens if a stella.pro file
isn't found
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@84 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
recognized correctly. Also removed some race-conditions which may have
been causing the application to lockup when the PAUSE key was pressed.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@82 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
are ports of functionality found in the X11 and SDL versions. Also a few
improvements have been made. The changes are:
- Pause feature is supported by pressing the pause button on the keyboard
- Status messages are displayed when the color mode or difficulty settings
are changed
- Added the '-showinfo' command line option to display information about
the game when the program exists
- Added '-pro <props file>' command line option so the user can specify
which properties file to load
- Display timing code was changed to use the constant UCLOCKS_PER_SEC
instead of 1000000
- Code which sets up ModeX was changed to fix problems with some video cards
- Finished the update display code for ModeX so that it works if near
pointers are not available
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@75 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
it creates the new one. The copy command that follows the delete was
not working if the executable already existed.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@72 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
MediaSource.showMessage(string& message uInt32 duration), where duration is the
number of frames to display the message.
All messages are converted to upper case, since the fonts are very limited.
Fonts exist for A..Z and 0..9 only. Some fonts are not the clearest, but its
the best I can do with only 4-pixel widths :) Besides, they have an 'Atari'
look.
Updated the SDL and X11 versions to print messages under the following
conditions:
1) switching color modes (BW or color)
2) setting left and right difficulty for controllers
3) state loading/saving/changing (see below for this one)
Added methods that form the beginning of state loading and saving. This
functionality is NOT currently present, and won't be for the 1.2 release. The
methods added are for state saving, state slot changing, and state loading, and
are tied to function keys F9, F10, F11, respectively. For now, they don't
actually do anything :)
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@71 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
* If the playfield priority bit and score bit are set in CTRLPF then
the score bit is ignored (this fixed a display problem in Pole
Position where the MPH gauge was displayed as white instead of red)
* Modified the HMOVE blank code so that collision detection works
during the HMOVE blanks. This should allow Fatal Run to work
correctly, however, the stella.pro file has to be updated to
display the all 160 pixels.
* Added "positioning hacks" to fix display problems with Dolphin,
Pitfall II, Decathlon, Robot Tank, and Hole Hunter.
* Changed the delays associated with poking RESM0, RESM1, and RESBL
to 8 clocks to fix the display problem with Polaris.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@70 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
Now when you press pause, the screen colors are tinted by half. Probably
not very useful, but I saw it in other emulators and liked the look of it.
Various cleanups to X11 and SDL code, such as initially setting pointers
to NULL, etc.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@68 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
a char* since GCC 3.0.x doesn't seem to like it as a uInt8*.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@67 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
for accessing them. This should allow the core to be compiled without
any special defines for C++ compilers based on the standard. For older
compilers BSPF_OLD_STYLE_CXX_HEADERS will need to be defined for
complication to work.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@66 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
DJGPP environment variable instead of assuming DJGPP is installed on the
current drive.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@65 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
from Eckhard Stolberg. This version simulates the progress bar and
leaves the TIA in a state more like the real thing. This fixes some
display problems with games (e.g., Mindmaster). In addtion, the bank
switching and RAM writing emulation has been improved.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@63 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
- Cleaned up Toolbar & Menubar
- Moved Play Button into Toolbar & Menubar
- Moved Options Button into Menubar
- Moved all contents of StellaXMain into CyberstellaView and subsequently
removed the StellaXMain files from the project. This was done in order
to simplify the commando-chain for executing screenshots, pause/unpause
as well as a future windowed/fullscreen switch.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@62 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba