Skip to content

Commit

Permalink
Merge pull request #192 from epam/EPMUII-8667-Always-show-voxel-inten…
Browse files Browse the repository at this point in the history
…sity

EPMUII-8667-Always-show-voxel-intensity
  • Loading branch information
DanilRostov authored Jan 17, 2024
2 parents d9c6276 + a414ba5 commit aba7a10
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 18 deletions.
2 changes: 2 additions & 0 deletions src/engine/Graphics2d.js
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,8 @@ class Graphics2d extends React.Component {
const xScr = xContainer;
const yScr = yContainer;

this.m_toolPick.onMouseMove(xScr, yScr, store);

if (indexTools2d === Tools2dType.PAINT) {
this.m_toolPaint.onMouseMove(xScr, yScr, store);
}
Expand Down
36 changes: 25 additions & 11 deletions src/engine/tools2d/ToolPick.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ class ToolPick {
this.m_objGraphics2d = objGra;
this.m_wScreen = 0;
this.m_hScreen = 0;
this.m_strMessage = '';
this.m_strMessageOnClick = '';
this.m_strMessageOnMove = '';
this.m_xMessage = 0;
this.m_yMessage = 0;
this.m_timeStart = 0;
Expand Down Expand Up @@ -89,12 +90,11 @@ class ToolPick {
return vTex;
}

onMouseDown(xScr, yScr, store) {
getMessageText(xScr, yScr, store) {
if (this.m_wScreen === 0 || this.m_hScreen === 0) {
console.log('ToolPick. onMouseDown. Bad screen size');
return;
}

const xRatioImage = xScr / this.m_wScreen;
const yRatioImage = yScr / this.m_hScreen;
const vTex = this.screenToTexture(xRatioImage, yRatioImage, store);
Expand All @@ -105,7 +105,7 @@ class ToolPick {
const yDim = vol.m_yDim;

if (vTex.x < 0 || vTex.y < 0 || vTex.z < 0 || vTex.x >= vol.m_xDim || vTex.y >= vol.m_yDim) {
return;
return 'x: 0 y: 0 z: 0 val: 0';
}
/*
if (mode2d === Modes2d.SAGGITAL) {
Expand Down Expand Up @@ -138,20 +138,37 @@ class ToolPick {
off = off * FOUR;
val = vol.m_dataArray[off];
}
return `x: ${vTex.x.toString()} y: ${vTex.y.toString()} z: ${vTex.z.toString()} val: ${val.toString()}`;
}

onMouseDown(xScr, yScr, store) {
const message = this.getMessageText(xScr, yScr, store);
if (!message) return;
this.m_strMessageOnClick = message;
this.m_xMessage = xScr;
this.m_yMessage = yScr;
this.m_strMessage = 'x,y,z = ' + vTex.x.toString() + ', ' + vTex.y.toString() + ', ' + vTex.z.toString() + '. val = ' + val.toString();
// console.log(`ToolPick. onMouseDown. ${this.m_strMessage}`);
this.m_timeStart = Date.now();
setTimeout(this.onTimerEnd, 6000);
} // end onMouseDown

onMouseMove(xScr, yScr, store) {
const message = this.getMessageText(xScr, yScr, store);
if (!message) return;
this.m_strMessageOnMove = message;
}

onTimerEnd() {
this.m_objGraphics2d.forceUpdate();
}

render(ctx) {
ctx.fillStyle = 'white';
const FONT_SZ = 16;
ctx.font = FONT_SZ.toString() + 'px Arial';
ctx.textBaseline = 'bottom';
ctx.textAlign = 'left';
ctx.fillText(this.m_strMessageOnMove, 0, this.m_hScreen);

if (this.m_timeStart === 0) {
return;
}
Expand All @@ -162,10 +179,7 @@ class ToolPick {
if (timeDelta < TIME_SHOW_MS) {
// render message
// console.log('ToolPick. Render message on ctx');
ctx.fillStyle = 'white';
const FONT_SZ = 16;
ctx.font = FONT_SZ.toString() + 'px Arial';
const sizeTextRect = ctx.measureText(this.m_strMessage);
const sizeTextRect = ctx.measureText(this.m_strMessageOnClick);
// console.log(`ToolPick. draw text. x = ${this.m_xMessage}, szRect = ${sizeTextRect.width}, wScr = ${this.m_wScreen}`);
if (this.m_xMessage + sizeTextRect.width < this.m_wScreen) {
ctx.textAlign = 'left';
Expand All @@ -178,7 +192,7 @@ class ToolPick {
ctx.textBaseline = 'bottom';
}

ctx.fillText(this.m_strMessage, this.m_xMessage, this.m_yMessage);
ctx.fillText(this.m_strMessageOnClick, this.m_xMessage, this.m_yMessage);
}
}
}
Expand Down
13 changes: 7 additions & 6 deletions src/ui/DragAndDrop/DragAndDropContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ import React, { useState } from 'react';
import css from '../Main.module.css';

export const DragAndDropContainer = ({ children }) => {
const [position, setPosition] = useState({ top: 100, left: 900 });
const [position, setPosition] = useState({ top: 15, right: 1 });
const [isDragging, setIsDragging] = useState(false);
const [offset, setOffset] = useState({ x: 0, y: 0 });

const startDrag = (e) => {
if (e.target.tagName.toLowerCase() !== 'span') {
const rect = e.currentTarget.getBoundingClientRect();
setIsDragging(true);
setOffset({
x: e.clientX - position.left,
y: e.clientY - position.top,
x: e.clientX - rect.right,
y: e.clientY - rect.top,
});
}
};
Expand All @@ -24,7 +25,7 @@ export const DragAndDropContainer = ({ children }) => {
if (isDragging) {
const x = e.clientX - offset.x;
const y = e.clientY - offset.y;
setPosition({ left: x, top: y });
setPosition({ top: (y / window.innerHeight) * 100, right: ((window.innerWidth - x) / window.innerWidth) * 100 });
}
};

Expand All @@ -36,8 +37,8 @@ export const DragAndDropContainer = ({ children }) => {
style={{
opacity: isDragging ? 0.5 : 1,
cursor: isDragging ? 'grabbing' : 'grab',
top: position.top,
left: position.left,
top: `${position.top}%`,
right: `${position.right}%`,
}}
className={css.settings}
>
Expand Down
1 change: 0 additions & 1 deletion src/ui/Header/Header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
display: flex;
gap: 5px;
width: 95%;
min-width: 432px;
justify-content: space-between;
z-index: 12;
}
Expand Down

0 comments on commit aba7a10

Please sign in to comment.