2015-07-16 23:56:02 +00:00
|
|
|
//
|
|
|
|
// Atari2600.cpp
|
2015-07-26 19:25:11 +00:00
|
|
|
// CLK
|
2015-07-16 23:56:02 +00:00
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/07/2015.
|
|
|
|
// Copyright © 2015 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Atari2600.hpp"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
using namespace Atari2600;
|
2016-05-16 12:01:29 +00:00
|
|
|
namespace {
|
|
|
|
static const unsigned int horizontalTimerPeriod = 228;
|
2016-08-14 17:33:20 +00:00
|
|
|
static const double NTSC_clock_rate = 1194720;
|
|
|
|
static const double PAL_clock_rate = 1182298;
|
2016-05-16 12:01:29 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
|
2015-12-06 21:53:37 +00:00
|
|
|
Machine::Machine() :
|
|
|
|
_horizontalTimer(0),
|
|
|
|
_lastOutputStateDuration(0),
|
|
|
|
_lastOutputState(OutputState::Sync),
|
|
|
|
_rom(nullptr),
|
2016-05-17 01:54:27 +00:00
|
|
|
_tiaInputValue{0xff, 0xff},
|
2016-05-27 18:33:08 +00:00
|
|
|
_upcomingEventsPointer(0),
|
2016-05-28 01:51:27 +00:00
|
|
|
_objectCounterPointer(0),
|
2016-06-01 23:27:04 +00:00
|
|
|
_stateByTime(_stateByExtendTime[0]),
|
2016-06-21 01:47:27 +00:00
|
|
|
_cycles_since_speaker_update(0),
|
|
|
|
_is_pal_region(false)
|
2016-04-24 10:56:08 +00:00
|
|
|
{
|
|
|
|
memset(_collisions, 0xff, sizeof(_collisions));
|
2016-05-26 01:43:19 +00:00
|
|
|
setup_reported_collisions();
|
2016-05-28 01:51:27 +00:00
|
|
|
|
|
|
|
for(int vbextend = 0; vbextend < 2; vbextend++)
|
|
|
|
{
|
|
|
|
for(int c = 0; c < 57; c++)
|
|
|
|
{
|
|
|
|
OutputState state;
|
|
|
|
|
|
|
|
// determine which output state will be active in four cycles from now
|
|
|
|
switch(c)
|
|
|
|
{
|
|
|
|
case 0: case 1: case 2: case 3: state = OutputState::Blank; break;
|
|
|
|
case 4: case 5: case 6: case 7: state = OutputState::Sync; break;
|
|
|
|
case 8: case 9: case 10: case 11: state = OutputState::ColourBurst; break;
|
|
|
|
case 12: case 13: case 14:
|
|
|
|
case 15: case 16: state = OutputState::Blank; break;
|
|
|
|
|
|
|
|
case 17: case 18: state = vbextend ? OutputState::Blank : OutputState::Pixel; break;
|
|
|
|
default: state = OutputState::Pixel; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
_stateByExtendTime[vbextend][c] = state;
|
|
|
|
}
|
|
|
|
}
|
2016-08-14 17:33:20 +00:00
|
|
|
set_clock_rate(NTSC_clock_rate);
|
2016-04-24 10:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::setup_output(float aspect_ratio)
|
2015-07-16 23:56:02 +00:00
|
|
|
{
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker.reset(new Speaker);
|
|
|
|
_crt.reset(new Outputs::CRT::CRT(228, 1, 263, Outputs::CRT::ColourSpace::YIQ, 228, 1, 1));
|
2016-06-21 02:18:41 +00:00
|
|
|
_crt->set_output_device(Outputs::CRT::Television);
|
2016-05-12 01:07:18 +00:00
|
|
|
|
|
|
|
// this is the NTSC phase offset function; see below for PAL
|
2016-02-05 03:28:50 +00:00
|
|
|
_crt->set_composite_sampling_function(
|
2016-05-12 02:11:01 +00:00
|
|
|
"float composite_sample(usampler2D texID, vec2 coordinate, vec2 iCoordinate, float phase, float amplitude)"
|
2016-04-26 00:56:15 +00:00
|
|
|
"{"
|
|
|
|
"uint c = texture(texID, coordinate).r;"
|
2016-05-13 02:22:24 +00:00
|
|
|
"uint y = c & 14u;"
|
2016-04-26 00:56:15 +00:00
|
|
|
"uint iPhase = (c >> 4);"
|
2016-05-12 01:07:18 +00:00
|
|
|
|
2016-05-14 20:52:24 +00:00
|
|
|
"float phaseOffset = 6.283185308 * float(iPhase - 1u) / 13.0;"
|
2016-06-08 02:01:14 +00:00
|
|
|
"return mix(float(y) / 14.0, step(1, iPhase) * cos(phase + phaseOffset), amplitude);"
|
2016-02-05 03:28:50 +00:00
|
|
|
"}");
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker->set_input_rate((float)(get_clock_rate() / 38.0));
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 01:07:18 +00:00
|
|
|
void Machine::switch_region()
|
|
|
|
{
|
|
|
|
// the PAL function
|
|
|
|
_crt->set_composite_sampling_function(
|
2016-05-12 02:11:01 +00:00
|
|
|
"float composite_sample(usampler2D texID, vec2 coordinate, vec2 iCoordinate, float phase, float amplitude)"
|
2016-05-12 01:07:18 +00:00
|
|
|
"{"
|
|
|
|
"uint c = texture(texID, coordinate).r;"
|
2016-05-13 02:22:24 +00:00
|
|
|
"uint y = c & 14u;"
|
2016-05-12 01:07:18 +00:00
|
|
|
"uint iPhase = (c >> 4);"
|
|
|
|
|
2016-05-14 20:52:24 +00:00
|
|
|
"uint direction = iPhase & 1u;"
|
|
|
|
"float phaseOffset = float(7u - direction) + (float(direction) - 0.5) * 2.0 * float(iPhase >> 1);"
|
|
|
|
"phaseOffset *= 6.283185308 / 12.0;"
|
2016-06-08 02:01:14 +00:00
|
|
|
"return mix(float(y) / 14.0, step(4, (iPhase + 2u) & 15u) * cos(phase + phaseOffset), amplitude);"
|
2016-05-12 01:07:18 +00:00
|
|
|
"}");
|
2016-06-21 02:18:41 +00:00
|
|
|
|
2016-05-12 01:07:18 +00:00
|
|
|
_crt->set_new_timing(228, 312, Outputs::CRT::ColourSpace::YUV, 228, 1);
|
2016-06-21 02:18:41 +00:00
|
|
|
|
2016-06-21 01:47:27 +00:00
|
|
|
_is_pal_region = true;
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker->set_input_rate((float)(get_clock_rate() / 38.0));
|
2016-08-14 17:33:20 +00:00
|
|
|
set_clock_rate(PAL_clock_rate);
|
2016-05-12 01:07:18 +00:00
|
|
|
}
|
|
|
|
|
2016-04-25 00:34:25 +00:00
|
|
|
void Machine::close_output()
|
|
|
|
{
|
2016-07-05 00:34:11 +00:00
|
|
|
_crt = nullptr;
|
2016-04-25 00:34:25 +00:00
|
|
|
}
|
|
|
|
|
2015-07-28 01:15:10 +00:00
|
|
|
Machine::~Machine()
|
|
|
|
{
|
2015-08-13 12:24:02 +00:00
|
|
|
delete[] _rom;
|
2016-04-25 00:34:25 +00:00
|
|
|
close_output();
|
2015-07-28 01:15:10 +00:00
|
|
|
}
|
|
|
|
|
2016-05-21 14:18:15 +00:00
|
|
|
void Machine::update_timers(int mask)
|
2015-07-16 23:56:02 +00:00
|
|
|
{
|
2016-05-25 11:32:25 +00:00
|
|
|
unsigned int upcomingPointerPlus4 = (_upcomingEventsPointer + 4)%number_of_upcoming_events;
|
2016-05-25 01:39:57 +00:00
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
_objectCounterPointer = (_objectCounterPointer + 1)%number_of_recorded_counters;
|
|
|
|
ObjectCounter *oneClockAgo = _objectCounter[(_objectCounterPointer - 1 + number_of_recorded_counters)%number_of_recorded_counters];
|
2016-05-28 01:51:27 +00:00
|
|
|
ObjectCounter *twoClocksAgo = _objectCounter[(_objectCounterPointer - 2 + number_of_recorded_counters)%number_of_recorded_counters];
|
2016-05-27 18:33:08 +00:00
|
|
|
ObjectCounter *now = _objectCounter[_objectCounterPointer];
|
|
|
|
|
2016-05-26 01:12:25 +00:00
|
|
|
// grab the background now, for application in four clocks
|
|
|
|
if(mask & (1 << 5) && !(_horizontalTimer&3))
|
2016-05-17 11:09:18 +00:00
|
|
|
{
|
2016-05-26 01:12:25 +00:00
|
|
|
unsigned int offset = 4 + _horizontalTimer - (horizontalTimerPeriod - 160);
|
|
|
|
_upcomingEvents[upcomingPointerPlus4].updates |= Event::Action::Playfield;
|
|
|
|
_upcomingEvents[upcomingPointerPlus4].playfieldPixel = _playfield[(offset >> 2)%40];
|
2016-05-17 11:09:18 +00:00
|
|
|
}
|
2016-05-17 01:54:27 +00:00
|
|
|
|
2016-05-21 14:18:15 +00:00
|
|
|
if(mask & (1 << 4))
|
2016-05-16 23:55:56 +00:00
|
|
|
{
|
2016-05-24 11:58:26 +00:00
|
|
|
// the ball becomes visible whenever it hits zero, regardless of whether its status
|
2016-05-27 18:33:08 +00:00
|
|
|
// is the result of a counter rollover or a programmatic reset, and there's a four
|
|
|
|
// clock delay on that triggering the start signal
|
|
|
|
now[4].count = (oneClockAgo[4].count + 1)%160;
|
|
|
|
now[4].pixel = oneClockAgo[4].pixel + 1;
|
2016-05-28 01:51:27 +00:00
|
|
|
if(!now[4].count) now[4].pixel = 0;
|
2016-05-27 18:33:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
now[4] = oneClockAgo[4];
|
2016-05-16 23:55:56 +00:00
|
|
|
}
|
2016-05-17 11:09:18 +00:00
|
|
|
|
2016-05-18 11:51:25 +00:00
|
|
|
// check for player and missle triggers
|
2016-05-18 11:31:05 +00:00
|
|
|
for(int c = 0; c < 4; c++)
|
|
|
|
{
|
2016-05-21 14:18:15 +00:00
|
|
|
if(mask & (1 << c))
|
2016-05-18 11:31:05 +00:00
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
// update the count
|
|
|
|
now[c].count = (oneClockAgo[c].count + 1)%160;
|
|
|
|
|
|
|
|
uint8_t repeatMask = _playerAndMissileSize[c&1] & 7;
|
|
|
|
ObjectCounter *rollover;
|
|
|
|
ObjectCounter *equality;
|
|
|
|
|
|
|
|
if(c < 2)
|
2016-05-21 14:18:15 +00:00
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
// update the pixel
|
|
|
|
now[c].broad_pixel = oneClockAgo[c].broad_pixel + 1;
|
|
|
|
switch(repeatMask)
|
2016-05-21 14:18:15 +00:00
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
default: now[c].pixel = oneClockAgo[c].pixel + 1; break;
|
|
|
|
case 5: now[c].pixel = oneClockAgo[c].pixel + (now[c].broad_pixel&1); break;
|
|
|
|
case 7: now[c].pixel = oneClockAgo[c].pixel + (((now[c].broad_pixel | (now[c].broad_pixel >> 1))^1)&1); break;
|
2016-05-21 14:18:15 +00:00
|
|
|
}
|
2016-05-27 18:33:08 +00:00
|
|
|
|
|
|
|
// check for a rollover six clocks ago or equality five clocks ago
|
2016-05-28 01:51:27 +00:00
|
|
|
rollover = twoClocksAgo;
|
|
|
|
equality = oneClockAgo;
|
2016-05-21 14:18:15 +00:00
|
|
|
}
|
2016-05-27 18:33:08 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// update the pixel
|
|
|
|
now[c].pixel = oneClockAgo[c].pixel + 1;
|
2016-05-21 14:18:15 +00:00
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
// check for a rollover five clocks ago or equality four clocks ago
|
2016-05-28 01:51:27 +00:00
|
|
|
rollover = oneClockAgo;
|
|
|
|
equality = now;
|
2016-05-27 18:33:08 +00:00
|
|
|
}
|
2016-05-25 01:39:57 +00:00
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
if(
|
|
|
|
(rollover[c].count == 159) ||
|
|
|
|
(_hasSecondCopy[c&1] && equality[c].count == 16) ||
|
|
|
|
(_hasThirdCopy[c&1] && equality[c].count == 32) ||
|
|
|
|
(_hasFourthCopy[c&1] && equality[c].count == 64)
|
|
|
|
)
|
2016-05-21 14:18:15 +00:00
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
now[c].pixel = 0;
|
|
|
|
now[c].broad_pixel = 0;
|
2016-05-21 14:18:15 +00:00
|
|
|
}
|
2016-05-18 11:31:05 +00:00
|
|
|
}
|
2016-05-27 18:33:08 +00:00
|
|
|
else
|
2016-05-21 14:18:15 +00:00
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
now[c] = oneClockAgo[c];
|
2016-05-21 14:18:15 +00:00
|
|
|
}
|
2016-05-18 11:31:05 +00:00
|
|
|
}
|
2016-05-25 11:32:25 +00:00
|
|
|
}
|
2016-05-23 01:45:40 +00:00
|
|
|
|
2016-05-25 11:32:25 +00:00
|
|
|
uint8_t Machine::get_output_pixel()
|
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
ObjectCounter *now = _objectCounter[_objectCounterPointer];
|
2016-05-24 11:58:26 +00:00
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
// get the playfield pixel
|
|
|
|
unsigned int offset = _horizontalTimer - (horizontalTimerPeriod - 160);
|
2016-05-25 11:32:25 +00:00
|
|
|
uint8_t playfieldColour = ((_playfieldControl&6) == 2) ? _playerColour[offset / 80] : _playfieldColour;
|
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
// ball pixel
|
2016-05-25 11:32:25 +00:00
|
|
|
uint8_t ballPixel = 0;
|
2016-05-27 18:33:08 +00:00
|
|
|
if(now[4].pixel < _ballSize) {
|
2016-05-26 01:43:19 +00:00
|
|
|
ballPixel = _ballGraphicsEnable[_ballGraphicsSelector];
|
2016-05-25 01:39:57 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
// determine the player and missile pixels
|
2016-05-25 11:32:25 +00:00
|
|
|
uint8_t playerPixels[2] = { 0, 0 };
|
|
|
|
uint8_t missilePixels[2] = { 0, 0 };
|
2016-05-24 11:58:26 +00:00
|
|
|
for(int c = 0; c < 2; c++)
|
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
if(_playerGraphics[c] && now[c].pixel < 8) {
|
|
|
|
playerPixels[c] = (_playerGraphics[_playerGraphicsSelector[c]][c] >> (now[c].pixel ^ _playerReflectionMask[c])) & 1;
|
2016-05-24 11:58:26 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
if(!_missileGraphicsReset[c] && now[c+2].pixel < _missileSize[c]) {
|
2016-05-26 01:43:19 +00:00
|
|
|
missilePixels[c] = _missileGraphicsEnable[c];
|
2016-05-24 11:58:26 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-18 11:31:05 +00:00
|
|
|
|
2015-08-12 23:31:57 +00:00
|
|
|
// accumulate collisions
|
2016-05-26 01:43:19 +00:00
|
|
|
int pixel_mask = playerPixels[0] | (playerPixels[1] << 1) | (missilePixels[0] << 2) | (missilePixels[1] << 3) | (ballPixel << 4) | (_playfieldOutput << 5);
|
|
|
|
_collisions[0] |= _reportedCollisions[pixel_mask][0];
|
|
|
|
_collisions[1] |= _reportedCollisions[pixel_mask][1];
|
|
|
|
_collisions[2] |= _reportedCollisions[pixel_mask][2];
|
|
|
|
_collisions[3] |= _reportedCollisions[pixel_mask][3];
|
|
|
|
_collisions[4] |= _reportedCollisions[pixel_mask][4];
|
|
|
|
_collisions[5] |= _reportedCollisions[pixel_mask][5];
|
|
|
|
_collisions[6] |= _reportedCollisions[pixel_mask][6];
|
|
|
|
_collisions[7] |= _reportedCollisions[pixel_mask][7];
|
2015-08-12 23:31:57 +00:00
|
|
|
|
2015-07-31 01:30:00 +00:00
|
|
|
// apply appropriate priority to pick a colour
|
2016-05-22 18:38:14 +00:00
|
|
|
uint8_t playfieldPixel = _playfieldOutput | ballPixel;
|
2015-07-30 15:52:28 +00:00
|
|
|
uint8_t outputColour = playfieldPixel ? playfieldColour : _backgroundColour;
|
|
|
|
|
2015-07-31 00:07:20 +00:00
|
|
|
if(!(_playfieldControl&0x04) || !playfieldPixel) {
|
2016-05-22 18:26:02 +00:00
|
|
|
if(playerPixels[1] || missilePixels[1]) outputColour = _playerColour[1];
|
|
|
|
if(playerPixels[0] || missilePixels[0]) outputColour = _playerColour[0];
|
2016-05-18 11:51:25 +00:00
|
|
|
}
|
2015-07-30 02:37:37 +00:00
|
|
|
|
2016-05-16 23:04:13 +00:00
|
|
|
// return colour
|
2016-05-18 11:51:25 +00:00
|
|
|
return outputColour;
|
2015-07-19 20:48:14 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
|
2016-05-26 01:43:19 +00:00
|
|
|
void Machine::setup_reported_collisions()
|
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
for(int c = 0; c < 64; c++)
|
2016-05-26 01:43:19 +00:00
|
|
|
{
|
|
|
|
memset(_reportedCollisions[c], 0, 8);
|
|
|
|
|
|
|
|
int playerPixels[2] = { c&1, (c >> 1)&1 };
|
|
|
|
int missilePixels[2] = { (c >> 2)&1, (c >> 3)&1 };
|
|
|
|
int ballPixel = (c >> 4)&1;
|
|
|
|
int playfieldPixel = (c >> 5)&1;
|
|
|
|
|
|
|
|
if(playerPixels[0] | playerPixels[1]) {
|
|
|
|
_reportedCollisions[c][0] |= ((missilePixels[0] & playerPixels[1]) << 7) | ((missilePixels[0] & playerPixels[0]) << 6);
|
|
|
|
_reportedCollisions[c][1] |= ((missilePixels[1] & playerPixels[0]) << 7) | ((missilePixels[1] & playerPixels[1]) << 6);
|
|
|
|
|
|
|
|
_reportedCollisions[c][2] |= ((playfieldPixel & playerPixels[0]) << 7) | ((ballPixel & playerPixels[0]) << 6);
|
|
|
|
_reportedCollisions[c][3] |= ((playfieldPixel & playerPixels[1]) << 7) | ((ballPixel & playerPixels[1]) << 6);
|
|
|
|
|
|
|
|
_reportedCollisions[c][7] |= ((playerPixels[0] & playerPixels[1]) << 7);
|
|
|
|
}
|
|
|
|
|
2016-06-03 02:36:52 +00:00
|
|
|
if(playfieldPixel | ballPixel) {
|
2016-05-26 01:43:19 +00:00
|
|
|
_reportedCollisions[c][4] |= ((playfieldPixel & missilePixels[0]) << 7) | ((ballPixel & missilePixels[0]) << 6);
|
|
|
|
_reportedCollisions[c][5] |= ((playfieldPixel & missilePixels[1]) << 7) | ((ballPixel & missilePixels[1]) << 6);
|
|
|
|
|
|
|
|
_reportedCollisions[c][6] |= ((playfieldPixel & ballPixel) << 7);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(missilePixels[0] & missilePixels[1])
|
|
|
|
_reportedCollisions[c][7] |= (1 << 6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-16 20:08:29 +00:00
|
|
|
void Machine::output_pixels(unsigned int count)
|
2015-07-19 20:48:14 +00:00
|
|
|
{
|
|
|
|
while(count--)
|
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
if(_upcomingEvents[_upcomingEventsPointer].updates)
|
2016-05-23 01:45:40 +00:00
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
// apply any queued changes and flush the record
|
|
|
|
if(_upcomingEvents[_upcomingEventsPointer].updates & Event::Action::HMoveSetup)
|
2016-05-23 01:45:40 +00:00
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
// schedule an extended left border
|
|
|
|
_stateByTime = _stateByExtendTime[1];
|
|
|
|
|
|
|
|
// clear any ongoing moves
|
|
|
|
if(_hMoveFlags)
|
2016-05-23 01:45:40 +00:00
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
for(int c = 0; c < number_of_upcoming_events; c++)
|
|
|
|
{
|
|
|
|
_upcomingEvents[c].updates &= ~(Event::Action::HMoveCompare | Event::Action::HMoveDecrement);
|
|
|
|
}
|
2016-05-23 01:45:40 +00:00
|
|
|
}
|
|
|
|
|
2016-06-03 01:22:55 +00:00
|
|
|
// schedule new moves
|
|
|
|
_hMoveFlags = 0x1f;
|
|
|
|
_hMoveCounter = 15;
|
2016-05-28 01:51:27 +00:00
|
|
|
|
2016-06-03 01:22:55 +00:00
|
|
|
// follow-through into a compare immediately
|
|
|
|
_upcomingEvents[_upcomingEventsPointer].updates |= Event::Action::HMoveCompare;
|
|
|
|
}
|
2016-05-23 01:45:40 +00:00
|
|
|
|
2016-06-03 01:22:55 +00:00
|
|
|
if(_upcomingEvents[_upcomingEventsPointer].updates & Event::Action::HMoveCompare)
|
2016-05-17 22:35:40 +00:00
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
for(int c = 0; c < 5; c++)
|
|
|
|
{
|
|
|
|
if(((_objectMotion[c] >> 4)^_hMoveCounter) == 7)
|
|
|
|
{
|
|
|
|
_hMoveFlags &= ~(1 << c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(_hMoveFlags)
|
2016-05-17 22:35:40 +00:00
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
if(_hMoveCounter) _hMoveCounter--;
|
|
|
|
_upcomingEvents[(_upcomingEventsPointer+4)%number_of_upcoming_events].updates |= Event::Action::HMoveCompare;
|
|
|
|
_upcomingEvents[(_upcomingEventsPointer+2)%number_of_upcoming_events].updates |= Event::Action::HMoveDecrement;
|
2016-05-17 22:35:40 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-03 01:22:55 +00:00
|
|
|
|
|
|
|
if(_upcomingEvents[_upcomingEventsPointer].updates & Event::Action::HMoveDecrement)
|
2016-05-17 22:35:40 +00:00
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
update_timers(_hMoveFlags);
|
2016-05-18 01:41:32 +00:00
|
|
|
}
|
2016-05-17 22:35:40 +00:00
|
|
|
|
2016-06-03 01:22:55 +00:00
|
|
|
if(_upcomingEvents[_upcomingEventsPointer].updates & Event::Action::ResetCounter)
|
|
|
|
{
|
|
|
|
_objectCounter[_objectCounterPointer][_upcomingEvents[_upcomingEventsPointer].counter].count = 0;
|
|
|
|
}
|
2016-05-30 23:56:36 +00:00
|
|
|
|
2016-06-03 01:22:55 +00:00
|
|
|
// zero out current update event
|
|
|
|
_upcomingEvents[_upcomingEventsPointer].updates = 0;
|
2016-05-30 23:56:36 +00:00
|
|
|
}
|
|
|
|
|
2016-06-03 01:22:55 +00:00
|
|
|
// progress to next event
|
2016-05-28 01:51:27 +00:00
|
|
|
_upcomingEventsPointer = (_upcomingEventsPointer + 1)%number_of_upcoming_events;
|
2016-05-25 01:39:57 +00:00
|
|
|
|
2016-05-28 01:51:27 +00:00
|
|
|
// determine which output state is currently active
|
|
|
|
OutputState primary_state = _stateByTime[_horizontalTimer >> 2];
|
|
|
|
OutputState effective_state = primary_state;
|
|
|
|
|
|
|
|
// update pixel timers
|
|
|
|
if(primary_state == OutputState::Pixel) update_timers(~0);
|
|
|
|
|
|
|
|
// update the background chain
|
|
|
|
if(_horizontalTimer >= 64 && _horizontalTimer <= 160+64 && !(_horizontalTimer&3))
|
2016-05-25 11:32:25 +00:00
|
|
|
{
|
2016-05-28 01:51:27 +00:00
|
|
|
_playfieldOutput = _nextPlayfieldOutput;
|
|
|
|
_nextPlayfieldOutput = _playfield[(_horizontalTimer - 64) >> 2];
|
2016-05-25 11:32:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 23:56:36 +00:00
|
|
|
// if vsync is enabled, output the opposite of the automatic hsync output;
|
|
|
|
// also honour the vertical blank flag
|
2016-05-28 01:51:27 +00:00
|
|
|
if(_vSyncEnabled) {
|
|
|
|
effective_state = (effective_state = OutputState::Sync) ? OutputState::Blank : OutputState::Sync;
|
2016-05-30 23:56:36 +00:00
|
|
|
} else if(_vBlankEnabled && effective_state == OutputState::Pixel) {
|
2016-05-28 01:51:27 +00:00
|
|
|
effective_state = OutputState::Blank;
|
2016-05-18 22:49:40 +00:00
|
|
|
}
|
2016-05-17 01:54:27 +00:00
|
|
|
|
|
|
|
// decide what that means needs to be communicated to the CRT
|
2015-07-28 02:12:13 +00:00
|
|
|
_lastOutputStateDuration++;
|
2016-05-28 01:51:27 +00:00
|
|
|
if(effective_state != _lastOutputState) {
|
2016-04-25 02:32:24 +00:00
|
|
|
switch(_lastOutputState) {
|
2016-04-26 00:56:15 +00:00
|
|
|
case OutputState::Blank: _crt->output_blank(_lastOutputStateDuration); break;
|
|
|
|
case OutputState::Sync: _crt->output_sync(_lastOutputStateDuration); break;
|
|
|
|
case OutputState::ColourBurst: _crt->output_colour_burst(_lastOutputStateDuration, 96, 0); break;
|
|
|
|
case OutputState::Pixel: _crt->output_data(_lastOutputStateDuration, 1); break;
|
2015-07-28 02:12:13 +00:00
|
|
|
}
|
|
|
|
_lastOutputStateDuration = 0;
|
2016-05-28 01:51:27 +00:00
|
|
|
_lastOutputState = effective_state;
|
2015-07-28 02:12:13 +00:00
|
|
|
|
2016-05-28 01:51:27 +00:00
|
|
|
if(effective_state == OutputState::Pixel) {
|
2016-03-19 21:37:55 +00:00
|
|
|
_outputBuffer = _crt->allocate_write_area(160);
|
2015-08-12 23:31:57 +00:00
|
|
|
} else {
|
|
|
|
_outputBuffer = nullptr;
|
2015-07-28 02:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-17 01:54:27 +00:00
|
|
|
// decide on a pixel colour if that's what's happening
|
2016-05-28 01:51:27 +00:00
|
|
|
if(effective_state == OutputState::Pixel)
|
2016-05-16 23:04:13 +00:00
|
|
|
{
|
|
|
|
uint8_t colour = get_output_pixel();
|
|
|
|
if(_outputBuffer)
|
|
|
|
{
|
|
|
|
*_outputBuffer = colour;
|
|
|
|
_outputBuffer++;
|
|
|
|
}
|
|
|
|
}
|
2016-05-17 01:54:27 +00:00
|
|
|
|
2016-05-28 01:51:27 +00:00
|
|
|
// advance horizontal timer, perform reset actions if desired
|
2016-05-16 12:01:29 +00:00
|
|
|
_horizontalTimer = (_horizontalTimer + 1) % horizontalTimerPeriod;
|
2016-05-16 23:04:13 +00:00
|
|
|
if(!_horizontalTimer)
|
|
|
|
{
|
2016-06-03 01:22:55 +00:00
|
|
|
// switch back to a normal length left border
|
2016-05-28 01:51:27 +00:00
|
|
|
_stateByTime = _stateByExtendTime[0];
|
2016-05-16 23:55:56 +00:00
|
|
|
set_ready_line(false);
|
2016-05-16 23:04:13 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-16 20:08:29 +00:00
|
|
|
unsigned int Machine::perform_bus_operation(CPU6502::BusOperation operation, uint16_t address, uint8_t *value)
|
2015-07-19 20:48:14 +00:00
|
|
|
{
|
|
|
|
uint8_t returnValue = 0xff;
|
2016-05-28 01:51:27 +00:00
|
|
|
unsigned int cycles_run_for = 3;
|
2015-08-10 14:09:40 +00:00
|
|
|
|
2016-05-16 23:55:56 +00:00
|
|
|
// this occurs as a feedback loop — the 2600 requests ready, then performs the cycles_run_for
|
|
|
|
// leap to the end of ready only once ready is signalled — because on a 6502 ready doesn't take
|
|
|
|
// effect until the next read; therefore it isn't safe to assume that signalling ready immediately
|
|
|
|
// skips to the end of the line.
|
2015-08-09 06:42:01 +00:00
|
|
|
if(operation == CPU6502::BusOperation::Ready) {
|
2016-05-16 12:01:29 +00:00
|
|
|
unsigned int distance_to_end_of_ready = horizontalTimerPeriod - _horizontalTimer;
|
2016-05-28 01:51:27 +00:00
|
|
|
cycles_run_for = distance_to_end_of_ready;
|
2015-08-09 06:42:01 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
|
2016-05-30 23:56:36 +00:00
|
|
|
output_pixels(cycles_run_for);
|
2016-06-01 23:27:04 +00:00
|
|
|
_cycles_since_speaker_update += cycles_run_for;
|
2016-05-16 23:55:56 +00:00
|
|
|
|
2015-07-31 20:54:20 +00:00
|
|
|
if(operation != CPU6502::BusOperation::Ready) {
|
2015-08-09 06:42:01 +00:00
|
|
|
|
2015-08-13 14:04:30 +00:00
|
|
|
// check for a paging access
|
|
|
|
if(_rom_size > 4096 && ((address & 0x1f00) == 0x1f00)) {
|
|
|
|
uint8_t *base_ptr = _romPages[0];
|
2015-08-16 20:08:29 +00:00
|
|
|
uint8_t first_paging_register = (uint8_t)(0xf8 - (_rom_size >> 14)*2);
|
2015-08-13 14:04:30 +00:00
|
|
|
|
|
|
|
const uint8_t paging_register = address&0xff;
|
|
|
|
if(paging_register >= first_paging_register) {
|
|
|
|
const uint16_t selected_page = paging_register - first_paging_register;
|
|
|
|
if(selected_page * 4096 < _rom_size) {
|
|
|
|
base_ptr = &_rom[selected_page * 4096];
|
2015-08-13 12:24:02 +00:00
|
|
|
}
|
2015-08-13 14:04:30 +00:00
|
|
|
}
|
2015-08-13 12:24:02 +00:00
|
|
|
|
2015-08-13 14:04:30 +00:00
|
|
|
if(base_ptr != _romPages[0]) {
|
|
|
|
_romPages[0] = base_ptr;
|
|
|
|
_romPages[1] = base_ptr + 1024;
|
|
|
|
_romPages[2] = base_ptr + 2048;
|
|
|
|
_romPages[3] = base_ptr + 3072;
|
2015-08-13 12:24:02 +00:00
|
|
|
}
|
2015-08-13 14:04:30 +00:00
|
|
|
}
|
2015-08-13 12:24:02 +00:00
|
|
|
|
2015-08-13 14:04:30 +00:00
|
|
|
// check for a ROM read
|
2016-04-25 02:32:24 +00:00
|
|
|
if((address&0x1000) && isReadOperation(operation)) {
|
2015-08-13 12:24:02 +00:00
|
|
|
returnValue &= _romPages[(address >> 10)&3][address&1023];
|
2015-07-31 20:54:20 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
|
2015-07-31 20:54:20 +00:00
|
|
|
// check for a RAM access
|
2016-04-25 02:32:24 +00:00
|
|
|
if((address&0x1280) == 0x80) {
|
2015-07-31 20:54:20 +00:00
|
|
|
if(isReadOperation(operation)) {
|
2016-06-19 22:57:40 +00:00
|
|
|
returnValue &= _mos6532.get_ram(address);
|
2015-07-31 20:54:20 +00:00
|
|
|
} else {
|
2016-06-19 22:57:40 +00:00
|
|
|
_mos6532.set_ram(address, *value);
|
2015-07-31 20:54:20 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
|
2015-07-31 20:54:20 +00:00
|
|
|
// check for a TIA access
|
2016-04-25 02:32:24 +00:00
|
|
|
if(!(address&0x1080)) {
|
2015-07-31 20:54:20 +00:00
|
|
|
if(isReadOperation(operation)) {
|
2015-08-12 23:31:57 +00:00
|
|
|
const uint16_t decodedAddress = address & 0xf;
|
|
|
|
switch(decodedAddress) {
|
|
|
|
case 0x00: // missile 0 / player collisions
|
|
|
|
case 0x01: // missile 1 / player collisions
|
|
|
|
case 0x02: // player 0 / playfield / ball collisions
|
|
|
|
case 0x03: // player 1 / playfield / ball collisions
|
|
|
|
case 0x04: // missile 0 / playfield / ball collisions
|
|
|
|
case 0x05: // missile 1 / playfield / ball collisions
|
|
|
|
case 0x06: // ball / playfield collisions
|
|
|
|
case 0x07: // player / player, missile / missile collisions
|
|
|
|
returnValue &= _collisions[decodedAddress];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x08:
|
|
|
|
case 0x09:
|
|
|
|
case 0x0a:
|
|
|
|
case 0x0b:
|
|
|
|
// TODO: pot ports
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x0c:
|
|
|
|
case 0x0d:
|
2015-08-19 00:58:05 +00:00
|
|
|
returnValue &= _tiaInputValue[decodedAddress - 0x0c];
|
2015-08-12 23:31:57 +00:00
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-08-10 15:55:16 +00:00
|
|
|
const uint16_t decodedAddress = address & 0x3f;
|
2015-08-10 15:43:45 +00:00
|
|
|
switch(decodedAddress) {
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x00:
|
|
|
|
_vSyncEnabled = !!(*value & 0x02);
|
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
case 0x01: _vBlankEnabled = !!(*value & 0x02); break;
|
|
|
|
|
2015-08-10 15:43:45 +00:00
|
|
|
case 0x02:
|
2016-05-30 23:56:36 +00:00
|
|
|
if(_horizontalTimer) set_ready_line(true);
|
2015-08-10 15:43:45 +00:00
|
|
|
break;
|
2015-08-10 14:09:40 +00:00
|
|
|
case 0x03:
|
2016-05-22 20:29:53 +00:00
|
|
|
// Reset is delayed by four cycles.
|
|
|
|
_horizontalTimer = horizontalTimerPeriod - 4;
|
2016-06-01 23:27:04 +00:00
|
|
|
|
|
|
|
// TODO: audio will now be out of synchronisation — fix
|
2015-08-10 14:09:40 +00:00
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x04:
|
2016-05-27 18:33:08 +00:00
|
|
|
case 0x05: {
|
|
|
|
int entry = decodedAddress - 0x04;
|
|
|
|
_playerAndMissileSize[entry] = *value;
|
|
|
|
_missileSize[entry] = 1 << ((*value >> 4)&3);
|
|
|
|
|
|
|
|
uint8_t repeatMask = (*value)&7;
|
|
|
|
_hasSecondCopy[entry] = (repeatMask == 1) || (repeatMask == 3);
|
|
|
|
_hasThirdCopy[entry] = (repeatMask == 2) || (repeatMask == 3) || (repeatMask == 6);
|
|
|
|
_hasFourthCopy[entry] = (repeatMask == 4) || (repeatMask == 6);
|
|
|
|
} break;
|
2015-07-31 20:54:20 +00:00
|
|
|
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x06:
|
|
|
|
case 0x07: _playerColour[decodedAddress - 0x06] = *value; break;
|
2015-07-31 20:54:20 +00:00
|
|
|
case 0x08: _playfieldColour = *value; break;
|
|
|
|
case 0x09: _backgroundColour = *value; break;
|
|
|
|
|
2015-08-13 22:23:04 +00:00
|
|
|
case 0x0a: {
|
|
|
|
uint8_t old_playfield_control = _playfieldControl;
|
|
|
|
_playfieldControl = *value;
|
2016-05-26 01:43:19 +00:00
|
|
|
_ballSize = 1 << ((_playfieldControl >> 4)&3);
|
2015-08-13 22:23:04 +00:00
|
|
|
|
|
|
|
// did the mirroring bit change?
|
|
|
|
if((_playfieldControl^old_playfield_control)&1) {
|
|
|
|
if(_playfieldControl&1) {
|
|
|
|
for(int c = 0; c < 20; c++) _playfield[c+20] = _playfield[19-c];
|
|
|
|
} else {
|
|
|
|
memcpy(&_playfield[20], _playfield, 20);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x0b:
|
2016-05-26 01:43:19 +00:00
|
|
|
case 0x0c: _playerReflectionMask[decodedAddress - 0x0b] = (*value)&8 ? 0 : 7; break;
|
2015-08-13 20:32:22 +00:00
|
|
|
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x0d:
|
2015-08-13 20:32:22 +00:00
|
|
|
_playfield[0] = ((*value) >> 4)&1;
|
|
|
|
_playfield[1] = ((*value) >> 5)&1;
|
|
|
|
_playfield[2] = ((*value) >> 6)&1;
|
|
|
|
_playfield[3] = (*value) >> 7;
|
2015-08-13 22:23:04 +00:00
|
|
|
|
|
|
|
if(_playfieldControl&1) {
|
|
|
|
for(int c = 0; c < 4; c++) _playfield[39-c] = _playfield[c];
|
|
|
|
} else {
|
|
|
|
memcpy(&_playfield[20], _playfield, 4);
|
|
|
|
}
|
2015-08-13 20:32:22 +00:00
|
|
|
break;
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x0e:
|
2015-08-13 20:32:22 +00:00
|
|
|
_playfield[4] = (*value) >> 7;
|
|
|
|
_playfield[5] = ((*value) >> 6)&1;
|
|
|
|
_playfield[6] = ((*value) >> 5)&1;
|
|
|
|
_playfield[7] = ((*value) >> 4)&1;
|
|
|
|
_playfield[8] = ((*value) >> 3)&1;
|
|
|
|
_playfield[9] = ((*value) >> 2)&1;
|
|
|
|
_playfield[10] = ((*value) >> 1)&1;
|
|
|
|
_playfield[11] = (*value)&1;
|
2015-08-13 22:23:04 +00:00
|
|
|
|
|
|
|
if(_playfieldControl&1) {
|
|
|
|
for(int c = 0; c < 8; c++) _playfield[35-c] = _playfield[c+4];
|
|
|
|
} else {
|
|
|
|
memcpy(&_playfield[24], &_playfield[4], 8);
|
|
|
|
}
|
2015-08-13 20:32:22 +00:00
|
|
|
break;
|
|
|
|
case 0x0f:
|
|
|
|
_playfield[19] = (*value) >> 7;
|
|
|
|
_playfield[18] = ((*value) >> 6)&1;
|
|
|
|
_playfield[17] = ((*value) >> 5)&1;
|
|
|
|
_playfield[16] = ((*value) >> 4)&1;
|
|
|
|
_playfield[15] = ((*value) >> 3)&1;
|
|
|
|
_playfield[14] = ((*value) >> 2)&1;
|
|
|
|
_playfield[13] = ((*value) >> 1)&1;
|
|
|
|
_playfield[12] = (*value)&1;
|
2015-08-13 22:23:04 +00:00
|
|
|
|
|
|
|
if(_playfieldControl&1) {
|
|
|
|
for(int c = 0; c < 8; c++) _playfield[27-c] = _playfield[c+12];
|
|
|
|
} else {
|
|
|
|
memcpy(&_playfield[32], &_playfield[12], 8);
|
|
|
|
}
|
2015-08-13 20:32:22 +00:00
|
|
|
break;
|
2015-08-12 23:31:57 +00:00
|
|
|
|
|
|
|
case 0x10: case 0x11: case 0x12: case 0x13:
|
2016-05-18 11:31:05 +00:00
|
|
|
case 0x14:
|
2016-05-30 23:56:36 +00:00
|
|
|
_upcomingEvents[(_upcomingEventsPointer + 4)%number_of_upcoming_events].updates |= Event::Action::ResetCounter;
|
|
|
|
_upcomingEvents[(_upcomingEventsPointer + 4)%number_of_upcoming_events].counter = decodedAddress - 0x10;
|
2016-05-18 11:31:05 +00:00
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
|
2016-06-01 23:27:04 +00:00
|
|
|
case 0x15: case 0x16:
|
|
|
|
update_audio();
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker->set_control(decodedAddress - 0x15, *value);
|
2016-06-01 23:27:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x17: case 0x18:
|
|
|
|
update_audio();
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker->set_divider(decodedAddress - 0x17, *value);
|
2016-06-01 23:27:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x19: case 0x1a:
|
|
|
|
update_audio();
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker->set_volume(decodedAddress - 0x19, *value);
|
2016-06-01 23:27:04 +00:00
|
|
|
break;
|
|
|
|
|
2015-07-31 20:54:20 +00:00
|
|
|
case 0x1c:
|
2016-05-22 18:26:02 +00:00
|
|
|
_ballGraphicsEnable[1] = _ballGraphicsEnable[0];
|
2015-07-31 20:54:20 +00:00
|
|
|
case 0x1b: {
|
2015-08-12 23:31:57 +00:00
|
|
|
int index = decodedAddress - 0x1b;
|
2016-05-21 14:26:27 +00:00
|
|
|
_playerGraphics[0][index] = *value;
|
|
|
|
_playerGraphics[1][index^1] = _playerGraphics[0][index^1];
|
2015-07-31 20:54:20 +00:00
|
|
|
} break;
|
2016-05-26 01:43:19 +00:00
|
|
|
case 0x1d:
|
2016-06-01 01:23:44 +00:00
|
|
|
case 0x1e:
|
|
|
|
_missileGraphicsEnable[decodedAddress - 0x1d] = ((*value) >> 1)&1;
|
|
|
|
// printf("e:%02x <- %c\n", decodedAddress - 0x1d, ((*value)&1) ? 'E' : '-');
|
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
case 0x1f:
|
2016-05-26 01:43:19 +00:00
|
|
|
_ballGraphicsEnable[0] = ((*value) >> 1)&1;
|
2015-07-31 20:54:20 +00:00
|
|
|
break;
|
|
|
|
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x20:
|
|
|
|
case 0x21:
|
|
|
|
case 0x22:
|
|
|
|
case 0x23:
|
2015-08-13 17:59:23 +00:00
|
|
|
case 0x24:
|
2016-05-27 18:33:08 +00:00
|
|
|
_objectMotion[decodedAddress - 0x20] = *value;
|
2015-08-13 17:59:23 +00:00
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
|
2016-05-22 18:26:02 +00:00
|
|
|
case 0x25: _playerGraphicsSelector[0] = (*value)&1; break;
|
|
|
|
case 0x26: _playerGraphicsSelector[1] = (*value)&1; break;
|
|
|
|
case 0x27: _ballGraphicsSelector = (*value)&1; break;
|
2015-07-31 20:54:20 +00:00
|
|
|
|
2015-08-10 15:43:45 +00:00
|
|
|
case 0x28:
|
|
|
|
case 0x29:
|
2016-05-22 21:01:56 +00:00
|
|
|
{
|
2016-05-30 23:56:36 +00:00
|
|
|
// TODO: this should properly mean setting a flag and propagating later, I think?
|
2016-05-22 21:01:56 +00:00
|
|
|
int index = decodedAddress - 0x28;
|
|
|
|
if(!(*value&0x02) && _missileGraphicsReset[index])
|
|
|
|
{
|
2016-05-27 18:33:08 +00:00
|
|
|
_objectCounter[_objectCounterPointer][index + 2].count = _objectCounter[_objectCounterPointer][index].count;
|
2016-05-22 21:01:56 +00:00
|
|
|
|
|
|
|
uint8_t repeatMask = _playerAndMissileSize[index] & 7;
|
|
|
|
int extra_offset;
|
|
|
|
switch(repeatMask)
|
|
|
|
{
|
|
|
|
default: extra_offset = 3; break;
|
|
|
|
case 5: extra_offset = 6; break;
|
|
|
|
case 7: extra_offset = 10; break;
|
|
|
|
}
|
|
|
|
|
2016-05-27 18:33:08 +00:00
|
|
|
_objectCounter[_objectCounterPointer][index + 2].count = (_objectCounter[_objectCounterPointer][index + 2].count + extra_offset)%160;
|
2016-05-22 21:01:56 +00:00
|
|
|
}
|
2016-05-26 01:43:19 +00:00
|
|
|
_missileGraphicsReset[index] = !!((*value) & 0x02);
|
2016-06-01 01:23:44 +00:00
|
|
|
// printf("r:%02x <- %c\n", decodedAddress - 0x28, ((*value)&2) ? 'R' : '-');
|
2016-05-22 21:01:56 +00:00
|
|
|
}
|
2015-08-10 15:55:16 +00:00
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
|
2016-06-01 01:23:44 +00:00
|
|
|
case 0x2a: {
|
2016-05-19 12:30:10 +00:00
|
|
|
// justification for +5: "we need to wait at least 71 [clocks] before the HMOVE operation is complete";
|
|
|
|
// which will take 16*4 + 2 = 66 cycles from the first compare, implying the first compare must be
|
|
|
|
// in five cycles from now
|
2016-06-01 01:23:44 +00:00
|
|
|
// int start_pause = ((_horizontalTimer + 3)&3) + 4;
|
2016-05-23 01:45:40 +00:00
|
|
|
_upcomingEvents[(_upcomingEventsPointer + 5)%number_of_upcoming_events].updates |= Event::Action::HMoveSetup;
|
2016-06-01 01:23:44 +00:00
|
|
|
} break;
|
2015-08-10 14:09:40 +00:00
|
|
|
case 0x2b:
|
2016-05-27 18:33:08 +00:00
|
|
|
_objectMotion[0] =
|
|
|
|
_objectMotion[1] =
|
|
|
|
_objectMotion[2] =
|
|
|
|
_objectMotion[3] =
|
|
|
|
_objectMotion[4] = 0;
|
2015-08-10 15:55:16 +00:00
|
|
|
break;
|
2015-08-12 23:31:57 +00:00
|
|
|
case 0x2c:
|
|
|
|
_collisions[0] = _collisions[1] = _collisions[2] =
|
|
|
|
_collisions[3] = _collisions[4] = _collisions[5] = 0x3f;
|
|
|
|
_collisions[6] = 0x7f;
|
|
|
|
_collisions[7] = 0x3f;
|
|
|
|
break;
|
2015-07-31 20:54:20 +00:00
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-31 20:54:20 +00:00
|
|
|
// check for a PIA access
|
2016-04-25 02:32:24 +00:00
|
|
|
if((address&0x1280) == 0x280) {
|
2015-07-31 20:54:20 +00:00
|
|
|
if(isReadOperation(operation)) {
|
2016-06-19 22:57:40 +00:00
|
|
|
returnValue &= _mos6532.get_register(address);
|
2015-07-31 20:54:20 +00:00
|
|
|
} else {
|
2016-06-19 22:57:40 +00:00
|
|
|
_mos6532.set_register(address, *value);
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-31 20:54:20 +00:00
|
|
|
if(isReadOperation(operation)) {
|
|
|
|
*value = returnValue;
|
|
|
|
}
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
|
2016-06-19 22:57:40 +00:00
|
|
|
_mos6532.run_for_cycles(cycles_run_for / 3);
|
2016-06-03 00:15:48 +00:00
|
|
|
|
2016-05-28 01:51:27 +00:00
|
|
|
return cycles_run_for / 3;
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
|
|
|
|
2015-08-19 00:33:24 +00:00
|
|
|
void Machine::set_digital_input(Atari2600DigitalInput input, bool state)
|
|
|
|
{
|
|
|
|
switch (input) {
|
2016-06-19 22:57:40 +00:00
|
|
|
case Atari2600DigitalInputJoy1Up: _mos6532.update_port_input(0, 0x10, state); break;
|
|
|
|
case Atari2600DigitalInputJoy1Down: _mos6532.update_port_input(0, 0x20, state); break;
|
|
|
|
case Atari2600DigitalInputJoy1Left: _mos6532.update_port_input(0, 0x40, state); break;
|
|
|
|
case Atari2600DigitalInputJoy1Right: _mos6532.update_port_input(0, 0x80, state); break;
|
|
|
|
|
|
|
|
case Atari2600DigitalInputJoy2Up: _mos6532.update_port_input(0, 0x01, state); break;
|
|
|
|
case Atari2600DigitalInputJoy2Down: _mos6532.update_port_input(0, 0x02, state); break;
|
|
|
|
case Atari2600DigitalInputJoy2Left: _mos6532.update_port_input(0, 0x04, state); break;
|
|
|
|
case Atari2600DigitalInputJoy2Right: _mos6532.update_port_input(0, 0x08, state); break;
|
2015-08-19 00:58:05 +00:00
|
|
|
|
|
|
|
// TODO: latching
|
|
|
|
case Atari2600DigitalInputJoy1Fire: if(state) _tiaInputValue[0] &= ~0x80; else _tiaInputValue[0] |= 0x80; break;
|
|
|
|
case Atari2600DigitalInputJoy2Fire: if(state) _tiaInputValue[1] &= ~0x80; else _tiaInputValue[1] |= 0x80; break;
|
2015-08-19 00:33:24 +00:00
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-19 23:36:34 +00:00
|
|
|
void Machine::set_switch_is_enabled(Atari2600Switch input, bool state)
|
|
|
|
{
|
|
|
|
switch(input) {
|
|
|
|
case Atari2600SwitchReset: _mos6532.update_port_input(1, 0x01, state); break;
|
|
|
|
case Atari2600SwitchSelect: _mos6532.update_port_input(1, 0x02, state); break;
|
|
|
|
case Atari2600SwitchColour: _mos6532.update_port_input(1, 0x08, state); break;
|
|
|
|
case Atari2600SwitchLeftPlayerDifficulty: _mos6532.update_port_input(1, 0x40, state); break;
|
|
|
|
case Atari2600SwitchRightPlayerDifficulty: _mos6532.update_port_input(1, 0x80, state); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-15 23:34:45 +00:00
|
|
|
void Machine::configure_as_target(const StaticAnalyser::Target &target)
|
2015-07-16 23:56:02 +00:00
|
|
|
{
|
2016-09-15 23:34:45 +00:00
|
|
|
if(!target.cartridges.front()->get_segments().size()) return;
|
|
|
|
Storage::Cartridge::Cartridge::Segment segment = target.cartridges.front()->get_segments().front();
|
|
|
|
size_t length = segment.data.size();
|
|
|
|
|
2015-08-13 12:24:02 +00:00
|
|
|
_rom_size = 1024;
|
|
|
|
while(_rom_size < length && _rom_size < 32768) _rom_size <<= 1;
|
|
|
|
|
|
|
|
delete[] _rom;
|
2015-08-17 04:34:01 +00:00
|
|
|
|
2015-08-13 12:24:02 +00:00
|
|
|
_rom = new uint8_t[_rom_size];
|
2015-08-17 04:34:01 +00:00
|
|
|
|
|
|
|
size_t offset = 0;
|
|
|
|
const size_t copy_step = std::min(_rom_size, length);
|
|
|
|
while(offset < _rom_size)
|
|
|
|
{
|
|
|
|
size_t copy_length = std::min(copy_step, _rom_size - offset);
|
2016-09-15 23:34:45 +00:00
|
|
|
memcpy(&_rom[offset], &segment.data[0], copy_length);
|
2015-08-17 04:34:01 +00:00
|
|
|
offset += copy_length;
|
|
|
|
}
|
2015-08-13 12:24:02 +00:00
|
|
|
|
|
|
|
size_t romMask = _rom_size - 1;
|
|
|
|
_romPages[0] = _rom;
|
|
|
|
_romPages[1] = &_rom[1024 & romMask];
|
|
|
|
_romPages[2] = &_rom[2048 & romMask];
|
|
|
|
_romPages[3] = &_rom[3072 & romMask];
|
2015-07-16 23:56:02 +00:00
|
|
|
}
|
2016-06-01 23:27:04 +00:00
|
|
|
|
|
|
|
#pragma mark - Audio
|
|
|
|
|
|
|
|
void Machine::update_audio()
|
|
|
|
{
|
2016-06-03 00:15:48 +00:00
|
|
|
unsigned int audio_cycles = _cycles_since_speaker_update / 114;
|
|
|
|
|
|
|
|
// static unsigned int total_cycles = 0;
|
|
|
|
// total_cycles += audio_cycles;
|
|
|
|
// static time_t logged_time = 0;
|
|
|
|
// time_t time_now = time(nullptr);
|
|
|
|
// if(time_now - logged_time > 0)
|
|
|
|
// {
|
|
|
|
// printf("[s] %ld : %d\n", time_now - logged_time, total_cycles);
|
|
|
|
// total_cycles = 0;
|
|
|
|
// logged_time = time_now;
|
|
|
|
// }
|
|
|
|
|
2016-07-04 23:33:55 +00:00
|
|
|
_speaker->run_for_cycles(audio_cycles);
|
2016-06-01 23:27:04 +00:00
|
|
|
_cycles_since_speaker_update %= 114;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Machine::synchronise()
|
|
|
|
{
|
|
|
|
update_audio();
|
|
|
|
}
|
|
|
|
|
2016-06-02 23:50:16 +00:00
|
|
|
Atari2600::Speaker::Speaker()
|
|
|
|
{
|
2016-06-02 23:56:02 +00:00
|
|
|
_poly4_counter[0] = _poly4_counter[1] = 0x00f;
|
|
|
|
_poly5_counter[0] = _poly5_counter[1] = 0x01f;
|
|
|
|
_poly9_counter[0] = _poly9_counter[1] = 0x1ff;
|
2016-06-02 23:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Atari2600::Speaker::~Speaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-06-01 23:27:04 +00:00
|
|
|
void Atari2600::Speaker::set_volume(int channel, uint8_t volume)
|
|
|
|
{
|
2016-10-07 21:10:00 +00:00
|
|
|
enqueue([=]() {
|
|
|
|
_volume[channel] = volume & 0xf;
|
|
|
|
});
|
2016-06-01 23:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Atari2600::Speaker::set_divider(int channel, uint8_t divider)
|
|
|
|
{
|
2016-10-07 21:10:00 +00:00
|
|
|
enqueue([=]() {
|
|
|
|
_divider[channel] = divider & 0x1f;
|
|
|
|
_divider_counter[channel] = 0;
|
|
|
|
});
|
2016-06-01 23:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Atari2600::Speaker::set_control(int channel, uint8_t control)
|
|
|
|
{
|
2016-10-07 21:10:00 +00:00
|
|
|
enqueue([=]() {
|
|
|
|
_control[channel] = control & 0xf;
|
|
|
|
});
|
2016-06-01 23:27:04 +00:00
|
|
|
}
|
|
|
|
|
2016-06-02 23:50:16 +00:00
|
|
|
#define advance_poly4(c) _poly4_counter[channel] = (_poly4_counter[channel] >> 1) | (((_poly4_counter[channel] << 3) ^ (_poly4_counter[channel] << 2))&0x008)
|
|
|
|
#define advance_poly5(c) _poly5_counter[channel] = (_poly5_counter[channel] >> 1) | (((_poly5_counter[channel] << 4) ^ (_poly5_counter[channel] << 2))&0x010)
|
2016-06-02 23:56:02 +00:00
|
|
|
#define advance_poly9(c) _poly9_counter[channel] = (_poly9_counter[channel] >> 1) | (((_poly9_counter[channel] << 4) ^ (_poly9_counter[channel] << 8))&0x100)
|
2016-06-02 23:50:16 +00:00
|
|
|
|
2016-06-01 23:27:04 +00:00
|
|
|
void Atari2600::Speaker::get_samples(unsigned int number_of_samples, int16_t *target)
|
|
|
|
{
|
|
|
|
for(unsigned int c = 0; c < number_of_samples; c++)
|
|
|
|
{
|
|
|
|
target[c] = 0;
|
|
|
|
for(int channel = 0; channel < 2; channel++)
|
|
|
|
{
|
2016-06-02 23:50:16 +00:00
|
|
|
_divider_counter[channel] ++;
|
|
|
|
int level = 0;
|
2016-06-01 23:53:16 +00:00
|
|
|
switch(_control[channel])
|
2016-06-01 23:27:04 +00:00
|
|
|
{
|
2016-06-02 23:50:16 +00:00
|
|
|
case 0x0: case 0xb: // constant 1
|
|
|
|
level = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x4: case 0x5: // div2 tone
|
|
|
|
level = (_divider_counter[channel] / (_divider[channel]+1))&1;
|
2016-06-01 23:53:16 +00:00
|
|
|
break;
|
|
|
|
|
2016-06-02 23:50:16 +00:00
|
|
|
case 0xc: case 0xd: // div6 tone
|
|
|
|
level = (_divider_counter[channel] / ((_divider[channel]+1)*3))&1;
|
2016-06-01 23:53:16 +00:00
|
|
|
break;
|
|
|
|
|
2016-06-02 23:50:16 +00:00
|
|
|
case 0x6: case 0xa: // div31 tone
|
|
|
|
level = (_divider_counter[channel] / (_divider[channel]+1))%30 <= 18;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0xe: // div93 tone
|
|
|
|
level = (_divider_counter[channel] / ((_divider[channel]+1)*3))%30 <= 18;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x1: // 4-bit poly
|
|
|
|
level = _poly4_counter[channel]&1;
|
|
|
|
if(_divider_counter[channel] == _divider[channel]+1)
|
|
|
|
{
|
|
|
|
_divider_counter[channel] = 0;
|
|
|
|
advance_poly4(channel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x2: // 4-bit poly div31
|
|
|
|
level = _poly4_counter[channel]&1;
|
|
|
|
if(_divider_counter[channel]%(30*(_divider[channel]+1)) == 18)
|
|
|
|
{
|
|
|
|
advance_poly4(channel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x3: // 5/4-bit poly
|
|
|
|
level = _output_state[channel];
|
|
|
|
if(_divider_counter[channel] == _divider[channel]+1)
|
|
|
|
{
|
|
|
|
if(_poly5_counter[channel]&1)
|
|
|
|
{
|
|
|
|
_output_state[channel] = _poly4_counter[channel]&1;
|
|
|
|
advance_poly4(channel);
|
|
|
|
}
|
|
|
|
advance_poly5(channel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x7: case 0x9: // 5-bit poly
|
|
|
|
level = _poly5_counter[channel]&1;
|
|
|
|
if(_divider_counter[channel] == _divider[channel]+1)
|
|
|
|
{
|
|
|
|
_divider_counter[channel] = 0;
|
|
|
|
advance_poly5(channel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0xf: // 5-bit poly div6
|
|
|
|
level = _poly5_counter[channel]&1;
|
|
|
|
if(_divider_counter[channel] == (_divider[channel]+1)*3)
|
|
|
|
{
|
|
|
|
_divider_counter[channel] = 0;
|
|
|
|
advance_poly5(channel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x8: // 9-bit poly
|
|
|
|
level = _poly9_counter[channel]&1;
|
|
|
|
if(_divider_counter[channel] == _divider[channel]+1)
|
|
|
|
{
|
|
|
|
_divider_counter[channel] = 0;
|
|
|
|
advance_poly9(channel);
|
|
|
|
}
|
2016-06-01 23:53:16 +00:00
|
|
|
break;
|
2016-06-01 23:27:04 +00:00
|
|
|
}
|
2016-06-02 23:50:16 +00:00
|
|
|
|
|
|
|
target[c] += _volume[channel] * 1024 * level;
|
2016-06-01 23:27:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|