* 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
expected locations, then Stella will use built-in generic defaults.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@59 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
the entire 256 entry palette returned from the TIA instead of looking
at only the even numbered entries. This was required since the PAL
color loss code uses all 256 entries in the palette.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@58 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
effect. Color loss occurs when the previous frame contains an odd
number of scanlines.
The color loss effect is implemented using an idea from Eckhard
Stolberg: "I thought you could have each colour twice in the palette.
In the PAL palette the second colour would only be a shade of
grey. Then when something gets written to the TIA colour registers,
you could set bit0 of the colour according to bit0 of the
scanline counter for the last frame. That way an odd number of lines
would select the grey tones, while an even number would select the
normal colours."
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@57 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
argument the number of CPU cycles elapsed since the last TIA sound update.
The default implementation of this method invokes the old set method for
backwards compatibility with derived classes.
This new set method will be used in the 1.3 release to improve the quality
of the sound emulation (e.g., to support games like Pitfall II which update
the sound registers many times during a frame).
The TIA class was updated to invoke the new set method of the Sound class.
Finally, the TIA pauseState data member was renamed to myPauseState to be
consistent with the other data members.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@55 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
from an INI file or commandline to this new class.
Now the reading of commandline options or from INI files can be used by any
frontend that uses this class.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@51 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
to use the emulator without hogging the CPU. Usage on most machines I've
tested is around 1% - 2%, versus the 100% that was used before.
SDL version seems to like this new code better. I think that usleep is
causing some problems in the X11 version. I'd appreciate some feedback
on this. Maybe I'll change to select or something.
There is a slight skip in framerate that can't be avoided unfortunately.
You may not even notice it. Sound may be slightly different as well. In
my opinion, this is a good tradeoff for basically reducing CPU usage to nil.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@50 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
versions for now, but can easily be used in other ports. Press the PAUSE button
to activate and deactivate.
It is started by calling Console.mediaSource().pause(bool state), where state
is either true or false and will enable/disable the pause, respectively.
When pause is enabled, a mute is sent to the Sound device, so other ports must
have coded this Sound::mute method. While pause is on, all calls to
Console.mediaSource().update() will do nothing. Only by calling pause() again
can the emulator proceed.
Other ports will probably require a minor rewrite of their main loop, since
the calculation of frames per second will now have to be done differently.
Previously, FPS was based on the time entering the main loop and the time
leaving. This difference was the total time used in calculating FPS.
Now, since pause can be on for an indefinite amount of time, the total time must
be incremented *per frame* instead of over the whole loop. Similarly, the total
number of frames drawn is no longer how many times you pass through the loop, but
how many times you pass through the loop *while not paused*.
See ui/sdl/mainSDL.cxx or ui/x11/mainX11.cxx for more info.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@47 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
deleted.
Barring any major bugs or memory leaks, this will be my last release for
the next major version (Stella 1.2).
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@46 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
now be used in the X11 and SDL versions, and in the DOS and Win32
versions if someone wants to add support for it. The only requirement
is the PNG library. This is because the snapshot is now taken from the
'MediaSource' framebuffer, which is common to all versions.
Changed SDL to take advantage of the common snapshot code.
The X11 version no longer requires Imlib for snapshot support, as it now
uses the common snapshot code.
Removed (and buried) the SnapSDL code for good :)
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@45 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
screen to only those parts that changed.
Switched back to using native bpp mode in SDL, since emulating 8-bit
display was causing a performance hit.
Because of previous modifications, snapshot support in SDL in broken in
both windowed and fullscreen mode again. Its on my TODO list :)
SDL snapshot support now configurable in the makefile. Now you can use
the SDL version without needing libpng (and without snapshot support).
Fixed a bug in SDL version when no joysticks were present on system.
Changed commandline argument from '-winsize' to '-zoom' since it more
accurately describes whats happening (X11 and SDL versions).
Removed F11 key (fullscreeen mode) in X11 version since that code hasn't
actually been written yet.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@44 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
If specified, this will save single snapshots instead of generating multiple
snapshots saved as 'filename_x.png'.
Updated stellarc file to select 'sssingle' command.
Fixed some problems in the SDL snapshot code.
Fixed long-standing bug in the X11 version where closing the window did not
properly exit the emulator. Now exits are done correctly. No more
zombie stella-sound processes :)
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@43 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
for SDL version, just the PNG library. Fullscreen snapshot support is
working again.
Removed choice of adding snapshot to SDL version; now it is always added.
As a result, the 'libpng' library is needed to compile SDL version.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@42 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
to the X11 and SDL versions.
This is only a commandline option and can't be specified in the stellarc
file.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@41 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
Changed the key for entering fullscreen mode on the SDL version
from F11 to Alt-Enter. Will make the same change in the X11
version when I figure out how :)
Changed '-showfps' to '-showinfo' since it was showing more than the
fps anyway. Added printing of the romname and md5sum to this option.
Temporarily removed support for fullscreen snapshot support in the
SDL version. Windowed snapshot mode is still available in X and SDL.
Changed the requirements for snapshot support. Now requires regular
Imlib instead of Imlib2. More users have Imlib than Imlib2.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@40 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
-ssdir <path> : Path which specifies where snapshots are saved.
-ssname <name> : Can be either "romname" or "md5sum". Will name the snapshot
file according to the specified option (from stella.pro file).
Some cleanups of the snapshot code.
Fixed bug where segmentation fault occurred if there was no stella.pro
present. Now an error is printed.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@39 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
correctly. The emulator would start fullscreen, but if switched to
windowed mode, it wouldn't be centered.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@37 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
There is no longer a builtin stella.pro file. You must supply one with
the program.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@30 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
properties in memory or always reading from the .pro file. Removal of the
.pro file from the executable (now it MUST be included with the executable).
Typical improvements are 38% less memory usage and 46% reduction in
executable size.
Changes to all 4 frontends to accomodate changes made to the
PropertiesSet class.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@29 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
has been adjusted to make the colors look a bit stronger (more saturated).
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@28 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
Eckhard Stolberg obtained from a real 2600 showing that the TIA always
defines bits 6 & 7 and lets bits 0 to 5 float.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@26 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba