File size: 6,670 Bytes
b1b3bae | 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 | Imports DWSIM.Drawing.SkiaSharp.GraphicObjects
Imports DWSIM.Interfaces.Enums.GraphicObjects
Imports DWSIM.DrawingTools.Point
Namespace GraphicObjects.Shapes
Public Class CompressorGraphic
Inherits ShapeGraphic
#Region "Constructors"
Public Sub New()
Me.ObjectType = DWSIM.Interfaces.Enums.GraphicObjects.ObjectType.Compressor
Me.Description = "Adiabatic Compressor"
EmbeddedResourceIconName = "compressor.png"
End Sub
Public Sub New(ByVal graphicPosition As SKPoint)
Me.New()
Me.SetPosition(graphicPosition)
End Sub
Public Sub New(ByVal posX As Integer, ByVal posY As Integer)
Me.New(New SKPoint(posX, posY))
End Sub
Public Sub New(ByVal graphicPosition As SKPoint, ByVal graphicSize As SKSize)
Me.New(graphicPosition)
Me.SetSize(graphicSize)
End Sub
Public Sub New(ByVal posX As Integer, ByVal posY As Integer, ByVal graphicSize As SKSize)
Me.New(New SKPoint(posX, posY), graphicSize)
End Sub
Public Sub New(ByVal posX As Integer, ByVal posY As Integer, ByVal width As Integer, ByVal height As Integer)
Me.New(New SKPoint(posX, posY), New SKSize(width, height))
End Sub
#End Region
Public Overrides Sub CreateConnectors(InCount As Integer, OutCount As Integer)
Me.EnergyConnector.Active = False
Dim myIC1, myIC2, myOC1 As New ConnectionPoint
If DrawMode = 2 Then
myIC1.Position = New Point(X + 0.386 * Width, Y + 0.28 * Height)
myIC1.Type = ConType.ConIn
myIC1.Direction = ConDir.Down
myIC2.Position = New Point(X, Y + 0.5 * Height)
myIC2.Type = ConType.ConEn
myIC2.Direction = ConDir.Right
myOC1.Position = New Point(X + 0.906 * Width, Y + 0.374 * Height)
myOC1.Type = ConType.ConOut
myOC1.Direction = ConDir.Up
Else
myIC1.Position = New Point(X, Y)
myIC1.Type = ConType.ConIn
myIC1.Direction = ConDir.Down
myIC2.Position = New Point(X, Y + 0.5 * Height)
myIC2.Type = ConType.ConEn
myIC2.Direction = ConDir.Right
myOC1.Position = New Point(X + Width, Y + 0.3 * Height)
myOC1.Type = ConType.ConOut
myOC1.Direction = ConDir.Up
End If
With InputConnectors
If .Count = 2 Then
If DrawMode = 2 Then
.Item(0).Position = New Point(X + 0.386 * Width, Y + 0.28 * Height)
.Item(1).Position = New Point(X, Y + 0.5 * Height)
.Item(0).Direction = ConDir.Down
.Item(1).Direction = ConDir.Right
Else
.Item(0).Position = New Point(X, Y)
.Item(1).Position = New Point(X, Y + 0.5 * Height)
.Item(0).Direction = ConDir.Down
.Item(1).Direction = ConDir.Right
End If
Else
.Add(myIC1)
.Add(myIC2)
End If
.Item(0).ConnectorName = "Inlet"
.Item(1).ConnectorName = "Energy Stream"
End With
With OutputConnectors
If .Count <> 0 Then
If DrawMode = 2 Then
.Item(0).Position = New Point(X + 0.906 * Width, Y + 0.374 * Height)
.Item(0).Direction = ConDir.Up
Else
.Item(0).Position = New Point(X + Width, Y + 0.3 * Height)
.Item(0).Direction = ConDir.Up
End If
Else
.Add(myOC1)
End If
.Item(0).ConnectorName = "Outlet"
End With
End Sub
Public Overrides Sub Draw(ByVal g As Object)
Dim canvas As SKCanvas = DirectCast(g, SKCanvas)
CreateConnectors(0, 0)
UpdateStatus()
MyBase.Draw(g)
Dim myPen As New SKPaint()
Dim rect As New SKRect(X, Y, X + Width, X + Height)
Dim gp As New SKPath()
gp.MoveTo(Convert.ToInt32(X), Convert.ToInt32(Y))
gp.LineTo(Convert.ToInt32(X + Width), Convert.ToInt32(Y + 0.3 * Height))
gp.LineTo(Convert.ToInt32(X + Width), Convert.ToInt32(Y + 0.7 * Height))
gp.LineTo(Convert.ToInt32(X), Convert.ToInt32(Y + Height))
gp.LineTo(Convert.ToInt32(X), Convert.ToInt32(Y))
gp.Close()
Select Case DrawMode
Case 0
'default
Dim gradPen As New SKPaint()
With gradPen
.Color = LineColor.WithAlpha(50)
.StrokeWidth = LineWidth
.IsStroke = False
.IsAntialias = GlobalSettings.Settings.DrawingAntiAlias
End With
canvas.DrawPath(gp, gradPen)
With myPen
.Color = LineColor
.StrokeWidth = LineWidth
.IsStroke = True
.IsAntialias = GlobalSettings.Settings.DrawingAntiAlias
End With
canvas.DrawPath(gp, myPen)
Case 1
'b/w
With myPen
.Color = SKColors.Black
.StrokeWidth = LineWidth
.IsStroke = True
.IsAntialias = GlobalSettings.Settings.DrawingAntiAlias
End With
canvas.DrawPath(gp, myPen)
Case 2
DrawIcon(canvas)
Case 3
'Temperature Gradients
Case 4
'Pressure Gradients
Case 5
'Temperature/Pressure Gradients
End Select
End Sub
Public Overrides Sub PositionConnectors()
CreateConnectors(0, 0)
End Sub
End Class
End Namespace
|