mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
96 lines
3.1 KiB
TypeScript
96 lines
3.1 KiB
TypeScript
namespace gdjs {
|
|
const logger = new gdjs.Logger('Debugger client (websocket)');
|
|
|
|
/**
|
|
* This debugger client connects to a websocket server, exchanging
|
|
* and receiving messages with this server.
|
|
*/
|
|
export class WebsocketDebuggerClient extends gdjs.AbstractDebuggerClient {
|
|
_ws: WebSocket | null;
|
|
|
|
/**
|
|
* @param path - The path of the property to modify, starting from the RuntimeGame.
|
|
*/
|
|
constructor(runtimeGame: RuntimeGame) {
|
|
super(runtimeGame);
|
|
this._ws = null;
|
|
if (typeof WebSocket === 'undefined') {
|
|
logger.log("WebSocket is not defined, the debugger won't work.");
|
|
return;
|
|
}
|
|
|
|
const that = this;
|
|
try {
|
|
// Find the WebSocket server to connect to using the address that was stored
|
|
// in the options by the editor. If not, try the default address, though it's unlikely
|
|
// to work - which is ok, the game can run without a debugger server.
|
|
const runtimeGameOptions = runtimeGame.getAdditionalOptions();
|
|
const address =
|
|
(runtimeGameOptions &&
|
|
runtimeGameOptions.websocketDebuggerServerAddress) ||
|
|
'127.0.0.1';
|
|
const port =
|
|
(runtimeGameOptions &&
|
|
runtimeGameOptions.websocketDebuggerServerPort) ||
|
|
'3030';
|
|
this._ws = new WebSocket('ws://' + address + ':' + port + '/');
|
|
} catch {
|
|
try {
|
|
this._ws = new WebSocket(
|
|
(location.protocol === 'https:' ? 'wss://' : 'ws://') +
|
|
location.hostname +
|
|
':' +
|
|
location.port +
|
|
'/'
|
|
);
|
|
} catch {
|
|
try {
|
|
this._ws = new WebSocket('ws://localhost:3030/');
|
|
} catch {
|
|
logger.log(
|
|
"WebSocket could not initialize, debugger/hot-reload won't work."
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
this._ws.onopen = function open() {
|
|
logger.info('Debugger connection open');
|
|
};
|
|
this._ws.onclose = function close() {
|
|
logger.info('Debugger connection closed');
|
|
};
|
|
this._ws.onerror = function errored(error) {
|
|
logger.warn('Debugger client error:', error);
|
|
};
|
|
this._ws.onmessage = function incoming(message) {
|
|
let data: any = null;
|
|
try {
|
|
data = JSON.parse(message.data);
|
|
} catch (error) {
|
|
logger.info('Debugger received a badly formatted message:', error);
|
|
}
|
|
that.handleCommand(data);
|
|
};
|
|
}
|
|
|
|
private hasLoggedError: boolean = false;
|
|
protected _sendMessage(message: string) {
|
|
if (!this._ws) {
|
|
// The error can be logged only once, since logger.warn will call this function again,
|
|
// leading to an endless recursive call if we do not call it only once.
|
|
if (!this.hasLoggedError) {
|
|
this.hasLoggedError = true;
|
|
logger.warn('No connection to debugger opened to send a message.');
|
|
}
|
|
return;
|
|
}
|
|
if (this._ws.readyState === 1) this._ws.send(message);
|
|
}
|
|
}
|
|
|
|
//Register the class to let the engine use it.
|
|
// @ts-ignore
|
|
export const DebuggerClient = WebsocketDebuggerClient;
|
|
}
|