2018-04-14 08:54:04 -07:00
|
|
|
// Copyright (c) 2018- PPSSPP Project.
|
|
|
|
|
|
|
|
// 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, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/Debugger/WebSocket/SteppingBroadcaster.h"
|
2018-04-15 08:50:25 -07:00
|
|
|
#include "Core/Debugger/WebSocket/WebSocketUtils.h"
|
2018-04-14 08:54:04 -07:00
|
|
|
#include "Core/System.h"
|
|
|
|
|
|
|
|
void SteppingBroadcaster::Broadcast(net::WebSocketServer *ws) {
|
|
|
|
// TODO: This is somewhat primitive. It'd be nice to register a callback with Core instead?
|
2018-04-15 15:53:36 -07:00
|
|
|
if (coreState != prevState_ && PSP_IsInited()) {
|
|
|
|
// We ignore CORE_POWERDOWN.
|
|
|
|
if (coreState == CORE_STEPPING) {
|
2018-04-14 08:54:04 -07:00
|
|
|
// TODO: Should send more data proactively.
|
2018-04-15 11:51:19 -07:00
|
|
|
ws->Send(R"({"event":"cpu.stepping"})");
|
2018-04-15 15:53:36 -07:00
|
|
|
} else if (prevState_ == CORE_STEPPING && Core_IsActive()) {
|
|
|
|
ws->Send(R"({"event":"cpu.resume"})");
|
2018-04-14 08:54:04 -07:00
|
|
|
}
|
|
|
|
}
|
2018-04-15 15:53:36 -07:00
|
|
|
prevState_ = coreState;
|
2018-04-14 08:54:04 -07:00
|
|
|
}
|