Spaces:
Running
on
T4
Running
on
T4
File size: 15,075 Bytes
2bd3674 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 |
import {useCallback, useEffect, useRef, useState} from 'react';
import {
Canvas,
createPortal,
extend,
useFrame,
useThree,
} from '@react-three/fiber';
import ThreeMeshUI from 'three-mesh-ui';
import {ARButton, XR, Hands, XREvent} from '@react-three/xr';
import {TextGeometry} from 'three/examples/jsm/geometries/TextGeometry.js';
import {TranslationSentences} from '../types/StreamingTypes';
import Button from './Button';
import {RoomState} from '../types/RoomState';
import ThreeMeshUIText, {ThreeMeshUITextType} from './ThreeMeshUIText';
import {BLACK, WHITE} from './Colors';
/**
* Using `?url` at the end of this import tells vite this is a static asset, and
* provides us a URL to the hashed version of the file when the project is built.
* See: https://vitejs.dev/guide/assets.html#explicit-url-imports
*/
import robotoFontFamilyJson from '../assets/RobotoMono-Regular-msdf.json?url';
import robotoFontTexture from '../assets/RobotoMono-Regular.png';
import {getURLParams} from '../URLParams';
import TextBlocks, {CHARS_PER_LINE} from './TextBlocks';
import {BufferedSpeechPlayer} from '../createBufferedSpeechPlayer';
import {CURSOR_BLINK_INTERVAL_MS} from '../cursorBlinkInterval';
// Adds on react JSX for add-on libraries to react-three-fiber
extend(ThreeMeshUI);
extend({TextGeometry});
async function fetchSupportedCharSet(): Promise<Set<string>> {
try {
const response = await fetch(robotoFontFamilyJson);
const fontFamily = await response.json();
return new Set(fontFamily.info.charset);
} catch (e) {
console.error('Failed to fetch supported XR charset', e);
return new Set();
}
}
let supportedCharSet = new Set();
fetchSupportedCharSet().then((result) => (supportedCharSet = result));
// This component wraps any children so it is positioned relative to the camera, rather than from the origin
function CameraLinkedObject({children}) {
const camera = useThree((state) => state.camera);
return createPortal(<>{children}</>, camera);
}
function ThreeMeshUIComponents({
translationSentences,
skipARIntro,
roomState,
animateTextDisplay,
}: XRConfigProps & {skipARIntro: boolean}) {
// The "loop" for re-rendering required for threemeshUI
useFrame(() => {
ThreeMeshUI.update();
});
const [started, setStarted] = useState<boolean>(skipARIntro);
return (
<>
<CameraLinkedObject>
{getURLParams().ARTranscriptionType === 'single_block' ? (
<TranscriptPanelSingleBlock
started={started}
animateTextDisplay={animateTextDisplay}
roomState={roomState}
translationSentences={translationSentences}
/>
) : (
<TranscriptPanelBlocks
animateTextDisplay={animateTextDisplay}
translationSentences={translationSentences}
/>
)}
{skipARIntro ? null : (
<IntroPanel started={started} setStarted={setStarted} />
)}
</CameraLinkedObject>
</>
);
}
// Original UI that just uses a single block to render 6 lines in a panel
function TranscriptPanelSingleBlock({
animateTextDisplay,
started,
translationSentences,
roomState,
}: {
animateTextDisplay: boolean;
started: boolean;
translationSentences: TranslationSentences;
roomState: RoomState | null;
}) {
const textRef = useRef<ThreeMeshUITextType>();
const [didReceiveTranslationSentences, setDidReceiveTranslationSentences] =
useState(false);
const hasActiveTranscoders = (roomState?.activeTranscoders ?? 0) > 0;
const [cursorBlinkOn, setCursorBlinkOn] = useState(false);
// Normally we don't setState in render, but here we need to for computed state, and this if statement assures it won't loop infinitely
if (!didReceiveTranslationSentences && translationSentences.length > 0) {
setDidReceiveTranslationSentences(true);
}
const width = 1;
const height = 0.3;
const fontSize = 0.03;
useEffect(() => {
if (animateTextDisplay && hasActiveTranscoders) {
const interval = setInterval(() => {
setCursorBlinkOn((prev) => !prev);
}, CURSOR_BLINK_INTERVAL_MS);
return () => clearInterval(interval);
} else {
setCursorBlinkOn(false);
}
}, [animateTextDisplay, hasActiveTranscoders]);
useEffect(() => {
if (textRef.current != null) {
const initialPrompt =
'Welcome to the presentation. We are excited to share with you the work we have been doing... Our model can now translate languages in less than 2 second latency.';
// These are rough ratios based on spot checking
const maxLines = 6;
const charsPerLine = 55;
const transcriptSentences: string[] = didReceiveTranslationSentences
? translationSentences
: [initialPrompt];
// The transcript is an array of sentences. For each sentence we break this down into an array of words per line.
// This is needed so we can "scroll" through without changing the order of words in the transcript
const linesToDisplay = transcriptSentences.flatMap((sentence, idx) => {
const blinkingCursor =
cursorBlinkOn && idx === transcriptSentences.length - 1 ? '|' : ' ';
const words = sentence.concat(blinkingCursor).split(/\s+/);
// Here we break each sentence up with newlines so all words per line fit within the panel
return words.reduce(
(wordChunks, currentWord) => {
const filteredWord = [...currentWord]
.filter((c) => {
if (supportedCharSet.has(c)) {
return true;
}
console.error(
`Unsupported char ${c} - make sure this is supported in the font family msdf file`,
);
return false;
})
.join('');
const lastLineSoFar = wordChunks[wordChunks.length - 1];
const charCount = lastLineSoFar.length + filteredWord.length + 1;
if (charCount <= charsPerLine) {
wordChunks[wordChunks.length - 1] =
lastLineSoFar + ' ' + filteredWord;
} else {
wordChunks.push(filteredWord);
}
return wordChunks;
},
[''],
);
});
// Only keep the last maxLines so new text keeps scrolling up from the bottom
linesToDisplay.splice(0, linesToDisplay.length - maxLines);
textRef.current.set({content: linesToDisplay.join('\n')});
}
}, [
translationSentences,
textRef,
didReceiveTranslationSentences,
cursorBlinkOn,
]);
const opacity = started ? 1 : 0;
return (
<block
args={[{padding: 0.05, backgroundOpacity: opacity}]}
position={[0, -0.4, -1.3]}>
<block
args={[
{
width,
height,
fontSize,
textAlign: 'left',
backgroundOpacity: opacity,
// TODO: support more language charsets
// This renders using MSDF format supported in WebGL. Renderable characters are defined in the "charset" json
// Currently supports most default keyboard inputs but this would exclude many non latin charset based languages.
// You can use https://msdf-bmfont.donmccurdy.com/ for easily generating these files
// fontFamily: '/src/assets/Roboto-msdf.json',
// fontTexture: '/src/assets/Roboto-msdf.png'
fontFamily: robotoFontFamilyJson,
fontTexture: robotoFontTexture,
},
]}>
<ThreeMeshUIText
ref={textRef}
content={'Transcript'}
fontOpacity={opacity}
/>
</block>
</block>
);
}
// Splits up the lines into separate blocks to treat each one separately.
// This allows changing of opacity, animating per line, changing height / width per line etc
function TranscriptPanelBlocks({
animateTextDisplay,
translationSentences,
}: {
animateTextDisplay: boolean;
translationSentences: TranslationSentences;
}) {
const [didReceiveTranslationSentences, setDidReceiveTranslationSentences] =
// Currently causing issues with displaying dummy text, skip over
useState(false);
// Normally we don't setState in render, but here we need to for computed state, and this if statement assures it won't loop infinitely
if (!didReceiveTranslationSentences && translationSentences.length > 0) {
setDidReceiveTranslationSentences(true);
}
const initialPrompt = 'Listening...';
const transcriptSentences: string[] = didReceiveTranslationSentences
? translationSentences
: [initialPrompt];
// The transcript is an array of sentences. For each sentence we break this down into an array of words per line.
// This is needed so we can "scroll" through without changing the order of words in the transcript
const sentenceLines = transcriptSentences.map((sentence) => {
const words = sentence.split(/\s+/);
// Here we break each sentence up with newlines so all words per line fit within the panel
return words.reduce(
(wordChunks, currentWord) => {
const filteredWord = [...currentWord]
.filter((c) => {
if (supportedCharSet.has(c)) {
return true;
}
console.error(
`Unsupported char ${c} - make sure this is supported in the font family msdf file`,
);
return false;
})
.join('');
const lastLineSoFar = wordChunks[wordChunks.length - 1];
const charCount = lastLineSoFar.length + filteredWord.length + 1;
if (charCount <= CHARS_PER_LINE) {
wordChunks[wordChunks.length - 1] =
lastLineSoFar + ' ' + filteredWord;
} else {
wordChunks.push(filteredWord);
}
return wordChunks;
},
[''],
);
});
return (
<TextBlocks sentences={sentenceLines} blinkCursor={animateTextDisplay} />
);
}
function IntroPanel({started, setStarted}) {
const width = 0.5;
const height = 0.4;
const padding = 0.03;
// Kind of hacky but making the panel disappear by moving it completely off the camera view.
// If we try to remove elements we end up throwing and stopping the experience
// opacity=0 also runs into weird bugs where not everything is invisible
const xCoordinate = started ? 1000000 : 0;
const commonArgs = {
backgroundColor: WHITE,
width,
height,
padding,
backgroundOpacity: 1,
textAlign: 'center',
fontFamily: robotoFontFamilyJson,
fontTexture: robotoFontTexture,
};
return (
<>
<block
args={[
{
...commonArgs,
fontSize: 0.02,
},
]}
position={[xCoordinate, -0.1, -0.5]}>
<ThreeMeshUIText
content="FAIR Seamless Streaming Demo"
fontColor={BLACK}
/>
</block>
<block
args={[
{
...commonArgs,
fontSize: 0.016,
backgroundOpacity: 0,
},
]}
position={[xCoordinate, -0.15, -0.5001]}>
<ThreeMeshUIText
fontColor={BLACK}
content="Welcome to the Seamless team streaming demo experience! In this demo, you would experience AI powered text and audio translation in real time."
/>
</block>
<block
args={[
{
width: 0.1,
height: 0.1,
backgroundOpacity: 1,
backgroundColor: BLACK,
},
]}
position={[xCoordinate, -0.23, -0.5002]}>
<Button
onClick={() => setStarted(true)}
content={'Start Experience'}
width={0.2}
height={0.035}
fontSize={0.015}
padding={0.01}
borderRadius={0.01}
/>
</block>
</>
);
}
export type XRConfigProps = {
animateTextDisplay: boolean;
bufferedSpeechPlayer: BufferedSpeechPlayer;
translationSentences: TranslationSentences;
roomState: RoomState | null;
roomID: string | null;
startStreaming: () => Promise<void>;
stopStreaming: () => Promise<void>;
debugParam: boolean | null;
};
export default function XRConfig(props: XRConfigProps) {
const {bufferedSpeechPlayer, debugParam} = props;
const skipARIntro = getURLParams().skipARIntro;
const defaultDimensions = {width: 500, height: 500};
const [dimensions, setDimensions] = useState(
debugParam ? defaultDimensions : {width: 0, height: 0},
);
const {width, height} = dimensions;
// Make sure to reset buffer when headset is taken off / on so we don't get an endless stream
// of audio. The oculus actually runs for some time after the headset is taken off.
const resetBuffers = useCallback(
(event: XREvent<XRSessionEvent>) => {
const session = event.target;
if (!(session instanceof XRSession)) {
return;
}
switch (session.visibilityState) {
case 'visible':
bufferedSpeechPlayer.start();
break;
case 'hidden':
bufferedSpeechPlayer.stop();
break;
}
},
[bufferedSpeechPlayer],
);
return (
<div style={{height, width, margin: '0 auto', border: '1px solid #ccc'}}>
{/* This is the button that triggers AR flow if available via a button */}
<ARButton
onError={(e) => console.error(e)}
onClick={() => setDimensions(defaultDimensions)}
style={{
position: 'absolute',
bottom: '24px',
left: '50%',
transform: 'translateX(-50%)',
padding: '12px 24px',
border: '1px solid white',
borderRadius: '4px',
backgroundColor: '#465a69',
color: 'white',
font: 'normal 0.8125rem sans-serif',
outline: 'none',
zIndex: 99999,
cursor: 'pointer',
}}
/>
{/* Canvas to draw if in browser but if in AR mode displays in pass through mode */}
{/* The camera here just works in 2D mode. In AR mode it starts at at origin */}
{/* <Canvas camera={{position: [0, 0, 1], fov: 60}}> */}
<Canvas camera={{position: [0, 0, 0.001], fov: 60}}>
<color attach="background" args={['grey']} />
<XR referenceSpace="local" onVisibilityChange={resetBuffers}>
{/*
Uncomment this for controllers to show up
<Controllers />
*/}
<Hands />
{/*
Uncomment this for moving with controllers
<MovementController />
*/}
{/*
Uncomment this for turning the view in non-vr mode
<OrbitControls
autoRotateSpeed={0.85}
zoomSpeed={1}
minPolarAngle={Math.PI / 2.5}
maxPolarAngle={Math.PI / 2.55}
/>
*/}
<ThreeMeshUIComponents {...props} skipARIntro={skipARIntro} />
{/* Just for testing */}
{/* <RandomComponents /> */}
</XR>
</Canvas>
</div>
);
}
|