First commit

This commit is contained in:
codestation
2013-08-11 17:12:00 -04:30
commit f9347f37cc
34 changed files with 4494 additions and 0 deletions

76
wirelessworker.cpp Normal file
View File

@@ -0,0 +1,76 @@
/*
* QCMA: Cross-platform content manager assistant for the PS Vita
*
* Copyright (C) 2013 Codestation
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include "qcma.h"
#include "wirelessworker.h"
#include <QTime>
#include <QHostInfo>
#define QCMA_REQUEST_PORT 9309
wireless_host_info_t WirelessWorker::info = {"00000000-0000-0000-0000-000000000000", "win", NULL, QCMA_REQUEST_PORT};
WirelessWorker *WirelessWorker::this_object = NULL;
WirelessWorker::WirelessWorker(QObject *parent) :
BaseWorker(parent)
{
qsrand(QTime::currentTime().msec());
this_object = this;
}
int WirelessWorker::deviceRegistered(const char *deviceid)
{
qDebug("Got connection request from %s", deviceid);
return 1;
}
int WirelessWorker::generatePin(wireless_vita_info_t *info, int *p_err)
{
qDebug("Registration request from %s (MAC: %s)", info->name, info->mac_addr);
int pin = qrand() % 100000000;
qDebug("Your registration PIN for %s is: %08d", info->name, pin);
*p_err = 0;
emit this_object->createdPin(pin);
return pin;
}
void WirelessWorker::process()
{
qDebug() <<" Wireless thread ID: "<< QThread::currentThreadId();
wireless_host_info_t broadcast_info = info;
QString hostname = QHostInfo::localHostName();
broadcast_info.name = hostname.toUtf8().data();
qDebug("Starting CMA wireless broadcast...");
if(VitaMTP_Broadcast_Host(&broadcast_info, 0) < 0) {
qCritical( "An error occured during broadcast. Exiting.");
} else {
qDebug("Broadcast ended.");
}
qDebug("WirelessrWorker thread end.");
emit finished();
}
void WirelessWorker::stopBroadcast()
{
VitaMTP_Stop_Broadcast();
}