mirror of https://github.com/AxioDL/jbus.git
New code style refactor
This commit is contained in:
parent
500f88d7a7
commit
e28b6551d0
|
@ -4,8 +4,7 @@
|
|||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
|
||||
namespace jbus
|
||||
{
|
||||
namespace jbus {
|
||||
|
||||
using s8 = int8_t;
|
||||
using u8 = uint8_t;
|
||||
|
@ -24,8 +23,7 @@ using u64 = uint64_t;
|
|||
|
||||
/* Type-sensitive byte swappers */
|
||||
template <typename T>
|
||||
static inline T bswap16(T val)
|
||||
{
|
||||
static inline T bswap16(T val) {
|
||||
#if __GNUC__
|
||||
return __builtin_bswap16(val);
|
||||
#elif _WIN32
|
||||
|
@ -36,8 +34,7 @@ static inline T bswap16(T val)
|
|||
}
|
||||
|
||||
template <typename T>
|
||||
static inline T bswap32(T val)
|
||||
{
|
||||
static inline T bswap32(T val) {
|
||||
#if __GNUC__
|
||||
return __builtin_bswap32(val);
|
||||
#elif _WIN32
|
||||
|
@ -50,25 +47,19 @@ static inline T bswap32(T val)
|
|||
}
|
||||
|
||||
template <typename T>
|
||||
static inline T bswap64(T val)
|
||||
{
|
||||
static inline T bswap64(T val) {
|
||||
#if __GNUC__
|
||||
return __builtin_bswap64(val);
|
||||
#elif _WIN32
|
||||
return _byteswap_uint64(val);
|
||||
#else
|
||||
return ((val & 0xFF00000000000000ULL) >> 56) |
|
||||
((val & 0x00FF000000000000ULL) >> 40) |
|
||||
((val & 0x0000FF0000000000ULL) >> 24) |
|
||||
((val & 0x000000FF00000000ULL) >> 8) |
|
||||
((val & 0x00000000FF000000ULL) << 8) |
|
||||
((val & 0x0000000000FF0000ULL) << 24) |
|
||||
((val & 0x000000000000FF00ULL) << 40) |
|
||||
((val & 0x00000000000000FFULL) << 56);
|
||||
return ((val & 0xFF00000000000000ULL) >> 56) | ((val & 0x00FF000000000000ULL) >> 40) |
|
||||
((val & 0x0000FF0000000000ULL) >> 24) | ((val & 0x000000FF00000000ULL) >> 8) |
|
||||
((val & 0x00000000FF000000ULL) << 8) | ((val & 0x0000000000FF0000ULL) << 24) |
|
||||
((val & 0x000000000000FF00ULL) << 40) | ((val & 0x00000000000000FFULL) << 56);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||
static inline int16_t SBig(int16_t val) { return bswap16(val); }
|
||||
static inline uint16_t SBig(uint16_t val) { return bswap16(val); }
|
||||
|
@ -76,19 +67,16 @@ static inline int32_t SBig(int32_t val) {return bswap32(val);}
|
|||
static inline uint32_t SBig(uint32_t val) { return bswap32(val); }
|
||||
static inline int64_t SBig(int64_t val) { return bswap64(val); }
|
||||
static inline uint64_t SBig(uint64_t val) { return bswap64(val); }
|
||||
static inline float SBig(float val)
|
||||
{
|
||||
static inline float SBig(float val) {
|
||||
int32_t ival = bswap32(*((int32_t*)(&val)));
|
||||
return *((float*)(&ival));
|
||||
}
|
||||
static inline double SBig(double val)
|
||||
{
|
||||
static inline double SBig(double val) {
|
||||
int64_t ival = bswap64(*((int64_t*)(&val)));
|
||||
return *((double*)(&ival));
|
||||
}
|
||||
#ifndef SBIG
|
||||
#define SBIG(q) ( ( (q) & 0x000000FF ) << 24 | ( (q) & 0x0000FF00 ) << 8 \
|
||||
| ( (q) & 0x00FF0000 ) >> 8 | ( (q) & 0xFF000000 ) >> 24 )
|
||||
#define SBIG(q) (((q)&0x000000FF) << 24 | ((q)&0x0000FF00) << 8 | ((q)&0x00FF0000) >> 8 | ((q)&0xFF000000) >> 24)
|
||||
#endif
|
||||
|
||||
static inline int16_t SLittle(int16_t val) { return val; }
|
||||
|
@ -109,19 +97,16 @@ static inline int32_t SLittle(int32_t val) {return bswap32(val);}
|
|||
static inline uint32_t SLittle(uint32_t val) { return bswap32(val); }
|
||||
static inline int64_t SLittle(int64_t val) { return bswap64(val); }
|
||||
static inline uint64_t SLittle(uint64_t val) { return bswap64(val); }
|
||||
static inline float SLittle(float val)
|
||||
{
|
||||
static inline float SLittle(float val) {
|
||||
int32_t ival = bswap32(*((int32_t*)(&val)));
|
||||
return *((float*)(&ival));
|
||||
}
|
||||
static inline double SLittle(double val)
|
||||
{
|
||||
static inline double SLittle(double val) {
|
||||
int64_t ival = bswap64(*((int64_t*)(&val)));
|
||||
return *((double*)(&ival));
|
||||
}
|
||||
#ifndef SLITTLE
|
||||
#define SLITTLE(q) ( ( (q) & 0x000000FF ) << 24 | ( (q) & 0x0000FF00 ) << 8 \
|
||||
| ( (q) & 0x00FF0000 ) >> 8 | ( (q) & 0xFF000000 ) >> 24 )
|
||||
#define SLITTLE(q) (((q)&0x000000FF) << 24 | ((q)&0x0000FF00) << 8 | ((q)&0x00FF0000) >> 8 | ((q)&0xFF000000) >> 24)
|
||||
#endif
|
||||
|
||||
static inline int16_t SBig(int16_t val) { return val; }
|
||||
|
@ -142,8 +127,7 @@ class ThreadLocalEndpoint;
|
|||
|
||||
#endif
|
||||
|
||||
enum EJStatFlags
|
||||
{
|
||||
enum EJStatFlags {
|
||||
GBA_JSTAT_MASK = 0x3a,
|
||||
GBA_JSTAT_FLAGS_SHIFT = 4,
|
||||
GBA_JSTAT_FLAGS_MASK = 0x30,
|
||||
|
@ -153,8 +137,7 @@ enum EJStatFlags
|
|||
GBA_JSTAT_RECV = 0x02
|
||||
};
|
||||
|
||||
enum EJoyReturn
|
||||
{
|
||||
enum EJoyReturn {
|
||||
GBA_READY = 0,
|
||||
GBA_NOT_READY = 1,
|
||||
GBA_BUSY = 2,
|
||||
|
@ -182,5 +165,4 @@ static constexpr u64 GetGCTicksPerSec() { return 486000000ull; }
|
|||
/** @brief Initialize platform specifics of JBus library */
|
||||
void Initialize();
|
||||
|
||||
}
|
||||
|
||||
} // namespace jbus
|
||||
|
|
|
@ -6,25 +6,21 @@
|
|||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
|
||||
namespace jbus
|
||||
{
|
||||
namespace jbus {
|
||||
|
||||
/** Main class for performing JoyBoot and subsequent JoyBus I/O operations.
|
||||
* Instances should be obtained though the jbus::Listener::accept method. */
|
||||
class Endpoint
|
||||
{
|
||||
class Endpoint {
|
||||
/** Self-contained class for solving Kawasedo's GBA BootROM challenge.
|
||||
* GBA will boot client_pad.bin code on completion.
|
||||
*
|
||||
* This class shouldn't be used directly. JoyBoot operations are started
|
||||
* via jbus::Endpoint::GBAJoyBootAsync. The JoyBoot status may be obtained
|
||||
* via jbus::Endpoint::GBAGetProcessStatus. */
|
||||
class KawasedoChallenge
|
||||
{
|
||||
class KawasedoChallenge {
|
||||
/** DSP-hosted public-key unwrap and initial message crypt
|
||||
* Reference: https://github.com/dolphin-emu/dolphin/blob/master/Source/Core/Core/HW/DSPHLE/UCodes/GBA.cpp */
|
||||
struct DSPSecParms
|
||||
{
|
||||
struct DSPSecParms {
|
||||
/* Nonce challenge (first read from GBA, hence already little-endian) */
|
||||
u32 x0_gbaChallenge;
|
||||
|
||||
|
@ -79,19 +75,17 @@ class Endpoint
|
|||
void _7BootAcknowledge(ThreadLocalEndpoint& endpoint, EJoyReturn status);
|
||||
void _8BootDone(ThreadLocalEndpoint& endpoint, EJoyReturn status);
|
||||
|
||||
auto bindThis(void(KawasedoChallenge::*ptmf)(ThreadLocalEndpoint&, EJoyReturn))
|
||||
{
|
||||
auto bindThis(void (KawasedoChallenge::*ptmf)(ThreadLocalEndpoint&, EJoyReturn)) {
|
||||
return std::bind(ptmf, this, std::placeholders::_1, std::placeholders::_2);
|
||||
}
|
||||
|
||||
public:
|
||||
KawasedoChallenge() = default;
|
||||
KawasedoChallenge(s32 paletteColor, s32 paletteSpeed,
|
||||
const u8* programp, s32 length, u8* status, FGBACallback&& callback);
|
||||
KawasedoChallenge(s32 paletteColor, s32 paletteSpeed, const u8* programp, s32 length, u8* status,
|
||||
FGBACallback&& callback);
|
||||
void start(Endpoint& endpoint);
|
||||
bool started() const { return m_started; }
|
||||
u8 percentComplete() const
|
||||
{
|
||||
u8 percentComplete() const {
|
||||
if (!x64_totalBytes)
|
||||
return 0;
|
||||
return x34_bytesSent * 100 / x64_totalBytes;
|
||||
|
@ -102,13 +96,7 @@ class Endpoint
|
|||
|
||||
friend class ThreadLocalEndpoint;
|
||||
|
||||
enum EJoybusCmds
|
||||
{
|
||||
CMD_RESET = 0xff,
|
||||
CMD_STATUS = 0x00,
|
||||
CMD_READ = 0x14,
|
||||
CMD_WRITE = 0x15
|
||||
};
|
||||
enum EJoybusCmds { CMD_RESET = 0xff, CMD_STATUS = 0x00, CMD_READ = 0x14, CMD_WRITE = 0x15 };
|
||||
|
||||
static const u64 BITS_PER_SECOND = 115200;
|
||||
static const u64 BYTES_PER_SECOND = BITS_PER_SECOND / 8;
|
||||
|
@ -139,11 +127,7 @@ class Endpoint
|
|||
void transferProc();
|
||||
void transferWakeup(ThreadLocalEndpoint& endpoint, u8 status);
|
||||
|
||||
auto bindSync()
|
||||
{
|
||||
return std::bind(&Endpoint::transferWakeup, this,
|
||||
std::placeholders::_1, std::placeholders::_2);
|
||||
}
|
||||
auto bindSync() { return std::bind(&Endpoint::transferWakeup, this, std::placeholders::_1, std::placeholders::_2); }
|
||||
|
||||
public:
|
||||
/** @brief Request stop of I/O thread and block until joined.
|
||||
|
@ -212,8 +196,7 @@ public:
|
|||
* @param status Destination pointer for EJStatFlags.
|
||||
* @param callback Functor to execute when operation completes.
|
||||
* @return GBA_READY if submitted, or GBA_NOT_READY if another operation in progress. */
|
||||
EJoyReturn GBAJoyBootAsync(s32 paletteColor, s32 paletteSpeed,
|
||||
const u8* programp, s32 length, u8* status,
|
||||
EJoyReturn GBAJoyBootAsync(s32 paletteColor, s32 paletteSpeed, const u8* programp, s32 length, u8* status,
|
||||
FGBACallback&& callback);
|
||||
|
||||
/** @brief Get virtual SI channel assigned to this endpoint.
|
||||
|
@ -222,8 +205,7 @@ public:
|
|||
|
||||
/** @brief Set virtual SI channel assigned to this endpoint.
|
||||
* @param chan SI channel [0,3] */
|
||||
void setChan(unsigned chan)
|
||||
{
|
||||
void setChan(unsigned chan) {
|
||||
if (chan > 3)
|
||||
chan = 3;
|
||||
m_chan = chan;
|
||||
|
@ -240,8 +222,7 @@ public:
|
|||
/** Lockless wrapper interface for jbus::Endpoint.
|
||||
* This class is constructed internally and supplied as a callback argument.
|
||||
* It should not be constructed directly. */
|
||||
class ThreadLocalEndpoint
|
||||
{
|
||||
class ThreadLocalEndpoint {
|
||||
friend class Endpoint;
|
||||
Endpoint& m_ep;
|
||||
ThreadLocalEndpoint(Endpoint& ep) : m_ep(ep) {}
|
||||
|
@ -278,5 +259,4 @@ public:
|
|||
int getChan() const { return m_ep.getChan(); }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
} // namespace jbus
|
||||
|
|
|
@ -6,12 +6,10 @@
|
|||
#include <queue>
|
||||
#include <mutex>
|
||||
|
||||
namespace jbus
|
||||
{
|
||||
namespace jbus {
|
||||
|
||||
/** Server interface for accepting incoming connections from GBA emulator instances. */
|
||||
class Listener
|
||||
{
|
||||
class Listener {
|
||||
net::Socket m_dataServer = {false};
|
||||
net::Socket m_clockServer = {false};
|
||||
std::thread m_listenerThread;
|
||||
|
@ -38,5 +36,4 @@ public:
|
|||
~Listener();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
} // namespace jbus
|
||||
|
|
|
@ -14,30 +14,24 @@ typedef UINT_PTR SOCKET;
|
|||
|
||||
struct sockaddr_in;
|
||||
|
||||
namespace jbus::net
|
||||
{
|
||||
namespace jbus::net {
|
||||
|
||||
/** IP address class derived from SFML */
|
||||
class IPAddress
|
||||
{
|
||||
class IPAddress {
|
||||
uint32_t m_address = 0;
|
||||
bool m_valid = false;
|
||||
|
||||
void resolve(const std::string& address);
|
||||
|
||||
public:
|
||||
IPAddress(const std::string& address)
|
||||
{
|
||||
resolve(address);
|
||||
}
|
||||
IPAddress(const std::string& address) { resolve(address); }
|
||||
|
||||
uint32_t toInteger() const;
|
||||
operator bool() const { return m_valid; }
|
||||
};
|
||||
|
||||
/** Server-oriented TCP socket class derived from SFML */
|
||||
class Socket
|
||||
{
|
||||
class Socket {
|
||||
#ifndef _WIN32
|
||||
using SocketTp = int;
|
||||
#else
|
||||
|
@ -50,30 +44,19 @@ class Socket
|
|||
void setRemoteSocket(int remSocket);
|
||||
|
||||
public:
|
||||
enum class EResult
|
||||
{
|
||||
OK,
|
||||
Error,
|
||||
Busy
|
||||
};
|
||||
enum class EResult { OK, Error, Busy };
|
||||
|
||||
#ifdef _WIN32
|
||||
static EResult LastWSAError();
|
||||
#endif
|
||||
|
||||
Socket(bool blocking)
|
||||
: m_isBlocking(blocking) {}
|
||||
Socket(bool blocking) : m_isBlocking(blocking) {}
|
||||
~Socket() { close(); }
|
||||
|
||||
Socket(const Socket& other) = delete;
|
||||
Socket& operator=(const Socket& other) = delete;
|
||||
Socket(Socket&& other)
|
||||
: m_socket(other.m_socket), m_isBlocking(other.m_isBlocking)
|
||||
{
|
||||
other.m_socket = -1;
|
||||
}
|
||||
Socket& operator=(Socket&& other)
|
||||
{
|
||||
Socket(Socket&& other) : m_socket(other.m_socket), m_isBlocking(other.m_isBlocking) { other.m_socket = -1; }
|
||||
Socket& operator=(Socket&& other) {
|
||||
close();
|
||||
m_socket = other.m_socket;
|
||||
other.m_socket = -1;
|
||||
|
@ -98,5 +81,4 @@ public:
|
|||
SocketTp GetInternalSocket() const { return m_socket; }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
} // namespace jbus::net
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -14,8 +14,7 @@
|
|||
|
||||
#include "jbus/Common.hpp"
|
||||
|
||||
namespace jbus
|
||||
{
|
||||
namespace jbus {
|
||||
|
||||
#if __APPLE__
|
||||
static u64 MachToDolphinNum;
|
||||
|
@ -24,8 +23,7 @@ static u64 MachToDolphinDenom;
|
|||
static LARGE_INTEGER PerfFrequency;
|
||||
#endif
|
||||
|
||||
u64 GetGCTicks()
|
||||
{
|
||||
u64 GetGCTicks() {
|
||||
#if __APPLE__
|
||||
return mach_absolute_time() * MachToDolphinNum / MachToDolphinDenom;
|
||||
#elif __linux__ || __FreeBSD__
|
||||
|
@ -44,31 +42,27 @@ u64 GetGCTicks()
|
|||
#endif
|
||||
}
|
||||
|
||||
void WaitGCTicks(u64 ticks)
|
||||
{
|
||||
void WaitGCTicks(u64 ticks) {
|
||||
#ifndef _WIN32
|
||||
struct timeval tv = {};
|
||||
tv.tv_sec = ticks / GetGCTicksPerSec();
|
||||
tv.tv_usec = (ticks % GetGCTicksPerSec()) * 1000000 / GetGCTicksPerSec();
|
||||
select(0, NULL, NULL, NULL, &tv);
|
||||
#else
|
||||
if (ticks < GetGCTicksPerSec() / 60)
|
||||
{
|
||||
if (ticks < GetGCTicksPerSec() / 60) {
|
||||
/* NT is useless for scheduling sub-millisecond intervals */
|
||||
u64 start = GetGCTicks();
|
||||
do { Sleep(0); } while (GetGCTicks() - start < ticks);
|
||||
}
|
||||
else
|
||||
{
|
||||
do {
|
||||
Sleep(0);
|
||||
} while (GetGCTicks() - start < ticks);
|
||||
} else {
|
||||
/* Use normal Sleep() for durations longer than ~16ms */
|
||||
Sleep(ticks * 1000 / GetGCTicksPerSec() +
|
||||
(ticks % GetGCTicksPerSec()) * 1000 / GetGCTicksPerSec());
|
||||
Sleep(ticks * 1000 / GetGCTicksPerSec() + (ticks % GetGCTicksPerSec()) * 1000 / GetGCTicksPerSec());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void Initialize()
|
||||
{
|
||||
void Initialize() {
|
||||
#if __APPLE__
|
||||
mach_timebase_info_data_t timebase;
|
||||
mach_timebase_info(&timebase);
|
||||
|
@ -81,4 +75,4 @@ void Initialize()
|
|||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace jbus
|
||||
|
|
372
lib/Endpoint.cpp
372
lib/Endpoint.cpp
|
@ -2,13 +2,11 @@
|
|||
|
||||
#define LOG_TRANSFER 0
|
||||
|
||||
namespace jbus
|
||||
{
|
||||
namespace jbus {
|
||||
|
||||
#define ROUND_UP_8(val) (((val) + 7) & ~7)
|
||||
|
||||
void Endpoint::KawasedoChallenge::DSPSecParms::ProcessGBACrypto()
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::DSPSecParms::ProcessGBACrypto() {
|
||||
/* Unwrap key from challenge using 'sedo' magic number (to encrypt JoyBoot program) */
|
||||
x20_key = x0_gbaChallenge ^ 0x6f646573;
|
||||
|
||||
|
@ -40,79 +38,61 @@ void Endpoint::KawasedoChallenge::DSPSecParms::ProcessGBACrypto()
|
|||
x24_authInitCode = t3 ^ ((t3 & 0x200) != 0 ? 0x6f646573 : 0x6177614b);
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_0Reset(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_0Reset(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status != GBA_READY ||
|
||||
(status = endpoint.GBAResetAsync(x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_1GetStatus))) != GBA_READY)
|
||||
{
|
||||
(status = endpoint.GBAResetAsync(x10_statusPtr, bindThis(&KawasedoChallenge::_1GetStatus))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_1GetStatus(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_1GetStatus(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status == GBA_READY)
|
||||
if (*x10_statusPtr != GBA_JSTAT_SEND)
|
||||
status = GBA_JOYBOOT_UNKNOWN_STATE;
|
||||
|
||||
if (status != GBA_READY ||
|
||||
(status = endpoint.GBAGetStatusAsync(x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_2ReadChallenge))) != GBA_READY)
|
||||
{
|
||||
if (status != GBA_READY || (status = endpoint.GBAGetStatusAsync(
|
||||
x10_statusPtr, bindThis(&KawasedoChallenge::_2ReadChallenge))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_2ReadChallenge(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_2ReadChallenge(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status == GBA_READY)
|
||||
if (*x10_statusPtr != (GBA_JSTAT_PSF0 | GBA_JSTAT_SEND))
|
||||
status = GBA_JOYBOOT_UNKNOWN_STATE;
|
||||
|
||||
if (status != GBA_READY ||
|
||||
(status = endpoint.GBAReadAsync(x18_readBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_3DSPCrypto))) != GBA_READY)
|
||||
{
|
||||
if (status != GBA_READY || (status = endpoint.GBAReadAsync(x18_readBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_3DSPCrypto))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_3DSPCrypto(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
if (status != GBA_READY)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_3DSPCrypto(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
_DSPCryptoInit();
|
||||
_DSPCryptoDone(endpoint);
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_DSPCryptoInit()
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_DSPCryptoInit() {
|
||||
xf8_dspHmac.x0_gbaChallenge = reinterpret_cast<u32&>(x18_readBuf);
|
||||
xf8_dspHmac.x4_logoPalette = x0_pColor;
|
||||
xf8_dspHmac.x8_logoSpeed = x4_pSpeed;
|
||||
|
@ -120,8 +100,7 @@ void Endpoint::KawasedoChallenge::_DSPCryptoInit()
|
|||
xf8_dspHmac.ProcessGBACrypto();
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_DSPCryptoDone(ThreadLocalEndpoint& endpoint)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_DSPCryptoDone(ThreadLocalEndpoint& endpoint) {
|
||||
x58_currentKey = xf8_dspHmac.x20_key;
|
||||
x5c_initMessage = xf8_dspHmac.x24_authInitCode;
|
||||
|
||||
|
@ -141,25 +120,20 @@ void Endpoint::KawasedoChallenge::_DSPCryptoDone(ThreadLocalEndpoint& endpoint)
|
|||
x30_justStarted = 1;
|
||||
|
||||
EJoyReturn status;
|
||||
if ((status = endpoint.GBAWriteAsync(x1c_writeBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_4TransmitProgram))) != GBA_READY)
|
||||
{
|
||||
if ((status = endpoint.GBAWriteAsync(x1c_writeBuf, x10_statusPtr, bindThis(&KawasedoChallenge::_4TransmitProgram))) !=
|
||||
GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
if (status != GBA_READY)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
|
@ -169,18 +143,12 @@ void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoin
|
|||
#if LOG_TRANSFER
|
||||
printf("PROG [%d/%d]\n", x34_bytesSent, x64_totalBytes);
|
||||
#endif
|
||||
if (x30_justStarted)
|
||||
{
|
||||
if (x30_justStarted) {
|
||||
x30_justStarted = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!(*x10_statusPtr & GBA_JSTAT_PSF1) ||
|
||||
(*x10_statusPtr & GBA_JSTAT_PSF0) >> 4 != (x34_bytesSent & 4) >> 2)
|
||||
{
|
||||
} else {
|
||||
if (!(*x10_statusPtr & GBA_JSTAT_PSF1) || (*x10_statusPtr & GBA_JSTAT_PSF0) >> 4 != (x34_bytesSent & 4) >> 2) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, GBA_JOYBOOT_UNKNOWN_STATE);
|
||||
x14_callback = {};
|
||||
}
|
||||
|
@ -189,38 +157,29 @@ void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoin
|
|||
x34_bytesSent += 4;
|
||||
}
|
||||
|
||||
if (x34_bytesSent <= x64_totalBytes)
|
||||
{
|
||||
if (x34_bytesSent <= x64_totalBytes) {
|
||||
u32 cryptWindow;
|
||||
if (x34_bytesSent != x64_totalBytes)
|
||||
{
|
||||
if (x34_bytesSent != x64_totalBytes) {
|
||||
x20_byteInWindow = 0;
|
||||
cryptWindow = 0;
|
||||
while (x20_byteInWindow < 4)
|
||||
{
|
||||
if (xc_progLen)
|
||||
{
|
||||
while (x20_byteInWindow < 4) {
|
||||
if (xc_progLen) {
|
||||
cryptWindow |= *x8_progPtr++ << (x20_byteInWindow * 8);
|
||||
--xc_progLen;
|
||||
}
|
||||
++x20_byteInWindow;
|
||||
}
|
||||
|
||||
if (x34_bytesSent == 0xac)
|
||||
{
|
||||
if (x34_bytesSent == 0xac) {
|
||||
x60_gameId = cryptWindow;
|
||||
}
|
||||
else if (x34_bytesSent == 0xc4)
|
||||
{
|
||||
} else if (x34_bytesSent == 0xc4) {
|
||||
cryptWindow = endpoint.getChan() << 0x8;
|
||||
}
|
||||
|
||||
if (x34_bytesSent >= 0xc0)
|
||||
{
|
||||
if (x34_bytesSent >= 0xc0) {
|
||||
u32 shiftWindow = cryptWindow;
|
||||
u32 shiftCrc = x38_crc;
|
||||
for (int i=0 ; i<32 ; ++i)
|
||||
{
|
||||
for (int i = 0; i < 32; ++i) {
|
||||
if ((shiftWindow ^ shiftCrc) & 0x1)
|
||||
shiftCrc = (shiftCrc >> 1) ^ 0xa1c1;
|
||||
else
|
||||
|
@ -231,23 +190,17 @@ void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoin
|
|||
x38_crc = shiftCrc;
|
||||
}
|
||||
|
||||
if (x34_bytesSent == 0x1f8)
|
||||
{
|
||||
if (x34_bytesSent == 0x1f8) {
|
||||
x3c_checkStore[0] = cryptWindow;
|
||||
}
|
||||
else if (x34_bytesSent == 0x1fc)
|
||||
{
|
||||
} else if (x34_bytesSent == 0x1fc) {
|
||||
x20_byteInWindow = 1;
|
||||
x3c_checkStore[x20_byteInWindow] = cryptWindow;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
cryptWindow = x38_crc | x34_bytesSent << 16;
|
||||
}
|
||||
|
||||
if (x34_bytesSent > 0xbf)
|
||||
{
|
||||
if (x34_bytesSent > 0xbf) {
|
||||
x58_currentKey = 0x6177614b * x58_currentKey + 1;
|
||||
|
||||
cryptWindow ^= x58_currentKey;
|
||||
|
@ -263,8 +216,7 @@ void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoin
|
|||
if (x34_bytesSent == 0x1f8)
|
||||
x3c_checkStore[2] = cryptWindow;
|
||||
|
||||
if (x20_byteInWindow < 4)
|
||||
{
|
||||
if (x20_byteInWindow < 4) {
|
||||
x3c_checkStore[2 + x20_byteInWindow] = cryptWindow;
|
||||
x3c_checkStore[5 - x20_byteInWindow] =
|
||||
x3c_checkStore[1 + x20_byteInWindow] * x3c_checkStore[4 - x20_byteInWindow];
|
||||
|
@ -275,24 +227,19 @@ void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoin
|
|||
}
|
||||
|
||||
if ((status = endpoint.GBAWriteAsync(x1c_writeBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_4TransmitProgram))) != GBA_READY)
|
||||
{
|
||||
bindThis(&KawasedoChallenge::_4TransmitProgram))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
else // x34_bytesWritten > x64_totalBytes
|
||||
{
|
||||
if ((status = endpoint.GBAReadAsync(x18_readBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_5StartBootPoll))) != GBA_READY)
|
||||
} else // x34_bytesWritten > x64_totalBytes
|
||||
{
|
||||
if ((status = endpoint.GBAReadAsync(x18_readBuf, x10_statusPtr, bindThis(&KawasedoChallenge::_5StartBootPoll))) !=
|
||||
GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
|
@ -300,46 +247,35 @@ void Endpoint::KawasedoChallenge::_4TransmitProgram(ThreadLocalEndpoint& endpoin
|
|||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_5StartBootPoll(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_5StartBootPoll(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status != GBA_READY ||
|
||||
(status = endpoint.GBAGetStatusAsync(x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_6BootPoll))) != GBA_READY)
|
||||
{
|
||||
(status = endpoint.GBAGetStatusAsync(x10_statusPtr, bindThis(&KawasedoChallenge::_6BootPoll))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_6BootPoll(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_6BootPoll(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status == GBA_READY)
|
||||
if (*x10_statusPtr & (GBA_JSTAT_FLAGS_MASK | GBA_JSTAT_RECV))
|
||||
status = GBA_JOYBOOT_UNKNOWN_STATE;
|
||||
|
||||
if (status != GBA_READY)
|
||||
{
|
||||
if (status != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (*x10_statusPtr != GBA_JSTAT_SEND)
|
||||
{
|
||||
if ((status = endpoint.GBAGetStatusAsync(x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_6BootPoll))) != GBA_READY)
|
||||
{
|
||||
if (*x10_statusPtr != GBA_JSTAT_SEND) {
|
||||
if ((status = endpoint.GBAGetStatusAsync(x10_statusPtr, bindThis(&KawasedoChallenge::_6BootPoll))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
|
@ -347,78 +283,68 @@ void Endpoint::KawasedoChallenge::_6BootPoll(ThreadLocalEndpoint& endpoint, EJoy
|
|||
return;
|
||||
}
|
||||
|
||||
if ((status = endpoint.GBAReadAsync(x18_readBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_7BootAcknowledge))) != GBA_READY)
|
||||
{
|
||||
if ((status = endpoint.GBAReadAsync(x18_readBuf, x10_statusPtr, bindThis(&KawasedoChallenge::_7BootAcknowledge))) !=
|
||||
GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_7BootAcknowledge(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
if (status != GBA_READY ||
|
||||
(status = endpoint.GBAWriteAsync(x18_readBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_8BootDone))) != GBA_READY)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_7BootAcknowledge(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status != GBA_READY || (status = endpoint.GBAWriteAsync(x18_readBuf, x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_8BootDone))) != GBA_READY) {
|
||||
x28_ticksAfterXf = 0;
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::KawasedoChallenge::_8BootDone(ThreadLocalEndpoint& endpoint, EJoyReturn status)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::_8BootDone(ThreadLocalEndpoint& endpoint, EJoyReturn status) {
|
||||
if (status == GBA_READY)
|
||||
*x10_statusPtr = 0;
|
||||
|
||||
x28_ticksAfterXf = 0;
|
||||
|
||||
if (x14_callback)
|
||||
{
|
||||
if (x14_callback) {
|
||||
x14_callback(endpoint, status);
|
||||
x14_callback = {};
|
||||
}
|
||||
}
|
||||
|
||||
Endpoint::KawasedoChallenge::KawasedoChallenge(s32 paletteColor, s32 paletteSpeed,
|
||||
const u8* programp, s32 length, u8* status, FGBACallback&& callback)
|
||||
: x0_pColor(paletteColor), x4_pSpeed(paletteSpeed), x8_progPtr(programp), xc_progLen(length),
|
||||
x10_statusPtr(status), x14_callback(std::move(callback)), x34_bytesSent(0), m_initialized(true)
|
||||
{}
|
||||
Endpoint::KawasedoChallenge::KawasedoChallenge(s32 paletteColor, s32 paletteSpeed, const u8* programp, s32 length,
|
||||
u8* status, FGBACallback&& callback)
|
||||
: x0_pColor(paletteColor)
|
||||
, x4_pSpeed(paletteSpeed)
|
||||
, x8_progPtr(programp)
|
||||
, xc_progLen(length)
|
||||
, x10_statusPtr(status)
|
||||
, x14_callback(std::move(callback))
|
||||
, x34_bytesSent(0)
|
||||
, m_initialized(true) {}
|
||||
|
||||
void Endpoint::KawasedoChallenge::start(Endpoint& endpoint)
|
||||
{
|
||||
if (endpoint.GBAGetStatusAsync(x10_statusPtr,
|
||||
bindThis(&KawasedoChallenge::_0Reset)) != GBA_READY)
|
||||
{
|
||||
void Endpoint::KawasedoChallenge::start(Endpoint& endpoint) {
|
||||
if (endpoint.GBAGetStatusAsync(x10_statusPtr, bindThis(&KawasedoChallenge::_0Reset)) != GBA_READY) {
|
||||
x14_callback = {};
|
||||
m_started = false;
|
||||
}
|
||||
}
|
||||
|
||||
void Endpoint::clockSync()
|
||||
{
|
||||
if (!m_clockSocket)
|
||||
{
|
||||
void Endpoint::clockSync() {
|
||||
if (!m_clockSocket) {
|
||||
m_running = false;
|
||||
return;
|
||||
}
|
||||
|
||||
u32 TickDelta = 0;
|
||||
if (!m_lastGCTick)
|
||||
{
|
||||
if (!m_lastGCTick) {
|
||||
m_lastGCTick = GetGCTicks();
|
||||
TickDelta = GetGCTicksPerSec() / 60;
|
||||
}
|
||||
else
|
||||
} else
|
||||
TickDelta = GetGCTicks() - m_lastGCTick;
|
||||
|
||||
/* Scale GameCube clock into GBA clock */
|
||||
|
@ -429,8 +355,7 @@ void Endpoint::clockSync()
|
|||
m_running = false;
|
||||
}
|
||||
|
||||
void Endpoint::send(const u8* buffer)
|
||||
{
|
||||
void Endpoint::send(const u8* buffer) {
|
||||
m_lastCmd = buffer[0];
|
||||
|
||||
net::Socket::EResult result;
|
||||
|
@ -443,31 +368,25 @@ void Endpoint::send(const u8* buffer)
|
|||
if (m_lastCmd != CMD_STATUS)
|
||||
m_booted = true;
|
||||
|
||||
if (result != net::Socket::EResult::OK)
|
||||
{
|
||||
if (result != net::Socket::EResult::OK) {
|
||||
m_running = false;
|
||||
}
|
||||
#if LOG_TRANSFER
|
||||
else
|
||||
{
|
||||
printf("Send %02x [> %02x%02x%02x%02x] (%lu)\n", buffer[0],
|
||||
buffer[1], buffer[2], buffer[3], buffer[4], sentBytes);
|
||||
else {
|
||||
printf("Send %02x [> %02x%02x%02x%02x] (%lu)\n", buffer[0], buffer[1], buffer[2], buffer[3], buffer[4], sentBytes);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
size_t Endpoint::receive(u8* buffer)
|
||||
{
|
||||
if (!m_dataSocket)
|
||||
{
|
||||
size_t Endpoint::receive(u8* buffer) {
|
||||
if (!m_dataSocket) {
|
||||
m_running = false;
|
||||
return 5;
|
||||
}
|
||||
|
||||
size_t recvBytes = 0;
|
||||
net::Socket::EResult result = m_dataSocket.recv(buffer, 5, recvBytes);
|
||||
if (result == net::Socket::EResult::Error)
|
||||
{
|
||||
if (result == net::Socket::EResult::Error) {
|
||||
m_running = false;
|
||||
return 5;
|
||||
}
|
||||
|
@ -476,19 +395,13 @@ size_t Endpoint::receive(u8* buffer)
|
|||
recvBytes = 5;
|
||||
|
||||
#if LOG_TRANSFER
|
||||
if (recvBytes > 0)
|
||||
{
|
||||
if (m_lastCmd == CMD_STATUS || m_lastCmd == CMD_RESET)
|
||||
{
|
||||
printf("Stat/Reset [< %02x%02x%02x%02x%02x] (%lu)\n",
|
||||
(u8)buffer[0], (u8)buffer[1], (u8)buffer[2],
|
||||
(u8)buffer[3], (u8)buffer[4], recvBytes);
|
||||
}
|
||||
else
|
||||
{
|
||||
printf("Receive [< %02x%02x%02x%02x%02x] (%lu)\n",
|
||||
(u8)buffer[0], (u8)buffer[1], (u8)buffer[2],
|
||||
(u8)buffer[3], (u8)buffer[4], recvBytes);
|
||||
if (recvBytes > 0) {
|
||||
if (m_lastCmd == CMD_STATUS || m_lastCmd == CMD_RESET) {
|
||||
printf("Stat/Reset [< %02x%02x%02x%02x%02x] (%lu)\n", (u8)buffer[0], (u8)buffer[1], (u8)buffer[2], (u8)buffer[3],
|
||||
(u8)buffer[4], recvBytes);
|
||||
} else {
|
||||
printf("Receive [< %02x%02x%02x%02x%02x] (%lu)\n", (u8)buffer[0], (u8)buffer[1], (u8)buffer[2], (u8)buffer[3],
|
||||
(u8)buffer[4], recvBytes);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -496,8 +409,7 @@ size_t Endpoint::receive(u8* buffer)
|
|||
return recvBytes;
|
||||
}
|
||||
|
||||
size_t Endpoint::runBuffer(u8* buffer, std::unique_lock<std::mutex>& lk)
|
||||
{
|
||||
size_t Endpoint::runBuffer(u8* buffer, std::unique_lock<std::mutex>& lk) {
|
||||
u8 tmpBuffer[5];
|
||||
|
||||
memmove(tmpBuffer, buffer, 5);
|
||||
|
@ -511,24 +423,20 @@ size_t Endpoint::runBuffer(u8* buffer, std::unique_lock<std::mutex>& lk)
|
|||
return receivedBytes;
|
||||
}
|
||||
|
||||
bool Endpoint::idleGetStatus(std::unique_lock<std::mutex>& lk)
|
||||
{
|
||||
bool Endpoint::idleGetStatus(std::unique_lock<std::mutex>& lk) {
|
||||
u8 buffer[] = {CMD_STATUS, 0, 0, 0, 0};
|
||||
return runBuffer(buffer, lk);
|
||||
}
|
||||
|
||||
void Endpoint::transferProc()
|
||||
{
|
||||
void Endpoint::transferProc() {
|
||||
#if LOG_TRANSFER
|
||||
printf("Starting JoyBus transfer thread for channel %d\n", m_chan);
|
||||
#endif
|
||||
|
||||
/* This lock is relinquished on I/O cycles or when waiting for next request */
|
||||
std::unique_lock<std::mutex> lk(m_syncLock);
|
||||
while (m_running)
|
||||
{
|
||||
if (m_cmdIssued)
|
||||
{
|
||||
while (m_running) {
|
||||
if (m_cmdIssued) {
|
||||
/* Synchronous command write/read cycle */
|
||||
runBuffer(m_buffer, lk);
|
||||
m_cmdIssued = false;
|
||||
|
@ -558,26 +466,20 @@ void Endpoint::transferProc()
|
|||
|
||||
m_statusPtr = nullptr;
|
||||
m_readDstPtr = nullptr;
|
||||
if (m_callback)
|
||||
{
|
||||
if (m_callback) {
|
||||
FGBACallback cb = std::move(m_callback);
|
||||
m_callback = {};
|
||||
ThreadLocalEndpoint ep(*this);
|
||||
cb(ep, xferStatus);
|
||||
}
|
||||
}
|
||||
else if (!m_booted)
|
||||
{
|
||||
} else if (!m_booted) {
|
||||
/* Poll bus with status messages when inactive */
|
||||
if (idleGetStatus(lk))
|
||||
{
|
||||
if (idleGetStatus(lk)) {
|
||||
lk.unlock();
|
||||
WaitGCTicks(GetGCTicksPerSec() * 4 / 60);
|
||||
lk.lock();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
/* Wait for next user request */
|
||||
m_issueCv.wait(lk);
|
||||
}
|
||||
|
@ -592,27 +494,21 @@ void Endpoint::transferProc()
|
|||
#endif
|
||||
}
|
||||
|
||||
void Endpoint::transferWakeup(ThreadLocalEndpoint& endpoint, u8 status)
|
||||
{
|
||||
m_syncCv.notify_all();
|
||||
}
|
||||
void Endpoint::transferWakeup(ThreadLocalEndpoint& endpoint, u8 status) { m_syncCv.notify_all(); }
|
||||
|
||||
void Endpoint::stop()
|
||||
{
|
||||
void Endpoint::stop() {
|
||||
m_running = false;
|
||||
m_issueCv.notify_one();
|
||||
if (m_transferThread.joinable())
|
||||
m_transferThread.join();
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAGetProcessStatus(u8& percentOut)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAGetProcessStatus(u8& percentOut) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
std::unique_lock<std::mutex> lk(m_syncLock);
|
||||
if (m_joyBoot)
|
||||
{
|
||||
if (m_joyBoot) {
|
||||
percentOut = m_joyBoot.percentComplete();
|
||||
if (!m_joyBoot.isDone())
|
||||
return GBA_BUSY;
|
||||
|
@ -624,8 +520,7 @@ EJoyReturn Endpoint::GBAGetProcessStatus(u8& percentOut)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAGetStatusAsync(u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAGetStatusAsync(u8* status, FGBACallback&& callback) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -643,8 +538,7 @@ EJoyReturn Endpoint::GBAGetStatusAsync(u8* status, FGBACallback&& callback)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAGetStatus(u8* status)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAGetStatus(u8* status) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -663,8 +557,7 @@ EJoyReturn Endpoint::GBAGetStatus(u8* status)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAResetAsync(u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAResetAsync(u8* status, FGBACallback&& callback) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -682,8 +575,7 @@ EJoyReturn Endpoint::GBAResetAsync(u8* status, FGBACallback&& callback)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAReset(u8* status)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAReset(u8* status) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -702,8 +594,7 @@ EJoyReturn Endpoint::GBAReset(u8* status)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAReadAsync(u8* dst, u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAReadAsync(u8* dst, u8* status, FGBACallback&& callback) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -722,8 +613,7 @@ EJoyReturn Endpoint::GBAReadAsync(u8* dst, u8* status, FGBACallback&& callback)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBARead(u8* dst, u8* status)
|
||||
{
|
||||
EJoyReturn Endpoint::GBARead(u8* dst, u8* status) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -743,8 +633,7 @@ EJoyReturn Endpoint::GBARead(u8* dst, u8* status)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAWriteAsync(const u8* src, u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAWriteAsync(const u8* src, u8* status, FGBACallback&& callback) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -764,8 +653,7 @@ EJoyReturn Endpoint::GBAWriteAsync(const u8* src, u8* status, FGBACallback&& cal
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAWrite(const u8* src, u8* status)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAWrite(const u8* src, u8* status) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -786,10 +674,8 @@ EJoyReturn Endpoint::GBAWrite(const u8* src, u8* status)
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn Endpoint::GBAJoyBootAsync(s32 paletteColor, s32 paletteSpeed,
|
||||
const u8* programp, s32 length, u8* status,
|
||||
FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn Endpoint::GBAJoyBootAsync(s32 paletteColor, s32 paletteSpeed, const u8* programp, s32 length, u8* status,
|
||||
FGBACallback&& callback) {
|
||||
if (!m_running)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -808,8 +694,7 @@ EJoyReturn Endpoint::GBAJoyBootAsync(s32 paletteColor, s32 paletteSpeed,
|
|||
if (programp[0xac] * programp[0xac] * programp[0xac] * programp[0xac] == 0)
|
||||
return GBA_JOYBOOT_ERR_INVALID;
|
||||
|
||||
m_joyBoot = KawasedoChallenge(paletteColor, paletteSpeed, programp, length, status,
|
||||
std::move(callback));
|
||||
m_joyBoot = KawasedoChallenge(paletteColor, paletteSpeed, programp, length, status, std::move(callback));
|
||||
m_joyBoot.start(*this);
|
||||
if (!m_joyBoot.started())
|
||||
return GBA_NOT_READY;
|
||||
|
@ -818,15 +703,13 @@ EJoyReturn Endpoint::GBAJoyBootAsync(s32 paletteColor, s32 paletteSpeed,
|
|||
}
|
||||
|
||||
Endpoint::Endpoint(u8 chan, net::Socket&& data, net::Socket&& clock)
|
||||
: m_dataSocket(std::move(data)), m_clockSocket(std::move(clock)), m_chan(chan)
|
||||
{
|
||||
: m_dataSocket(std::move(data)), m_clockSocket(std::move(clock)), m_chan(chan) {
|
||||
m_transferThread = std::thread(std::bind(&Endpoint::transferProc, this));
|
||||
}
|
||||
|
||||
Endpoint::~Endpoint() { stop(); }
|
||||
|
||||
EJoyReturn ThreadLocalEndpoint::GBAGetStatusAsync(u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn ThreadLocalEndpoint::GBAGetStatusAsync(u8* status, FGBACallback&& callback) {
|
||||
if (!m_ep.m_running || m_ep.m_cmdIssued)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -838,8 +721,7 @@ EJoyReturn ThreadLocalEndpoint::GBAGetStatusAsync(u8* status, FGBACallback&& cal
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn ThreadLocalEndpoint::GBAResetAsync(u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn ThreadLocalEndpoint::GBAResetAsync(u8* status, FGBACallback&& callback) {
|
||||
if (!m_ep.m_running || m_ep.m_cmdIssued)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -851,8 +733,7 @@ EJoyReturn ThreadLocalEndpoint::GBAResetAsync(u8* status, FGBACallback&& callbac
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn ThreadLocalEndpoint::GBAReadAsync(u8* dst, u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn ThreadLocalEndpoint::GBAReadAsync(u8* dst, u8* status, FGBACallback&& callback) {
|
||||
if (!m_ep.m_running || m_ep.m_cmdIssued)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -865,8 +746,7 @@ EJoyReturn ThreadLocalEndpoint::GBAReadAsync(u8* dst, u8* status, FGBACallback&&
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
EJoyReturn ThreadLocalEndpoint::GBAWriteAsync(const u8* src, u8* status, FGBACallback&& callback)
|
||||
{
|
||||
EJoyReturn ThreadLocalEndpoint::GBAWriteAsync(const u8* src, u8* status, FGBACallback&& callback) {
|
||||
if (!m_ep.m_running || m_ep.m_cmdIssued)
|
||||
return GBA_NOT_READY;
|
||||
|
||||
|
@ -880,4 +760,4 @@ EJoyReturn ThreadLocalEndpoint::GBAWriteAsync(const u8* src, u8* status, FGBACal
|
|||
return GBA_READY;
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace jbus
|
||||
|
|
|
@ -3,11 +3,9 @@
|
|||
|
||||
#define LOG_LISTENER 0
|
||||
|
||||
namespace jbus
|
||||
{
|
||||
namespace jbus {
|
||||
|
||||
void Listener::listenerProc()
|
||||
{
|
||||
void Listener::listenerProc() {
|
||||
#if LOG_LISTENER
|
||||
printf("JoyBus listener started\n");
|
||||
#endif
|
||||
|
@ -15,37 +13,28 @@ void Listener::listenerProc()
|
|||
net::IPAddress localhost("127.0.0.1");
|
||||
bool dataBound = false;
|
||||
bool clockBound = false;
|
||||
while (m_running && (!dataBound || !clockBound))
|
||||
{
|
||||
if (!dataBound)
|
||||
{
|
||||
if (!(dataBound = m_dataServer.openAndListen(localhost, DataPort)))
|
||||
{
|
||||
while (m_running && (!dataBound || !clockBound)) {
|
||||
if (!dataBound) {
|
||||
if (!(dataBound = m_dataServer.openAndListen(localhost, DataPort))) {
|
||||
m_dataServer = net::Socket(false);
|
||||
#if LOG_LISTENER
|
||||
printf("data open failed %s; will retry\n", strerror(errno));
|
||||
#endif
|
||||
WaitGCTicks(GetGCTicksPerSec());
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
#if LOG_LISTENER
|
||||
printf("data listening on port %d\n", DataPort);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
if (!clockBound)
|
||||
{
|
||||
if (!(clockBound = m_clockServer.openAndListen(localhost, ClockPort)))
|
||||
{
|
||||
if (!clockBound) {
|
||||
if (!(clockBound = m_clockServer.openAndListen(localhost, ClockPort))) {
|
||||
m_clockServer = net::Socket(false);
|
||||
#if LOG_LISTENER
|
||||
printf("clock open failed %s; will retry\n", strerror(errno));
|
||||
#endif
|
||||
WaitGCTicks(GetGCTicksPerSec());
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
#if LOG_LISTENER
|
||||
printf("clock listening on port %d\n", ClockPort);
|
||||
#endif
|
||||
|
@ -57,25 +46,20 @@ void Listener::listenerProc()
|
|||
net::Socket acceptData = {true};
|
||||
net::Socket acceptClock = {true};
|
||||
std::string hostname;
|
||||
while (m_running)
|
||||
{
|
||||
if (m_dataServer.accept(acceptData, hostname) == net::Socket::EResult::OK)
|
||||
{
|
||||
while (m_running) {
|
||||
if (m_dataServer.accept(acceptData, hostname) == net::Socket::EResult::OK) {
|
||||
#if LOG_LISTENER
|
||||
printf("accepted data connection from %s\n", hostname.c_str());
|
||||
#endif
|
||||
}
|
||||
if (m_clockServer.accept(acceptClock, hostname) == net::Socket::EResult::OK)
|
||||
{
|
||||
if (m_clockServer.accept(acceptClock, hostname) == net::Socket::EResult::OK) {
|
||||
#if LOG_LISTENER
|
||||
printf("accepted clock connection from %s\n", hostname.c_str());
|
||||
#endif
|
||||
}
|
||||
if (acceptData && acceptClock)
|
||||
{
|
||||
if (acceptData && acceptClock) {
|
||||
std::unique_lock<std::mutex> lk(m_queueLock);
|
||||
m_endpointQueue.push(std::make_unique<Endpoint>(
|
||||
0, std::move(acceptData), std::move(acceptClock)));
|
||||
m_endpointQueue.push(std::make_unique<Endpoint>(0, std::move(acceptData), std::move(acceptClock)));
|
||||
}
|
||||
WaitGCTicks(GetGCTicksPerSec());
|
||||
}
|
||||
|
@ -87,25 +71,21 @@ void Listener::listenerProc()
|
|||
#endif
|
||||
}
|
||||
|
||||
void Listener::start()
|
||||
{
|
||||
void Listener::start() {
|
||||
stop();
|
||||
m_running = true;
|
||||
m_listenerThread = std::thread(std::bind(&Listener::listenerProc, this));
|
||||
}
|
||||
|
||||
void Listener::stop()
|
||||
{
|
||||
void Listener::stop() {
|
||||
m_running = false;
|
||||
if (m_listenerThread.joinable())
|
||||
m_listenerThread.join();
|
||||
}
|
||||
|
||||
std::unique_ptr<Endpoint> Listener::accept()
|
||||
{
|
||||
std::unique_ptr<Endpoint> Listener::accept() {
|
||||
std::unique_lock<std::mutex> lk(m_queueLock);
|
||||
if (m_endpointQueue.size())
|
||||
{
|
||||
if (m_endpointQueue.size()) {
|
||||
std::unique_ptr<Endpoint> ret;
|
||||
ret = std::move(m_endpointQueue.front());
|
||||
m_endpointQueue.pop();
|
||||
|
@ -116,4 +96,4 @@ std::unique_ptr<Endpoint> Listener::accept()
|
|||
|
||||
Listener::~Listener() { stop(); }
|
||||
|
||||
}
|
||||
} // namespace jbus
|
||||
|
|
|
@ -13,8 +13,7 @@
|
|||
#include <Ws2tcpip.h>
|
||||
#endif
|
||||
|
||||
namespace jbus::net
|
||||
{
|
||||
namespace jbus::net {
|
||||
|
||||
/* Define the low-level send/receive flags, which depend on the OS */
|
||||
#ifdef __linux__
|
||||
|
@ -23,43 +22,32 @@ static const int _flags = MSG_NOSIGNAL;
|
|||
static const int _flags = 0;
|
||||
#endif
|
||||
|
||||
void IPAddress::resolve(const std::string& address)
|
||||
{
|
||||
void IPAddress::resolve(const std::string& address) {
|
||||
m_address = 0;
|
||||
m_valid = false;
|
||||
|
||||
if (address == "255.255.255.255")
|
||||
{
|
||||
if (address == "255.255.255.255") {
|
||||
/* The broadcast address needs to be handled explicitly,
|
||||
* because it is also the value returned by inet_addr on error */
|
||||
m_address = INADDR_BROADCAST;
|
||||
m_valid = true;
|
||||
}
|
||||
else if (address == "0.0.0.0")
|
||||
{
|
||||
} else if (address == "0.0.0.0") {
|
||||
m_address = INADDR_ANY;
|
||||
m_valid = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
/* Try to convert the address as a byte representation ("xxx.xxx.xxx.xxx") */
|
||||
struct in_addr addr;
|
||||
if (inet_pton(AF_INET, address.c_str(), &addr) == 1)
|
||||
{
|
||||
if (inet_pton(AF_INET, address.c_str(), &addr) == 1) {
|
||||
m_address = addr.s_addr;
|
||||
m_valid = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
/* Not a valid address, try to convert it as a host name */
|
||||
addrinfo hints;
|
||||
memset(&hints, 0, sizeof(hints));
|
||||
hints.ai_family = AF_INET;
|
||||
addrinfo* result = NULL;
|
||||
if (getaddrinfo(address.c_str(), NULL, &hints, &result) == 0)
|
||||
{
|
||||
if (result)
|
||||
{
|
||||
if (getaddrinfo(address.c_str(), NULL, &hints, &result) == 0) {
|
||||
if (result) {
|
||||
addr = reinterpret_cast<sockaddr_in*>(result->ai_addr)->sin_addr;
|
||||
freeaddrinfo(result);
|
||||
m_address = addr.s_addr;
|
||||
|
@ -70,13 +58,9 @@ void IPAddress::resolve(const std::string& address)
|
|||
}
|
||||
}
|
||||
|
||||
uint32_t IPAddress::toInteger() const
|
||||
{
|
||||
return ntohl(m_address);
|
||||
}
|
||||
uint32_t IPAddress::toInteger() const { return ntohl(m_address); }
|
||||
|
||||
static sockaddr_in createAddress(uint32_t address, unsigned short port)
|
||||
{
|
||||
static sockaddr_in createAddress(uint32_t address, unsigned short port) {
|
||||
sockaddr_in addr;
|
||||
memset(&addr, 0, sizeof(addr));
|
||||
addr.sin_addr.s_addr = htonl(address);
|
||||
|
@ -90,14 +74,12 @@ static sockaddr_in createAddress(uint32_t address, unsigned short port)
|
|||
return addr;
|
||||
}
|
||||
|
||||
bool Socket::openSocket()
|
||||
{
|
||||
bool Socket::openSocket() {
|
||||
if (isOpen())
|
||||
return false;
|
||||
|
||||
m_socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
||||
if (m_socket == -1)
|
||||
{
|
||||
if (m_socket == -1) {
|
||||
fprintf(stderr, "Can't allocate socket\n");
|
||||
return false;
|
||||
}
|
||||
|
@ -113,18 +95,15 @@ bool Socket::openSocket()
|
|||
return true;
|
||||
}
|
||||
|
||||
void Socket::setRemoteSocket(int remSocket)
|
||||
{
|
||||
void Socket::setRemoteSocket(int remSocket) {
|
||||
close();
|
||||
m_socket = remSocket;
|
||||
setBlocking(m_isBlocking);
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
Socket::EResult Socket::LastWSAError()
|
||||
{
|
||||
switch (WSAGetLastError())
|
||||
{
|
||||
Socket::EResult Socket::LastWSAError() {
|
||||
switch (WSAGetLastError()) {
|
||||
case WSAEWOULDBLOCK:
|
||||
case WSAEALREADY:
|
||||
return EResult::Busy;
|
||||
|
@ -134,8 +113,7 @@ Socket::EResult Socket::LastWSAError()
|
|||
}
|
||||
#endif
|
||||
|
||||
void Socket::setBlocking(bool blocking)
|
||||
{
|
||||
void Socket::setBlocking(bool blocking) {
|
||||
m_isBlocking = blocking;
|
||||
#ifndef _WIN32
|
||||
int status = fcntl(m_socket, F_GETFL);
|
||||
|
@ -149,21 +127,18 @@ void Socket::setBlocking(bool blocking)
|
|||
#endif
|
||||
}
|
||||
|
||||
bool Socket::openAndListen(const IPAddress& address, uint32_t port)
|
||||
{
|
||||
bool Socket::openAndListen(const IPAddress& address, uint32_t port) {
|
||||
if (!openSocket())
|
||||
return false;
|
||||
|
||||
sockaddr_in addr = createAddress(address.toInteger(), port);
|
||||
if (bind(m_socket, reinterpret_cast<sockaddr*>(&addr), sizeof(addr)) == -1)
|
||||
{
|
||||
if (bind(m_socket, reinterpret_cast<sockaddr*>(&addr), sizeof(addr)) == -1) {
|
||||
/* Not likely to happen, but... */
|
||||
// fprintf(stderr, "Failed to bind listener socket to port %d\n", port);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (::listen(m_socket, 0) == -1)
|
||||
{
|
||||
if (::listen(m_socket, 0) == -1) {
|
||||
/* Oops, socket is deaf */
|
||||
// fprintf(stderr, "Failed to listen to port %d\n", port);
|
||||
return false;
|
||||
|
@ -172,8 +147,7 @@ bool Socket::openAndListen(const IPAddress& address, uint32_t port)
|
|||
return true;
|
||||
}
|
||||
|
||||
Socket::EResult Socket::accept(Socket& remoteSocketOut, sockaddr_in& fromAddress)
|
||||
{
|
||||
Socket::EResult Socket::accept(Socket& remoteSocketOut, sockaddr_in& fromAddress) {
|
||||
if (!isOpen())
|
||||
return EResult::Error;
|
||||
|
||||
|
@ -182,8 +156,7 @@ Socket::EResult Socket::accept(Socket& remoteSocketOut, sockaddr_in& fromAddress
|
|||
int remoteSocket = ::accept(m_socket, reinterpret_cast<sockaddr*>(&fromAddress), &length);
|
||||
|
||||
/* Check for errors */
|
||||
if (remoteSocket == -1)
|
||||
{
|
||||
if (remoteSocket == -1) {
|
||||
#ifndef _WIN32
|
||||
EResult res = (errno == EAGAIN) ? EResult::Busy : EResult::Error;
|
||||
if (res == EResult::Error)
|
||||
|
@ -202,14 +175,12 @@ Socket::EResult Socket::accept(Socket& remoteSocketOut, sockaddr_in& fromAddress
|
|||
return EResult::OK;
|
||||
}
|
||||
|
||||
Socket::EResult Socket::accept(Socket& remoteSocketOut)
|
||||
{
|
||||
Socket::EResult Socket::accept(Socket& remoteSocketOut) {
|
||||
sockaddr_in fromAddress;
|
||||
return accept(remoteSocketOut, fromAddress);
|
||||
}
|
||||
|
||||
Socket::EResult Socket::accept(Socket& remoteSocketOut, std::string& fromHostname)
|
||||
{
|
||||
Socket::EResult Socket::accept(Socket& remoteSocketOut, std::string& fromHostname) {
|
||||
sockaddr_in fromAddress;
|
||||
socklen_t len = sizeof(fromAddress);
|
||||
char name[NI_MAXHOST];
|
||||
|
@ -220,8 +191,7 @@ Socket::EResult Socket::accept(Socket& remoteSocketOut, std::string& fromHostnam
|
|||
return res;
|
||||
}
|
||||
|
||||
void Socket::close()
|
||||
{
|
||||
void Socket::close() {
|
||||
if (!isOpen())
|
||||
return;
|
||||
#ifndef _WIN32
|
||||
|
@ -232,8 +202,7 @@ void Socket::close()
|
|||
m_socket = -1;
|
||||
}
|
||||
|
||||
Socket::EResult Socket::send(const void* buf, size_t len, size_t& transferred)
|
||||
{
|
||||
Socket::EResult Socket::send(const void* buf, size_t len, size_t& transferred) {
|
||||
transferred = 0;
|
||||
if (!isOpen())
|
||||
return EResult::Error;
|
||||
|
@ -243,8 +212,7 @@ Socket::EResult Socket::send(const void* buf, size_t len, size_t& transferred)
|
|||
|
||||
/* Loop until every byte has been sent */
|
||||
int result = 0;
|
||||
for (size_t sent = 0; sent < len; sent += result)
|
||||
{
|
||||
for (size_t sent = 0; sent < len; sent += result) {
|
||||
/* Send a chunk of data */
|
||||
result = ::send(m_socket, static_cast<const char*>(buf) + sent, len - sent, _flags);
|
||||
|
||||
|
@ -261,14 +229,12 @@ Socket::EResult Socket::send(const void* buf, size_t len, size_t& transferred)
|
|||
return EResult::OK;
|
||||
}
|
||||
|
||||
Socket::EResult Socket::send(const void* buf, size_t len)
|
||||
{
|
||||
Socket::EResult Socket::send(const void* buf, size_t len) {
|
||||
size_t transferred;
|
||||
return send(buf, len, transferred);
|
||||
}
|
||||
|
||||
Socket::EResult Socket::recv(void* buf, size_t len, size_t& transferred)
|
||||
{
|
||||
Socket::EResult Socket::recv(void* buf, size_t len, size_t& transferred) {
|
||||
transferred = 0;
|
||||
if (!isOpen())
|
||||
return EResult::Error;
|
||||
|
@ -295,10 +261,9 @@ Socket::EResult Socket::recv(void* buf, size_t len, size_t& transferred)
|
|||
return EResult::OK;
|
||||
}
|
||||
|
||||
Socket::EResult Socket::recv(void* buf, size_t len)
|
||||
{
|
||||
Socket::EResult Socket::recv(void* buf, size_t len) {
|
||||
size_t transferred;
|
||||
return recv(buf, len, transferred);
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace jbus::net
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
#include "jbus/Endpoint.hpp"
|
||||
#include <functional>
|
||||
|
||||
static void clientPadComplimentCheck(jbus::u8* buffer)
|
||||
{
|
||||
static void clientPadComplimentCheck(jbus::u8* buffer) {
|
||||
jbus::u8 check = 0x19;
|
||||
for (int i = 0xa0; i < 0xbd; ++i)
|
||||
check += buffer[i];
|
||||
|
@ -12,13 +11,9 @@ static void clientPadComplimentCheck(jbus::u8* buffer)
|
|||
}
|
||||
|
||||
static jbus::EJoyReturn BootStatus = jbus::GBA_JOYBOOT_ERR_INVALID;
|
||||
static void JoyBootDone(jbus::ThreadLocalEndpoint& endpoint, jbus::EJoyReturn status)
|
||||
{
|
||||
BootStatus = status;
|
||||
}
|
||||
static void JoyBootDone(jbus::ThreadLocalEndpoint& endpoint, jbus::EJoyReturn status) { BootStatus = status; }
|
||||
|
||||
static bool DonePoll(jbus::Endpoint& endpoint)
|
||||
{
|
||||
static bool DonePoll(jbus::Endpoint& endpoint) {
|
||||
jbus::u8 status;
|
||||
if (endpoint.GBAReset(&status) == jbus::GBA_NOT_READY)
|
||||
if (endpoint.GBAReset(&status) == jbus::GBA_NOT_READY)
|
||||
|
@ -32,17 +27,14 @@ static bool DonePoll(jbus::Endpoint& endpoint)
|
|||
return true;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (argc < 2)
|
||||
{
|
||||
int main(int argc, char** argv) {
|
||||
if (argc < 2) {
|
||||
printf("Usage: joyboot <client_pad.bin>\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
FILE* fp = fopen(argv[1], "rb");
|
||||
if (!fp)
|
||||
{
|
||||
if (!fp) {
|
||||
fprintf(stderr, "Unable to open %s\n", argv[1]);
|
||||
return 1;
|
||||
}
|
||||
|
@ -53,8 +45,7 @@ int main(int argc, char** argv)
|
|||
std::unique_ptr<jbus::u8[]> data(new jbus::u8[fsize]);
|
||||
fread(data.get(), 1, fsize, fp);
|
||||
fclose(fp);
|
||||
if (fsize < 512)
|
||||
{
|
||||
if (fsize < 512) {
|
||||
fprintf(stderr, "%s must be at least 512 bytes\n", argv[1]);
|
||||
return 1;
|
||||
}
|
||||
|
@ -66,8 +57,7 @@ int main(int argc, char** argv)
|
|||
jbus::Listener listener;
|
||||
listener.start();
|
||||
std::unique_ptr<jbus::Endpoint> endpoint;
|
||||
while (true)
|
||||
{
|
||||
while (true) {
|
||||
jbus::s64 frameStart = jbus::GetGCTicks();
|
||||
endpoint = listener.accept();
|
||||
if (endpoint)
|
||||
|
@ -83,11 +73,9 @@ int main(int argc, char** argv)
|
|||
jbus::WaitGCTicks(jbus::GetGCTicksPerSec() * 4);
|
||||
|
||||
jbus::u8 status;
|
||||
if (endpoint->GBAJoyBootAsync(2, 2, data.get(), fsize,
|
||||
&status, std::bind(JoyBootDone,
|
||||
std::placeholders::_1,
|
||||
std::placeholders::_2)) != jbus::GBA_READY)
|
||||
{
|
||||
if (endpoint->GBAJoyBootAsync(2, 2, data.get(), fsize, &status,
|
||||
std::bind(JoyBootDone, std::placeholders::_1, std::placeholders::_2)) !=
|
||||
jbus::GBA_READY) {
|
||||
fprintf(stderr, "Unable to start JoyBoot\n");
|
||||
return 1;
|
||||
}
|
||||
|
@ -95,18 +83,15 @@ int main(int argc, char** argv)
|
|||
jbus::s64 start = jbus::GetGCTicks();
|
||||
jbus::u8 percent = 0;
|
||||
jbus::u8 lastpercent = 0;
|
||||
while (endpoint->GBAGetProcessStatus(percent) == jbus::GBA_BUSY)
|
||||
{
|
||||
if (percent != lastpercent)
|
||||
{
|
||||
while (endpoint->GBAGetProcessStatus(percent) == jbus::GBA_BUSY) {
|
||||
if (percent != lastpercent) {
|
||||
lastpercent = percent;
|
||||
printf("\rUpload %d%%", percent);
|
||||
fflush(stdout);
|
||||
}
|
||||
jbus::s64 curTime = jbus::GetGCTicks();
|
||||
jbus::s64 passedTicks = curTime - start;
|
||||
if (passedTicks > jbus::GetGCTicksPerSec() * 10)
|
||||
{
|
||||
if (passedTicks > jbus::GetGCTicksPerSec() * 10) {
|
||||
fprintf(stderr, "JoyBoot timeout\n");
|
||||
return 1;
|
||||
}
|
||||
|
@ -114,12 +99,10 @@ int main(int argc, char** argv)
|
|||
}
|
||||
printf("\nJoy Boot finished with %d status\n", status);
|
||||
|
||||
while (!DonePoll(*endpoint))
|
||||
{
|
||||
while (!DonePoll(*endpoint)) {
|
||||
jbus::s64 curTime = jbus::GetGCTicks();
|
||||
jbus::s64 passedTicks = curTime - start;
|
||||
if (passedTicks > jbus::GetGCTicksPerSec() * 15)
|
||||
{
|
||||
if (passedTicks > jbus::GetGCTicksPerSec() * 15) {
|
||||
fprintf(stderr, "JoyBoot timeout\n");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue