mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
Added a shell class that will one day be able to parse CSW files, plus the logic and metadata to instantiate it when a CSW presents itself.
This commit is contained in:
parent
d853841dd5
commit
368bff1a82
@ -51,6 +51,7 @@
|
|||||||
4B3BA0CF1D318B44005DD7A7 /* MOS6522Bridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BA0C91D318B44005DD7A7 /* MOS6522Bridge.mm */; };
|
4B3BA0CF1D318B44005DD7A7 /* MOS6522Bridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BA0C91D318B44005DD7A7 /* MOS6522Bridge.mm */; };
|
||||||
4B3BA0D01D318B44005DD7A7 /* MOS6532Bridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BA0CB1D318B44005DD7A7 /* MOS6532Bridge.mm */; };
|
4B3BA0D01D318B44005DD7A7 /* MOS6532Bridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BA0CB1D318B44005DD7A7 /* MOS6532Bridge.mm */; };
|
||||||
4B3BA0D11D318B44005DD7A7 /* TestMachine6502.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BA0CD1D318B44005DD7A7 /* TestMachine6502.mm */; };
|
4B3BA0D11D318B44005DD7A7 /* TestMachine6502.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BA0CD1D318B44005DD7A7 /* TestMachine6502.mm */; };
|
||||||
|
4B3BF5B01F146265005B6C36 /* CSW.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B3BF5AE1F146264005B6C36 /* CSW.cpp */; };
|
||||||
4B3F1B461E0388D200DB26EE /* PCMPatchedTrack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B3F1B441E0388D200DB26EE /* PCMPatchedTrack.cpp */; };
|
4B3F1B461E0388D200DB26EE /* PCMPatchedTrack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B3F1B441E0388D200DB26EE /* PCMPatchedTrack.cpp */; };
|
||||||
4B44EBF51DC987AF00A7820C /* AllSuiteA.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4B44EBF41DC987AE00A7820C /* AllSuiteA.bin */; };
|
4B44EBF51DC987AF00A7820C /* AllSuiteA.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4B44EBF41DC987AE00A7820C /* AllSuiteA.bin */; };
|
||||||
4B44EBF71DC9883B00A7820C /* 6502_functional_test.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4B44EBF61DC9883B00A7820C /* 6502_functional_test.bin */; };
|
4B44EBF71DC9883B00A7820C /* 6502_functional_test.bin in Resources */ = {isa = PBXBuildFile; fileRef = 4B44EBF61DC9883B00A7820C /* 6502_functional_test.bin */; };
|
||||||
@ -539,6 +540,8 @@
|
|||||||
4B3BA0CB1D318B44005DD7A7 /* MOS6532Bridge.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MOS6532Bridge.mm; sourceTree = "<group>"; };
|
4B3BA0CB1D318B44005DD7A7 /* MOS6532Bridge.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MOS6532Bridge.mm; sourceTree = "<group>"; };
|
||||||
4B3BA0CC1D318B44005DD7A7 /* TestMachine6502.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestMachine6502.h; sourceTree = "<group>"; };
|
4B3BA0CC1D318B44005DD7A7 /* TestMachine6502.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestMachine6502.h; sourceTree = "<group>"; };
|
||||||
4B3BA0CD1D318B44005DD7A7 /* TestMachine6502.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TestMachine6502.mm; sourceTree = "<group>"; };
|
4B3BA0CD1D318B44005DD7A7 /* TestMachine6502.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TestMachine6502.mm; sourceTree = "<group>"; };
|
||||||
|
4B3BF5AE1F146264005B6C36 /* CSW.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSW.cpp; sourceTree = "<group>"; };
|
||||||
|
4B3BF5AF1F146264005B6C36 /* CSW.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = CSW.hpp; sourceTree = "<group>"; };
|
||||||
4B3F1B441E0388D200DB26EE /* PCMPatchedTrack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PCMPatchedTrack.cpp; sourceTree = "<group>"; };
|
4B3F1B441E0388D200DB26EE /* PCMPatchedTrack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PCMPatchedTrack.cpp; sourceTree = "<group>"; };
|
||||||
4B3F1B451E0388D200DB26EE /* PCMPatchedTrack.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = PCMPatchedTrack.hpp; sourceTree = "<group>"; };
|
4B3F1B451E0388D200DB26EE /* PCMPatchedTrack.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = PCMPatchedTrack.hpp; sourceTree = "<group>"; };
|
||||||
4B44EBF41DC987AE00A7820C /* AllSuiteA.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = AllSuiteA.bin; path = AllSuiteA/AllSuiteA.bin; sourceTree = "<group>"; };
|
4B44EBF41DC987AE00A7820C /* AllSuiteA.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = AllSuiteA.bin; path = AllSuiteA/AllSuiteA.bin; sourceTree = "<group>"; };
|
||||||
@ -1394,17 +1397,19 @@
|
|||||||
4B69FB411C4D941400B5F0AA /* Formats */ = {
|
4B69FB411C4D941400B5F0AA /* Formats */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
4B69FB451C4D950F00B5F0AA /* libz.tbd */,
|
|
||||||
4B69FB421C4D941400B5F0AA /* TapeUEF.cpp */,
|
|
||||||
4B69FB431C4D941400B5F0AA /* TapeUEF.hpp */,
|
|
||||||
4BC91B811D1F160E00884B76 /* CommodoreTAP.cpp */,
|
4BC91B811D1F160E00884B76 /* CommodoreTAP.cpp */,
|
||||||
4BC91B821D1F160E00884B76 /* CommodoreTAP.hpp */,
|
4B3BF5AE1F146264005B6C36 /* CSW.cpp */,
|
||||||
4B2BFC5D1D613E0200BA3AA9 /* TapePRG.cpp */,
|
|
||||||
4B2BFC5E1D613E0200BA3AA9 /* TapePRG.hpp */,
|
|
||||||
4B59199A1DAC6C46005BB85C /* OricTAP.cpp */,
|
4B59199A1DAC6C46005BB85C /* OricTAP.cpp */,
|
||||||
4B59199B1DAC6C46005BB85C /* OricTAP.hpp */,
|
4B2BFC5D1D613E0200BA3AA9 /* TapePRG.cpp */,
|
||||||
|
4B69FB421C4D941400B5F0AA /* TapeUEF.cpp */,
|
||||||
4B1497861EE4A1DA00CE2596 /* ZX80O81P.cpp */,
|
4B1497861EE4A1DA00CE2596 /* ZX80O81P.cpp */,
|
||||||
|
4BC91B821D1F160E00884B76 /* CommodoreTAP.hpp */,
|
||||||
|
4B3BF5AF1F146264005B6C36 /* CSW.hpp */,
|
||||||
|
4B59199B1DAC6C46005BB85C /* OricTAP.hpp */,
|
||||||
|
4B2BFC5E1D613E0200BA3AA9 /* TapePRG.hpp */,
|
||||||
|
4B69FB431C4D941400B5F0AA /* TapeUEF.hpp */,
|
||||||
4B1497871EE4A1DA00CE2596 /* ZX80O81P.hpp */,
|
4B1497871EE4A1DA00CE2596 /* ZX80O81P.hpp */,
|
||||||
|
4B69FB451C4D950F00B5F0AA /* libz.tbd */,
|
||||||
);
|
);
|
||||||
path = Formats;
|
path = Formats;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
@ -2593,6 +2598,7 @@
|
|||||||
4BD69F941D98760000243FE1 /* AcornADF.cpp in Sources */,
|
4BD69F941D98760000243FE1 /* AcornADF.cpp in Sources */,
|
||||||
4BBF99181C8FBA6F0075DAFB /* TextureTarget.cpp in Sources */,
|
4BBF99181C8FBA6F0075DAFB /* TextureTarget.cpp in Sources */,
|
||||||
4BC76E691C98E31700E6EF73 /* FIRFilter.cpp in Sources */,
|
4BC76E691C98E31700E6EF73 /* FIRFilter.cpp in Sources */,
|
||||||
|
4B3BF5B01F146265005B6C36 /* CSW.cpp in Sources */,
|
||||||
4B2A332A1DB8544D002876E3 /* MemoryFuzzer.cpp in Sources */,
|
4B2A332A1DB8544D002876E3 /* MemoryFuzzer.cpp in Sources */,
|
||||||
4B55CE5F1C3B7D960093A61B /* MachineDocument.swift in Sources */,
|
4B55CE5F1C3B7D960093A61B /* MachineDocument.swift in Sources */,
|
||||||
4B2A332F1DB86869002876E3 /* OricOptionsPanel.swift in Sources */,
|
4B2A332F1DB86869002876E3 /* OricOptionsPanel.swift in Sources */,
|
||||||
|
@ -141,6 +141,8 @@
|
|||||||
<string>Electron/BBC Disk Image</string>
|
<string>Electron/BBC Disk Image</string>
|
||||||
<key>CFBundleTypeRole</key>
|
<key>CFBundleTypeRole</key>
|
||||||
<string>Editor</string>
|
<string>Editor</string>
|
||||||
|
<key>LSTypeIsPackage</key>
|
||||||
|
<integer>0</integer>
|
||||||
<key>NSDocumentClass</key>
|
<key>NSDocumentClass</key>
|
||||||
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
||||||
</dict>
|
</dict>
|
||||||
@ -155,6 +157,8 @@
|
|||||||
<string>Disk Image</string>
|
<string>Disk Image</string>
|
||||||
<key>CFBundleTypeRole</key>
|
<key>CFBundleTypeRole</key>
|
||||||
<string>Editor</string>
|
<string>Editor</string>
|
||||||
|
<key>LSTypeIsPackage</key>
|
||||||
|
<integer>0</integer>
|
||||||
<key>NSDocumentClass</key>
|
<key>NSDocumentClass</key>
|
||||||
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
||||||
</dict>
|
</dict>
|
||||||
@ -170,6 +174,8 @@
|
|||||||
<string>ZX80 Tape Image</string>
|
<string>ZX80 Tape Image</string>
|
||||||
<key>CFBundleTypeRole</key>
|
<key>CFBundleTypeRole</key>
|
||||||
<string>Viewer</string>
|
<string>Viewer</string>
|
||||||
|
<key>LSTypeIsPackage</key>
|
||||||
|
<integer>0</integer>
|
||||||
<key>NSDocumentClass</key>
|
<key>NSDocumentClass</key>
|
||||||
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
||||||
</dict>
|
</dict>
|
||||||
@ -185,6 +191,24 @@
|
|||||||
<string>ZX81 Tape Image</string>
|
<string>ZX81 Tape Image</string>
|
||||||
<key>CFBundleTypeRole</key>
|
<key>CFBundleTypeRole</key>
|
||||||
<string>Viewer</string>
|
<string>Viewer</string>
|
||||||
|
<key>LSTypeIsPackage</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>NSDocumentClass</key>
|
||||||
|
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeExtensions</key>
|
||||||
|
<array>
|
||||||
|
<string>csw</string>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleTypeIconFile</key>
|
||||||
|
<string>cassette</string>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>Tape Image</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Viewer</string>
|
||||||
|
<key>LSTypeIsPackage</key>
|
||||||
|
<integer>0</integer>
|
||||||
<key>NSDocumentClass</key>
|
<key>NSDocumentClass</key>
|
||||||
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
<string>$(PRODUCT_MODULE_NAME).MachineDocument</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
|
|
||||||
// Tapes
|
// Tapes
|
||||||
#include "../Storage/Tape/Formats/CommodoreTAP.hpp"
|
#include "../Storage/Tape/Formats/CommodoreTAP.hpp"
|
||||||
|
#include "../Storage/Tape/Formats/CSW.hpp"
|
||||||
#include "../Storage/Tape/Formats/OricTAP.hpp"
|
#include "../Storage/Tape/Formats/OricTAP.hpp"
|
||||||
#include "../Storage/Tape/Formats/TapePRG.hpp"
|
#include "../Storage/Tape/Formats/TapePRG.hpp"
|
||||||
#include "../Storage/Tape/Formats/TapeUEF.hpp"
|
#include "../Storage/Tape/Formats/TapeUEF.hpp"
|
||||||
@ -42,6 +43,8 @@ enum class TargetPlatform: TargetPlatformType {
|
|||||||
Commodore = 1 << 2,
|
Commodore = 1 << 2,
|
||||||
Oric = 1 << 3,
|
Oric = 1 << 3,
|
||||||
ZX8081 = 1 << 4,
|
ZX8081 = 1 << 4,
|
||||||
|
|
||||||
|
AllTape = Acorn | Commodore | Oric | ZX8081,
|
||||||
};
|
};
|
||||||
|
|
||||||
using namespace StaticAnalyser;
|
using namespace StaticAnalyser;
|
||||||
@ -94,6 +97,7 @@ std::list<Target> StaticAnalyser::GetTargets(const char *file_name)
|
|||||||
Format("a26", cartridges, Cartridge::BinaryDump, TargetPlatform::Atari2600) // A26
|
Format("a26", cartridges, Cartridge::BinaryDump, TargetPlatform::Atari2600) // A26
|
||||||
Format("adf", disks, Disk::AcornADF, TargetPlatform::Acorn) // ADF
|
Format("adf", disks, Disk::AcornADF, TargetPlatform::Acorn) // ADF
|
||||||
Format("bin", cartridges, Cartridge::BinaryDump, TargetPlatform::Atari2600) // BIN
|
Format("bin", cartridges, Cartridge::BinaryDump, TargetPlatform::Atari2600) // BIN
|
||||||
|
Format("csw", tapes, Tape::CSW, TargetPlatform::AllTape) // CSW
|
||||||
Format("d64", disks, Disk::D64, TargetPlatform::Commodore) // D64
|
Format("d64", disks, Disk::D64, TargetPlatform::Commodore) // D64
|
||||||
Format("dsd", disks, Disk::SSD, TargetPlatform::Acorn) // DSD
|
Format("dsd", disks, Disk::SSD, TargetPlatform::Acorn) // DSD
|
||||||
Format("dsk", disks, Disk::OricMFMDSK, TargetPlatform::Oric) // DSK
|
Format("dsk", disks, Disk::OricMFMDSK, TargetPlatform::Oric) // DSK
|
||||||
|
27
Storage/Tape/Formats/CSW.cpp
Normal file
27
Storage/Tape/Formats/CSW.cpp
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
//
|
||||||
|
// CSW.cpp
|
||||||
|
// Clock Signal
|
||||||
|
//
|
||||||
|
// Created by Thomas Harte on 10/07/2017.
|
||||||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "CSW.hpp"
|
||||||
|
|
||||||
|
using namespace Storage::Tape;
|
||||||
|
|
||||||
|
CSW::CSW(const char *file_name) :
|
||||||
|
Storage::FileHolder(file_name) {
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CSW::is_at_end() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSW::virtual_reset() {
|
||||||
|
}
|
||||||
|
|
||||||
|
Tape::Pulse CSW::virtual_get_next_pulse() {
|
||||||
|
Tape::Pulse pulse;
|
||||||
|
return pulse;
|
||||||
|
}
|
45
Storage/Tape/Formats/CSW.hpp
Normal file
45
Storage/Tape/Formats/CSW.hpp
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
//
|
||||||
|
// CSW.hpp
|
||||||
|
// Clock Signal
|
||||||
|
//
|
||||||
|
// Created by Thomas Harte on 10/07/2017.
|
||||||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef CSW_hpp
|
||||||
|
#define CSW_hpp
|
||||||
|
|
||||||
|
#include "../Tape.hpp"
|
||||||
|
#include "../../FileHolder.hpp"
|
||||||
|
|
||||||
|
namespace Storage {
|
||||||
|
namespace Tape {
|
||||||
|
|
||||||
|
/*!
|
||||||
|
Provides a @c Tape containing a CSW tape image, which is a compressed 1-bit sampling.
|
||||||
|
*/
|
||||||
|
class CSW: public Tape, public Storage::FileHolder {
|
||||||
|
public:
|
||||||
|
/*!
|
||||||
|
Constructs a @c CSW containing content from the file with name @c file_name.
|
||||||
|
|
||||||
|
@throws ErrorNotCSW if this file could not be opened and recognised as a valid CSW file.
|
||||||
|
*/
|
||||||
|
CSW(const char *file_name);
|
||||||
|
|
||||||
|
enum {
|
||||||
|
ErrorNotCSW
|
||||||
|
};
|
||||||
|
|
||||||
|
// implemented to satisfy @c Tape
|
||||||
|
bool is_at_end();
|
||||||
|
|
||||||
|
private:
|
||||||
|
void virtual_reset();
|
||||||
|
Pulse virtual_get_next_pulse();
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* CSW_hpp */
|
@ -24,9 +24,9 @@ namespace Tape {
|
|||||||
class ZX80O81P: public Tape, public Storage::FileHolder {
|
class ZX80O81P: public Tape, public Storage::FileHolder {
|
||||||
public:
|
public:
|
||||||
/*!
|
/*!
|
||||||
Constructs an @c ZX80O containing content from the file with name @c file_name.
|
Constructs a @c ZX80O containing content from the file with name @c file_name.
|
||||||
|
|
||||||
@throws ErrorNotZX80O if this file could not be opened and recognised as a valid ZX80-format .O.
|
@throws ErrorNotZX80O81P if this file could not be opened and recognised as a valid ZX80-format .O.
|
||||||
*/
|
*/
|
||||||
ZX80O81P(const char *file_name);
|
ZX80O81P(const char *file_name);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user