mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-06-06 07:37:19 +02:00
308 lines
11 KiB
TypeScript
308 lines
11 KiB
TypeScript
import { STATES } from "../utils/global";
|
|
import { CE } from "../utils/html";
|
|
import { Toast } from "../utils/toast";
|
|
import { BxEvent } from "../utils/bx-event";
|
|
import { BX_FLAGS } from "../utils/bx-flags";
|
|
import { getPref, PrefKey } from "../utils/preferences";
|
|
import { t } from "../utils/translation";
|
|
import { NATIVE_FETCH } from "../utils/network";
|
|
import { BxLogger } from "../utils/bx-logger";
|
|
|
|
const LOG_TAG = 'TouchController';
|
|
|
|
export class TouchController {
|
|
static readonly #EVENT_SHOW_DEFAULT_CONTROLLER = new MessageEvent('message', {
|
|
data: '{"content":"{\\"layoutId\\":\\"\\"}","target":"/streaming/touchcontrols/showlayoutv2","type":"Message"}',
|
|
origin: 'better-xcloud',
|
|
});
|
|
|
|
/*
|
|
static readonly #EVENT_HIDE_CONTROLLER = new MessageEvent('message', {
|
|
data: '{"content":"","target":"/streaming/touchcontrols/hide","type":"Message"}',
|
|
origin: 'better-xcloud',
|
|
});
|
|
*/
|
|
|
|
static #$bar: HTMLElement;
|
|
static #$style: HTMLStyleElement;
|
|
|
|
static #enable = false;
|
|
static #showing = false;
|
|
static #dataChannel: RTCDataChannel | null;
|
|
|
|
static #customLayouts: {[index: string]: any} = {};
|
|
static #baseCustomLayouts: {[index: string]: any} = {};
|
|
static #currentLayoutId: string;
|
|
|
|
static enable() {
|
|
TouchController.#enable = true;
|
|
}
|
|
|
|
static disable() {
|
|
TouchController.#enable = false;
|
|
}
|
|
|
|
static isEnabled() {
|
|
return TouchController.#enable;
|
|
}
|
|
|
|
static #showDefault() {
|
|
TouchController.#dispatchMessage(TouchController.#EVENT_SHOW_DEFAULT_CONTROLLER);
|
|
TouchController.#showing = true;
|
|
}
|
|
|
|
static #show() {
|
|
document.querySelector('#BabylonCanvasContainer-main')?.parentElement?.classList.remove('bx-offscreen');
|
|
TouchController.#showing = true;
|
|
}
|
|
|
|
static #hide() {
|
|
document.querySelector('#BabylonCanvasContainer-main')?.parentElement?.classList.add('bx-offscreen');
|
|
TouchController.#showing = false;
|
|
}
|
|
|
|
static #toggleVisibility() {
|
|
if (!TouchController.#dataChannel) {
|
|
return;
|
|
}
|
|
|
|
TouchController.#showing ? TouchController.#hide() : TouchController.#show();
|
|
}
|
|
|
|
static #toggleBar(value: boolean) {
|
|
TouchController.#$bar && TouchController.#$bar.setAttribute('data-showing', value.toString());
|
|
}
|
|
|
|
static reset() {
|
|
TouchController.#enable = false;
|
|
TouchController.#showing = false;
|
|
TouchController.#dataChannel = null;
|
|
|
|
TouchController.#$bar && TouchController.#$bar.removeAttribute('data-showing');
|
|
TouchController.#$style && (TouchController.#$style.textContent = '');
|
|
}
|
|
|
|
static #dispatchMessage(msg: any) {
|
|
TouchController.#dataChannel && window.setTimeout(() => {
|
|
TouchController.#dataChannel!.dispatchEvent(msg);
|
|
}, 10);
|
|
}
|
|
|
|
static #dispatchLayouts(data: any) {
|
|
BxEvent.dispatch(window, BxEvent.CUSTOM_TOUCH_LAYOUTS_LOADED, {
|
|
data: data,
|
|
});
|
|
};
|
|
|
|
static async getCustomLayouts(xboxTitleId: string, retries: number=1) {
|
|
if (xboxTitleId in TouchController.#customLayouts) {
|
|
TouchController.#dispatchLayouts(TouchController.#customLayouts[xboxTitleId]);
|
|
return;
|
|
}
|
|
|
|
retries = retries || 1;
|
|
if (retries > 2) {
|
|
TouchController.#customLayouts[xboxTitleId] = null;
|
|
// Wait for BX_EXPOSED.touch_layout_manager
|
|
window.setTimeout(() => TouchController.#dispatchLayouts(null), 1000);
|
|
return;
|
|
}
|
|
|
|
const baseUrl = `https://raw.githubusercontent.com/redphx/better-xcloud/gh-pages/touch-layouts${BX_FLAGS.UseDevTouchLayout ? '/dev' : ''}`;
|
|
const url = `${baseUrl}/${xboxTitleId}.json`;
|
|
|
|
// Get layout info
|
|
try {
|
|
const resp = await NATIVE_FETCH(url);
|
|
const json = await resp.json();
|
|
|
|
const layouts = {};
|
|
|
|
json.layouts.forEach(async (layoutName: string) => {
|
|
let baseLayouts = {};
|
|
if (layoutName in TouchController.#baseCustomLayouts) {
|
|
baseLayouts = TouchController.#baseCustomLayouts[layoutName];
|
|
} else {
|
|
try {
|
|
const layoutUrl = `${baseUrl}/layouts/${layoutName}.json`;
|
|
const resp = await NATIVE_FETCH(layoutUrl);
|
|
const json = await resp.json();
|
|
|
|
baseLayouts = json.layouts;
|
|
TouchController.#baseCustomLayouts[layoutName] = baseLayouts;
|
|
} catch (e) {}
|
|
}
|
|
|
|
Object.assign(layouts, baseLayouts);
|
|
});
|
|
|
|
json.layouts = layouts;
|
|
TouchController.#customLayouts[xboxTitleId] = json;
|
|
|
|
// Wait for BX_EXPOSED.touch_layout_manager
|
|
window.setTimeout(() => TouchController.#dispatchLayouts(json), 1000);
|
|
} catch (e) {
|
|
// Retry
|
|
TouchController.getCustomLayouts(xboxTitleId, retries + 1);
|
|
}
|
|
}
|
|
|
|
static loadCustomLayout(xboxTitleId: string, layoutId: string, delay: number=0) {
|
|
if (!window.BX_EXPOSED.touch_layout_manager) {
|
|
return;
|
|
}
|
|
|
|
const layoutChanged = TouchController.#currentLayoutId !== layoutId;
|
|
TouchController.#currentLayoutId = layoutId;
|
|
|
|
// Get layout data
|
|
const layoutData = TouchController.#customLayouts[xboxTitleId];
|
|
if (!xboxTitleId || !layoutId || !layoutData) {
|
|
TouchController.#enable && TouchController.#showDefault();
|
|
return;
|
|
}
|
|
|
|
const layout = (layoutData.layouts[layoutId] || layoutData.layouts[layoutData.default_layout]);
|
|
if (!layout) {
|
|
return;
|
|
}
|
|
|
|
// Show a toast with layout's name
|
|
layoutChanged && Toast.show(t('touch-control-layout'), layout.name);
|
|
|
|
window.setTimeout(() => {
|
|
window.BX_EXPOSED.touch_layout_manager.changeLayoutForScope({
|
|
type: 'showLayout',
|
|
scope: xboxTitleId,
|
|
subscope: 'base',
|
|
layout: {
|
|
id: 'System.Standard',
|
|
displayName: 'System',
|
|
layoutFile: {
|
|
content: layout.content,
|
|
},
|
|
}
|
|
});
|
|
}, delay);
|
|
}
|
|
|
|
static setup() {
|
|
// Function for testing touch control
|
|
window.BX_EXPOSED.test_touch_control = (content: any) => {
|
|
const { touch_layout_manager } = window.BX_EXPOSED;
|
|
|
|
touch_layout_manager && touch_layout_manager.changeLayoutForScope({
|
|
type: 'showLayout',
|
|
scope: '' + STATES.currentStream?.xboxTitleId,
|
|
subscope: 'base',
|
|
layout: {
|
|
id: 'System.Standard',
|
|
displayName: 'Custom',
|
|
layoutFile: {
|
|
content: content,
|
|
},
|
|
},
|
|
});
|
|
};
|
|
|
|
const $fragment = document.createDocumentFragment();
|
|
const $style = document.createElement('style');
|
|
$fragment.appendChild($style);
|
|
|
|
const $bar = CE('div', {'id': 'bx-touch-controller-bar'});
|
|
$fragment.appendChild($bar);
|
|
|
|
document.documentElement.appendChild($fragment);
|
|
|
|
// Setup double-tap event
|
|
let clickTimeout: number | null;
|
|
$bar.addEventListener('mousedown', (e: MouseEvent) => {
|
|
clickTimeout && clearTimeout(clickTimeout);
|
|
if (clickTimeout) {
|
|
// Double-clicked
|
|
clickTimeout = null;
|
|
TouchController.#toggleVisibility();
|
|
return;
|
|
}
|
|
|
|
clickTimeout = window.setTimeout(() => {
|
|
clickTimeout = null;
|
|
}, 400);
|
|
});
|
|
|
|
TouchController.#$bar = $bar;
|
|
TouchController.#$style = $style;
|
|
|
|
const PREF_STYLE_STANDARD = getPref(PrefKey.STREAM_TOUCH_CONTROLLER_STYLE_STANDARD);
|
|
const PREF_STYLE_CUSTOM = getPref(PrefKey.STREAM_TOUCH_CONTROLLER_STYLE_CUSTOM);
|
|
|
|
window.addEventListener(BxEvent.DATA_CHANNEL_CREATED, e => {
|
|
const dataChannel = (e as any).dataChannel;
|
|
if (!dataChannel || dataChannel.label !== 'message') {
|
|
return;
|
|
}
|
|
|
|
// Apply touch controller's style
|
|
let filter = '';
|
|
if (TouchController.#enable) {
|
|
if (PREF_STYLE_STANDARD === 'white') {
|
|
filter = 'grayscale(1) brightness(2)';
|
|
} else if (PREF_STYLE_STANDARD === 'muted') {
|
|
filter = 'sepia(0.5)';
|
|
}
|
|
} else if (PREF_STYLE_CUSTOM === 'muted') {
|
|
filter = 'sepia(0.5)';
|
|
}
|
|
|
|
if (filter) {
|
|
$style.textContent = `#babylon-canvas { filter: ${filter} !important; }`;
|
|
} else {
|
|
$style.textContent = '';
|
|
}
|
|
|
|
TouchController.#dataChannel = dataChannel;
|
|
|
|
// Fix sometimes the touch controller doesn't show at the beginning
|
|
dataChannel.addEventListener('open', () => {
|
|
window.setTimeout(TouchController.#show, 1000);
|
|
});
|
|
|
|
let focused = false;
|
|
dataChannel.addEventListener('message', (msg: MessageEvent) => {
|
|
if (msg.origin === 'better-xcloud' || typeof msg.data !== 'string') {
|
|
return;
|
|
}
|
|
|
|
// Dispatch a message to display generic touch controller
|
|
if (msg.data.includes('touchcontrols/showtitledefault')) {
|
|
if (TouchController.#enable) {
|
|
if (focused) {
|
|
TouchController.getCustomLayouts(STATES.currentStream?.xboxTitleId!);
|
|
} else {
|
|
TouchController.#showDefault();
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
// Load custom touch layout
|
|
try {
|
|
if (msg.data.includes('/titleinfo')) {
|
|
const json = JSON.parse(JSON.parse(msg.data).content);
|
|
TouchController.#toggleBar(json.focused);
|
|
|
|
focused = json.focused;
|
|
if (!json.focused) {
|
|
TouchController.#show();
|
|
}
|
|
|
|
STATES.currentStream.xboxTitleId = parseInt(json.titleid, 16).toString();
|
|
}
|
|
} catch (e) {
|
|
BxLogger.error(LOG_TAG, 'Load custom layout', e);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|