mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2025-02-12 15:30:25 +00:00
39 lines
770 B
C++
39 lines
770 B
C++
#ifndef APPLESOFTFILE_H
|
|
#define APPLESOFTFILE_H
|
|
|
|
#include <QByteArray>
|
|
#include <QStringList>
|
|
#include <QMap>
|
|
|
|
#include "genericfile.h"
|
|
|
|
struct ApplesoftLine {
|
|
quint16 next_address;
|
|
quint16 linenum;
|
|
QByteArray tokens;
|
|
QString detokenized_line;
|
|
};
|
|
|
|
|
|
class ApplesoftFile : public GenericFile
|
|
{
|
|
public:
|
|
ApplesoftFile(QByteArray data = QByteArray());
|
|
void setData(QByteArray data);
|
|
QByteArray extraData();
|
|
QList<ApplesoftLine> detokenized() { return m_detokenized; }
|
|
void list();
|
|
QStringList extraDataHexValues();
|
|
|
|
private:
|
|
void makeTokens();
|
|
QList<ApplesoftLine> detokenize();
|
|
|
|
int m_data_end;
|
|
QMap<quint8,QString> m_tokens;
|
|
quint16 m_length;
|
|
QList<ApplesoftLine> m_detokenized;
|
|
};
|
|
|
|
#endif // APPLESOFTFILE_H
|