Browse Source

Add Robot Wafer display in OperationOverView and EfemView; Modify logs in VacuumLevelCheckRoutine;

niuyx 1 month ago
parent
commit
7cd95698ba

+ 1 - 2
CyberX8_MainPages/Views/EfemView.xaml

@@ -52,8 +52,7 @@
 
         <userControls:SRDFrontView UnitData1="{Binding Srd2ModuleInfo}" UnitData2="{Binding Srd1ModuleInfo}" Title="SRD"  Canvas.Top="80" Canvas.Left="1040"/>
 
-
-
+        <userControls:RobotFrontView UnitData="{Binding EFEMModuleInfo}" Canvas.Left="1222" Canvas.Top="112"/>
 
         <Canvas Canvas.Top="-150">
             <Grid Canvas.Left="499" Canvas.Top="440" Panel.ZIndex="2" Visibility="{Binding IsLP1Unable,Converter={StaticResource bool2VisibilityConverter}}">

+ 1 - 0
CyberX8_MainPages/Views/OperationOverView.xaml

@@ -325,5 +325,6 @@
 
         <local:ProcessChamberView Tag="" Canvas.Left="110" Canvas.Top="513"/>
         <userControls:SRDFrontView UnitData1="{Binding SRD2ModuleInfo}" UnitData2="{Binding SRD1ModuleInfo}" Title="SRD"  Canvas.Top="105" Canvas.Left="545"/>
+        <userControls:RobotFrontView Canvas.Left="740" Canvas.Top="137" UnitData="{Binding EFEMModuleInfo}"/>
     </Canvas>
 </UserControl>

+ 4 - 4
CyberX8_RT/Devices/Loader/LoaderSideVacuumLevelCheckRoutine.cs

