mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
Flips meaning of ejected bit, to please the IIgs.
This commit is contained in:
parent
62f936128d
commit
cddd72876f
@ -142,8 +142,11 @@ bool DoubleDensityDrive::read() {
|
||||
return !get_is_track_zero();
|
||||
|
||||
case CA1|CA0: // Disk has been ejected.
|
||||
// (0 = user has ejected disk)
|
||||
return !has_new_disk_;
|
||||
// (1 = user has ejected disk)
|
||||
//
|
||||
// TODO: does this really mean _user_ has ejected disk? If so then I should avoid
|
||||
// changing the flag upon a programmatic eject.
|
||||
return has_new_disk_;
|
||||
|
||||
case CA1|CA0|SEL: // Tachometer.
|
||||
// (arbitrary)
|
||||
@ -174,6 +177,6 @@ bool DoubleDensityDrive::read() {
|
||||
}
|
||||
}
|
||||
|
||||
void DoubleDensityDrive::did_set_disk() {
|
||||
has_new_disk_ = true;
|
||||
void DoubleDensityDrive::did_set_disk(bool did_replace) {
|
||||
has_new_disk_ = did_replace;
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ class DoubleDensityDrive: public IWMDrive {
|
||||
|
||||
// To receive the proper notifications from Storage::Disk::Drive.
|
||||
void did_step(Storage::Disk::HeadPosition to_position) final;
|
||||
void did_set_disk() final;
|
||||
void did_set_disk(bool) final;
|
||||
|
||||
const bool is_800k_;
|
||||
bool has_new_disk_ = false;
|
||||
|
@ -58,12 +58,13 @@ void Drive::set_disk(const std::shared_ptr<Disk> &disk) {
|
||||
if(ready_type_ == ReadyType::ShugartModifiedRDY || ready_type_ == ReadyType::IBMRDY) {
|
||||
is_ready_ = false;
|
||||
}
|
||||
const bool had_disk = bool(disk_);
|
||||
if(disk_) disk_->flush_tracks();
|
||||
disk_ = disk;
|
||||
has_disk_ = !!disk_;
|
||||
|
||||
invalidate_track();
|
||||
did_set_disk();
|
||||
did_set_disk(had_disk);
|
||||
update_clocking_observer();
|
||||
}
|
||||
|
||||
|
@ -187,8 +187,10 @@ class Drive: public ClockingHint::Source, public TimedEventLoop {
|
||||
|
||||
/*!
|
||||
Announces new media installation.
|
||||
|
||||
@c did_replace is @c true if a previous disk was replaced; @c false if the drive was previously empty.
|
||||
*/
|
||||
virtual void did_set_disk() {}
|
||||
virtual void did_set_disk(bool did_replace [[maybe_unused]]) {}
|
||||
|
||||
/*!
|
||||
@returns the current rotation of the disk, a float in the half-open range
|
||||
|
Loading…
Reference in New Issue
Block a user