All files / components/training/components VitalPointMarker3D.tsx

61.29% Statements 19/31
36.95% Branches 17/46
50% Functions 4/8
60.71% Lines 17/28

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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                                                                      3x 818x   77x   272x   247x   170x   52x                   3x               818x 818x     818x 818x     818x     818x                           818x   818x           818x                                                                                                                                                                                                                                  
/**
 * VitalPointMarker3D - Individual vital point marker with hover labels
 * 
 * Provides interactive 3D markers for vital points with Korean-English bilingual labels
 */
 
import { Html } from "@react-three/drei";
import { useFrame } from "@react-three/fiber";
import React, { useCallback, useMemo, useRef, useState } from "react";
import * as THREE from "three";
import { VitalPoint } from "../../../systems/vitalpoint/types";
import { VitalPointSeverity } from "../../../types/common";
import { KOREAN_COLORS, FONT_FAMILY } from "../../../types/constants";
 
/**
 * Props for VitalPointMarker3D component
 */
export interface VitalPointMarker3DProps {
  /** The vital point data to visualize */
  readonly vitalPoint: VitalPoint;
  /** Whether this vital point is currently selected */
  readonly isSelected: boolean;
  /** Whether training mode is active */
  readonly isTraining: boolean;
  /** Whether on mobile device (larger hit targets) */
  readonly isMobile?: boolean;
  /** Callback when vital point is clicked/hit */
  readonly onHit?: (vitalPointId: string) => void;
  /** Base size multiplier (for difficulty modes) */
  readonly sizeMultiplier?: number;
}
 
/**
 * Get color based on vital point severity
 */
const getSeverityColor = (severity: VitalPointSeverity): number => {
  switch (severity) {
    case VitalPointSeverity.MINOR:
      return KOREAN_COLORS.POSITIVE_GREEN;
    case VitalPointSeverity.MODERATE:
      return KOREAN_COLORS.WARNING_YELLOW;
    case VitalPointSeverity.MAJOR:
      return KOREAN_COLORS.ACCENT_GOLD;
    case VitalPointSeverity.CRITICAL:
      return KOREAN_COLORS.ACCENT_RED;
    case VitalPointSeverity.LETHAL:
      return KOREAN_COLORS.NEGATIVE_RED; // Most severe - red for lethal vital points
    default:
      return KOREAN_COLORS.TEXT_SECONDARY;
  }
};
 
/**
 * VitalPointMarker3D Component
 * Individual 3D marker with hover tooltip
 */
export const VitalPointMarker3D: React.FC<VitalPointMarker3DProps> = ({
  vitalPoint,
  isSelected,
  isTraining,
  isMobile = false,
  onHit,
  sizeMultiplier = 1.0,
}) => {
  const meshRef = useRef<THREE.Mesh>(null);
  const [hovered, setHovered] = useState(false);
 
  // Calculate marker size (larger on mobile, adjustable by difficulty)
  const baseSize = isMobile ? 0.15 : 0.1;
  const markerSize = baseSize * sizeMultiplier;
 
  // Reusable vector for scale animation
  const targetScale = useMemo(() => new THREE.Vector3(1, 1, 1), []);
 
  // Animate selected and hovered markers
  useFrame((state) => {
    if (!meshRef.current) return;
 
    if (isSelected || hovered) {
      // Pulsing animation for selected/hovered markers
      const pulse = Math.sin(state.clock.elapsedTime * 4) * 0.15 + 1;
      meshRef.current.scale.setScalar(pulse);
    } else {
      // Smooth return to normal scale
      targetScale.set(1, 1, 1);
      meshRef.current.scale.lerp(targetScale, 0.1);
    }
  });
 
  const color = useMemo(() => getSeverityColor(vitalPoint.severity), [vitalPoint.severity]);
 
  const handleClick = useCallback(() => {
    if (isTraining && onHit) {
      onHit(vitalPoint.id);
    }
  }, [isTraining, onHit, vitalPoint.id]);
 
  return (
    <group>
      {/* Hit target sphere
          Note: Three.js 3D objects lack standard DOM accessibility (aria-label, role, etc.).
          For accessible alternatives, see keyboard shortcuts documented in the UI and
          consider future enhancements for screen reader support via Html overlays. */}
      <mesh
        ref={meshRef}
        onClick={handleClick}
        onPointerOver={() => setHovered(true)}
        onPointerOut={() => setHovered(false)}
        data-testid={`vital-point-marker-${vitalPoint.id}`}
      >
        <sphereGeometry args={[markerSize, 16, 16]} />
        <meshStandardMaterial
          color={isSelected ? KOREAN_COLORS.ACCENT_GOLD : color}
          emissive={isSelected ? KOREAN_COLORS.ACCENT_GOLD : color}
          emissiveIntensity={isSelected ? 0.7 : hovered ? 0.5 : 0.2}
          metalness={0.6}
          roughness={0.3}
          transparent
          opacity={isTraining ? 0.9 : 0.5}
        />
      </mesh>
 
      {/* Ring indicator for selected marker */}
      {isSelected && (
        <mesh rotation={[Math.PI / 2, 0, 0]}>
          <ringGeometry args={[markerSize * 1.2, markerSize * 1.5, 32]} />
          <meshBasicMaterial
            color={KOREAN_COLORS.ACCENT_GOLD}
            transparent
            opacity={0.6}
            side={THREE.DoubleSide}
          />
        </mesh>
      )}
 
      {/* Hover tooltip with Korean-English labels */}
      {hovered && (
        <Html
          position={[0, markerSize + 0.2, 0]}
          center
          distanceFactor={10}
          occlude={false}
          style={{ pointerEvents: "none" }}
        >
          <div
            style={{
              background: "rgba(0, 0, 0, 0.9)",
              border: `2px solid ${isSelected ? "#ffd700" : "#00ffff"}`,
              borderRadius: "8px",
              padding: isMobile ? "6px 10px" : "8px 12px",
              fontFamily: FONT_FAMILY.KOREAN,
              whiteSpace: "nowrap",
              boxShadow: "0 0 15px rgba(0, 255, 255, 0.5)",
            }}
            data-testid={`vital-point-tooltip-${vitalPoint.id}`}
          >
            {/* Korean name */}
            <div
              style={{
                fontSize: isMobile ? "12px" : "14px",
                fontWeight: "bold",
                color: "#ffd700",
                marginBottom: "4px",
              }}
            >
              {vitalPoint.names.korean}
            </div>
 
            {/* English name */}
            <div
              style={{
                fontSize: isMobile ? "10px" : "11px",
                color: "#00ffff",
                marginBottom: "4px",
              }}
            >
              {vitalPoint.names.english}
            </div>
 
            {/* Romanized name */}
            <div
              style={{
                fontSize: isMobile ? "9px" : "10px",
                color: "#999999",
                fontStyle: "italic",
              }}
            >
              {vitalPoint.names.romanized}
            </div>
 
            {/* Severity indicator */}
            <div
              style={{
                fontSize: isMobile ? "9px" : "10px",
                color: `#${new THREE.Color(color).getHexString()}`,
                marginTop: "6px",
                borderTop: "1px solid rgba(255, 255, 255, 0.2)",
                paddingTop: "4px",
              }}
            >
              심각도 | {vitalPoint.severity}
            </div>
          </div>
        </Html>
      )}
    </group>
  );
};
 
export default VitalPointMarker3D;