@@ -75,12 +75,12 @@ namespace CyberX8_RT.Devices.AXIS.CANOpen
                 {
                     if (_loaderSide.SideData.CRSVacuumValue >= _crsVacuumHighLimit)
                     {
-                        NotifyError(Aitex.Core.RT.Log.eEvent.ERR_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is over or equal {_crsVacuumHighLimit}", 0);
+                        NotifyError(Aitex.Core.RT.Log.eEvent.INFO_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is over or equal {_crsVacuumHighLimit}", 0);
                         return false;
                     }
                     if (_loaderSide.SideData.CRSVacuumValue >= 0)
                     {
-                        NotifyError(Aitex.Core.RT.Log.eEvent.ERR_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is over or equal 0", 0);
+                        NotifyError(Aitex.Core.RT.Log.eEvent.INFO_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is over or equal 0", 0);
                         return false;
                     }
                 }
@@ -90,12 +90,12 @@ namespace CyberX8_RT.Devices.AXIS.CANOpen
                 result= _loaderSide.SideData.CRSVacuumValue > _crsVacuumLowLimit && _loaderSide.SideData.CRSVacuumValue < 0;
                 if (_loaderSide.SideData.CRSVacuumValue <= _crsVacuumLowLimit)
                 {
-                    NotifyError(Aitex.Core.RT.Log.eEvent.ERR_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is less or equal {_crsVacuumLowLimit}", 0);
+                    NotifyError(Aitex.Core.RT.Log.eEvent.INFO_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is less or equal {_crsVacuumLowLimit}", 0);
                     return false;
                 }
                 if (_loaderSide.SideData.CRSVacuumValue >= 0)
                 {
-                    NotifyError(Aitex.Core.RT.Log.eEvent.ERR_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is over or equal 0", 0);
+                    NotifyError(Aitex.Core.RT.Log.eEvent.INFO_LOADER, $"vacuum value {_loaderSide.SideData.CRSVacuumValue} is over or equal 0", 0);
                     return false;
                 }
             }

+ 7 - 0
CyberX8_Themes/CyberX8_Themes.csproj

@@ -342,6 +342,9 @@
     <Compile Include="UserControls\RinseUIControl.xaml.cs">
       <DependentUpon>RinseUIControl.xaml</DependentUpon>
     </Compile>
+    <Compile Include="UserControls\RobotFrontView.xaml.cs">
+      <DependentUpon>RobotFrontView.xaml</DependentUpon>
+    </Compile>
     <Compile Include="UserControls\SchedulerControl.cs">
       <SubType>UserControl</SubType>
     </Compile>
@@ -882,6 +885,10 @@
       <SubType>Designer</SubType>
       <Generator>MSBuild:Compile</Generator>
     </Page>
+    <Page Include="UserControls\RobotFrontView.xaml">
+      <SubType>Designer</SubType>
+      <Generator>MSBuild:Compile</Generator>
+    </Page>
     <Page Include="UserControls\Screw.xaml">
       <Generator>MSBuild:Compile</Generator>
       <SubType>Designer</SubType>

+ 53 - 0
CyberX8_Themes/UserControls/RobotFrontView.xaml

@@ -0,0 +1,53 @@
+<UserControl x:Class="CyberX8_Themes.UserControls.RobotFrontView"
+             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
+             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
+             xmlns:local="clr-namespace:CyberX8_Themes.UserControls"
+             xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
+             xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
+             xmlns:cal="http://www.caliburn.org" x:Name="self"    
+             mc:Ignorable="d" 
+             >
+    <Grid HorizontalAlignment="Center" VerticalAlignment="Center">
+
+        <Grid.RowDefinitions>
+            <RowDefinition Height="Auto"/>
+            <RowDefinition />
+        </Grid.RowDefinitions>
+        <Canvas x:Name="canvas"  PreviewDrop="Canvas_Drop" AllowDrop="True" Background="Transparent" Grid.RowSpan="2"/>
+
+        <TextBlock Text="{Binding ElementName=self,Path=Title1}" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_Black}" VerticalAlignment="Center" HorizontalAlignment="Center">
+            <TextBlock.Style>
+                <Style>
+                    <Style.Triggers>
+                        <DataTrigger Binding="{Binding ShowTitle1,RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" Value="False">
+                            <Setter Property="TextBlock.Visibility" Value="Collapsed" />
+                        </DataTrigger>
+                    </Style.Triggers>
+                </Style>
+            </TextBlock.Style>
+        </TextBlock>
+        <Border Grid.Row="1" BorderThickness="1" BorderBrush="{DynamicResource FOUP_OuterBD}" Background="{DynamicResource FOUP_OuterBG}" HorizontalAlignment="Center" VerticalAlignment="Center" Width="150"  CornerRadius="4" Height="35">
+            <Grid Height="33">
+                <Rectangle Fill="{DynamicResource FOUP_InnerBG}" Margin="3,3,3,3" RadiusX="2" RadiusY="2"/>
+
+                <Grid Margin="0,5">
+                    <Grid.RowDefinitions>
+                        <RowDefinition Height="30"/>
+                    </Grid.RowDefinitions>
+                    <Grid.ColumnDefinitions>
+                        <ColumnDefinition Width="47"/>
+                        <ColumnDefinition />
+                    </Grid.ColumnDefinitions>
+                    <TextBlock Text="Robot" FontFamily="Arial" FontSize="12" Foreground="{DynamicResource FG_Black}" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,5,5,0"/>
+                    <StackPanel Grid.Column="1" VerticalAlignment="Top" Margin="0,5,5,0">
+                        <ctrl:Slot ViewType="Front" AllowDrop="True" Cursor="Hand" DataContext="{Binding UnitData.WaferManager.Wafers[0], ElementName=self}" WaferStatus="{Binding WaferStatus}" SlotID="{Binding SlotID}" ModuleID="{Binding ModuleID}" SourceName="{Binding SourceName}" SlotMouseButtonDown="Slot_SlotMouseButtonDown" WaferTransferStarted="Slot_WaferTransferStarted"/>
+                    </StackPanel>
+
+                </Grid>
+            </Grid>
+        </Border>
+
+    </Grid>
+</UserControl>

+ 94 - 0
CyberX8_Themes/UserControls/RobotFrontView.xaml.cs

@@ -0,0 +1,94 @@
+using CyberX8_Core;
+using OpenSEMI.ClientBase;
+using OpenSEMI.Ctrlib.Controls;
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace CyberX8_Themes.UserControls
+{
+    /// <summary>
+    /// RobotFrontView.xaml 的交互逻辑
+    /// </summary>
+    public partial class RobotFrontView : UserControl
+    {
+        public RobotFrontView()
+        {
+            InitializeComponent();
+        }
+        #region UnitData11 (DependencyProperty)
+        public ModuleInfo UnitData
+        {
+            get { return (ModuleInfo)GetValue(UnitDataProperty); }
+            set { SetValue(UnitDataProperty, value); }
+        }
+        public static readonly DependencyProperty UnitDataProperty =
+            DependencyProperty.Register("UnitData", typeof(ModuleInfo), typeof(RobotFrontView), new UIPropertyMetadata(null));
+
+        public bool ShowTitle1
+        {
+            get { return (bool)GetValue(ShowTitle1Property); }
+            set { SetValue(ShowTitle1Property, value); }
+        }
+        public static readonly DependencyProperty ShowTitle1Property =
+            DependencyProperty.Register("ShowTitle1", typeof(bool), typeof(RobotFrontView), new UIPropertyMetadata(true));
+
+
+        public string Title1
+        {
+            get { return (string)GetValue(Title1Property); }
+            set { SetValue(Title1Property, value); }
+        }
+        public static readonly DependencyProperty Title1Property =
+            DependencyProperty.Register("Title1", typeof(string), typeof(RobotFrontView));
+
+        private void Slot_SlotMouseButtonDown(object sender, MouseButtonEventArgs e)
+        {
+            GlobalEvents.OnSlotRightClickChanged(sender as Slot);
+        }
+        private void Canvas_Drop(object sender, DragEventArgs e)
+        {
+            var data = e.Data.GetData(typeof(string));
+            Button btn = new Button();
+            btn.Content = data;
+            canvas.Children.Add(btn);
+
+            var point = e.GetPosition(canvas);
+
+            Canvas.SetLeft(btn, point.X);
+            Canvas.SetTop(btn, point.Y);
+
+            Debug.WriteLine("Canvas_Drop");
+        }
+        #endregion
+
+        private void EFEMUpper_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
+        {
+            var test = sender as Slot;
+            DragDrop.DoDragDrop(test, "test", DragDropEffects.Copy);
+        }
+        private void Slot_WaferTransferStarted(object sender, DragDropEventArgs e)
+        {
+            try
+            {
+                GlobalEvents.OnSlotWaferTransfer(e);
+            }
+            catch (Exception ex)
+            {
+                Trace.WriteLine(ex);
+            }
+        }
+    }
+}