All files / components/screens/combat/components/controls KeyboardHints.tsx

100% Statements 20/20
100% Branches 29/29
100% Functions 4/4
100% Lines 19/19

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 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                                                                                                                  2x           82x   82x 52x 2x   50x     82x 52x 52x 52x 52x 52x   52x     82x   21x                                                                                                                             168x 168x     168x       168x                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
/**
 * KeyboardHints - On-screen control overlay
 * Displays keyboard bindings for trigram stances and combat actions
 * 
 * Refactored to use useKoreanTheme for consistent theming
 * 
 * @module components/combat/components/KeyboardHints
 * @category Combat UI
 * @korean 키보드힌트
 */
 
import { Html } from "@react-three/drei";
import React, { useMemo } from "react";
import { useKoreanTheme } from "../../../../shared/base/useKoreanTheme";
import { hexToRgbaString } from "../../../../../utils/colorUtils";
import { ControlBinding } from "../../../../../utils/controlMapping";
 
/**
 * Props for KeyboardHints component
 */
export interface KeyboardHintsProps {
  /** Whether hints are visible */
  readonly visible: boolean;
  /** Current stance index (0-7) for highlighting */
  readonly currentStance: number;
  /** Mobile layout flag */
  readonly isMobile?: boolean;
  /** Custom key bindings */
  readonly customBindings?: ControlBinding;
}
 
/**
 * KeyboardHints Component
 * 
 * Displays an overlay of keyboard controls for stance switching and combat actions.
 * Highlights the currently active stance and adapts layout for mobile devices.
 * 
 * Features:
 * - 8 trigram stance keys displayed in a grid
 * - Current stance highlighted in gold
 * - Combat action keys (attack, block, movement)
 * - Responsive mobile layout
 * - Korean cyberpunk styling
 * - Toggle with F1 key
 * 
 * @example
 * ```tsx
 * <KeyboardHints
 *   visible={showHints}
 *   currentStance={player.stance}
 *   isMobile={isMobile}
 *   customBindings={controlMapper.getBindings()}
 * />
 * ```
 * 
 * @korean 키보드힌트
 */
