- Add real-time RFID duplicate validation in map editor with automatic rollback - Remove RFID auto-assignment to maintain data consistency between editor and simulator - Fix magnet direction calculation to use actual forward direction angles instead of arbitrary assignment - Add node names to simulator combo boxes for better identification - Improve UI layout by drawing connection lines before text for better visibility 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
679 B
C#
29 lines
679 B
C#
using System.Drawing;
|
|
using AGVNavigationCore.Models;
|
|
|
|
namespace AGVNavigationCore.Controls
|
|
{
|
|
#region Interfaces
|
|
|
|
/// <summary>
|
|
/// AGV 인터페이스 (가상/실제 AGV 통합)
|
|
/// </summary>
|
|
public interface IAGV
|
|
{
|
|
string AgvId { get; }
|
|
Point CurrentPosition { get; }
|
|
AgvDirection CurrentDirection { get; }
|
|
AGVState CurrentState { get; }
|
|
float BatteryLevel { get; }
|
|
|
|
// 이동 경로 정보 추가
|
|
Point? TargetPosition { get; }
|
|
string CurrentNodeId { get; }
|
|
string TargetNodeId { get; }
|
|
DockingDirection DockingDirection { get; }
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
} |