Implement global axis system and advanced motion logic

This commit is contained in:
2025-12-21 23:25:23 +09:00
parent 182c364e37
commit a459b81884
7 changed files with 802 additions and 365 deletions

View File

@@ -7,7 +7,7 @@ import {
} from 'lucide-react';
import {
SimObject, ObjectType, AxisObject,
CylinderObject, LedObject, SwitchObject
CylinderObject, LedObject, SwitchObject, AxisData
} from '../types';
interface SidebarProps {
@@ -16,10 +16,12 @@ interface SidebarProps {
isPlaying: boolean;
inputNames: string[];
outputNames: string[];
axes: AxisData[];
onAddObject: (type: ObjectType) => void;
onDeleteObject: (id: string) => void;
onUpdateObject: (id: string, updates: Partial<SimObject>) => void;
onSelect: (id: string | null) => void;
onUpdateAxis: (index: number, updates: Partial<AxisData>) => void;
onSelect: React.Dispatch<React.SetStateAction<string | null>>;
onUpdatePortName: (type: 'input' | 'output', index: number, name: string) => void;
}
@@ -29,12 +31,14 @@ export const Sidebar: React.FC<SidebarProps> = ({
isPlaying,
inputNames,
outputNames,
axes,
onAddObject,
onDeleteObject,
onUpdateObject,
onUpdatePortName
onUpdateAxis,
onSelect,
onUpdatePortName,
}) => {
const [activeTab, setActiveTab] = useState<'properties' | 'system'>('properties');
const selectedObject = objects.find(o => o.id === selectedId);
const renderInput = (label: string, value: any, onChange: (val: any) => void, type = "text", step?: number) => (
@@ -56,156 +60,123 @@ export const Sidebar: React.FC<SidebarProps> = ({
return (
<div className="w-80 bg-gray-900 border-l border-gray-800 flex flex-col h-full overflow-hidden select-none shadow-xl shrink-0">
{/* Sub-navigation */}
{/* Header */}
<div className="p-4 border-b border-gray-800 bg-gray-950/50 flex items-center justify-between">
<h2 className="text-xs font-black uppercase tracking-widest text-gray-400">Layout Config</h2>
<div className="flex bg-gray-800 p-1 rounded-lg">
<button
onClick={() => setActiveTab('properties')}
className={`px-3 py-1 rounded text-[10px] font-black uppercase ${activeTab === 'properties' ? 'bg-gray-600 text-white shadow' : 'text-gray-400 hover:text-gray-300'}`}
>
Props
</button>
<button
onClick={() => setActiveTab('system')}
className={`px-3 py-1 rounded text-[10px] font-black uppercase ${activeTab === 'system' ? 'bg-gray-600 text-white shadow' : 'text-gray-400 hover:text-gray-300'}`}
>
System
</button>
</div>
</div>
{activeTab === 'properties' && (
<>
{/* Tool Box */}
<div className="p-4 grid grid-cols-3 gap-2 border-b border-gray-800 bg-gray-950/20">
<ToolBtn icon={<Move size={16} />} label="Lin Axis" onClick={() => onAddObject(ObjectType.AXIS_LINEAR)} />
<ToolBtn icon={<RotateCw size={16} />} label="Rot Axis" onClick={() => onAddObject(ObjectType.AXIS_ROTARY)} />
<ToolBtn icon={<LinkIcon size={16} />} label="Cylinder" onClick={() => onAddObject(ObjectType.CYLINDER)} />
<ToolBtn icon={<Power size={16} />} label="Switch" onClick={() => onAddObject(ObjectType.SWITCH)} />
<ToolBtn icon={<div className="w-3 h-3 rounded-full bg-green-500 shadow-[0_0_8px_#22c55e]" />} label="LED" onClick={() => onAddObject(ObjectType.LED)} />
{/* Tool Box */}
<div className="p-4 grid grid-cols-3 gap-2 border-b border-gray-800 bg-gray-950/20">
<ToolBtn icon={<Move size={16} />} label="Lin Axis" onClick={() => onAddObject(ObjectType.AXIS_LINEAR)} />
<ToolBtn icon={<RotateCw size={16} />} label="Rot Axis" onClick={() => onAddObject(ObjectType.AXIS_ROTARY)} />
<ToolBtn icon={<LinkIcon size={16} />} label="Cylinder" onClick={() => onAddObject(ObjectType.CYLINDER)} />
<ToolBtn icon={<Power size={16} />} label="Switch" onClick={() => onAddObject(ObjectType.SWITCH)} />
<ToolBtn icon={<div className="w-3 h-3 rounded-full bg-green-500 shadow-[0_0_8px_#22c55e]" />} label="LED" onClick={() => onAddObject(ObjectType.LED)} />
</div>
{/* Properties Form */}
<div className="flex-1 overflow-y-auto p-4 custom-scrollbar">
{!selectedObject ? (
<div className="flex flex-col items-center justify-center h-64 text-gray-600 opacity-50 space-y-3">
<Box size={32} />
<p className="text-[10px] font-black uppercase tracking-widest text-center">Select an object<br />to edit properties</p>
</div>
) : (
<div className="space-y-6">
<div className="flex justify-between items-center">
<h3 className="text-xs font-black text-blue-500 uppercase tracking-[2px]">Component Detail</h3>
<button onClick={() => onDeleteObject(selectedObject.id)} className="p-1.5 text-red-500 hover:bg-red-500/10 rounded transition-colors">
<Trash2 size={16} />
</button>
</div>
{/* Properties Form */}
<div className="flex-1 overflow-y-auto p-4 custom-scrollbar">
{!selectedObject ? (
<div className="flex flex-col items-center justify-center h-64 text-gray-600 opacity-50 space-y-3">
<Box size={32} />
<p className="text-[10px] font-black uppercase tracking-widest text-center">Select an object<br />to edit properties</p>
</div>
) : (
<div className="space-y-6">
<div className="flex justify-between items-center">
<h3 className="text-xs font-black text-blue-500 uppercase tracking-[2px]">Component Detail</h3>
<button onClick={() => onDeleteObject(selectedObject.id)} className="p-1.5 text-red-500 hover:bg-red-500/10 rounded transition-colors">
<Trash2 size={16} />
</button>
</div>
<div className="bg-gray-950/50 p-4 rounded-xl border border-gray-800/50 space-y-4">
{renderInput("Object Name", selectedObject.name, (val) => onUpdateObject(selectedObject.id, { name: val }))}
<div className="bg-gray-950/50 p-4 rounded-xl border border-gray-800/50 space-y-4">
{renderInput("Object Name", selectedObject.name, (val) => onUpdateObject(selectedObject.id, { name: val }))}
{selectedObject.type === ObjectType.SWITCH && (
<>
<div>
<label className="block text-[10px] text-gray-500 mb-1 font-bold uppercase tracking-wider">Assigned Input Port</label>
<select
className="w-full bg-gray-950 border border-gray-800 rounded px-2 py-1.5 text-sm text-white outline-none focus:border-blue-500"
value={(selectedObject as SwitchObject).inputPort}
onChange={(e) => onUpdateObject(selectedObject.id, { inputPort: parseInt(e.target.value) })}
>
{inputNames.map((name, i) => (
<option key={i} value={i}>X{i}: {name || '---'}</option>
))}
</select>
</div>
<div className="flex items-center gap-2 pt-2">
<input type="checkbox" className="w-4 h-4 rounded bg-gray-900 border-gray-700" checked={(selectedObject as SwitchObject).isMomentary} onChange={(e) => onUpdateObject(selectedObject.id, { isMomentary: e.target.checked })} />
<span className="text-xs text-gray-300">Momentary Contact</span>
</div>
</>
)}
{selectedObject.type === ObjectType.SWITCH && (
<>
<div>
<label className="block text-[10px] text-gray-500 mb-1 font-bold uppercase tracking-wider">Assigned Input Port</label>
<select
className="w-full bg-gray-950 border border-gray-800 rounded px-2 py-1.5 text-sm text-white outline-none focus:border-blue-500"
value={(selectedObject as SwitchObject).inputPort}
onChange={(e) => onUpdateObject(selectedObject.id, { inputPort: parseInt(e.target.value) })}
>
{inputNames.map((name, i) => (
<option key={i} value={i}>X{i}: {name || '---'}</option>
))}
</select>
</div>
<div className="flex items-center gap-2 pt-2">
<input type="checkbox" className="w-4 h-4 rounded bg-gray-900 border-gray-700" checked={(selectedObject as SwitchObject).isMomentary} onChange={(e) => onUpdateObject(selectedObject.id, { isMomentary: e.target.checked })} />
<span className="text-xs text-gray-300">Momentary Contact</span>
</div>
</>
)}
{selectedObject.type === ObjectType.LED && (
<>
<div>
<label className="block text-[10px] text-gray-500 mb-1 font-bold uppercase tracking-wider">Drive Output Port</label>
<select
className="w-full bg-gray-950 border border-gray-800 rounded px-2 py-1.5 text-sm text-white outline-none focus:border-blue-500"
value={(selectedObject as LedObject).outputPort}
onChange={(e) => onUpdateObject(selectedObject.id, { outputPort: parseInt(e.target.value) })}
>
{outputNames.map((name, i) => (
<option key={i} value={i}>Y{i}: {name || '---'}</option>
))}
</select>
</div>
{renderInput("Light Color", (selectedObject as LedObject).color, (v) => onUpdateObject(selectedObject.id, { color: v }), "color")}
</>
)}
{selectedObject.type === ObjectType.LED && (
<>
<div>
<label className="block text-[10px] text-gray-500 mb-1 font-bold uppercase tracking-wider">Drive Output Port</label>
<select
className="w-full bg-gray-950 border border-gray-800 rounded px-2 py-1.5 text-sm text-white outline-none focus:border-blue-500"
value={(selectedObject as LedObject).outputPort}
onChange={(e) => onUpdateObject(selectedObject.id, { outputPort: parseInt(e.target.value) })}
>
{outputNames.map((name, i) => (
<option key={i} value={i}>Y{i}: {name || '---'}</option>
))}
</select>
</div>
{renderInput("Light Color", (selectedObject as LedObject).color, (v) => onUpdateObject(selectedObject.id, { color: v }), "color")}
</>
)}
{(selectedObject.type === ObjectType.AXIS_LINEAR || selectedObject.type === ObjectType.AXIS_ROTARY) && (
<div>
<label className="block text-[10px] text-gray-500 mb-2 font-bold uppercase tracking-wider">Bind to Global Axis</label>
<select
className="w-full bg-gray-950 border border-gray-800 rounded px-2 py-1.5 text-sm text-white outline-none focus:border-blue-500"
value={(selectedObject as AxisObject).axisIndex}
onChange={(e) => onUpdateObject(selectedObject.id, { axisIndex: parseInt(e.target.value) })}
>
{axes.map((axis) => (
<option key={axis.id} value={axis.id}>
Channel {axis.id}: {axis.name} ({axis.type})
</option>
))}
</select>
{(selectedObject.type === ObjectType.AXIS_LINEAR || selectedObject.type === ObjectType.AXIS_ROTARY) && (
<div>
<label className="block text-[10px] text-gray-500 mb-2 font-bold uppercase tracking-wider">Manual Position ({(selectedObject as AxisObject).currentValue.toFixed(1)})</label>
<input type="range" min={(selectedObject as AxisObject).min} max={(selectedObject as AxisObject).max} value={(selectedObject as AxisObject).currentValue} step={0.1}
onChange={(e) => onUpdateObject(selectedObject.id, { currentValue: parseFloat(e.target.value), targetValue: parseFloat(e.target.value) })}
className="w-full h-1.5 bg-gray-800 rounded-lg appearance-none cursor-pointer accent-blue-500" />
{/* Axis Control Slider in Sidebar */}
<div className="mt-4 p-3 bg-gray-900 rounded border border-gray-800">
<div className="flex justify-between items-end mb-2">
<span className="text-[10px] text-gray-500 font-bold uppercase tracking-wider">Manual Jog</span>
<span className="text-xs font-mono text-blue-400">
{axes[(selectedObject as AxisObject).axisIndex]?.value.toFixed(1) || '0.0'}
</span>
</div>
)}
<input
type="range"
min={0}
max={axes[(selectedObject as AxisObject).axisIndex]?.type === 'rotary' ? 360 : 100}
step={0.1}
value={axes[(selectedObject as AxisObject).axisIndex]?.value || 0}
onChange={(e) => {
const val = parseFloat(e.target.value);
const idx = (selectedObject as AxisObject).axisIndex;
if (axes[idx]) {
onUpdateAxis(idx, { value: val, target: val });
}
}}
className="w-full h-2 bg-gray-800 rounded-lg appearance-none cursor-pointer accent-blue-500"
/>
</div>
</div>
</div>
)}
</div>
</>
)}
{activeTab === 'system' && (
<div className="flex-1 overflow-y-auto p-4 custom-scrollbar flex flex-col gap-6">
<div className="space-y-4">
<h3 className="text-[10px] font-black text-gray-500 uppercase tracking-widest border-b border-gray-800 pb-2">Hardware Mapping</h3>
<div className="space-y-6">
<div>
<h4 className="text-[10px] font-bold text-green-500 mb-3 uppercase flex items-center gap-2">
<div className="w-1.5 h-1.5 rounded-full bg-green-500" /> Inputs (X0 - X15)
</h4>
<div className="grid gap-1">
{inputNames.map((name, i) => (
<div key={i} className="flex items-center gap-2 group">
<span className="w-6 text-[9px] text-gray-600 font-mono">X{i.toString().padStart(2, '0')}</span>
<input
className="flex-1 bg-gray-950 border border-gray-800 rounded px-2 py-1 text-[11px] focus:border-green-500 outline-none transition-colors"
placeholder="Tag name..."
value={name}
onChange={(e) => onUpdatePortName('input', i, e.target.value)}
/>
</div>
))}
</div>
</div>
<div>
<h4 className="text-[10px] font-bold text-red-500 mb-3 uppercase flex items-center gap-2">
<div className="w-1.5 h-1.5 rounded-full bg-red-500" /> Outputs (Y0 - Y15)
</h4>
<div className="grid gap-1">
{outputNames.map((name, i) => (
<div key={i} className="flex items-center gap-2 group">
<span className="w-6 text-[9px] text-gray-600 font-mono">Y{i.toString().padStart(2, '0')}</span>
<input
className="flex-1 bg-gray-950 border border-gray-800 rounded px-2 py-1 text-[11px] focus:border-red-500 outline-none transition-colors"
placeholder="Tag name..."
value={name}
onChange={(e) => onUpdatePortName('output', i, e.target.value)}
/>
</div>
))}
</div>
</div>
)}
</div>
</div>
</div>
)}
)}
</div>
</div>
);
};