export const KeyboardHints: React.FC<KeyboardHintsProps> = ({
  visible,
  currentStance,
  isMobile = false,
  customBindings,
}) => {
  const theme = useKoreanTheme({ variant: "bordered", size: "md", isMobile });
  
  const stanceKeys = useMemo(() => {
    if (customBindings?.stances) {
      return customBindings.stances;
    }
    return ["1", "2", "3", "4", "5", "6", "7", "8"];
  }, [customBindings]);
 
  const layout = useMemo(() => {
    const keySize = isMobile ? 32 : 48;
    const gap = isMobile ? 4 : 8;
    const fontSize = isMobile ? 12 : 16;
    const labelFontSize = isMobile ? 10 : 12;
    const padding = isMobile ? 8 : 12;
 
    return { keySize, gap, fontSize, labelFontSize, padding };
  }, [isMobile]);
 
  if (!visible) return null;
 
  return (
    <Html fullscreen>
      <div
        data-testid="keyboard-hints"
        role="dialog"
        aria-label="Keyboard control hints"
        aria-describedby="hints-description"
        style={{
          position: "absolute",
          bottom: isMobile ? "20px" : "40px",
          left: "50%",
          transform: "translateX(-50%)",
          pointerEvents: "none",
          zIndex: 999,
        }}
      >
        {/* Hidden description for screen readers */}
        <div
          id="hints-description"
          style={{
            position: "absolute",
            left: "-9999px",
            width: "1px",
            height: "1px",
            overflow: "hidden",
          }}
        >
          Keyboard controls for combat. Press F1 to toggle this overlay.
        </div>
 
        {/* Main hints container */}
        <div
          style={{
            background: hexToRgbaString(theme.colors.UI_BACKGROUND_DARK, 0.9),
            border: `2px solid ${hexToRgbaString(theme.colors.PRIMARY_CYAN, 0.8)}`,
            borderRadius: "8px",
            padding: `${layout.padding}px`,
            boxShadow: `0 0 20px ${hexToRgbaString(theme.colors.PRIMARY_CYAN, 0.3)}`,
          }}
        >
          {/* Section title */}
          <div
            style={{
              color: hexToRgbaString(theme.colors.PRIMARY_CYAN, 1),
              fontFamily: theme.fontFamily.KOREAN,
              fontSize: `${layout.labelFontSize}px`,
              textAlign: "center",
              marginBottom: "8px",
              fontWeight: "bold",
            }}
          >
            Trigram Stances (1-8)
          </div>
 
          {/* Stance keys grid */}
          <div
            style={{
              display: "flex",
              gap: `${layout.gap}px`,
              marginBottom: "12px",
            }}
          >
            {stanceKeys.map((key, index) => {
              const isActive = index === currentStance;
              const keyColor = isActive
                ? theme.colors.ACCENT_GOLD
                : theme.colors.UI_STEEL_GRAY;
              const bgColor = isActive
                ? hexToRgbaString(theme.colors.ACCENT_GOLD, 0.2)
                : "transparent";
 
              return (
                <div
                  key={index}
                  data-testid={`stance-key-${index}`}
                  style={{
                    width: `${layout.keySize}px`,
                    height: `${layout.keySize}px`,
                    border: `2px solid ${hexToRgbaString(keyColor, isActive ? 1 : 0.6)}`,
                    borderRadius: "4px",
                    display: "flex",
                    alignItems: "center",
                    justifyContent: "center",
                    fontSize: `${layout.fontSize}px`,
                    color: hexToRgbaString(keyColor, 1),
                    background: bgColor,
                    fontFamily: theme.fontFamily.KOREAN,
                    fontWeight: isActive ? "bold" : "normal",
                    boxShadow: isActive
                      ? `0 0 10px ${hexToRgbaString(theme.colors.ACCENT_GOLD, 0.5)}`
                      : "none",
                    transition: "all 0.2s ease",
                  }}
                >
                  {key.toUpperCase()}
                </div>
              );
            })}
          </div>
 
          {/* Combat actions */}
          <div
            style={{
              borderTop: `1px solid ${hexToRgbaString(theme.colors.PRIMARY_CYAN, 0.3)}`,
              paddingTop: "8px",
              marginBottom: "8px",
              display: "grid",
              gridTemplateColumns: isMobile ? "1fr" : "1fr 1fr",
              gap: "4px",
              fontSize: `${layout.labelFontSize}px`,
              color: hexToRgbaString(theme.colors.TEXT_SECONDARY, 0.9),
              fontFamily: theme.fontFamily.KOREAN,
            }}
          >
            <div>
              <span
                style={{
                  color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                  fontWeight: "bold",
                }}
              >
                Space
              </span>{" "}
              - Attack
            </div>
            <div>
              <span
                style={{
                  color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                  fontWeight: "bold",
                }}
              >
                B
              </span>{" "}
              - Block
            </div>
            <div>
              <span
                style={{
                  color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                  fontWeight: "bold",
                }}
              >
                V
              </span>{" "}
              - Toggle vital points overlay
            </div>
            <div>
              <span
                style={{
                  color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                  fontWeight: "bold",
                }}
              >
                WASD/Arrows
              </span>{" "}
              - Move
            </div>
          </div>
 
          {/* Technique keys section */}
          <div
            style={{
              borderTop: `1px solid ${hexToRgbaString(theme.colors.PRIMARY_CYAN, 0.3)}`,
              paddingTop: "8px",
              marginBottom: "8px",
            }}
          >
            <div
              style={{
                color: hexToRgbaString(theme.colors.PRIMARY_CYAN, 1),
                fontFamily: theme.fontFamily.KOREAN,
                fontSize: `${layout.labelFontSize}px`,
                textAlign: "center",
                marginBottom: "6px",
                fontWeight: "bold",
              }}
            >
              Techniques (기술)
            </div>
            <div
              style={{
                fontSize: `${layout.labelFontSize}px`,
                color: hexToRgbaString(theme.colors.TEXT_SECONDARY, 0.9),
                fontFamily: theme.fontFamily.KOREAN,
                textAlign: "center",
              }}
            >
              <span
                style={{
                  color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                  fontWeight: "bold",
                }}
              >
                Q-E-R-T-Y-F-G-Z-X-C
              </span>
              {" "}
              - Execute techniques
            </div>
          </div>
 
          {/* Advanced footwork section */}
          <div
            style={{
              borderTop: `1px solid ${hexToRgbaString(theme.colors.PRIMARY_CYAN, 0.3)}`,
              paddingTop: "8px",
            }}
          >
            <div
              style={{
                color: hexToRgbaString(theme.colors.PRIMARY_CYAN, 1),
                fontFamily: theme.fontFamily.KOREAN,
                fontSize: `${layout.labelFontSize}px`,
                textAlign: "center",
                marginBottom: "6px",
                fontWeight: "bold",
              }}
            >
              Advanced Footwork (보법)
            </div>
            <div
              style={{
                fontSize: `${layout.labelFontSize - 1}px`,
                color: hexToRgbaString(theme.colors.TEXT_SECONDARY, 0.9),
                fontFamily: theme.fontFamily.KOREAN,
                textAlign: "center",
                lineHeight: 1.4,
              }}
            >
              <div style={{ marginBottom: "4px" }}>
                <span
                  style={{
                    color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                    fontWeight: "bold",
                  }}
                >
                  Shift+WASD
                </span>
                {" "}
                - Tactical steps (30cm)
              </div>
              <div style={{ marginBottom: "4px" }}>
                <span
                  style={{
                    color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                    fontWeight: "bold",
                  }}
                >
                  Ctrl+WASD
                </span>
                {" "}
                - Footwork patterns
              </div>
              <div style={{ marginBottom: "4px" }}>
                <span
                  style={{
                    color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                    fontWeight: "bold",
                  }}
                >
                  Shift+Ctrl+A/D
                </span>
                {" "}
                - Pivot rotation
              </div>
              <div style={{ marginBottom: "4px" }}>
                <span
                  style={{
                    color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                    fontWeight: "bold",
                  }}
                >
                  Shift+Ctrl+W/S
                </span>
                {" "}
                - Shuffle step
              </div>
              <div>
                <span
                  style={{
                    color: hexToRgbaString(theme.colors.ACCENT_GOLD, 1),
                    fontWeight: "bold",
                  }}
                >
                  H
                </span>
                {" "}
                - Switch front foot
              </div>
            </div>
          </div>
 
          {/* Toggle hint */}
          <div
            style={{
              marginTop: "8px",
              textAlign: "center",
              fontSize: `${layout.labelFontSize - 2}px`,
              color: hexToRgbaString(theme.colors.TEXT_SECONDARY, 0.7),
              fontStyle: "italic",
            }}
          >
            Press F1 to toggle • ESC/M for pause
          </div>
        </div>
      </div>
    </Html>
  );
};