-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsioworker.cpp
executable file
·419 lines (361 loc) · 10.6 KB
/
sioworker.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
#include "sioworker.h"
#include "respeqtsettings.h"
#include <QFile>
#include <QDateTime>
#include <QtDebug>
/* SioDevice */
SioDevice::SioDevice(SioWorker *worker)
:QObject()
{
sio = worker;
m_deviceNo = -1;
}
SioDevice::~SioDevice()
{
if (m_deviceNo != -1) {
sio->uninstallDevice(m_deviceNo);
}
}
QString SioDevice::deviceName()
{
return sio->deviceName(m_deviceNo);
}
/* SioWorker */
SioWorker::SioWorker()
: QThread()
{
deviceMutex = new QMutex(QMutex::Recursive);
for (int i=0; i <= 255; i++) {
devices[i] = 0;
}
mPort = 0;
}
SioWorker::~SioWorker()
{
for (int i=0; i <= 255; i++) {
if (devices[i]) {
delete devices[i];
}
}
delete deviceMutex;
}
bool SioWorker::wait(unsigned long time)
{
mustTerminate = true;
if (mPort) {
mPort->cancel();
}
bool result = QThread::wait(time);
if (mPort) {
delete mPort;
mPort = 0;
}
return result;
}
void SioWorker::start(Priority p)
{
switch (respeqtSettings->backend()) {
case 0:
mPort = new StandardSerialPortBackend(0);
break;
case 1:
mPort = new AtariSioBackend(0);
break;
}
mustTerminate = false;
QThread::start(p);
}
void SioWorker::run()
{
connect(mPort, SIGNAL(statusChanged(QString)), this, SIGNAL(statusChanged(QString)));
/* Open serial port */
if (!mPort->open()) {
return;
}
/* Process SIO commands until we're explicitly stopped */
while (!mustTerminate) {
// qDebug() << "!d" << tr("DBG -- SIOWORKER...");
QByteArray cmd = mPort->readCommandFrame();
if (mustTerminate) {
break;
}
if (cmd.isEmpty()) {
qCritical() << "!e" << tr("Cannot read command frame.");
break;
}
/* Decode the command */
quint8 no = (quint8)cmd[0];
quint8 command = (quint8)cmd[1];
quint16 aux = ((quint8)cmd[2]) + ((quint8)cmd[3] * 256);
/* Redirect the command to the appropriate device */
deviceMutex->lock();
if (devices[no]) {
if (devices[no]->tryLock()) {
devices[no]->handleCommand(command, aux);
devices[no]->unlock();
} else {
qWarning() << "!w" << tr("[%1] command: $%2, aux: $%3 ignored because the image explorer is open.")
.arg(deviceName(no))
.arg(command, 2, 16, QChar('0'))
.arg(aux, 4, 16, QChar('0'));
}
} else {
qDebug() << "!u" << tr("[%1] command: $%2, aux: $%3 ignored.")
.arg(deviceName(no))
.arg(command, 2, 16, QChar('0'))
.arg(aux, 4, 16, QChar('0'));
}
deviceMutex->unlock();
cmd.clear();
}
mPort->close();
}
void SioWorker::installDevice(quint8 no, SioDevice *device)
{
deviceMutex->lock();
if (devices[no]) {
delete devices[no];
}
devices[no] = device;
device->setDeviceNo(no);
deviceMutex->unlock();
}
void SioWorker::uninstallDevice(quint8 no)
{
deviceMutex->lock();
if (devices[no]) {
devices[no]->setDeviceNo(-1);
}
devices[no] = 0;
deviceMutex->unlock();
}
void SioWorker::swapDevices(quint8 d1, quint8 d2)
{
SioDevice *t1, *t2;
deviceMutex->lock();
t1 = devices[d1];
t2 = devices[d2];
uninstallDevice(d1);
uninstallDevice(d2);
if (t2) {
installDevice(d1, t2);
}
if (t1) {
installDevice(d2, t1);
}
deviceMutex->unlock();
}
SioDevice* SioWorker::getDevice(quint8 no)
{
SioDevice *result;
deviceMutex->lock();
result = devices[no];
deviceMutex->unlock();
return result;
}
QString SioWorker::deviceName(int device)
{
QString result;
switch (device) {
case -1:
// It must be because of the piggy-backed autoboot
result = tr("Disk 1 (below autoboot)");
break;
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39: // Sparta DOS supports up to 15 disk drives
case 0x3a:
case 0x3b:
case 0x3c:
case 0x3d:
case 0x3e:
case 0x3f:
result = tr("Disk %1").arg(device & 0x0F);
break;
case 0x40:
case 0x41:
case 0x42:
case 0x43:
result = tr("Printer %1").arg((device & 0x0F) + 1);
break;
case 0x45:
result = tr("APE time downloader");
break;
case 0x46:
result = tr("AspeQt Client");
break;
case 0x50:
case 0x51:
case 0x52:
case 0x53:
result = tr("RS232 %1").arg((device & 0x0F) +1);
break;
default:
result = tr("Device $%1").arg(device, 2, 16, QChar('0'));
break;
}
return result;
}
/* CassetteWorker */
CassetteWorker::CassetteWorker()
: QThread()
{
mPort = 0;
mustTerminate.lock();
}
CassetteWorker::~CassetteWorker()
{
}
bool CassetteWorker::loadCasImage(const QString &fileName)
{
mRecords.clear();
QFile casFile(fileName);
if (!casFile.open(QFile::ReadOnly)) {
qCritical() << "!e" << tr("Cannot open '%1': %2").arg(fileName).arg(casFile.errorString());
return false;
}
QByteArray header, data;
uint magic;
int length, aux;
header = casFile.read(8);
if (header.length() != 8) {
qCritical() << "!e" << tr("Cannot read '%1': %2").arg(fileName).arg(casFile.errorString());
return false;
}
magic = (quint8)header.at(0) + (quint8)header.at(1) * 256 + (quint8)header.at(2) * 65536 + (quint8)header.at(3) * 16777216;
length = (quint8)header.at(4) + (quint8)header.at(5) * 256;
aux = (quint8)header.at(6) + (quint8)header.at(7) * 256;
data = casFile.read(length);
if (data.length() != length) {
qCritical() << "!e" << tr("Cannot read '%1': %2").arg(fileName).arg(casFile.errorString());
return false;
}
/* Verify the header */
if (magic != 0x494a5546) { // "FUJI"
qCritical() << "!e" << tr("Cannot open '%1': The header does not match.").arg(fileName);
return false;
}
if (!data.isEmpty()) {
qDebug() << "!n" << tr("[Cassette]: File description '%2'.").arg(QString::fromLatin1(data));
}
int lastBaud = 600;
mTotalDuration = 0;
/* Read the cas file */
do {
header = casFile.read(8);
if (header.length() != 8) {
qCritical() << "!e" << tr("Cannot read '%1': %2").arg(fileName).arg(casFile.errorString());
return false;
}
magic = (quint8)header.at(0) + (quint8)header.at(1) * 256 + (quint8)header.at(2) * 65536 + (quint8)header.at(3) * 16777216;
length = (quint8)header.at(4) + (quint8)header.at(5) * 256;
aux = (quint8)header.at(6) + (quint8)header.at(7) * 256;
data = casFile.read(length);
if (data.length() != length) {
qCritical() << "!e" << tr("Cannot read '%1': %2").arg(fileName).arg(casFile.errorString());
return false;
}
/* Verify the header */
if (magic == 0x64756162) { // "baud"
if (respeqtSettings->useCustomCasBaud()) {
lastBaud = respeqtSettings->customCasBaud();
} else {
lastBaud = aux;
}
} else if (magic == 0x61746164) { // "data"
CassetteRecord record;
record.baudRate = lastBaud;
record.data = data;
record.gapDuration = aux;
record.totalDuration = aux + (length * 10000 + (lastBaud/2))/lastBaud;
mTotalDuration += record.totalDuration;
mRecords.append(record);
} else {
qCritical() << "!e" << tr("Cannot open '%1': Unknown chunk header %2.").arg(fileName).arg(magic);
return false;
}
} while (!casFile.atEnd());
return true;
}
bool CassetteWorker::wait (unsigned long time)
{
if (mPort) {
mPort->cancel();
}
mustTerminate.unlock();
bool result = QThread::wait(time);
if (mPort) {
mPort->close();
delete mPort;
mPort = 0;
}
return result;
}
void CassetteWorker::run()
{
/* Open serial port */
if (!mPort->open()) {
return;
}
int lastBaud = 0;
int block = 1;
int remainingTime = mTotalDuration;
QTime tm = QTime::currentTime();
foreach (CassetteRecord record, mRecords) {
if (lastBaud != record.baudRate) {
lastBaud = record.baudRate;
if (!mPort->setSpeed(lastBaud)) {
return;
}
}
emit statusChanged(remainingTime);
qDebug() << "!n" << tr("[Cassette] Playing record %1 of %2 (%3 ms of gap + %4 bytes of data)")
.arg(block)
.arg(mRecords.count())
.arg(record.gapDuration)
.arg(record.data.length());
tm = tm.addMSecs(record.gapDuration);
int w = QTime::currentTime().msecsTo(tm);
if (w < 0) {
w = 0;
}
if (mustTerminate.tryLock(w)) {
return;
}
tm = QTime::currentTime();
tm = tm.addMSecs((record.data.length() * 10000 + (lastBaud/2))/lastBaud);
for (int i=0; i < record.data.length(); i+=10) {
mPort->writeRawFrame(record.data.mid(i, 10));
if (mustTerminate.tryLock()) {
return;
}
}
block++;
remainingTime -= record.totalDuration;
}
// Wait until last written bytes are transferred and then some (FTDI bug)
int w = QTime::currentTime().msecsTo(tm);
if (w < 0) {
w = 0;
}
msleep(w + 500);
mPort->close();
}
void CassetteWorker::start(Priority p)
{
switch (respeqtSettings->backend()) {
case 0:
mPort = new StandardSerialPortBackend(0);
break;
case 1:
mPort = new AtariSioBackend(0);
break;
}
QThread::start(p);
}