Compare commits
13 Commits
9a0d769e0f
...
ontology
| Author | SHA1 | Date | |
|---|---|---|---|
| 28a34905c7 | |||
| 8aa3f7cde8 | |||
| 0c3a049d12 | |||
| 3305e74776 | |||
| 8ce7492f4e | |||
| 03b9b9157b | |||
| eb7efbf616 | |||
| b80504aec4 | |||
| db2fc2d066 | |||
| 491371e495 | |||
| fc4dd8af62 | |||
| c837a6e55f | |||
| 4dccd58bf3 |
Binary file not shown.
|
Before Width: | Height: | Size: 1009 KiB |
BIN
assets/img/rilievo_ssgp_bezzi.webp
Normal file
BIN
assets/img/rilievo_ssgp_bezzi.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 136 KiB |
BIN
assets/pano/hemi-green.jpg
Normal file
BIN
assets/pano/hemi-green.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.7 KiB |
25
config.js
25
config.js
@@ -16,16 +16,13 @@ const theater2Popup = `
|
|||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
scene : {
|
scene : {
|
||||||
initialExposure: 0.95,
|
initialExposure: 1.2,
|
||||||
autoLP: false,
|
autoLP: false,
|
||||||
shadows: false,
|
shadows: false,
|
||||||
initLightDir: [0.2,-0.3,-0.7],
|
initLightDir: [-0.3,-0.7,0.1],
|
||||||
initRotation: [0, 1.5, 0],
|
initRotation: [0, 190, 0],
|
||||||
ambientOcclusion: false,
|
ambientOcclusion: false,
|
||||||
},
|
},
|
||||||
menu : {
|
|
||||||
//audioBtn1
|
|
||||||
},
|
|
||||||
markers : [
|
markers : [
|
||||||
{
|
{
|
||||||
id : "salvador",
|
id : "salvador",
|
||||||
@@ -49,12 +46,6 @@ export const config = {
|
|||||||
nodes: {
|
nodes: {
|
||||||
label: 'Teatro',
|
label: 'Teatro',
|
||||||
children: [
|
children: [
|
||||||
/*
|
|
||||||
{
|
|
||||||
label: 'Struttura complessiva',
|
|
||||||
model: 'models/ssgp/Teatro_SSGP_Full_ConSottrazioni.glb',
|
|
||||||
},
|
|
||||||
*/
|
|
||||||
{
|
{
|
||||||
label: 'Involucro',
|
label: 'Involucro',
|
||||||
model: 'models/ssgp/Teatro_SSGP_Layer_Struttura_parete_di_fondo.glb',
|
model: 'models/ssgp/Teatro_SSGP_Layer_Struttura_parete_di_fondo.glb',
|
||||||
@@ -115,10 +106,10 @@ export const config = {
|
|||||||
// TEMP
|
// TEMP
|
||||||
content: {
|
content: {
|
||||||
type: 'img',
|
type: 'img',
|
||||||
imgSrc: '/a/scaenae/assets/img/rilievo_ssgp_bezzi.jpg',
|
imgSrc: '/a/scaenae/assets/img/rilievo_ssgp_bezzi.webp',
|
||||||
title: 'Disegno della pianta del teatro',
|
title: 'Disegno della pianta del teatro SS. Giovanni e Paolo',
|
||||||
description: `
|
description: `
|
||||||
Tommaso Bezzi: Disegno della pianta del teatro di S. Giovanni e Paolo di Venezia, 1691-1693, Sir John Soane's Museum, Londra.
|
Tommaso Bezzi: Disegno della pianta del teatro di SS. Giovanni e Paolo di Venezia, 1691-1693, Sir John Soane's Museum, Londra.
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -172,11 +163,11 @@ export const config = {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
pano: `pano/gradient.jpg`,
|
pano: `pano/hemi-green.jpg`,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
map : {
|
map : {
|
||||||
center: [45.30833, 12.240278],
|
center: [45.42833, 12.340278],
|
||||||
initialZoom : 12,
|
initialZoom : 12,
|
||||||
minZoom : 6,
|
minZoom : 6,
|
||||||
maxZoom : 18
|
maxZoom : 18
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
<script type="text/javascript" src="./vendor/leaflet/dist/leaflet-src.js"></script>
|
<script type="text/javascript" src="./vendor/leaflet/dist/leaflet-src.js"></script>
|
||||||
|
|
||||||
<!-- Main js entry -->
|
<!-- Main js entry -->
|
||||||
<script type="module" src="js/main.js"></script>
|
<script type="module" src="src/main.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body data-bs-theme="light">
|
<body data-bs-theme="light">
|
||||||
|
|||||||
@@ -1,43 +0,0 @@
|
|||||||
/**
|
|
||||||
* @module Ontology
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @todo Temporarily returns domains and ontology labels only
|
|
||||||
* Traverse an ontology from its JSON description
|
|
||||||
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
|
||||||
* @returns {Object}
|
|
||||||
*/
|
|
||||||
export async function traverseOntology(jsonPath) {
|
|
||||||
const ontology = await loadOntology(jsonPath);
|
|
||||||
const domains = [];
|
|
||||||
|
|
||||||
for (const k of Object.keys(ontology)) {
|
|
||||||
if (k === 'domains') {
|
|
||||||
for (const domainKey of Object.keys(ontology[k])) {
|
|
||||||
domains.push({
|
|
||||||
label: domainKey,
|
|
||||||
child: ontology[k][domainKey][0].label,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
ontology: ontology.ontology,
|
|
||||||
domains
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Load an ontology from its JSON description
|
|
||||||
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
|
||||||
* @returns {Object}
|
|
||||||
*/
|
|
||||||
export async function loadOntology(jsonPath) {
|
|
||||||
const ontology = await fetch(jsonPath)
|
|
||||||
.then(res => res.json())
|
|
||||||
.catch(err => console.error(err));
|
|
||||||
|
|
||||||
return ontology;
|
|
||||||
}
|
|
||||||
2922
scenes/BaroqueTheatreOntology_BT_EN_v1_7_UI_by_domain_v3.json
Normal file
2922
scenes/BaroqueTheatreOntology_BT_EN_v1_7_UI_by_domain_v3.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
|||||||
import { openScene } from "../../js/scene.js";
|
import { openScene } from "../../src/scene.js";
|
||||||
import { config } from "../../config.js";
|
import { config } from "../../config.js";
|
||||||
import AppState from "../../js/state.js";
|
import AppState from "../../src/state.js";
|
||||||
import { normalizeNodes } from "../../js/utils/nodeUtils.js";
|
import { normalizeNodes } from "../../src/utils/nodeUtils.js";
|
||||||
import { initStimulus } from "../../js/utils/stimulus.js";
|
import { initStimulus } from "../../src/utils/stimulus.js";
|
||||||
|
|
||||||
initStimulus();
|
initStimulus();
|
||||||
|
|
||||||
@@ -10,6 +10,4 @@ AppState.currentScene = 'salvador';
|
|||||||
const marker = config.markers.find(m => m.id === 'salvador');
|
const marker = config.markers.find(m => m.id === 'salvador');
|
||||||
AppState.normalizedNodes = normalizeNodes(marker.nodes).flat;
|
AppState.normalizedNodes = normalizeNodes(marker.nodes).flat;
|
||||||
|
|
||||||
console.debug(AppState.normalizedNodes);
|
|
||||||
|
|
||||||
openScene(marker, AppState.normalizedNodes);
|
openScene(marker, AppState.normalizedNodes);
|
||||||
@@ -58,25 +58,31 @@
|
|||||||
<script type="module" src="./index.js"></script>
|
<script type="module" src="./index.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body data-bs-theme="light" data-controller="menu" data-action="semantic-modal-show@document->menu#showSemanticModal">
|
<body data-bs-theme="light" data-controller="menu modal" data-action="semantic-modal-show@document->modal#showSemanticModal">
|
||||||
<div id="toolbar" class="aton-toolbar-top w-100"
|
<div id="toolbar" class="aton-toolbar-top w-100"
|
||||||
data-controller="toolbar clipper" data-clipper-enabled-value="false">
|
data-controller="toolbar clipper" data-clipper-enabled-value="false">
|
||||||
<a class="btn aton-btn fs-5" href="/a/scaenae" id="back" title="Torna alla mappa">
|
<div class="bg-dark-subtle position-absolute opacity-50 mt-1 ms-1 rounded">
|
||||||
<i class="bi bi-map-fill"></i>
|
<a class="btn aton-btn fs-5 p-1 text-white" href="/a/scaenae" id="back" title="Torna alla mappa">
|
||||||
</a>
|
<i class="bi bi-map-fill"></i>
|
||||||
<a class="btn aton-btn fs-5" title="Impostazioni" data-toolbar-target="settings"
|
</a>
|
||||||
data-action="toolbar#toggleSettings">
|
<a class="btn aton-btn fs-5 p-1 text-white" title="Impostazioni" data-toolbar-target="settings"
|
||||||
<i class="bi bi-gear-fill"></i>
|
data-action="toolbar#toggleSettings">
|
||||||
</a>
|
<i class="bi bi-gear-fill"></i>
|
||||||
<a class="btn aton-btn fs-5" title="Attiva / disattiva sezionamento"
|
</a>
|
||||||
data-clipper-target="trigger" data-action="clipper#toggleClipper">
|
<a class="btn aton-btn fs-5 p-1 text-white" title="Attiva / disattiva sezionamento"
|
||||||
<i class="bi bi-scissors"></i>
|
data-clipper-target="trigger" data-action="clipper#toggleClipper">
|
||||||
</a>
|
<i class="bi bi-scissors"></i>
|
||||||
|
</a>
|
||||||
|
<a class="btn aton-btn fs-5 p-1 text-white" title="Attiva schermo intero" data-toolbar-target="fullscreen"
|
||||||
|
data-action="toolbar#toggleFullscreen">
|
||||||
|
<i class="bi bi-fullscreen"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
<div class="d-none w-25
|
<div class="d-none w-25
|
||||||
position-absolute
|
position-absolute
|
||||||
top-0 start-50
|
top-0 start-50
|
||||||
translate-middle bg-light
|
translate-middle bg-light
|
||||||
px-4 pt-2 pb-2 bg-opacity-50
|
px-4 pt-2 pb-2 bg-opacity-75
|
||||||
rounded-bottom-3
|
rounded-bottom-3
|
||||||
mt-4 text-dark text-center"
|
mt-4 text-dark text-center"
|
||||||
id="clipper-bar"
|
id="clipper-bar"
|
||||||
@@ -89,7 +95,7 @@
|
|||||||
<button class="btn aton-btn d-inline px-4 py-4" id="clipZ"
|
<button class="btn aton-btn d-inline px-4 py-4" id="clipZ"
|
||||||
data-clipper-target="axis" data-clipper-axis-param="z" data-action="clipper#clip" title="Sezione Z"></button>
|
data-clipper-target="axis" data-clipper-axis-param="z" data-action="clipper#clip" title="Sezione Z"></button>
|
||||||
</div>
|
</div>
|
||||||
<a class="btn aton-btn fs-5 float-end" id="menu" title="Menu"
|
<a class="btn aton-btn fs-5 float-end p-1 mt-1 text-white" id="menu" title="Menu"
|
||||||
data-menu-target="trigger" data-action="menu#toggleMenu">
|
data-menu-target="trigger" data-action="menu#toggleMenu">
|
||||||
<i class="bi bi-list"></i>
|
<i class="bi bi-list"></i>
|
||||||
</a>
|
</a>
|
||||||
@@ -158,7 +164,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- TODO Make it a template -->
|
<!-- TODO Make it a template -->
|
||||||
<div class="modal" id="semanticModal" tabindex="-1">
|
<div class="modal" id="semanticModal" tabindex="-1" data-modal-target="modal">
|
||||||
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg">
|
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable modal-lg">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
import { openScene } from "../../js/scene.js";
|
import { openScene } from "../../src/scene.js";
|
||||||
import { config } from "../../config.js";
|
import { config } from "../../config.js";
|
||||||
import AppState from "../../js/state.js";
|
import AppState from "../../src/state.js";
|
||||||
import { normalizeNodes } from "../../js/utils/nodeUtils.js";
|
import { normalizeNodes } from "../../src/utils/nodeUtils.js";
|
||||||
import { initStimulus } from "../../js/utils/stimulus.js";
|
import { initStimulus } from "../../src/utils/stimulus.js";
|
||||||
|
import { initAtonEvents } from "../../src/utils/aton.js";
|
||||||
|
|
||||||
initStimulus();
|
initStimulus();
|
||||||
|
|
||||||
@@ -16,33 +17,4 @@ AppState.treeNodes = tree;
|
|||||||
|
|
||||||
openScene(marker, AppState.normalizedNodes);
|
openScene(marker, AppState.normalizedNodes);
|
||||||
|
|
||||||
// General hover/leave events handling for all semantic nodes.
|
initAtonEvents();
|
||||||
ATON.on("SemanticNodeHover", (semid) => {
|
|
||||||
let node = ATON.getSemanticNode(semid);
|
|
||||||
|
|
||||||
console.debug('Sem node:', semid);
|
|
||||||
|
|
||||||
if (node) node.highlight();
|
|
||||||
});
|
|
||||||
|
|
||||||
ATON.on("SemanticNodeLeave", (semid) => {
|
|
||||||
let node = ATON.getSemanticNode(semid);
|
|
||||||
if (node) node.restoreDefaultMaterial();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Triggers on mouse click / tap events
|
|
||||||
ATON.on("Tap", (e) => {
|
|
||||||
let node = ATON.getHoveredSemanticNode();
|
|
||||||
if (node) {
|
|
||||||
// Retrieve semantic node from AppState to trigger a modal with its content
|
|
||||||
const content = AppState.semanticNodes.get(node.nid);
|
|
||||||
|
|
||||||
// Triggers a modal to show the content (listened by Stimulus)
|
|
||||||
const event = new Event('semantic-modal-show');
|
|
||||||
event.content = content;
|
|
||||||
|
|
||||||
console.log(event);
|
|
||||||
|
|
||||||
document.dispatchEvent(event);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import { traverseOntology } from "../ontology.js";
|
|||||||
const html = String.raw;
|
const html = String.raw;
|
||||||
const domParser = new DOMParser;
|
const domParser = new DOMParser;
|
||||||
// TODO: hard-coded, but follows a convention...
|
// TODO: hard-coded, but follows a convention...
|
||||||
const ontologyJsonPath = location.pathname + 'ontology.json';
|
const ontologyJsonPath = '/a/scaenae/scenes/BaroqueTheatreOntology_BT_EN_v1_7_UI_by_domain_v3.json';
|
||||||
|
|
||||||
export default class extends Controller {
|
export default class extends Controller {
|
||||||
static targets = ['trigger', 'layers', 'ontology'];
|
static targets = ['trigger', 'layers', 'ontology'];
|
||||||
@@ -229,56 +229,26 @@ export default class extends Controller {
|
|||||||
* @param {HTMLElement} tab Tab content element
|
* @param {HTMLElement} tab Tab content element
|
||||||
*/
|
*/
|
||||||
#buildOntologyMenu(ontology, tab) {
|
#buildOntologyMenu(ontology, tab) {
|
||||||
console.debug(ontology);
|
|
||||||
|
|
||||||
const mainNode = tab.querySelector('#ontology-list');
|
const mainNode = tab.querySelector('#ontology-list');
|
||||||
mainNode.textContent = ontology.ontology;
|
mainNode.innerHTML = html`
|
||||||
|
<span class="fs-5 fw-bold">${ontology.ontology}</span>
|
||||||
let domainList = html`
|
|
||||||
<ul class="list-group mt-2" id="domains-list"></ul>
|
|
||||||
`;
|
`;
|
||||||
|
mainNode.classList.add('pb-3');
|
||||||
|
|
||||||
// Very fragile and ugly!!
|
let domainList = document.createElement('div');
|
||||||
mainNode.innerHTML += domainList;
|
|
||||||
domainList = tab.querySelector('#domains-list');
|
|
||||||
|
|
||||||
for(let domain of ontology.domains) {
|
|
||||||
const domainItem = html`
|
|
||||||
<li class="list-group-item">${domain.label}</li>
|
|
||||||
`;
|
|
||||||
domainList.innerHTML += domainItem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param {Event} event
|
|
||||||
*/
|
|
||||||
showSemanticModal(event) {
|
|
||||||
|
|
||||||
console.debug('I have been triggered...');
|
|
||||||
|
|
||||||
const modal = document.querySelector('#semanticModal');
|
for (let domain of ontology.domains) {
|
||||||
const title = modal.querySelector('.modal-title');
|
const domainItem = document.createElement('div');
|
||||||
// Clear any existing content first
|
domainItem.className = 'border-start border-bottom rounded';
|
||||||
title.innerHTML = '';
|
domainItem.textContent = domain.label;
|
||||||
title.innerHTML = event.content?.title;
|
// Indentation...
|
||||||
const body = modal.querySelector('.modal-body');
|
domainItem.classList.add(`ms-${domain.depth}`, `ps-${domain.depth}`, 'py-2');
|
||||||
body.innerHTML = '';
|
|
||||||
const contentType = event.content?.type;
|
|
||||||
|
|
||||||
const content = document.createElement(contentType);
|
if (domain.depth === 1) domainItem.classList.add('fw-bold');
|
||||||
if (contentType === 'img') {
|
|
||||||
content.src = event.content?.imgSrc;
|
domainList.appendChild(domainItem);
|
||||||
content.classList.add('img-fluid');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const description = document.createElement('p');
|
mainNode.appendChild(domainList);
|
||||||
description.textContent = event.content?.description;
|
|
||||||
description.classList.add('py-3', 'my-2', 'fst-italic');
|
|
||||||
|
|
||||||
body.appendChild(content);
|
|
||||||
body.appendChild(description);
|
|
||||||
|
|
||||||
bootstrap.Modal.getOrCreateInstance(modal).show();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
41
src/controllers/modal_controller.js
Normal file
41
src/controllers/modal_controller.js
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
import { Controller } from "@hotwired/stimulus";
|
||||||
|
|
||||||
|
export default class extends Controller {
|
||||||
|
static targets = ['modal'];
|
||||||
|
|
||||||
|
connect() {
|
||||||
|
console.log('#modal controller connected');
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {Event} event
|
||||||
|
*/
|
||||||
|
showSemanticModal(event) {
|
||||||
|
const modal = this.modalTarget;
|
||||||
|
const title = modal.querySelector('.modal-title');
|
||||||
|
// Clear any existing content first
|
||||||
|
title.innerHTML = '';
|
||||||
|
title.innerHTML = event.content?.title;
|
||||||
|
const body = modal.querySelector('.modal-body');
|
||||||
|
body.innerHTML = '';
|
||||||
|
const contentType = event.content?.type;
|
||||||
|
|
||||||
|
const content = document.createElement(contentType);
|
||||||
|
if (contentType === 'img') {
|
||||||
|
content.src = event.content?.imgSrc;
|
||||||
|
content.alt = event.content?.description.trim();
|
||||||
|
content.classList.add('img-fluid');
|
||||||
|
}
|
||||||
|
|
||||||
|
body.appendChild(content);
|
||||||
|
|
||||||
|
const description = document.createElement('p');
|
||||||
|
description.textContent = event.content?.description.trim();
|
||||||
|
description.classList.add('py-3', 'my-0', 'fst-italic');
|
||||||
|
|
||||||
|
body.appendChild(description);
|
||||||
|
|
||||||
|
bootstrap.Modal.getOrCreateInstance(modal).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ const panelHeader = html`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
export default class extends Controller {
|
export default class extends Controller {
|
||||||
static targets = ['settings'];
|
static targets = ['settings', 'fullscreen'];
|
||||||
|
|
||||||
connect() {
|
connect() {
|
||||||
console.log('#toolbar controller connected');
|
console.log('#toolbar controller connected');
|
||||||
@@ -23,6 +23,24 @@ export default class extends Controller {
|
|||||||
ATON.UI.showSidePanel({header: panelHeader});
|
ATON.UI.showSidePanel({header: panelHeader});
|
||||||
this.#buildSettingsPanel(ATON.UI.elSidePanel);
|
this.#buildSettingsPanel(ATON.UI.elSidePanel);
|
||||||
}
|
}
|
||||||
|
toggleFullscreen() {
|
||||||
|
/**
|
||||||
|
* @type {HTMLAnchorElement}
|
||||||
|
*/
|
||||||
|
const target = this.fullscreenTarget;
|
||||||
|
const icon = target.querySelector('i');
|
||||||
|
if (!document.fullscreenElement) {
|
||||||
|
document.body.requestFullscreen();
|
||||||
|
icon.classList.remove('bi-fullscreen');
|
||||||
|
icon.classList.add('bi-fullscreen-exit');
|
||||||
|
target.title = 'Esci da schermo intero';
|
||||||
|
} else {
|
||||||
|
document.exitFullscreen();
|
||||||
|
icon.classList.remove('bi-fullscreen-exit');
|
||||||
|
icon.classList.add('bi-fullscreen');
|
||||||
|
target.title = 'Attiva schermo intero';
|
||||||
|
}
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Clone a <template> by id
|
* Clone a <template> by id
|
||||||
* @param {String} id
|
* @param {String} id
|
||||||
69
src/ontology.js
Normal file
69
src/ontology.js
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
/**
|
||||||
|
* @module Ontology
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @todo Temporarily returns domains and ontology labels only
|
||||||
|
* Traverse an ontology from its JSON description
|
||||||
|
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
||||||
|
* @returns {Object}
|
||||||
|
*/
|
||||||
|
export async function traverseOntology(jsonPath) {
|
||||||
|
const ontology = await loadOntology(jsonPath);
|
||||||
|
const modules = ontology.modules;
|
||||||
|
|
||||||
|
let tree = [];
|
||||||
|
|
||||||
|
for (const module of modules) {
|
||||||
|
if (module.id === 'Architecture') {
|
||||||
|
console.debug(module.classTrees);
|
||||||
|
for (const classTree of module.classTrees) {
|
||||||
|
traverseClasses(classTree, tree);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
ontology: "Architecture",
|
||||||
|
domains: tree
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param {Object} ontologyClass
|
||||||
|
* @param {Array<Object>} tree
|
||||||
|
* @param {Number} depth
|
||||||
|
*/
|
||||||
|
function traverseClasses(ontologyClass, tree, depth = 1) {
|
||||||
|
const ontologyNode = {
|
||||||
|
id: ontologyClass.id,
|
||||||
|
label: ontologyClass.label,
|
||||||
|
depth,
|
||||||
|
children: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
tree.push(ontologyNode);
|
||||||
|
|
||||||
|
if (ontologyClass.children && Array.isArray(ontologyClass.children)) {
|
||||||
|
for(const child of ontologyClass.children) {
|
||||||
|
ontologyNode.children.push(
|
||||||
|
traverseClasses(child, tree, depth + 1)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load an ontology from its JSON description
|
||||||
|
* @param {String} jsonPath The path (URI) of the ontology JSON file
|
||||||
|
* @returns {Object}
|
||||||
|
*/
|
||||||
|
export async function loadOntology(jsonPath) {
|
||||||
|
const ontology = await fetch(jsonPath)
|
||||||
|
.then(res => res.json())
|
||||||
|
.catch(err => console.error(err));
|
||||||
|
|
||||||
|
return ontology;
|
||||||
|
}
|
||||||
@@ -132,7 +132,11 @@ function loadNodes(nodes) {
|
|||||||
*/
|
*/
|
||||||
function createSemanticNode(model, id) {
|
function createSemanticNode(model, id) {
|
||||||
// Default/highlight materials for semantic node
|
// Default/highlight materials for semantic node
|
||||||
let matSemDef = ATON.MatHub.materials.semanticShape;
|
let matSemDef = new THREE.MeshStandardMaterial({
|
||||||
|
color: '#f7e6af',
|
||||||
|
transparent: true,
|
||||||
|
opacity: 0.2,
|
||||||
|
});
|
||||||
let matSemHL = ATON.MatHub.materials.semanticShapeHL;
|
let matSemHL = ATON.MatHub.materials.semanticShapeHL;
|
||||||
|
|
||||||
const semNode = ATON.createSemanticNode(id)
|
const semNode = ATON.createSemanticNode(id)
|
||||||
38
src/utils/aton.js
Normal file
38
src/utils/aton.js
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
// Global ATON
|
||||||
|
|
||||||
|
import AppState from "../state.js";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @module AtonUtils
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* Initializes required ATON events for interactions
|
||||||
|
* with semantic nodes
|
||||||
|
*/
|
||||||
|
export function initAtonEvents() {
|
||||||
|
// General hover/leave events handling for all semantic nodes.
|
||||||
|
ATON.on("SemanticNodeHover", (semid) => {
|
||||||
|
let node = ATON.getSemanticNode(semid);
|
||||||
|
if (node) node.highlight();
|
||||||
|
});
|
||||||
|
|
||||||
|
ATON.on("SemanticNodeLeave", (semid) => {
|
||||||
|
let node = ATON.getSemanticNode(semid);
|
||||||
|
if (node) node.restoreDefaultMaterial();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Triggers on mouse click / tap events
|
||||||
|
ATON.on("Tap", (e) => {
|
||||||
|
let node = ATON.getHoveredSemanticNode();
|
||||||
|
if (node) {
|
||||||
|
// Retrieve semantic node from AppState to trigger a modal with its content
|
||||||
|
const content = AppState.semanticNodes.get(node.nid);
|
||||||
|
|
||||||
|
// Triggers a modal to show the content (listened by Stimulus)
|
||||||
|
const event = new Event('semantic-modal-show');
|
||||||
|
event.content = content;
|
||||||
|
|
||||||
|
document.dispatchEvent(event);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@ import SettingController from '../controllers/settings_controller.js';
|
|||||||
import ToolbarController from '../controllers/toolbar_controller.js';
|
import ToolbarController from '../controllers/toolbar_controller.js';
|
||||||
import ClipperController from '../controllers/clipper_controller.js';
|
import ClipperController from '../controllers/clipper_controller.js';
|
||||||
import MenuController from '../controllers/menu_controller.js';
|
import MenuController from '../controllers/menu_controller.js';
|
||||||
|
import ModalController from '../controllers/modal_controller.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize Stimulus controllers
|
* Initialize Stimulus controllers
|
||||||
@@ -13,4 +14,5 @@ export function initStimulus() {
|
|||||||
Stimulus.register("toolbar", ToolbarController);
|
Stimulus.register("toolbar", ToolbarController);
|
||||||
Stimulus.register("clipper", ClipperController);
|
Stimulus.register("clipper", ClipperController);
|
||||||
Stimulus.register("menu", MenuController);
|
Stimulus.register("menu", MenuController);
|
||||||
|
Stimulus.register("modal", ModalController);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user