4 constructor(socketLibrary, server) {
6 super(socketLibrary, server);
10 this.gltfEditor =
null;
12 this.setupEventHandlers = this.setupEventHandlers.bind(
this);
13 this.setupXML = this.setupXML.bind(
this);
16 handleImageRendered(data)
18 console.log(
'WEB: mtlx rendered event:', data.image ?
'Have image' :
'No image');
19 let base64String = data.image
21 const base64String = data.image;
24 const binary = atob(base64String);
25 const array =
new Uint8Array(binary.length);
26 for (let i = 0; i < binary.length; i++) {
27 array[i] = binary.charCodeAt(i);
29 const blob =
new Blob([array], { type:
'image/png' });
32 const url = URL.createObjectURL(blob);
33 document.getElementById(
'mtlxImage').src = url;
34 document.getElementById(
'mtlxImage').style.display =
'block';
37 document.getElementById(
'mtlxImage').style.display =
'none';
45 document.getElementById(
'getMTLXButton').addEventListener(
'click',
function () {
46 console.log(
"WEB: Emitting load_materialx event");
49 const input = document.createElement(
'input');
51 input.accept =
'.mtlx';
53 input.onchange =
function (event) {
54 const file =
event.target.files[0];
56 const reader =
new FileReader();
57 reader.onload =
function (e) {
58 const content = e.target.result;
59 console.log(
'socket: ', app)
60 app.socket.emit(
'load_materialx', { materialxFile: fileName, content: content });
62 reader.readAsText(file);
67 this.socket.on(
'materialx_loaded',
function (data) {
68 console.log(
'WEB: materialx loaded event:')
69 app.editor.setValue(data.materialxDocument);
72 document.getElementById(
'renderMTLXButton').addEventListener(
'click',
function () {
73 console.log(
'Web: Emitting render_mtlx event');
74 app.socket.emit(
'render_materialx', { materialxDocument: document.getElementById(
'mtlxOutput').value });
76 this.socket.on(
'materialx_rendered',
function (data) {
77 app.handleImageRendered(data);
81 document.getElementById(
'convertToUsd').addEventListener(
'click',
function () {
82 console.log(
'Web: Emitting convert_mtlx_to_usd event');
83 app.socket.emit(
'convert_mtlx_to_usd', { materialxDocument: document.getElementById(
'mtlxOutput').value });
85 this.socket.on(
'usd_converted',
function (data) {
86 console.log(
'WEB: usd converted event:');
87 app.usdEditor.setValue(data.usdDocument);
91 document.getElementById(
'convertToglTF').addEventListener(
'click',
function () {
92 console.log(
'Web: Emitting convert_mtlx_to_gltf event');
93 app.socket.emit(
'convert_mtlx_to_gltf', { materialxDocument: document.getElementById(
'mtlxOutput').value });
95 this.socket.on(
'gltf_converted',
function (data) {
96 console.log(
'WEB: gltf converted event:');
97 app.glTFEditor.setValue(data.document);
101 this.socket.on(
'materialx_version',
function (data) {
102 console.log(
'WEB: materialx_version event:', data.status);
109 const materialXTextArea = document.getElementById(
'mtlxOutput');
110 this.editor = CodeMirror.fromTextArea(materialXTextArea, {
111 mode:
'application/xml',
118 const initialXML =
'<?xml version="1.0" encoding="utf-8"?>\r\n<materialx version="1.38" colorspace="lin_rec709">\r\n</materialx>';
119 materialXTextArea.value = initialXML;
120 this.editor.setValue(initialXML);
123 this.editor.on(
'change', () => {
125 materialXTextArea.value = this.editor.getValue();
127 this.editor.setSize(
'auto',
'300px');
131 const usdOutput = document.getElementById(
'usdOutput');
132 this.usdEditor = CodeMirror.fromTextArea(usdOutput, {
133 mode:
'application/javascript',
140 const initialUsd =
'';
141 usdOutput.value = initialUsd;
142 this.usdEditor.setValue(initialUsd);
145 this.usdEditor.on(
'change', () => {
147 usdOutput.value = this.usdEditor.getValue();
149 this.usdEditor.setSize(
'auto',
'300px');
152 const glTFOutput = document.getElementById(
'glTFOutput');
153 this.glTFEditor = CodeMirror.fromTextArea(glTFOutput, {
154 mode:
'application/json',
161 const initialglTF =
'';
162 glTFOutput.value = initialglTF;
163 this.glTFEditor.setValue(initialglTF);
166 this.glTFEditor.on(
'change', () => {
168 glTFOutput.value = this.glTFEditor.getValue();
170 this.glTFEditor.setSize(
'auto',
'300px');