summaryrefslogtreecommitdiff
path: root/qpsxserial.cpp
blob: 5775d00fe1756d3a79773de3f55dc3e17e3ff9fe (plain) (blame)
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#include <QFileDialog>
#include <QFile>
#include <QSerialPortInfo>
#include "qpsxserial.h"
#include "ui_qpsxserial.h"

QPSXSerial::QPSXSerial(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::QPSXSerial),
    stdout_ui(new Ui::Stdout_Console)
{
    ui->setupUi(this);
    lost_packet_timer = new QTimer();

    connect(lost_packet_timer, SIGNAL(timeout()), this, SLOT(onPacketLost()));
    connect(ui->stdout_Button, SIGNAL(released()), this, SLOT(onStdOutButtonReleased()));
    connect(ui->loadFile_Btn, SIGNAL(released()), this, SLOT(onLoadFileBtnReleased()));
    connect(ui->updatePorts_Btn, SIGNAL(released()), this, SLOT(onUpdatePortsBtnReleased()));
    connect(ui->send_Btn, SIGNAL(released()), this, SLOT(onSendBtnReleased()));
    connect(ui->ports_ComboBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(onPortSelectedComboBox(QString)));
    connect(&serial, SIGNAL(bytesWritten(qint64)), this, SLOT(onBytesWritten(qint64)));
    connect(&serial, SIGNAL(readyRead()), this, SLOT(onReadyRead(void)));

    ack = false;
    init_timer = NULL;

    ui->exeProgressBar->setVisible(false);

    ui->send_Btn->setEnabled(false);

    ui->inFileName->setVisible(false);

    write_ready = false;
    exe_sent = false;
}

QPSXSerial::~QPSXSerial()
{
    if(serial.isOpen() == true)
    {
        serial.close();
    }

    delete ui;
}

void QPSXSerial::onStdOutButtonReleased(void)
{
    QDialog* dialog_ui = new QDialog();

    qDebug() << "1";

    stdout_ui->setupUi(dialog_ui);

    qDebug() << "2";

    connect(stdout_ui->close_Btn, SIGNAL(released()), dialog_ui, SLOT(close()));
    qDebug() << "3";
    connect(this, SIGNAL(debug_frame_received(QString)), stdout_ui->stdout_Log, SLOT(append(QString)));
    qDebug() << "4";

    dialog_ui->show();
    qDebug() << "5";
}

void QPSXSerial::onLoadFileBtnReleased(void)
{
    selectedFolder = QFileDialog::getExistingDirectory( this,
                                                                "Load folder with PSX data",
                                                                "C:/",
                                                                QFileDialog::ShowDirsOnly   );

    if(selectedFolder.isEmpty() == true)
    {
        return;
    }

    selectedFolder.append("/");

    ui->loadedFile_LineEdit->setText(selectedFolder);

    QFile system_f(selectedFolder + "\\SYSTEM.CNF");

    if(system_f.open(QFile::ReadOnly) == false)
    {
        qDebug() << "Could not open " + selectedFolder + "\\SYSTEM.CNF";
        return;
    }

    QTextStream system_txt(&system_f);

    QString fileSelected;

    do
    {
        if(system_txt.atEnd() == true)
        {
            return;
        }

        QString line = system_txt.readLine();

        QStringList tokens = line.split("=");

        if(tokens.isEmpty() == true)
        {
            continue;
        }

        if(tokens.at(0).contains("BOOT") == false)
        {
            continue;
        }

        fileSelected = tokens.at(1).split("\\").at(1);

        fileSelected.chop(2); // Remove ";1" suffix.
        break;

    }while(1);


    inputExe = selectedFolder + fileSelected;
    qDebug() << "inputExe = " + inputExe;
}

void QPSXSerial::onUpdatePortsBtnReleased(void)
{
    ui->ports_ComboBox->clear();

    foreach(QSerialPortInfo port, QSerialPortInfo::availablePorts())
    {
        ui->ports_ComboBox->addItem(port.portName());
    }
}

void QPSXSerial::onSendBtnReleased(void)
{
    if(serial.isOpen() == false)
    {
        if(selectedPort.isEmpty() == true)
        {
            qDebug() << "No selected port!";
            return;
        }

        serial.setPortName(selectedPort);
        serial.setBaudRate(QSerialPort::Baud115200);
        serial.setParity(QSerialPort::NoParity);
        serial.setDataBits(QSerialPort::Data8);
        serial.setStopBits(QSerialPort::OneStop);

        if(serial.open(QIODevice::ReadWrite) == false)
        {
            qDebug() << "Could not open port " + selectedPort;
            return;
        }

        qDebug() << "Connected succesfully to " + selectedPort;

        if(init_timer == NULL)
        {
            init_timer = new QTimer();

            init_timer->setSingleShot(true);
            init_timer->setInterval(3000);

            connect(init_timer, SIGNAL(timeout(void)), this, SLOT(connectToPSXTimeout(void)));
        }

        ui->exeProgressBar->setVisible(true);

        ui->exeProgressBar->setMinimum(0);
        ui->exeProgressBar->setMaximum(0);

        ui->inFileName->setText("Waiting for PSX response...");

        ui->inFileName->setVisible(true);

        init_timer->start(3000);

        ui->send_Btn->setText("Disconnect from PSX");
    }
    else
    {
        serial.close();
        ui->send_Btn->setText("Send to PSX!");
        qDebug() << "Disconnected";
        ui->exeProgressBar->setVisible(false);
        exe_sent = false;
        lost_packet_timer->stop();
        init_timer->stop();
    }
}

void QPSXSerial::connectToPSXTimeout(void)
{
    QByteArray ba;

    if(ack == false)
    {
        ba.append(99);

        serial.write(ba);

        //qDebug() << "Retry...";

        init_timer->start(1000);
    }
}

