/* epple2 Copyright © 2008, 2019, Christopher Alan Mosher, Shelton, CT, USA. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "cassette.h" #include "e2const.h" #include #include #include #include Cassette::Cassette(ScreenImage& gui): gui(gui), t(0), t_active(0), playing(false), modified(false) { } Cassette::~Cassette() { } void Cassette::note(const char *n) { std::cout << "cassette (" << port() << "): " << n << std::endl; } void Cassette::tick() { if (this->playing) { ++this->t; /* * Automatically stop the tape if the Apple doesn't use * it within the given number of cycles. */ if (this->t_active+3*E2Const::AVG_CPU_HZ <= this->t) { note("STOP"); std::cout << "cassette: t=" << this->t << std::endl; this->playing = false; } } } static int askSave() { wxMessageDialog *dlg = new wxMessageDialog{ nullptr, "You have unsaved changes to your tape image.\nDo you want to SAVE them?", "Save changes", (long)(wxYES_NO|wxCANCEL|wxCANCEL_DEFAULT)}; return dlg->ShowModal(); } bool Cassette::eject() { if (isLoaded()) { if (isModified()) { const int resp = askSave(); if (resp == wxID_CANCEL) { return false; } if (resp == wxID_YES) { if (!write()) { return false; } } this->modified = false; this->gui.setCassetteDirty(false); } this->file.clear(); this->playing = false; this->t = 0; this->t_active = 0; } return true; } void Cassette::save() { if (isLoaded()) { if (isModified()) { if (write()) { this->modified = false; this->gui.setCassetteDirty(false); } else { // TODO show error messsage } } } } bool Cassette::isLoaded() { return !this->file.empty(); } bool Cassette::isModified() { return this->modified; }