void QPSXSerial::onPortSelectedComboBox(QString port)
{
    selectedPort = port;
    ui->send_Btn->setEnabled(true);
    qDebug() << "Selected port: " + selectedPort;
}

void QPSXSerial::onBytesWritten(qint64)
{
    //qDebug() << "Bytes written: " + QString::number(bytes_written);

    /*byte_sent_received = false;

    while(byte_sent_received == false)
    {
        QApplication::processEvents();
    }*/

    write_ready = true;
}

void QPSXSerial::onReadyRead(void)
{
    static bool first_entered = false;
    QByteArray data = serial.readAll();
    static QTime time = QTime::currentTime();
    static bool cdrom_petition;

    //qDebug() << QString("Received ") + QString::number(data.count()) + QString(" bytes.");
    //qDebug() << QString("Took ") + QString::number(time.msecsTo(QTime::currentTime()));

    if(exe_sent == true)
    {
        static QByteArray fileName;

        if(data.startsWith("#") == true)
        {
            cdrom_petition = true;
            fileName.clear();
        }

        if(data.count() == 1)
        {
            if(data.at(0) == 'b')
            {
                ack = true;
                return;
            }
        }

        if(cdrom_petition == true)
        {
            fileName.append(data);

            if(fileName.endsWith("@") == true)
            {
                cdrom_petition = false;

                qDebug() << "INPUT FRAME: " + fileName;
                QString filePath = QString(fileName);

                filePath.remove("@");
                filePath.remove("#");

                filePath.remove("cdrom:\\");

                qDebug() << "selectedFolder = " + selectedFolder;

                filePath.prepend(selectedFolder);

                filePath.replace("\\", "/");

                filePath.chop(2); // Remove ending ";1"

                qDebug() << "filePath = " + filePath;

                QFile f(filePath);

                if(f.open(QFile::ReadOnly) == false)
                {
                    qDebug() << "Error while reading input file!";
                    return;
                }

                QByteArray file_data = f.readAll();
                quint32 sz = file_data.count();

                sendDataSize(sz);

                while(ack == false)
                {
                    QApplication::processEvents();
                }

                qDebug() << "sendData for file...";

                sendData(file_data, filePath);

                f.close();
            }
        }
        else
        {
            qDebug() << data;
            emit debug_frame_received(QString(data));
        }
    }

    if(data.isEmpty() == false)
    {
        quint8 data_byte = (quint8)data.at(0);

        if(data_byte == 'b')
        {
            //qDebug() << "Received ACK";
            // Received handshaking byte. Start transmission!

            ack = true;

            init_timer->stop();

            if(first_entered == false)
            {
                first_entered = true;

                if(sendExe() == false)
                {
                    qDebug() << "An error happened when sending EXE file!";
                }

                exe_sent = true;
            }
        }
    }

    time = QTime::currentTime();
}

bool QPSXSerial::sendExe(void)
{
    QFile f(inputExe);

    if(f.open(QFile::ReadOnly) == false)
    {
        qDebug() << "Could not open input EXE file!";
        return false;
    }

    f.seek(0);

    ack = false;

    QByteArray data = f.read(2048 /* PSX-EXE header */);
    qDebug () << "Sending PSX-EXE header...";

    for(int i = 0; i < 32; i+=8)
    {
        QByteArray send;
        write_ready = false;

        QThread::msleep(100);

        send.append(data.mid(i, 8));

        serial.write(send);

        while(write_ready == false)
        {
            QApplication::processEvents();
        }
    }

    while(ack == false)
    {
        QApplication::processEvents();
    }

    qDebug () << "Sending EXE size...";

    qint64 sz = f.size() - 2048;

    sendDataSize((quint32)sz);

    while(ack == false)
    {
        QApplication::processEvents();
    }

    // Send file size without header

    qDebug() << "Dump EXE data...";

    f.seek(2048);

    data = f.readAll();

    qDebug() << data.count();

    sendData(data, inputExe);

    f.close();

    qDebug() << "PSX-EXE sent successfully!";

    return true;
}

void QPSXSerial::sendDataSize(quint32 size)
{
    QByteArray ar;

    for(unsigned int i = 0; i < sizeof(quint32); i++)
    {
        char send = (char)( size >> (i << 3) );

        QByteArray send_arr;

        send_arr.append(send);

        ar.append(send);

        serial.write(send_arr);

        while(write_ready == false)
        {
            QApplication::processEvents();
        }
    }

    for(unsigned int i = 0; i < sizeof(quint32); i++)
    {
        qDebug() << "0x" + QString::number(ar.at(i), 16);
    }

    ack = false;
}

void QPSXSerial::onPacketLost(void)
{
    qDebug() << "Entering onPacketLost...";

    if(ack == false)
    {

        serial.write(last_packet_sent);
        lost_packet_timer->start(100);
    }
}

void QPSXSerial::sendData(QByteArray data, QString fileName)
{
    ui->exeProgressBar->setVisible(true);
    ui->exeProgressBar->setRange(0, data.count());
    ui->inFileName->setText(fileName);
    ui->inFileName->setVisible(true);

    lost_packet_timer->setInterval(100);
    lost_packet_timer->setSingleShot(true);

    for(int i = 0; i < data.count(); i+= 8)
    {
        QByteArray send;
        ack = false;

        send.append(data.mid(i, 8));

        //qDebug() << "Sent packet";

        serial.write(send);

        last_packet_sent = send;

        lost_packet_timer->start(100);

        while(ack == false)
        {
            QApplication::processEvents();
        }

        ui->exeProgressBar->setValue(i);
    }

    lost_packet_timer->stop();

    ui->exeProgressBar->setValue(data.count());
    ui->inFileName->setText("Transfer complete!");

    ack = false;
}