Compare commits
49 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96eac6a100 | ||
|
|
af13d51557 | ||
|
|
59748309ad | ||
|
|
0f874ae74a | ||
|
|
19de263050 | ||
|
|
34a9159719 | ||
|
|
f0bd3db4ad | ||
|
|
0003ee1f11 | ||
|
|
a4fff6b900 | ||
|
|
e3bfc6adb1 | ||
|
|
2ef141ee9b | ||
|
|
94086d0c05 | ||
|
|
6e2298df49 | ||
|
|
c0d6a79aa7 | ||
|
|
19812d1cd2 | ||
|
|
11cc244b18 | ||
|
|
8e82024c29 | ||
|
|
89aa57e6d6 | ||
|
|
44fdc4160e | ||
|
|
b5859d6541 | ||
|
|
d3d6482bfd | ||
|
|
9c8cbad7d5 | ||
|
|
e09e38a5c4 | ||
|
|
f245dee781 | ||
|
|
fd815f0c46 | ||
|
|
708e9ce1fe | ||
|
|
a68d2b718f | ||
|
|
d11f468add | ||
|
|
ef6997a2ab | ||
|
|
9386da4a2a | ||
|
|
d4210053ad | ||
|
|
41d11cca8e | ||
|
|
22df153513 | ||
|
|
2548d0dceb | ||
|
|
4b0d4a62c8 | ||
|
|
11d8e4594c | ||
|
|
7259f92ec1 | ||
|
|
024f17abe9 | ||
|
|
97cf2618e3 | ||
|
|
5fa746da8e | ||
|
|
91b9554f40 | ||
|
|
b5c977e66c | ||
|
|
15c33ca039 | ||
|
|
aa3237d0fa | ||
|
|
1f291bbcd8 | ||
|
|
9cd786c303 | ||
|
|
e701d67d79 | ||
|
|
be8cb66136 | ||
|
|
50563e3be0 |
Vendored
+2
@@ -186,3 +186,5 @@ FakesAssemblies/
|
||||
GeneratedArtifacts/
|
||||
_Pvt_Extensions/
|
||||
ModelManifest.xml
|
||||
/.vs/slnx.sqlite
|
||||
/.vs/VSWorkspaceState.json
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
Public Class Game
|
||||
Private sGameName As String
|
||||
Private sProcessName As String
|
||||
Private sParameter As String
|
||||
Private sPath As String
|
||||
Private bAbsolutePath As Boolean
|
||||
Private bFolderSave As Boolean
|
||||
Private sFileType As String
|
||||
Private sExcludeList As String
|
||||
Private bMonitorOnly As Boolean
|
||||
Private oTags As List(Of Tag)
|
||||
|
||||
Property Name As String
|
||||
@@ -26,6 +28,15 @@
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Property Parameter As String
|
||||
Set(value As String)
|
||||
sParameter = value
|
||||
End Set
|
||||
Get
|
||||
Return sParameter
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Property Path As String
|
||||
Set(value As String)
|
||||
sPath = value
|
||||
@@ -71,6 +82,15 @@
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Property MonitorOnly As Boolean
|
||||
Set(value As Boolean)
|
||||
bMonitorOnly = value
|
||||
End Set
|
||||
Get
|
||||
Return bMonitorOnly
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Property Tags As List(Of Tag)
|
||||
Get
|
||||
Return oTags
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
Public Class Tag
|
||||
<Serializable()>
|
||||
Public Class Tag
|
||||
Private sTagName As String
|
||||
|
||||
Property Name As String
|
||||
|
||||
+43
-1
@@ -1,7 +1,9 @@
|
||||
Public Class clsGame
|
||||
<Serializable()>
|
||||
Public Class clsGame
|
||||
Private sGameID As String = Guid.NewGuid.ToString
|
||||
Private sGameName As String = String.Empty
|
||||
Private sProcessName As String = String.Empty
|
||||
Private sParameter As String = String.Empty
|
||||
Private sPath As String = String.Empty
|
||||
Private bAbsolutePath As Boolean = False
|
||||
Private bFolderSave As Boolean = False
|
||||
@@ -74,6 +76,15 @@
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Property Parameter As String
|
||||
Set(value As String)
|
||||
sParameter = value
|
||||
End Set
|
||||
Get
|
||||
Return sParameter
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Property Path As String
|
||||
Set(value As String)
|
||||
sPath = mgrPath.ReverseSpecialPaths(value)
|
||||
@@ -248,6 +259,26 @@
|
||||
End Set
|
||||
End Property
|
||||
|
||||
ReadOnly Property IncludeArray As String()
|
||||
Get
|
||||
If FileType = String.Empty Then
|
||||
Return New String() {}
|
||||
Else
|
||||
Return FileType.Split(":")
|
||||
End If
|
||||
End Get
|
||||
End Property
|
||||
|
||||
ReadOnly Property ExcludeArray As String()
|
||||
Get
|
||||
If ExcludeList = String.Empty Then
|
||||
Return New String() {}
|
||||
Else
|
||||
Return ExcludeList.Split(":")
|
||||
End If
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Public Function SyncEquals(obj As Object, eSyncFields As eOptionalSyncFields) As Boolean
|
||||
Dim oGame As clsGame = TryCast(obj, clsGame)
|
||||
If oGame Is Nothing Then
|
||||
@@ -263,6 +294,9 @@
|
||||
If ProcessName <> oGame.ProcessName Then
|
||||
Return False
|
||||
End If
|
||||
If Parameter <> oGame.Parameter Then
|
||||
Return False
|
||||
End If
|
||||
If Path <> oGame.Path Then
|
||||
Return False
|
||||
End If
|
||||
@@ -372,4 +406,12 @@
|
||||
Return sProcessName
|
||||
End Function
|
||||
|
||||
Public Shared Function SetSyncField(ByVal eSyncFields As eOptionalSyncFields, ByVal eSyncField As eOptionalSyncFields) As eOptionalSyncFields
|
||||
Return eSyncFields Or eSyncField
|
||||
End Function
|
||||
|
||||
Public Shared Function RemoveSyncField(ByVal eSyncFields As eOptionalSyncFields, ByVal eSyncField As eOptionalSyncFields) As eOptionalSyncFields
|
||||
Return eSyncFields And (Not eSyncField)
|
||||
End Function
|
||||
|
||||
End Class
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
Public Class clsGameFilter
|
||||
|
||||
Private sID As String
|
||||
Private oField As clsGameFilterField
|
||||
Private oData As Object
|
||||
Private eNumericOperator As eNumericOperators = eNumericOperators.Equals
|
||||
|
||||
Public Enum eNumericOperators
|
||||
Equals = 1
|
||||
Greater = 2
|
||||
Lesser = 3
|
||||
GreaterEquals = 4
|
||||
LesserEquals = 5
|
||||
End Enum
|
||||
|
||||
Public Property ID As String
|
||||
Get
|
||||
Return sID
|
||||
End Get
|
||||
Set(value As String)
|
||||
sID = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property Field As clsGameFilterField
|
||||
Get
|
||||
Return oField
|
||||
End Get
|
||||
Set(value As clsGameFilterField)
|
||||
oField = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property Data As Object
|
||||
Get
|
||||
Return oData
|
||||
End Get
|
||||
Set(value As Object)
|
||||
oData = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property NumericOperator As eNumericOperators
|
||||
Get
|
||||
Return eNumericOperator
|
||||
End Get
|
||||
Set(value As eNumericOperators)
|
||||
eNumericOperator = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property NumericOperatorAsString As String
|
||||
Get
|
||||
Select Case eNumericOperator
|
||||
Case eNumericOperators.Equals
|
||||
Return "="
|
||||
Case eNumericOperators.Greater
|
||||
Return ">"
|
||||
Case eNumericOperators.GreaterEquals
|
||||
Return ">="
|
||||
Case eNumericOperators.Lesser
|
||||
Return "<"
|
||||
Case eNumericOperators.LesserEquals
|
||||
Return "<="
|
||||
Case Else
|
||||
Return String.Empty
|
||||
End Select
|
||||
End Get
|
||||
End Property
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,77 @@
|
||||
Public Class clsGameFilterField
|
||||
|
||||
Public Enum eDataType As Integer
|
||||
fString = 1
|
||||
fNumeric = 2
|
||||
fBool = 3
|
||||
End Enum
|
||||
|
||||
<Flags()> Public Enum eFieldStatus
|
||||
None = 0
|
||||
ValidFilter = 1
|
||||
ValidSort = 2
|
||||
End Enum
|
||||
|
||||
Private sFieldName As String
|
||||
Private sFriendlyFieldName As String
|
||||
Private eType As eDataType
|
||||
Private eStatus As eFieldStatus
|
||||
|
||||
Public Property FieldName As String
|
||||
Get
|
||||
Return sFieldName
|
||||
End Get
|
||||
Set(value As String)
|
||||
sFieldName = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property FriendlyFieldName As String
|
||||
Get
|
||||
Return sFriendlyFieldName
|
||||
End Get
|
||||
Set(value As String)
|
||||
sFriendlyFieldName = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property Type As eDataType
|
||||
Get
|
||||
Return eType
|
||||
End Get
|
||||
Set(value As eDataType)
|
||||
eType = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'This is a flag property - Setting a value will toggle that flag on and off.
|
||||
Public Property Status As eFieldStatus
|
||||
Get
|
||||
Return eStatus
|
||||
End Get
|
||||
Set(value As eFieldStatus)
|
||||
If (eStatus And value) = value Then
|
||||
eStatus = RemoveFieldStatus(value)
|
||||
Else
|
||||
eStatus = SetFieldStatus(value)
|
||||
End If
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Function SetFieldStatus(ByVal eFlag As eFieldStatus) As eFieldStatus
|
||||
Return eStatus Or eFlag
|
||||
End Function
|
||||
|
||||
Private Function RemoveFieldStatus(ByVal eFlag As eFieldStatus) As eFieldStatus
|
||||
Return eStatus And (Not eFlag)
|
||||
End Function
|
||||
|
||||
Public Function CheckStatus(ByVal eFlag As eFieldStatus) As Boolean
|
||||
If (eStatus And eFlag) = eFlag Then
|
||||
Return True
|
||||
Else
|
||||
Return False
|
||||
End If
|
||||
End Function
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,22 @@
|
||||
Public Class clsSavedPath
|
||||
Private sPathName As String = String.Empty
|
||||
Private sPath As String = String.Empty
|
||||
|
||||
Property PathName As String
|
||||
Get
|
||||
Return sPathName
|
||||
End Get
|
||||
Set(value As String)
|
||||
sPathName = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Property Path As String
|
||||
Get
|
||||
Return sPath
|
||||
End Get
|
||||
Set(value As String)
|
||||
sPath = value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -425,8 +425,8 @@ Public Class frmAddWizard
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFileBrowser(frmAddWizard_ChooseProcess, "exe",
|
||||
frmAddWizard_Executable, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFileBrowser("Wizard_Process_Path", frmAddWizard_ChooseProcess, "exe",
|
||||
frmAddWizard_Executable, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then txtProcessPath.Text = sNewPath
|
||||
End Sub
|
||||
@@ -442,7 +442,7 @@ Public Class frmAddWizard
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(frmAddWizard_ChooseSavePath, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("Wizard_Save_Path", frmAddWizard_ChooseSavePath, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then txtSavePath.Text = sNewPath
|
||||
End Sub
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
Imports GBM.My.Resources
|
||||
Imports System.IO
|
||||
|
||||
Public Class frmAdvancedImport
|
||||
|
||||
Private hshImportData As Hashtable
|
||||
Private hshFinalData As New Hashtable
|
||||
Private bSelectAll As Boolean = False
|
||||
Private bSelectAll As Boolean = True
|
||||
Private bIsLoading As Boolean = False
|
||||
Private iCurrentSort As Integer = 0
|
||||
Private WithEvents tmFilterTimer As Timer
|
||||
@@ -44,7 +45,7 @@ Public Class frmAdvancedImport
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub LoadData(Optional ByVal sFilter As String = "")
|
||||
Private Sub LoadData(Optional ByVal sFilter As String = "", Optional ByVal bAutoDetect As Boolean = False)
|
||||
Dim oApp As clsGame
|
||||
Dim oListViewItem As ListViewItem
|
||||
Dim sTags As String
|
||||
@@ -79,6 +80,19 @@ Public Class frmAdvancedImport
|
||||
oListViewItem.Checked = False
|
||||
End If
|
||||
|
||||
If bAutoDetect Then
|
||||
If oApp.AbsolutePath Then
|
||||
If Directory.Exists(oApp.Path) Then
|
||||
oListViewItem.Checked = True
|
||||
SaveChecked(oListViewItem)
|
||||
Else
|
||||
oListViewItem.Checked = False
|
||||
End If
|
||||
Else
|
||||
oListViewItem.Checked = False
|
||||
End If
|
||||
End If
|
||||
|
||||
If sFilter = String.Empty Then
|
||||
bAddItem = True
|
||||
Else
|
||||
@@ -142,8 +156,7 @@ Public Class frmAdvancedImport
|
||||
Private Sub frmAdvancedImport_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
bIsLoading = True
|
||||
SetForm()
|
||||
LoadData()
|
||||
SelectToggle()
|
||||
LoadData(String.Empty, True)
|
||||
bIsLoading = False
|
||||
End Sub
|
||||
|
||||
@@ -184,6 +197,7 @@ Public Class frmAdvancedImport
|
||||
tmFilterTimer.Stop()
|
||||
tmFilterTimer.Enabled = False
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
|
||||
' Column Sorter
|
||||
|
||||
Generated
+282
-124
@@ -22,8 +22,6 @@ Partial Class frmFilter
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.optGameInfo = New System.Windows.Forms.RadioButton()
|
||||
Me.optTag = New System.Windows.Forms.RadioButton()
|
||||
Me.grpTagFilter = New System.Windows.Forms.GroupBox()
|
||||
Me.grpTagOptions = New System.Windows.Forms.GroupBox()
|
||||
Me.optAll = New System.Windows.Forms.RadioButton()
|
||||
@@ -32,45 +30,42 @@ Partial Class frmFilter
|
||||
Me.lblTags = New System.Windows.Forms.Label()
|
||||
Me.btnRemove = New System.Windows.Forms.Button()
|
||||
Me.btnAdd = New System.Windows.Forms.Button()
|
||||
Me.lstFilter = New System.Windows.Forms.ListBox()
|
||||
Me.lstTagFilter = New System.Windows.Forms.ListBox()
|
||||
Me.lstTags = New System.Windows.Forms.ListBox()
|
||||
Me.btnOK = New System.Windows.Forms.Button()
|
||||
Me.grpGameFilter = New System.Windows.Forms.GroupBox()
|
||||
Me.grpGameInfoOptions = New System.Windows.Forms.GroupBox()
|
||||
Me.cboBoolFilter = New System.Windows.Forms.ComboBox()
|
||||
Me.numFilter = New System.Windows.Forms.NumericUpDown()
|
||||
Me.cboNumericOps = New System.Windows.Forms.ComboBox()
|
||||
Me.lblCurrentFilters = New System.Windows.Forms.Label()
|
||||
Me.lblFilterData = New System.Windows.Forms.Label()
|
||||
Me.lblFields = New System.Windows.Forms.Label()
|
||||
Me.btnRemoveFilter = New System.Windows.Forms.Button()
|
||||
Me.lstFilter = New System.Windows.Forms.ListBox()
|
||||
Me.btnAddFilter = New System.Windows.Forms.Button()
|
||||
Me.cboFilterField = New System.Windows.Forms.ComboBox()
|
||||
Me.grpFilterType = New System.Windows.Forms.GroupBox()
|
||||
Me.optOr = New System.Windows.Forms.RadioButton()
|
||||
Me.optAnd = New System.Windows.Forms.RadioButton()
|
||||
Me.txtCompany = New System.Windows.Forms.TextBox()
|
||||
Me.lblCompany = New System.Windows.Forms.Label()
|
||||
Me.txtProcess = New System.Windows.Forms.TextBox()
|
||||
Me.lblProcess = New System.Windows.Forms.Label()
|
||||
Me.lblName = New System.Windows.Forms.Label()
|
||||
Me.txtName = New System.Windows.Forms.TextBox()
|
||||
Me.txtStringFilter = New System.Windows.Forms.TextBox()
|
||||
Me.grpSorting = New System.Windows.Forms.GroupBox()
|
||||
Me.grpSortOptions = New System.Windows.Forms.GroupBox()
|
||||
Me.optSortAsc = New System.Windows.Forms.RadioButton()
|
||||
Me.optSortDesc = New System.Windows.Forms.RadioButton()
|
||||
Me.lblSortFields = New System.Windows.Forms.Label()
|
||||
Me.cboSortField = New System.Windows.Forms.ComboBox()
|
||||
Me.chkTag = New System.Windows.Forms.CheckBox()
|
||||
Me.chkGameInfo = New System.Windows.Forms.CheckBox()
|
||||
Me.Label1 = New System.Windows.Forms.Label()
|
||||
Me.grpTagFilter.SuspendLayout()
|
||||
Me.grpTagOptions.SuspendLayout()
|
||||
Me.grpGameFilter.SuspendLayout()
|
||||
Me.grpGameInfoOptions.SuspendLayout()
|
||||
CType(Me.numFilter, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.grpFilterType.SuspendLayout()
|
||||
Me.grpSorting.SuspendLayout()
|
||||
Me.grpSortOptions.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'optGameInfo
|
||||
'
|
||||
Me.optGameInfo.AutoSize = True
|
||||
Me.optGameInfo.Location = New System.Drawing.Point(12, 12)
|
||||
Me.optGameInfo.Name = "optGameInfo"
|
||||
Me.optGameInfo.Size = New System.Drawing.Size(108, 17)
|
||||
Me.optGameInfo.TabIndex = 0
|
||||
Me.optGameInfo.Text = "Game Information"
|
||||
Me.optGameInfo.UseVisualStyleBackColor = True
|
||||
'
|
||||
'optTag
|
||||
'
|
||||
Me.optTag.AutoSize = True
|
||||
Me.optTag.Location = New System.Drawing.Point(12, 190)
|
||||
Me.optTag.Name = "optTag"
|
||||
Me.optTag.Size = New System.Drawing.Size(44, 17)
|
||||
Me.optTag.TabIndex = 2
|
||||
Me.optTag.Text = "Tag"
|
||||
Me.optTag.UseVisualStyleBackColor = True
|
||||
'
|
||||
'grpTagFilter
|
||||
'
|
||||
Me.grpTagFilter.Controls.Add(Me.grpTagOptions)
|
||||
@@ -78,11 +73,11 @@ Partial Class frmFilter
|
||||
Me.grpTagFilter.Controls.Add(Me.lblTags)
|
||||
Me.grpTagFilter.Controls.Add(Me.btnRemove)
|
||||
Me.grpTagFilter.Controls.Add(Me.btnAdd)
|
||||
Me.grpTagFilter.Controls.Add(Me.lstFilter)
|
||||
Me.grpTagFilter.Controls.Add(Me.lstTagFilter)
|
||||
Me.grpTagFilter.Controls.Add(Me.lstTags)
|
||||
Me.grpTagFilter.Location = New System.Drawing.Point(12, 213)
|
||||
Me.grpTagFilter.Location = New System.Drawing.Point(12, 236)
|
||||
Me.grpTagFilter.Name = "grpTagFilter"
|
||||
Me.grpTagFilter.Size = New System.Drawing.Size(385, 265)
|
||||
Me.grpTagFilter.Size = New System.Drawing.Size(385, 198)
|
||||
Me.grpTagFilter.TabIndex = 3
|
||||
Me.grpTagFilter.TabStop = False
|
||||
'
|
||||
@@ -90,7 +85,7 @@ Partial Class frmFilter
|
||||
'
|
||||
Me.grpTagOptions.Controls.Add(Me.optAll)
|
||||
Me.grpTagOptions.Controls.Add(Me.optAny)
|
||||
Me.grpTagOptions.Location = New System.Drawing.Point(6, 211)
|
||||
Me.grpTagOptions.Location = New System.Drawing.Point(6, 146)
|
||||
Me.grpTagOptions.Name = "grpTagOptions"
|
||||
Me.grpTagOptions.Size = New System.Drawing.Size(150, 46)
|
||||
Me.grpTagOptions.TabIndex = 6
|
||||
@@ -138,7 +133,7 @@ Partial Class frmFilter
|
||||
'
|
||||
'btnRemove
|
||||
'
|
||||
Me.btnRemove.Location = New System.Drawing.Point(162, 122)
|
||||
Me.btnRemove.Location = New System.Drawing.Point(162, 88)
|
||||
Me.btnRemove.Name = "btnRemove"
|
||||
Me.btnRemove.Size = New System.Drawing.Size(61, 23)
|
||||
Me.btnRemove.TabIndex = 3
|
||||
@@ -147,22 +142,22 @@ Partial Class frmFilter
|
||||
'
|
||||
'btnAdd
|
||||
'
|
||||
Me.btnAdd.Location = New System.Drawing.Point(162, 93)
|
||||
Me.btnAdd.Location = New System.Drawing.Point(162, 59)
|
||||
Me.btnAdd.Name = "btnAdd"
|
||||
Me.btnAdd.Size = New System.Drawing.Size(61, 23)
|
||||
Me.btnAdd.TabIndex = 2
|
||||
Me.btnAdd.Text = ">"
|
||||
Me.btnAdd.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lstFilter
|
||||
'lstTagFilter
|
||||
'
|
||||
Me.lstFilter.FormattingEnabled = True
|
||||
Me.lstFilter.Location = New System.Drawing.Point(229, 32)
|
||||
Me.lstFilter.Name = "lstFilter"
|
||||
Me.lstFilter.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||
Me.lstFilter.Size = New System.Drawing.Size(150, 173)
|
||||
Me.lstFilter.Sorted = True
|
||||
Me.lstFilter.TabIndex = 5
|
||||
Me.lstTagFilter.FormattingEnabled = True
|
||||
Me.lstTagFilter.Location = New System.Drawing.Point(229, 32)
|
||||
Me.lstTagFilter.Name = "lstTagFilter"
|
||||
Me.lstTagFilter.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||
Me.lstTagFilter.Size = New System.Drawing.Size(150, 108)
|
||||
Me.lstTagFilter.Sorted = True
|
||||
Me.lstTagFilter.TabIndex = 5
|
||||
'
|
||||
'lstTags
|
||||
'
|
||||
@@ -170,124 +165,270 @@ Partial Class frmFilter
|
||||
Me.lstTags.Location = New System.Drawing.Point(6, 32)
|
||||
Me.lstTags.Name = "lstTags"
|
||||
Me.lstTags.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended
|
||||
Me.lstTags.Size = New System.Drawing.Size(150, 173)
|
||||
Me.lstTags.Size = New System.Drawing.Size(150, 108)
|
||||
Me.lstTags.Sorted = True
|
||||
Me.lstTags.TabIndex = 1
|
||||
'
|
||||
'btnOK
|
||||
'
|
||||
Me.btnOK.Location = New System.Drawing.Point(322, 484)
|
||||
Me.btnOK.Location = New System.Drawing.Point(322, 526)
|
||||
Me.btnOK.Name = "btnOK"
|
||||
Me.btnOK.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnOK.TabIndex = 4
|
||||
Me.btnOK.TabIndex = 6
|
||||
Me.btnOK.Text = "&OK"
|
||||
Me.btnOK.UseVisualStyleBackColor = True
|
||||
'
|
||||
'grpGameFilter
|
||||
'
|
||||
Me.grpGameFilter.Controls.Add(Me.grpGameInfoOptions)
|
||||
Me.grpGameFilter.Controls.Add(Me.txtCompany)
|
||||
Me.grpGameFilter.Controls.Add(Me.lblCompany)
|
||||
Me.grpGameFilter.Controls.Add(Me.txtProcess)
|
||||
Me.grpGameFilter.Controls.Add(Me.lblProcess)
|
||||
Me.grpGameFilter.Controls.Add(Me.lblName)
|
||||
Me.grpGameFilter.Controls.Add(Me.txtName)
|
||||
Me.grpGameFilter.Controls.Add(Me.cboBoolFilter)
|
||||
Me.grpGameFilter.Controls.Add(Me.numFilter)
|
||||
Me.grpGameFilter.Controls.Add(Me.cboNumericOps)
|
||||
Me.grpGameFilter.Controls.Add(Me.lblCurrentFilters)
|
||||
Me.grpGameFilter.Controls.Add(Me.lblFilterData)
|
||||
Me.grpGameFilter.Controls.Add(Me.lblFields)
|
||||
Me.grpGameFilter.Controls.Add(Me.btnRemoveFilter)
|
||||
Me.grpGameFilter.Controls.Add(Me.lstFilter)
|
||||
Me.grpGameFilter.Controls.Add(Me.btnAddFilter)
|
||||
Me.grpGameFilter.Controls.Add(Me.cboFilterField)
|
||||
Me.grpGameFilter.Controls.Add(Me.grpFilterType)
|
||||
Me.grpGameFilter.Controls.Add(Me.txtStringFilter)
|
||||
Me.grpGameFilter.Location = New System.Drawing.Point(12, 35)
|
||||
Me.grpGameFilter.Name = "grpGameFilter"
|
||||
Me.grpGameFilter.Size = New System.Drawing.Size(385, 150)
|
||||
Me.grpGameFilter.Size = New System.Drawing.Size(385, 172)
|
||||
Me.grpGameFilter.TabIndex = 1
|
||||
Me.grpGameFilter.TabStop = False
|
||||
'
|
||||
'grpGameInfoOptions
|
||||
'cboBoolFilter
|
||||
'
|
||||
Me.grpGameInfoOptions.Controls.Add(Me.optOr)
|
||||
Me.grpGameInfoOptions.Controls.Add(Me.optAnd)
|
||||
Me.grpGameInfoOptions.Location = New System.Drawing.Point(14, 97)
|
||||
Me.grpGameInfoOptions.Name = "grpGameInfoOptions"
|
||||
Me.grpGameInfoOptions.Size = New System.Drawing.Size(106, 46)
|
||||
Me.grpGameInfoOptions.TabIndex = 6
|
||||
Me.grpGameInfoOptions.TabStop = False
|
||||
Me.grpGameInfoOptions.Text = "Options"
|
||||
Me.cboBoolFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||
Me.cboBoolFilter.FormattingEnabled = True
|
||||
Me.cboBoolFilter.Location = New System.Drawing.Point(162, 36)
|
||||
Me.cboBoolFilter.Name = "cboBoolFilter"
|
||||
Me.cboBoolFilter.Size = New System.Drawing.Size(136, 21)
|
||||
Me.cboBoolFilter.TabIndex = 3
|
||||
'
|
||||
'numFilter
|
||||
'
|
||||
Me.numFilter.DecimalPlaces = 1
|
||||
Me.numFilter.Location = New System.Drawing.Point(233, 37)
|
||||
Me.numFilter.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0})
|
||||
Me.numFilter.Name = "numFilter"
|
||||
Me.numFilter.Size = New System.Drawing.Size(65, 20)
|
||||
Me.numFilter.TabIndex = 4
|
||||
'
|
||||
'cboNumericOps
|
||||
'
|
||||
Me.cboNumericOps.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||
Me.cboNumericOps.FormattingEnabled = True
|
||||
Me.cboNumericOps.Location = New System.Drawing.Point(162, 36)
|
||||
Me.cboNumericOps.Name = "cboNumericOps"
|
||||
Me.cboNumericOps.Size = New System.Drawing.Size(65, 21)
|
||||
Me.cboNumericOps.TabIndex = 3
|
||||
'
|
||||
'lblCurrentFilters
|
||||
'
|
||||
Me.lblCurrentFilters.AutoSize = True
|
||||
Me.lblCurrentFilters.Location = New System.Drawing.Point(94, 65)
|
||||
Me.lblCurrentFilters.Name = "lblCurrentFilters"
|
||||
Me.lblCurrentFilters.Size = New System.Drawing.Size(71, 13)
|
||||
Me.lblCurrentFilters.TabIndex = 6
|
||||
Me.lblCurrentFilters.Text = "Current Filters"
|
||||
'
|
||||
'lblFilterData
|
||||
'
|
||||
Me.lblFilterData.AutoSize = True
|
||||
Me.lblFilterData.Location = New System.Drawing.Point(214, 20)
|
||||
Me.lblFilterData.Name = "lblFilterData"
|
||||
Me.lblFilterData.Size = New System.Drawing.Size(32, 13)
|
||||
Me.lblFilterData.TabIndex = 2
|
||||
Me.lblFilterData.Text = "Filter "
|
||||
'
|
||||
'lblFields
|
||||
'
|
||||
Me.lblFields.AutoSize = True
|
||||
Me.lblFields.Location = New System.Drawing.Point(41, 20)
|
||||
Me.lblFields.Name = "lblFields"
|
||||
Me.lblFields.Size = New System.Drawing.Size(80, 13)
|
||||
Me.lblFields.TabIndex = 0
|
||||
Me.lblFields.Text = "Available Fields"
|
||||
'
|
||||
'btnRemoveFilter
|
||||
'
|
||||
Me.btnRemoveFilter.Location = New System.Drawing.Point(259, 140)
|
||||
Me.btnRemoveFilter.Name = "btnRemoveFilter"
|
||||
Me.btnRemoveFilter.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnRemoveFilter.TabIndex = 9
|
||||
Me.btnRemoveFilter.Text = "Remove"
|
||||
Me.btnRemoveFilter.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lstFilter
|
||||
'
|
||||
Me.lstFilter.FormattingEnabled = True
|
||||
Me.lstFilter.Location = New System.Drawing.Point(6, 81)
|
||||
Me.lstFilter.Name = "lstFilter"
|
||||
Me.lstFilter.Size = New System.Drawing.Size(247, 82)
|
||||
Me.lstFilter.TabIndex = 7
|
||||
'
|
||||
'btnAddFilter
|
||||
'
|
||||
Me.btnAddFilter.Location = New System.Drawing.Point(304, 34)
|
||||
Me.btnAddFilter.Name = "btnAddFilter"
|
||||
Me.btnAddFilter.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnAddFilter.TabIndex = 5
|
||||
Me.btnAddFilter.Text = "Add"
|
||||
Me.btnAddFilter.UseVisualStyleBackColor = True
|
||||
'
|
||||
'cboFilterField
|
||||
'
|
||||
Me.cboFilterField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||
Me.cboFilterField.FormattingEnabled = True
|
||||
Me.cboFilterField.Location = New System.Drawing.Point(6, 36)
|
||||
Me.cboFilterField.Name = "cboFilterField"
|
||||
Me.cboFilterField.Size = New System.Drawing.Size(150, 21)
|
||||
Me.cboFilterField.TabIndex = 1
|
||||
'
|
||||
'grpFilterType
|
||||
'
|
||||
Me.grpFilterType.Controls.Add(Me.optOr)
|
||||
Me.grpFilterType.Controls.Add(Me.optAnd)
|
||||
Me.grpFilterType.Location = New System.Drawing.Point(259, 81)
|
||||
Me.grpFilterType.Name = "grpFilterType"
|
||||
Me.grpFilterType.Size = New System.Drawing.Size(105, 46)
|
||||
Me.grpFilterType.TabIndex = 8
|
||||
Me.grpFilterType.TabStop = False
|
||||
Me.grpFilterType.Text = "Filter Type"
|
||||
'
|
||||
'optOr
|
||||
'
|
||||
Me.optOr.Location = New System.Drawing.Point(56, 19)
|
||||
Me.optOr.Checked = True
|
||||
Me.optOr.Location = New System.Drawing.Point(6, 19)
|
||||
Me.optOr.Name = "optOr"
|
||||
Me.optOr.Size = New System.Drawing.Size(36, 17)
|
||||
Me.optOr.TabIndex = 1
|
||||
Me.optOr.Size = New System.Drawing.Size(44, 17)
|
||||
Me.optOr.TabIndex = 0
|
||||
Me.optOr.TabStop = True
|
||||
Me.optOr.Text = "Or"
|
||||
Me.optOr.Text = "Any"
|
||||
Me.optOr.UseVisualStyleBackColor = True
|
||||
'
|
||||
'optAnd
|
||||
'
|
||||
Me.optAnd.Checked = True
|
||||
Me.optAnd.Location = New System.Drawing.Point(6, 19)
|
||||
Me.optAnd.Location = New System.Drawing.Point(56, 19)
|
||||
Me.optAnd.Name = "optAnd"
|
||||
Me.optAnd.Size = New System.Drawing.Size(44, 17)
|
||||
Me.optAnd.TabIndex = 0
|
||||
Me.optAnd.TabStop = True
|
||||
Me.optAnd.Text = "And"
|
||||
Me.optAnd.TabIndex = 1
|
||||
Me.optAnd.Text = "All"
|
||||
Me.optAnd.UseVisualStyleBackColor = True
|
||||
'
|
||||
'txtCompany
|
||||
'txtStringFilter
|
||||
'
|
||||
Me.txtCompany.Location = New System.Drawing.Point(70, 71)
|
||||
Me.txtCompany.Name = "txtCompany"
|
||||
Me.txtCompany.Size = New System.Drawing.Size(309, 20)
|
||||
Me.txtCompany.TabIndex = 5
|
||||
Me.txtStringFilter.Location = New System.Drawing.Point(162, 36)
|
||||
Me.txtStringFilter.Name = "txtStringFilter"
|
||||
Me.txtStringFilter.Size = New System.Drawing.Size(136, 20)
|
||||
Me.txtStringFilter.TabIndex = 3
|
||||
'
|
||||
'lblCompany
|
||||
'grpSorting
|
||||
'
|
||||
Me.lblCompany.AutoSize = True
|
||||
Me.lblCompany.Location = New System.Drawing.Point(11, 74)
|
||||
Me.lblCompany.Name = "lblCompany"
|
||||
Me.lblCompany.Size = New System.Drawing.Size(54, 13)
|
||||
Me.lblCompany.TabIndex = 4
|
||||
Me.lblCompany.Text = "Company:"
|
||||
Me.grpSorting.Controls.Add(Me.grpSortOptions)
|
||||
Me.grpSorting.Controls.Add(Me.lblSortFields)
|
||||
Me.grpSorting.Controls.Add(Me.cboSortField)
|
||||
Me.grpSorting.Location = New System.Drawing.Point(12, 440)
|
||||
Me.grpSorting.Name = "grpSorting"
|
||||
Me.grpSorting.Size = New System.Drawing.Size(385, 80)
|
||||
Me.grpSorting.TabIndex = 4
|
||||
Me.grpSorting.TabStop = False
|
||||
Me.grpSorting.Text = "Sorting"
|
||||
'
|
||||
'txtProcess
|
||||
'grpSortOptions
|
||||
'
|
||||
Me.txtProcess.Location = New System.Drawing.Point(70, 45)
|
||||
Me.txtProcess.Name = "txtProcess"
|
||||
Me.txtProcess.Size = New System.Drawing.Size(309, 20)
|
||||
Me.txtProcess.TabIndex = 3
|
||||
Me.grpSortOptions.Controls.Add(Me.optSortAsc)
|
||||
Me.grpSortOptions.Controls.Add(Me.optSortDesc)
|
||||
Me.grpSortOptions.Location = New System.Drawing.Point(162, 19)
|
||||
Me.grpSortOptions.Name = "grpSortOptions"
|
||||
Me.grpSortOptions.Size = New System.Drawing.Size(189, 43)
|
||||
Me.grpSortOptions.TabIndex = 3
|
||||
Me.grpSortOptions.TabStop = False
|
||||
Me.grpSortOptions.Text = "Sort Options"
|
||||
'
|
||||
'lblProcess
|
||||
'optSortAsc
|
||||
'
|
||||
Me.lblProcess.AutoSize = True
|
||||
Me.lblProcess.Location = New System.Drawing.Point(11, 48)
|
||||
Me.lblProcess.Name = "lblProcess"
|
||||
Me.lblProcess.Size = New System.Drawing.Size(48, 13)
|
||||
Me.lblProcess.TabIndex = 2
|
||||
Me.lblProcess.Text = "Process:"
|
||||
Me.optSortAsc.AutoSize = True
|
||||
Me.optSortAsc.Location = New System.Drawing.Point(6, 17)
|
||||
Me.optSortAsc.Name = "optSortAsc"
|
||||
Me.optSortAsc.Size = New System.Drawing.Size(75, 17)
|
||||
Me.optSortAsc.TabIndex = 0
|
||||
Me.optSortAsc.TabStop = True
|
||||
Me.optSortAsc.Text = "Ascending"
|
||||
Me.optSortAsc.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lblName
|
||||
'optSortDesc
|
||||
'
|
||||
Me.lblName.AutoSize = True
|
||||
Me.lblName.Location = New System.Drawing.Point(11, 22)
|
||||
Me.lblName.Name = "lblName"
|
||||
Me.lblName.Size = New System.Drawing.Size(38, 13)
|
||||
Me.lblName.TabIndex = 0
|
||||
Me.lblName.Text = "Name:"
|
||||
Me.optSortDesc.AutoSize = True
|
||||
Me.optSortDesc.Location = New System.Drawing.Point(90, 17)
|
||||
Me.optSortDesc.Name = "optSortDesc"
|
||||
Me.optSortDesc.Size = New System.Drawing.Size(82, 17)
|
||||
Me.optSortDesc.TabIndex = 1
|
||||
Me.optSortDesc.TabStop = True
|
||||
Me.optSortDesc.Text = "Descending"
|
||||
Me.optSortDesc.UseVisualStyleBackColor = True
|
||||
'
|
||||
'txtName
|
||||
'lblSortFields
|
||||
'
|
||||
Me.txtName.Location = New System.Drawing.Point(70, 19)
|
||||
Me.txtName.Name = "txtName"
|
||||
Me.txtName.Size = New System.Drawing.Size(309, 20)
|
||||
Me.txtName.TabIndex = 1
|
||||
Me.lblSortFields.AutoSize = True
|
||||
Me.lblSortFields.Location = New System.Drawing.Point(41, 19)
|
||||
Me.lblSortFields.Name = "lblSortFields"
|
||||
Me.lblSortFields.Size = New System.Drawing.Size(80, 13)
|
||||
Me.lblSortFields.TabIndex = 1
|
||||
Me.lblSortFields.Text = "Available Fields"
|
||||
'
|
||||
'cboSortField
|
||||
'
|
||||
Me.cboSortField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
|
||||
Me.cboSortField.FormattingEnabled = True
|
||||
Me.cboSortField.Location = New System.Drawing.Point(6, 35)
|
||||
Me.cboSortField.Name = "cboSortField"
|
||||
Me.cboSortField.Size = New System.Drawing.Size(150, 21)
|
||||
Me.cboSortField.TabIndex = 2
|
||||
'
|
||||
'chkTag
|
||||
'
|
||||
Me.chkTag.AutoSize = True
|
||||
Me.chkTag.Location = New System.Drawing.Point(12, 213)
|
||||
Me.chkTag.Name = "chkTag"
|
||||
Me.chkTag.Size = New System.Drawing.Size(45, 17)
|
||||
Me.chkTag.TabIndex = 2
|
||||
Me.chkTag.Text = "Tag"
|
||||
Me.chkTag.UseVisualStyleBackColor = True
|
||||
'
|
||||
'chkGameInfo
|
||||
'
|
||||
Me.chkGameInfo.AutoSize = True
|
||||
Me.chkGameInfo.Location = New System.Drawing.Point(12, 12)
|
||||
Me.chkGameInfo.Name = "chkGameInfo"
|
||||
Me.chkGameInfo.Size = New System.Drawing.Size(109, 17)
|
||||
Me.chkGameInfo.TabIndex = 0
|
||||
Me.chkGameInfo.Text = "Game Information"
|
||||
Me.chkGameInfo.UseVisualStyleBackColor = True
|
||||
'
|
||||
'Label1
|
||||
'
|
||||
Me.Label1.AutoSize = True
|
||||
Me.Label1.Location = New System.Drawing.Point(12, 531)
|
||||
Me.Label1.Name = "Label1"
|
||||
Me.Label1.Size = New System.Drawing.Size(249, 13)
|
||||
Me.Label1.TabIndex = 5
|
||||
Me.Label1.Text = "* Indicates a field that may give unexpected results."
|
||||
'
|
||||
'frmFilter
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(409, 516)
|
||||
Me.ClientSize = New System.Drawing.Size(409, 561)
|
||||
Me.Controls.Add(Me.Label1)
|
||||
Me.Controls.Add(Me.grpSorting)
|
||||
Me.Controls.Add(Me.chkTag)
|
||||
Me.Controls.Add(Me.grpGameFilter)
|
||||
Me.Controls.Add(Me.chkGameInfo)
|
||||
Me.Controls.Add(Me.grpTagFilter)
|
||||
Me.Controls.Add(Me.btnOK)
|
||||
Me.Controls.Add(Me.optTag)
|
||||
Me.Controls.Add(Me.optGameInfo)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
@@ -300,13 +441,16 @@ Partial Class frmFilter
|
||||
Me.grpTagOptions.ResumeLayout(False)
|
||||
Me.grpGameFilter.ResumeLayout(False)
|
||||
Me.grpGameFilter.PerformLayout()
|
||||
Me.grpGameInfoOptions.ResumeLayout(False)
|
||||
CType(Me.numFilter, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.grpFilterType.ResumeLayout(False)
|
||||
Me.grpSorting.ResumeLayout(False)
|
||||
Me.grpSorting.PerformLayout()
|
||||
Me.grpSortOptions.ResumeLayout(False)
|
||||
Me.grpSortOptions.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Friend WithEvents optGameInfo As System.Windows.Forms.RadioButton
|
||||
Friend WithEvents optTag As System.Windows.Forms.RadioButton
|
||||
Friend WithEvents grpTagFilter As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents grpTagOptions As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents optAll As System.Windows.Forms.RadioButton
|
||||
@@ -315,17 +459,31 @@ Partial Class frmFilter
|
||||
Friend WithEvents lblTags As System.Windows.Forms.Label
|
||||
Friend WithEvents btnRemove As System.Windows.Forms.Button
|
||||
Friend WithEvents btnAdd As System.Windows.Forms.Button
|
||||
Friend WithEvents lstFilter As System.Windows.Forms.ListBox
|
||||
Friend WithEvents lstTagFilter As System.Windows.Forms.ListBox
|
||||
Friend WithEvents lstTags As System.Windows.Forms.ListBox
|
||||
Friend WithEvents btnOK As System.Windows.Forms.Button
|
||||
Friend WithEvents grpGameFilter As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents txtProcess As System.Windows.Forms.TextBox
|
||||
Friend WithEvents lblProcess As System.Windows.Forms.Label
|
||||
Friend WithEvents lblName As System.Windows.Forms.Label
|
||||
Friend WithEvents txtName As System.Windows.Forms.TextBox
|
||||
Friend WithEvents txtCompany As System.Windows.Forms.TextBox
|
||||
Friend WithEvents lblCompany As System.Windows.Forms.Label
|
||||
Friend WithEvents grpGameInfoOptions As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents txtStringFilter As System.Windows.Forms.TextBox
|
||||
Friend WithEvents grpFilterType As System.Windows.Forms.GroupBox
|
||||
Friend WithEvents optOr As System.Windows.Forms.RadioButton
|
||||
Friend WithEvents optAnd As System.Windows.Forms.RadioButton
|
||||
Friend WithEvents grpSorting As GroupBox
|
||||
Friend WithEvents optSortDesc As RadioButton
|
||||
Friend WithEvents optSortAsc As RadioButton
|
||||
Friend WithEvents cboSortField As ComboBox
|
||||
Friend WithEvents chkTag As CheckBox
|
||||
Friend WithEvents chkGameInfo As CheckBox
|
||||
Friend WithEvents cboFilterField As ComboBox
|
||||
Friend WithEvents lstFilter As ListBox
|
||||
Friend WithEvents btnAddFilter As Button
|
||||
Friend WithEvents btnRemoveFilter As Button
|
||||
Friend WithEvents lblCurrentFilters As Label
|
||||
Friend WithEvents lblFilterData As Label
|
||||
Friend WithEvents lblFields As Label
|
||||
Friend WithEvents cboNumericOps As ComboBox
|
||||
Friend WithEvents numFilter As NumericUpDown
|
||||
Friend WithEvents cboBoolFilter As ComboBox
|
||||
Friend WithEvents lblSortFields As Label
|
||||
Friend WithEvents Label1 As Label
|
||||
Friend WithEvents grpSortOptions As GroupBox
|
||||
End Class
|
||||
|
||||
+455
-52
@@ -3,36 +3,74 @@
|
||||
Public Class frmFilter
|
||||
|
||||
Public Enum eFilterType As Integer
|
||||
NoFilter = 1
|
||||
BaseFilter = 1
|
||||
AnyTag = 2
|
||||
AllTags = 3
|
||||
NoTags = 4
|
||||
FieldAnd = 5
|
||||
FieldOr = 6
|
||||
End Enum
|
||||
|
||||
Dim oTagFilters As New List(Of clsTag)
|
||||
Dim hshStringFilters As New Hashtable
|
||||
Dim eCurrentFilterType As eFilterType = eFilterType.AnyTag
|
||||
Dim oGameFilters As New List(Of clsGameFilter)
|
||||
Dim oValidFields As New List(Of clsGameFilterField)
|
||||
Dim eCurrentFilterType As eFilterType = eFilterType.BaseFilter
|
||||
Dim bAndOperator As Boolean = False
|
||||
Dim bSortAsc As Boolean = True
|
||||
Dim sSortField As String = "Name"
|
||||
Dim hshTags As New Hashtable
|
||||
Dim bShutdown As Boolean = False
|
||||
|
||||
Public ReadOnly Property StringFilters As Hashtable
|
||||
Public Property GameFilters As List(Of clsGameFilter)
|
||||
Get
|
||||
Return hshStringFilters
|
||||
Return oGameFilters
|
||||
End Get
|
||||
Set(value As List(Of clsGameFilter))
|
||||
oGameFilters = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property TagFilters As List(Of clsTag)
|
||||
Public Property TagFilters As List(Of clsTag)
|
||||
Get
|
||||
Return oTagFilters
|
||||
End Get
|
||||
Set(value As List(Of clsTag))
|
||||
oTagFilters = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public ReadOnly Property FilterType As eFilterType
|
||||
Public Property FilterType As eFilterType
|
||||
Get
|
||||
Return eCurrentFilterType
|
||||
End Get
|
||||
Set(value As eFilterType)
|
||||
eCurrentFilterType = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property AndOperator As Boolean
|
||||
Get
|
||||
Return bAndOperator
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
bAndOperator = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property SortAsc As Boolean
|
||||
Get
|
||||
Return bSortAsc
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
bSortAsc = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property SortField As String
|
||||
Get
|
||||
Return sSortField
|
||||
End Get
|
||||
Set(value As String)
|
||||
sSortField = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Sub AddTag()
|
||||
@@ -41,7 +79,7 @@ Public Class frmFilter
|
||||
|
||||
If lstTags.SelectedItems.Count = 1 Then
|
||||
oData = lstTags.SelectedItems(0)
|
||||
lstFilter.Items.Add(oData)
|
||||
lstTagFilter.Items.Add(oData)
|
||||
lstTags.Items.Remove(oData)
|
||||
ElseIf lstTags.SelectedItems.Count > 1 Then
|
||||
oTags = New List(Of KeyValuePair(Of String, String))
|
||||
@@ -51,7 +89,7 @@ Public Class frmFilter
|
||||
Next
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oTags
|
||||
lstFilter.Items.Add(kp)
|
||||
lstTagFilter.Items.Add(kp)
|
||||
lstTags.Items.Remove(kp)
|
||||
Next
|
||||
End If
|
||||
@@ -62,26 +100,173 @@ Public Class frmFilter
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
Dim oTags As List(Of KeyValuePair(Of String, String))
|
||||
|
||||
If lstFilter.SelectedItems.Count = 1 Then
|
||||
oData = lstFilter.SelectedItems(0)
|
||||
lstFilter.Items.Remove(oData)
|
||||
If lstTagFilter.SelectedItems.Count = 1 Then
|
||||
oData = lstTagFilter.SelectedItems(0)
|
||||
lstTagFilter.Items.Remove(oData)
|
||||
lstTags.Items.Add(oData)
|
||||
ElseIf lstFilter.SelectedItems.Count > 1 Then
|
||||
ElseIf lstTagFilter.SelectedItems.Count > 1 Then
|
||||
oTags = New List(Of KeyValuePair(Of String, String))
|
||||
|
||||
For Each oData In lstFilter.SelectedItems
|
||||
For Each oData In lstTagFilter.SelectedItems
|
||||
oTags.Add(oData)
|
||||
Next
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oTags
|
||||
lstFilter.Items.Remove(kp)
|
||||
lstTagFilter.Items.Remove(kp)
|
||||
lstTags.Items.Add(kp)
|
||||
Next
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub LoadData()
|
||||
Private Sub LoadFilterFields()
|
||||
Dim oField As clsGameFilterField
|
||||
|
||||
'Name
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Name"
|
||||
oField.FriendlyFieldName = frmFilter_FieldName
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Process
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Process"
|
||||
oField.FriendlyFieldName = frmFilter_FieldProcess
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Parameter
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Parameter"
|
||||
oField.FriendlyFieldName = frmFilter_FieldParameter
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Save Path
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Path"
|
||||
oField.FriendlyFieldName = frmFilter_FieldPath
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Include Items
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "FileType"
|
||||
oField.FriendlyFieldName = frmFilter_FieldFileType
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Exclude Items
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "ExcludeList"
|
||||
oField.FriendlyFieldName = frmFilter_FieldExcludeList
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Save Entire Folder
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "FolderSave"
|
||||
oField.FriendlyFieldName = frmFilter_FieldFolderSave
|
||||
oField.Type = clsGameFilterField.eDataType.fBool
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Delete Folder on Restore
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "CleanFolder"
|
||||
oField.FriendlyFieldName = frmFilter_FieldCleanFolder
|
||||
oField.Type = clsGameFilterField.eDataType.fBool
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Save Multiple Backups
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "TimeStamp"
|
||||
oField.FriendlyFieldName = frmFilter_FieldTimeStamp
|
||||
oField.Type = clsGameFilterField.eDataType.fBool
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Backup Limit
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "BackupLimit"
|
||||
oField.FriendlyFieldName = frmFilter_FieldBackupLimit
|
||||
oField.Type = clsGameFilterField.eDataType.fNumeric
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Game Path
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "ProcessPath"
|
||||
oField.FriendlyFieldName = frmFilter_FieldProcessPath
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Company
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Company"
|
||||
oField.FriendlyFieldName = frmFilter_FieldCompany
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Version
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Version"
|
||||
oField.FriendlyFieldName = frmFilter_FieldVersion
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Icon
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Icon"
|
||||
oField.FriendlyFieldName = frmFilter_FieldIcon
|
||||
oField.Type = clsGameFilterField.eDataType.fString
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Hours
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Hours"
|
||||
oField.FriendlyFieldName = frmFilter_FieldHours
|
||||
oField.Type = clsGameFilterField.eDataType.fNumeric
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidSort
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Enabled
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "Enabled"
|
||||
oField.FriendlyFieldName = frmFilter_FieldEnabled
|
||||
oField.Type = clsGameFilterField.eDataType.fBool
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
'Monitor Only
|
||||
oField = New clsGameFilterField
|
||||
oField.FieldName = "MonitorOnly"
|
||||
oField.FriendlyFieldName = frmFilter_FieldMonitorOnly
|
||||
oField.Type = clsGameFilterField.eDataType.fBool
|
||||
oField.Status = clsGameFilterField.eFieldStatus.ValidFilter
|
||||
oValidFields.Add(oField)
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub LoadTagData()
|
||||
Dim oTag As clsTag
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
|
||||
@@ -90,12 +275,13 @@ Public Class frmFilter
|
||||
|
||||
'Handle Lists
|
||||
lstTags.Items.Clear()
|
||||
lstFilter.Items.Clear()
|
||||
lstTagFilter.Items.Clear()
|
||||
|
||||
lstTags.ValueMember = "Key"
|
||||
lstTags.DisplayMember = "Value"
|
||||
lstFilter.ValueMember = "Key"
|
||||
lstFilter.DisplayMember = "Value"
|
||||
|
||||
lstTagFilter.ValueMember = "Key"
|
||||
lstTagFilter.DisplayMember = "Value"
|
||||
|
||||
For Each de As DictionaryEntry In hshTags
|
||||
oTag = DirectCast(de.Value, clsTag)
|
||||
@@ -105,32 +291,140 @@ Public Class frmFilter
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub LoadExistingFilters()
|
||||
Dim sFilter As String = String.Empty
|
||||
Dim oListTag As KeyValuePair(Of String, String)
|
||||
|
||||
'Game Filters
|
||||
If bAndOperator Then
|
||||
optAnd.Checked = True
|
||||
Else
|
||||
optOr.Checked = True
|
||||
End If
|
||||
|
||||
If oGameFilters.Count > 0 Then
|
||||
chkGameInfo.Checked = True
|
||||
For Each oFilter As clsGameFilter In oGameFilters
|
||||
Select Case oFilter.Field.Type
|
||||
Case clsGameFilterField.eDataType.fString
|
||||
sFilter = oFilter.Field.FriendlyFieldName & " " & frmFilter_lstFilterContains & " """ & oFilter.Data & """"
|
||||
Case clsGameFilterField.eDataType.fNumeric
|
||||
sFilter = oFilter.Field.FriendlyFieldName & " " & oFilter.NumericOperatorAsString & " " & oFilter.Data
|
||||
Case clsGameFilterField.eDataType.fBool
|
||||
sFilter = oFilter.Field.FriendlyFieldName & " = " & oFilter.Data
|
||||
End Select
|
||||
|
||||
lstFilter.Items.Add(New KeyValuePair(Of clsGameFilter, String)(oFilter, sFilter))
|
||||
Next
|
||||
End If
|
||||
|
||||
'Tag Filters
|
||||
If oTagFilters.Count > 0 Then
|
||||
chkTag.Checked = True
|
||||
For Each oTag As clsTag In oTagFilters
|
||||
oListTag = New KeyValuePair(Of String, String)(oTag.ID, oTag.Name)
|
||||
lstTagFilter.Items.Add(oListTag)
|
||||
lstTags.Items.Remove(oListTag)
|
||||
Next
|
||||
|
||||
If eCurrentFilterType = eFilterType.AllTags Then
|
||||
optAll.Checked = True
|
||||
Else
|
||||
optAny.Checked = True
|
||||
End If
|
||||
End If
|
||||
|
||||
'Sorting
|
||||
cboSortField.SelectedValue = sSortField
|
||||
If bSortAsc Then
|
||||
optSortAsc.Checked = True
|
||||
Else
|
||||
optSortDesc.Checked = True
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub ChangeFilterMode()
|
||||
Dim oFilterType As clsGameFilterField.eDataType = DirectCast(cboFilterField.SelectedValue, clsGameFilterField).Type
|
||||
|
||||
'Reset
|
||||
cboNumericOps.SelectedIndex = 0
|
||||
cboBoolFilter.SelectedIndex = 0
|
||||
numFilter.Value = 0
|
||||
txtStringFilter.Text = String.Empty
|
||||
|
||||
'Reset Visibilty
|
||||
cboBoolFilter.Visible = False
|
||||
cboNumericOps.Visible = False
|
||||
numFilter.Visible = False
|
||||
txtStringFilter.Visible = False
|
||||
|
||||
'Set Visiblity
|
||||
Select Case oFilterType
|
||||
Case clsGameFilterField.eDataType.fString
|
||||
txtStringFilter.Visible = True
|
||||
Case clsGameFilterField.eDataType.fNumeric
|
||||
cboNumericOps.Visible = True
|
||||
numFilter.Visible = True
|
||||
txtStringFilter.Visible = False
|
||||
Case clsGameFilterField.eDataType.fBool
|
||||
cboBoolFilter.Visible = True
|
||||
End Select
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub AddFilter()
|
||||
Dim oFilter As New clsGameFilter
|
||||
Dim sFilter As String = String.Empty
|
||||
|
||||
'Build Filter
|
||||
oFilter.ID = Guid.NewGuid.ToString.Split("-")(0)
|
||||
oFilter.Field = cboFilterField.SelectedValue
|
||||
|
||||
Select Case oFilter.Field.Type
|
||||
Case clsGameFilterField.eDataType.fString
|
||||
oFilter.Data = txtStringFilter.Text
|
||||
sFilter = oFilter.Field.FriendlyFieldName & " " & frmFilter_lstFilterContains & " """ & oFilter.Data & """"
|
||||
Case clsGameFilterField.eDataType.fNumeric
|
||||
oFilter.Data = numFilter.Value
|
||||
oFilter.NumericOperator = DirectCast(cboNumericOps.SelectedValue, clsGameFilter.eNumericOperators)
|
||||
sFilter = oFilter.Field.FriendlyFieldName & " " & oFilter.NumericOperatorAsString & " " & oFilter.Data
|
||||
Case clsGameFilterField.eDataType.fBool
|
||||
oFilter.Data = cboBoolFilter.SelectedValue
|
||||
sFilter = oFilter.Field.FriendlyFieldName & " = " & oFilter.Data
|
||||
End Select
|
||||
|
||||
oGameFilters.Add(oFilter)
|
||||
lstFilter.Items.Add(New KeyValuePair(Of clsGameFilter, String)(oFilter, sFilter))
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub RemoveFilter()
|
||||
Dim oFilter As Object
|
||||
|
||||
If lstFilter.SelectedIndex <> -1 Then
|
||||
oFilter = lstFilter.SelectedItem
|
||||
oGameFilters.Remove(DirectCast(oFilter, KeyValuePair(Of clsGameFilter, String)).Key)
|
||||
lstFilter.Items.Remove(oFilter)
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub GetFilters()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
Dim oTag As clsTag
|
||||
|
||||
|
||||
If optGameInfo.Checked Then
|
||||
'Set Filter Type
|
||||
If optAnd.Checked Then
|
||||
eCurrentFilterType = eFilterType.FieldAnd
|
||||
Else
|
||||
eCurrentFilterType = eFilterType.FieldOr
|
||||
End If
|
||||
If chkGameInfo.Checked Then
|
||||
'Set Filter Type(s)
|
||||
eCurrentFilterType = eFilterType.BaseFilter
|
||||
bAndOperator = optAnd.Checked
|
||||
End If
|
||||
|
||||
'Set String Filter
|
||||
If txtName.Text <> String.Empty Then
|
||||
hshStringFilters.Add("Name", txtName.Text)
|
||||
End If
|
||||
If txtProcess.Text <> String.Empty Then
|
||||
hshStringFilters.Add("Process", txtProcess.Text)
|
||||
End If
|
||||
If txtCompany.Text <> String.Empty Then
|
||||
hshStringFilters.Add("Company", txtCompany.Text)
|
||||
End If
|
||||
Else
|
||||
If chkTag.Checked Then
|
||||
'Set Tags
|
||||
For Each oData In lstFilter.Items
|
||||
TagFilters.Clear()
|
||||
For Each oData In lstTagFilter.Items
|
||||
oTag = DirectCast(hshTags(oData.Value), clsTag)
|
||||
TagFilters.Add(oTag)
|
||||
Next
|
||||
@@ -145,6 +439,72 @@ Public Class frmFilter
|
||||
End If
|
||||
End If
|
||||
|
||||
'Sorting
|
||||
If optSortAsc.Checked Then
|
||||
bSortAsc = True
|
||||
Else
|
||||
bSortAsc = False
|
||||
End If
|
||||
|
||||
sSortField = cboSortField.SelectedValue
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub LoadCombos()
|
||||
Dim oFilterFields As New List(Of KeyValuePair(Of clsGameFilterField, String))
|
||||
Dim oSortFields As New List(Of KeyValuePair(Of String, String))
|
||||
Dim oNumericOperators As New List(Of KeyValuePair(Of clsGameFilter.eNumericOperators, String))
|
||||
Dim oBoolOperators As New List(Of KeyValuePair(Of Boolean, String))
|
||||
|
||||
'cboBoolFilter
|
||||
cboBoolFilter.ValueMember = "Key"
|
||||
cboBoolFilter.DisplayMember = "Value"
|
||||
|
||||
oBoolOperators.Add(New KeyValuePair(Of Boolean, String)(True, frmFilter_cboBoolFilterEnabled))
|
||||
oBoolOperators.Add(New KeyValuePair(Of Boolean, String)(False, frmFilter_cboBoolFilterDisabled))
|
||||
|
||||
cboBoolFilter.DataSource = oBoolOperators
|
||||
|
||||
'cboNumericOps
|
||||
cboNumericOps.ValueMember = "Key"
|
||||
cboNumericOps.DisplayMember = "Value"
|
||||
|
||||
oNumericOperators.Add(New KeyValuePair(Of clsGameFilter.eNumericOperators, String)(clsGameFilter.eNumericOperators.Equals, "="))
|
||||
oNumericOperators.Add(New KeyValuePair(Of clsGameFilter.eNumericOperators, String)(clsGameFilter.eNumericOperators.Greater, ">"))
|
||||
oNumericOperators.Add(New KeyValuePair(Of clsGameFilter.eNumericOperators, String)(clsGameFilter.eNumericOperators.Lesser, "<"))
|
||||
oNumericOperators.Add(New KeyValuePair(Of clsGameFilter.eNumericOperators, String)(clsGameFilter.eNumericOperators.GreaterEquals, ">="))
|
||||
oNumericOperators.Add(New KeyValuePair(Of clsGameFilter.eNumericOperators, String)(clsGameFilter.eNumericOperators.LesserEquals, "<="))
|
||||
|
||||
cboNumericOps.DataSource = oNumericOperators
|
||||
|
||||
'cboFilterField
|
||||
cboFilterField.ValueMember = "Key"
|
||||
cboFilterField.DisplayMember = "Value"
|
||||
|
||||
For Each oField As clsGameFilterField In oValidFields
|
||||
If oField.CheckStatus(clsGameFilterField.eFieldStatus.ValidFilter) Then
|
||||
oFilterFields.Add(New KeyValuePair(Of clsGameFilterField, String)(oField, oField.FriendlyFieldName))
|
||||
End If
|
||||
Next
|
||||
|
||||
cboFilterField.DataSource = oFilterFields
|
||||
|
||||
'cboSortField
|
||||
cboSortField.ValueMember = "Key"
|
||||
cboSortField.DisplayMember = "Value"
|
||||
|
||||
For Each oField As clsGameFilterField In oValidFields
|
||||
If oField.CheckStatus(clsGameFilterField.eFieldStatus.ValidSort) Then
|
||||
oSortFields.Add(New KeyValuePair(Of String, String)(oField.FieldName, oField.FriendlyFieldName))
|
||||
End If
|
||||
Next
|
||||
|
||||
cboSortField.DataSource = oSortFields
|
||||
|
||||
'Select Defaults
|
||||
cboNumericOps.SelectedIndex = 0
|
||||
cboFilterField.SelectedIndex = 0
|
||||
cboSortField.SelectedIndex = 0
|
||||
End Sub
|
||||
|
||||
Private Sub SetForm()
|
||||
@@ -154,10 +514,7 @@ Public Class frmFilter
|
||||
'Set Form Text
|
||||
optOr.Text = frmFilter_optOr
|
||||
optAnd.Text = frmFilter_optAnd
|
||||
lblCompany.Text = frmFilter_lblCompany
|
||||
lblProcess.Text = frmFilter_lblProcess
|
||||
lblName.Text = frmFilter_lblName
|
||||
grpGameInfoOptions.Text = frmFilter_grpGameInfoOptions
|
||||
grpFilterType.Text = frmFilter_grpFilterType
|
||||
optAll.Text = frmFilter_optAll
|
||||
optAny.Text = frmFilter_optAny
|
||||
lblGameTags.Text = frmFilter_lblGameTags
|
||||
@@ -166,14 +523,36 @@ Public Class frmFilter
|
||||
btnAdd.Text = frmFilter_btnAdd
|
||||
btnOK.Text = frmFilter_btnOK
|
||||
grpTagOptions.Text = frmFilter_grpTagOptions
|
||||
optTag.Text = frmFilter_optTag
|
||||
optGameInfo.Text = frmFilter_optGameInfo
|
||||
chkTag.Text = frmFilter_chkTag
|
||||
chkGameInfo.Text = frmFilter_chkGameInfo
|
||||
grpSorting.Text = frmFilter_grpSorting
|
||||
lblSortFields.Text = frmFilter_lblSortsFields
|
||||
optSortAsc.Text = frmFilter_optSortAsc
|
||||
optSortDesc.Text = frmFilter_optSortDesc
|
||||
btnAddFilter.Text = frmFilter_btnAddFilter
|
||||
btnRemoveFilter.Text = frmFilter_btnRemoveFilter
|
||||
lblCurrentFilters.Text = frmFilter_lblCurrentFilters
|
||||
lblFields.Text = frmFilter_lblFields
|
||||
lblFilterData.Text = frmFilter_lblFilterData
|
||||
grpSortOptions.Text = frmFilter_grpSortOptions
|
||||
|
||||
'Defaults
|
||||
optOr.Checked = True
|
||||
optSortAsc.Checked = True
|
||||
grpGameFilter.Enabled = False
|
||||
grpTagFilter.Enabled = False
|
||||
|
||||
'Init Game Filter
|
||||
lstFilter.ValueMember = "Key"
|
||||
lstFilter.DisplayMember = "Value"
|
||||
End Sub
|
||||
|
||||
Private Sub frmGameTags_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
SetForm()
|
||||
optGameInfo.Checked = True
|
||||
LoadData()
|
||||
LoadFilterFields()
|
||||
LoadCombos()
|
||||
LoadTagData()
|
||||
LoadExistingFilters()
|
||||
End Sub
|
||||
|
||||
Private Sub btnOK_Click(sender As Object, e As EventArgs) Handles btnOK.Click
|
||||
@@ -196,13 +575,37 @@ Public Class frmFilter
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub optGameInfo_Click(sender As Object, e As EventArgs) Handles optGameInfo.Click, optTag.Click
|
||||
If optGameInfo.Checked = True Then
|
||||
Private Sub chkGameInfo_CheckedChanged(sender As Object, e As EventArgs) Handles chkGameInfo.CheckedChanged
|
||||
If chkGameInfo.Checked Then
|
||||
grpGameFilter.Enabled = True
|
||||
grpTagFilter.Enabled = False
|
||||
Else
|
||||
optOr.Checked = True
|
||||
grpGameFilter.Enabled = False
|
||||
grpTagFilter.Enabled = True
|
||||
oGameFilters.Clear()
|
||||
lstFilter.Items.Clear()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub chkTag_CheckedChanged(sender As Object, e As EventArgs) Handles chkTag.CheckedChanged
|
||||
If chkTag.Checked Then
|
||||
grpTagFilter.Enabled = True
|
||||
Else
|
||||
grpTagFilter.Enabled = False
|
||||
oTagFilters.Clear()
|
||||
LoadTagData()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub btnAddFilter_Click(sender As Object, e As EventArgs) Handles btnAddFilter.Click
|
||||
AddFilter()
|
||||
End Sub
|
||||
|
||||
Private Sub btnRemoveFilter_Click(sender As Object, e As EventArgs) Handles btnRemoveFilter.Click
|
||||
RemoveFilter()
|
||||
End Sub
|
||||
|
||||
Private Sub cboFilterField_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cboFilterField.SelectedIndexChanged
|
||||
ChangeFilterMode()
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
Generated
+33
-11
@@ -28,6 +28,8 @@ Partial Class frmGameManager
|
||||
Me.btnBackup = New System.Windows.Forms.Button()
|
||||
Me.btnClose = New System.Windows.Forms.Button()
|
||||
Me.grpConfig = New System.Windows.Forms.GroupBox()
|
||||
Me.txtParameter = New System.Windows.Forms.TextBox()
|
||||
Me.lblParameter = New System.Windows.Forms.Label()
|
||||
Me.chkCleanFolder = New System.Windows.Forms.CheckBox()
|
||||
Me.lblLimit = New System.Windows.Forms.Label()
|
||||
Me.nudLimit = New System.Windows.Forms.NumericUpDown()
|
||||
@@ -152,6 +154,8 @@ Partial Class frmGameManager
|
||||
'grpConfig
|
||||
'
|
||||
Me.grpConfig.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.grpConfig.Controls.Add(Me.txtParameter)
|
||||
Me.grpConfig.Controls.Add(Me.lblParameter)
|
||||
Me.grpConfig.Controls.Add(Me.chkCleanFolder)
|
||||
Me.grpConfig.Controls.Add(Me.lblLimit)
|
||||
Me.grpConfig.Controls.Add(Me.nudLimit)
|
||||
@@ -178,13 +182,29 @@ Partial Class frmGameManager
|
||||
Me.grpConfig.TabStop = False
|
||||
Me.grpConfig.Text = "Configuration"
|
||||
'
|
||||
'txtParameter
|
||||
'
|
||||
Me.txtParameter.Location = New System.Drawing.Point(333, 45)
|
||||
Me.txtParameter.Name = "txtParameter"
|
||||
Me.txtParameter.Size = New System.Drawing.Size(150, 20)
|
||||
Me.txtParameter.TabIndex = 7
|
||||
'
|
||||
'lblParameter
|
||||
'
|
||||
Me.lblParameter.AutoSize = True
|
||||
Me.lblParameter.Location = New System.Drawing.Point(269, 48)
|
||||
Me.lblParameter.Name = "lblParameter"
|
||||
Me.lblParameter.Size = New System.Drawing.Size(58, 13)
|
||||
Me.lblParameter.TabIndex = 6
|
||||
Me.lblParameter.Text = "Parameter:"
|
||||
'
|
||||
'chkCleanFolder
|
||||
'
|
||||
Me.chkCleanFolder.AutoSize = True
|
||||
Me.chkCleanFolder.Location = New System.Drawing.Point(329, 101)
|
||||
Me.chkCleanFolder.Name = "chkCleanFolder"
|
||||
Me.chkCleanFolder.Size = New System.Drawing.Size(136, 17)
|
||||
Me.chkCleanFolder.TabIndex = 11
|
||||
Me.chkCleanFolder.TabIndex = 13
|
||||
Me.chkCleanFolder.Text = "Delete folder on restore"
|
||||
Me.chkCleanFolder.UseVisualStyleBackColor = True
|
||||
'
|
||||
@@ -194,7 +214,7 @@ Partial Class frmGameManager
|
||||
Me.lblLimit.Location = New System.Drawing.Point(375, 130)
|
||||
Me.lblLimit.Name = "lblLimit"
|
||||
Me.lblLimit.Size = New System.Drawing.Size(68, 13)
|
||||
Me.lblLimit.TabIndex = 14
|
||||
Me.lblLimit.TabIndex = 16
|
||||
Me.lblLimit.Text = "Backup Limit"
|
||||
Me.lblLimit.Visible = False
|
||||
'
|
||||
@@ -204,7 +224,7 @@ Partial Class frmGameManager
|
||||
Me.nudLimit.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
|
||||
Me.nudLimit.Name = "nudLimit"
|
||||
Me.nudLimit.Size = New System.Drawing.Size(40, 20)
|
||||
Me.nudLimit.TabIndex = 13
|
||||
Me.nudLimit.TabIndex = 15
|
||||
Me.nudLimit.Value = New Decimal(New Integer() {2, 0, 0, 0})
|
||||
Me.nudLimit.Visible = False
|
||||
'
|
||||
@@ -213,7 +233,7 @@ Partial Class frmGameManager
|
||||
Me.btnExclude.Location = New System.Drawing.Point(9, 125)
|
||||
Me.btnExclude.Name = "btnExclude"
|
||||
Me.btnExclude.Size = New System.Drawing.Size(175, 23)
|
||||
Me.btnExclude.TabIndex = 9
|
||||
Me.btnExclude.TabIndex = 11
|
||||
Me.btnExclude.Text = "E&xclude Items..."
|
||||
Me.btnExclude.UseVisualStyleBackColor = True
|
||||
'
|
||||
@@ -222,7 +242,7 @@ Partial Class frmGameManager
|
||||
Me.btnInclude.Location = New System.Drawing.Point(9, 97)
|
||||
Me.btnInclude.Name = "btnInclude"
|
||||
Me.btnInclude.Size = New System.Drawing.Size(175, 23)
|
||||
Me.btnInclude.TabIndex = 8
|
||||
Me.btnInclude.TabIndex = 10
|
||||
Me.btnInclude.Text = "In&clude Items..."
|
||||
Me.btnInclude.UseVisualStyleBackColor = True
|
||||
'
|
||||
@@ -241,13 +261,13 @@ Partial Class frmGameManager
|
||||
Me.btnSavePathBrowse.Location = New System.Drawing.Point(489, 71)
|
||||
Me.btnSavePathBrowse.Name = "btnSavePathBrowse"
|
||||
Me.btnSavePathBrowse.Size = New System.Drawing.Size(30, 20)
|
||||
Me.btnSavePathBrowse.TabIndex = 7
|
||||
Me.btnSavePathBrowse.TabIndex = 9
|
||||
Me.btnSavePathBrowse.Text = "..."
|
||||
Me.btnSavePathBrowse.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnProcessBrowse
|
||||
'
|
||||
Me.btnProcessBrowse.Location = New System.Drawing.Point(489, 45)
|
||||
Me.btnProcessBrowse.Location = New System.Drawing.Point(225, 44)
|
||||
Me.btnProcessBrowse.Name = "btnProcessBrowse"
|
||||
Me.btnProcessBrowse.Size = New System.Drawing.Size(30, 20)
|
||||
Me.btnProcessBrowse.TabIndex = 5
|
||||
@@ -305,7 +325,7 @@ Partial Class frmGameManager
|
||||
Me.chkTimeStamp.Location = New System.Drawing.Point(190, 129)
|
||||
Me.chkTimeStamp.Name = "chkTimeStamp"
|
||||
Me.chkTimeStamp.Size = New System.Drawing.Size(133, 17)
|
||||
Me.chkTimeStamp.TabIndex = 12
|
||||
Me.chkTimeStamp.TabIndex = 14
|
||||
Me.chkTimeStamp.Text = "Save multiple backups"
|
||||
Me.chkTimeStamp.UseVisualStyleBackColor = True
|
||||
'
|
||||
@@ -315,7 +335,7 @@ Partial Class frmGameManager
|
||||
Me.chkFolderSave.Location = New System.Drawing.Point(190, 101)
|
||||
Me.chkFolderSave.Name = "chkFolderSave"
|
||||
Me.chkFolderSave.Size = New System.Drawing.Size(109, 17)
|
||||
Me.chkFolderSave.TabIndex = 10
|
||||
Me.chkFolderSave.TabIndex = 12
|
||||
Me.chkFolderSave.Text = "Save entire folder"
|
||||
Me.chkFolderSave.UseVisualStyleBackColor = True
|
||||
'
|
||||
@@ -324,13 +344,13 @@ Partial Class frmGameManager
|
||||
Me.txtSavePath.Location = New System.Drawing.Point(69, 71)
|
||||
Me.txtSavePath.Name = "txtSavePath"
|
||||
Me.txtSavePath.Size = New System.Drawing.Size(414, 20)
|
||||
Me.txtSavePath.TabIndex = 6
|
||||
Me.txtSavePath.TabIndex = 8
|
||||
'
|
||||
'txtProcess
|
||||
'
|
||||
Me.txtProcess.Location = New System.Drawing.Point(69, 45)
|
||||
Me.txtProcess.Name = "txtProcess"
|
||||
Me.txtProcess.Size = New System.Drawing.Size(414, 20)
|
||||
Me.txtProcess.Size = New System.Drawing.Size(150, 20)
|
||||
Me.txtProcess.TabIndex = 4
|
||||
'
|
||||
'txtName
|
||||
@@ -941,4 +961,6 @@ Partial Class frmGameManager
|
||||
Friend WithEvents cmsDeleteOne As ToolStripMenuItem
|
||||
Friend WithEvents cmsDeleteAll As ToolStripMenuItem
|
||||
Friend WithEvents chkCleanFolder As CheckBox
|
||||
Friend WithEvents txtParameter As TextBox
|
||||
Friend WithEvents lblParameter As Label
|
||||
End Class
|
||||
|
||||
+186
-74
@@ -1,4 +1,5 @@
|
||||
Imports GBM.My.Resources
|
||||
Imports System.Collections.Specialized
|
||||
Imports System.IO
|
||||
|
||||
Public Class frmGameManager
|
||||
@@ -7,19 +8,23 @@ Public Class frmGameManager
|
||||
Private bPendingRestores As Boolean = False
|
||||
Private oCurrentBackupItem As clsBackup
|
||||
Private oCurrentGame As clsGame
|
||||
Private oTagsToSave As New List(Of KeyValuePair(Of String, String))
|
||||
Private bDisableExternalFunctions As Boolean = False
|
||||
Private bTriggerBackup As Boolean = False
|
||||
Private bTriggerRestore As Boolean = False
|
||||
Private oBackupList As New List(Of clsGame)
|
||||
Private oRestoreList As New Hashtable
|
||||
Private oAppData As Hashtable
|
||||
Private oGameData As OrderedDictionary
|
||||
Private oLocalBackupData As SortedList
|
||||
Private oRemoteBackupData As SortedList
|
||||
Private bIsDirty As Boolean = False
|
||||
Private bIsLoading As Boolean = False
|
||||
Private oCurrentTagFilters As New List(Of clsTag)
|
||||
Private oCurrentStringFilters As New Hashtable
|
||||
Private eCurrentFilter As frmFilter.eFilterType = frmFilter.eFilterType.NoFilter
|
||||
Private oCurrentFilters As New List(Of clsGameFilter)
|
||||
Private eCurrentFilter As frmFilter.eFilterType = frmFilter.eFilterType.BaseFilter
|
||||
Private bCurrentAndOperator As Boolean = False
|
||||
Private bCurrentSortAsc As Boolean = True
|
||||
Private sCurrentSortField As String = "Name"
|
||||
Private WithEvents tmFilterTimer As Timer
|
||||
|
||||
Private Enum eModes As Integer
|
||||
@@ -69,12 +74,12 @@ Public Class frmGameManager
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Property AppData As Hashtable
|
||||
Private Property GameData As OrderedDictionary
|
||||
Get
|
||||
Return oAppData
|
||||
Return oGameData
|
||||
End Get
|
||||
Set(value As Hashtable)
|
||||
oAppData = value
|
||||
Set(value As OrderedDictionary)
|
||||
oGameData = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@@ -221,41 +226,55 @@ Public Class frmGameManager
|
||||
If optCustom.Checked Then
|
||||
If Not bRetainFilter Then
|
||||
frm = New frmFilter
|
||||
|
||||
frm.TagFilters = oCurrentTagFilters
|
||||
frm.GameFilters = oCurrentFilters
|
||||
frm.FilterType = eCurrentFilter
|
||||
frm.AndOperator = bCurrentAndOperator
|
||||
frm.SortAsc = bCurrentSortAsc
|
||||
frm.SortField = sCurrentSortField
|
||||
|
||||
frm.ShowDialog()
|
||||
|
||||
oCurrentTagFilters = frm.TagFilters
|
||||
oCurrentStringFilters = frm.StringFilters
|
||||
oCurrentFilters = frm.GameFilters
|
||||
eCurrentFilter = frm.FilterType
|
||||
bCurrentAndOperator = frm.AndOperator
|
||||
bCurrentSortAsc = frm.SortAsc
|
||||
sCurrentSortField = frm.SortField
|
||||
End If
|
||||
Else
|
||||
oCurrentTagFilters.Clear()
|
||||
oCurrentStringFilters.Clear()
|
||||
eCurrentFilter = frmFilter.eFilterType.NoFilter
|
||||
oCurrentFilters.Clear()
|
||||
eCurrentFilter = frmFilter.eFilterType.BaseFilter
|
||||
bCurrentSortAsc = True
|
||||
sCurrentSortField = "Name"
|
||||
End If
|
||||
|
||||
AppData = mgrMonitorList.ReadFilteredList(oCurrentTagFilters, oCurrentStringFilters, eCurrentFilter)
|
||||
GameData = mgrMonitorList.ReadFilteredList(oCurrentTagFilters, oCurrentFilters, eCurrentFilter, bCurrentAndOperator, bCurrentSortAsc, sCurrentSortField)
|
||||
|
||||
If optPendingRestores.Checked Then
|
||||
oRestoreData = mgrRestore.CompareManifests
|
||||
|
||||
'Only show games with data to restore
|
||||
Dim oTemporaryList As Hashtable = AppData.Clone
|
||||
Dim oTemporaryList As OrderedDictionary = mgrCommon.GenericClone(GameData)
|
||||
For Each de As DictionaryEntry In oTemporaryList
|
||||
oGame = DirectCast(de.Value, clsGame)
|
||||
If Not oRestoreData.ContainsKey(oGame.Name) Then
|
||||
AppData.Remove(de.Key)
|
||||
GameData.Remove(de.Key)
|
||||
Else
|
||||
oRestoreData.Remove(oGame.Name)
|
||||
End If
|
||||
Next
|
||||
ElseIf optBackupData.Checked Then
|
||||
'Only show games with backup data
|
||||
Dim oTemporaryList As Hashtable = AppData.Clone
|
||||
Dim oTemporaryList As OrderedDictionary = mgrCommon.GenericClone(GameData)
|
||||
oRestoreData = oRemoteBackupData.Clone
|
||||
|
||||
For Each de As DictionaryEntry In oTemporaryList
|
||||
oGame = DirectCast(de.Value, clsGame)
|
||||
If Not oRemoteBackupData.ContainsKey(oGame.Name) Then
|
||||
AppData.Remove(de.Key)
|
||||
GameData.Remove(de.Key)
|
||||
Else
|
||||
oRestoreData.Remove(oGame.Name)
|
||||
End If
|
||||
@@ -268,7 +287,7 @@ Public Class frmGameManager
|
||||
oGame = New clsGame
|
||||
oGame.Name = oBackup.Name
|
||||
oGame.Temporary = True
|
||||
AppData.Add(oGame.ID, oGame)
|
||||
GameData.Add(oGame.ID, oGame)
|
||||
Next
|
||||
End If
|
||||
|
||||
@@ -287,8 +306,8 @@ Public Class frmGameManager
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseExe, "exe",
|
||||
frmGameManager_Executable, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFileBrowser("GM_Process", frmGameManager_ChooseExe, "exe",
|
||||
frmGameManager_Executable, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then
|
||||
txtAppPath.Text = Path.GetDirectoryName(sNewPath)
|
||||
@@ -308,7 +327,7 @@ Public Class frmGameManager
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(frmGameManager_ChooseExePath, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("GM_Process_Path", frmGameManager_ChooseExePath, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then txtAppPath.Text = sNewPath
|
||||
End Sub
|
||||
@@ -324,7 +343,7 @@ Public Class frmGameManager
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(frmGameManager_ChooseSaveFolder, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("GM_Save_Path", frmGameManager_ChooseSaveFolder, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then
|
||||
txtSavePath.Text = sNewPath
|
||||
@@ -345,11 +364,11 @@ Public Class frmGameManager
|
||||
|
||||
'Unix Handler
|
||||
If Not mgrCommon.IsUnix Then
|
||||
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseCustomIcon, "ico",
|
||||
frmGameManager_Icon, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFileBrowser("GM_Icon", frmGameManager_ChooseCustomIcon, "ico",
|
||||
frmGameManager_Icon, sDefaultFolder, False, False)
|
||||
Else
|
||||
sNewPath = mgrCommon.OpenFileBrowser(frmGameManager_ChooseCustomIcon, "png",
|
||||
"PNG", sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFileBrowser("GM_Icon", frmGameManager_ChooseCustomIcon, "png",
|
||||
"PNG", sDefaultFolder, False, False)
|
||||
End If
|
||||
|
||||
If sNewPath <> String.Empty Then
|
||||
@@ -386,7 +405,7 @@ Public Class frmGameManager
|
||||
Dim oList As New List(Of KeyValuePair(Of String, String))
|
||||
Dim sFilter As String = txtQuickFilter.Text
|
||||
|
||||
For Each de As DictionaryEntry In AppData
|
||||
For Each de As DictionaryEntry In GameData
|
||||
oApp = DirectCast(de.Value, clsGame)
|
||||
oData = New KeyValuePair(Of String, String)(oApp.ID, oApp.Name)
|
||||
'Apply the quick filter if applicable
|
||||
@@ -399,12 +418,20 @@ Public Class frmGameManager
|
||||
End If
|
||||
Next
|
||||
|
||||
oList.Sort(AddressOf mgrCommon.CompareByListBoxItemByValue)
|
||||
|
||||
lstGames.BeginUpdate()
|
||||
lstGames.DataSource = oList
|
||||
lstGames.ValueMember = "Key"
|
||||
lstGames.DisplayMember = "Value"
|
||||
|
||||
'Due to a control bug with Mono we need to fill the list box differently on Linux
|
||||
If mgrCommon.IsUnix Then
|
||||
lstGames.Items.Clear()
|
||||
For Each kp As KeyValuePair(Of String, String) In oList
|
||||
lstGames.Items.Add(kp)
|
||||
Next
|
||||
Else
|
||||
lstGames.DataSource = oList
|
||||
End If
|
||||
|
||||
lstGames.EndUpdate()
|
||||
lstGames.ClearSelected()
|
||||
IsLoading = False
|
||||
@@ -526,26 +553,41 @@ Public Class frmGameManager
|
||||
Dim oApp As clsGame
|
||||
Dim sMonitorIDs As New List(Of String)
|
||||
|
||||
For Each oData In lstGames.SelectedItems
|
||||
oApp = DirectCast(AppData(oData.Key), clsGame)
|
||||
sMonitorIDs.Add(oApp.ID)
|
||||
Next
|
||||
|
||||
frm.IDList = sMonitorIDs
|
||||
frm.GameName = CurrentGame.Name
|
||||
frm.ShowDialog()
|
||||
|
||||
'Only update visible tags if one item is selected
|
||||
If lstGames.SelectedItems.Count = 1 Then FillTags(CurrentGame.ID)
|
||||
|
||||
'If a tag filter is enabled, reload list to reflect changes
|
||||
If optCustom.Checked Then
|
||||
LoadData()
|
||||
If eCurrentMode = eModes.Add Then
|
||||
'Use a dummy ID
|
||||
sMonitorIDs.Add(Guid.NewGuid.ToString)
|
||||
frm.GameName = txtName.Text
|
||||
frm.NewMode = True
|
||||
frm.TagList = oTagsToSave
|
||||
Else
|
||||
For Each oData In lstGames.SelectedItems
|
||||
oApp = DirectCast(GameData(oData.Key), clsGame)
|
||||
sMonitorIDs.Add(oApp.ID)
|
||||
Next
|
||||
frm.GameName = CurrentGame.Name
|
||||
frm.NewMode = False
|
||||
End If
|
||||
|
||||
frm.IDList = sMonitorIDs
|
||||
frm.ShowDialog()
|
||||
|
||||
If eCurrentMode = eModes.Add Then
|
||||
oTagsToSave = frm.TagList
|
||||
FillTagsbyList(frm.TagList)
|
||||
Else
|
||||
'Only update visible tags if one item is selected
|
||||
If lstGames.SelectedItems.Count = 1 Then FillTagsbyID(CurrentGame.ID)
|
||||
|
||||
'If a tag filter is enabled, reload list to reflect changes
|
||||
If optCustom.Checked Then
|
||||
LoadData()
|
||||
End If
|
||||
|
||||
'If the selected game(s) no longer match the filter, disable the form
|
||||
If lstGames.SelectedIndex = -1 Then eCurrentMode = eModes.Disabled
|
||||
ModeChange()
|
||||
End If
|
||||
|
||||
'If the selected game(s) no longer match the filter, disable the form
|
||||
If lstGames.SelectedIndex = -1 Then eCurrentMode = eModes.Disabled
|
||||
ModeChange()
|
||||
End Sub
|
||||
|
||||
Private Sub UpdateBackupInfo(ByVal sManifestID As String)
|
||||
@@ -557,7 +599,7 @@ Public Class frmGameManager
|
||||
sFileName = BackupFolder & CurrentBackupItem.FileName
|
||||
|
||||
If File.Exists(sFileName) Then
|
||||
lblBackupFileData.Text = Path.GetFileName(CurrentBackupItem.FileName) & " (" & mgrCommon.GetFileSize(sFileName) & ")"
|
||||
lblBackupFileData.Text = Path.GetFileName(CurrentBackupItem.FileName) & " (" & mgrCommon.FormatDiskSpace(mgrCommon.GetFileSize(sFileName)) & ")"
|
||||
Else
|
||||
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
||||
End If
|
||||
@@ -599,7 +641,7 @@ Public Class frmGameManager
|
||||
btnDeleteBackup.Enabled = True
|
||||
|
||||
If File.Exists(sFileName) Then
|
||||
lblBackupFileData.Text = Path.GetFileName(CurrentBackupItem.FileName) & " (" & mgrCommon.GetFileSize(sFileName) & ")"
|
||||
lblBackupFileData.Text = Path.GetFileName(CurrentBackupItem.FileName) & " (" & mgrCommon.FormatDiskSpace(mgrCommon.GetFileSize(sFileName)) & ")"
|
||||
Else
|
||||
lblBackupFileData.Text = frmGameManager_ErrorNoBackupExists
|
||||
End If
|
||||
@@ -705,12 +747,13 @@ Public Class frmGameManager
|
||||
IsLoading = True
|
||||
|
||||
Dim oData As KeyValuePair(Of String, String) = lstGames.SelectedItems(0)
|
||||
Dim oApp As clsGame = DirectCast(AppData(oData.Key), clsGame)
|
||||
Dim oApp As clsGame = DirectCast(GameData(oData.Key), clsGame)
|
||||
|
||||
'Core
|
||||
txtID.Text = oApp.ID
|
||||
txtName.Text = oApp.Name
|
||||
txtProcess.Text = oApp.TrueProcess
|
||||
txtParameter.Text = oApp.Parameter
|
||||
txtSavePath.Text = oApp.Path
|
||||
txtFileType.Text = oApp.FileType
|
||||
txtExclude.Text = oApp.ExcludeList
|
||||
@@ -731,7 +774,7 @@ Public Class frmGameManager
|
||||
txtVersion.Text = oApp.Version
|
||||
txtIcon.Text = oApp.Icon
|
||||
|
||||
FillTags(oData.Key)
|
||||
FillTagsbyID(oData.Key)
|
||||
|
||||
'Icon
|
||||
If IO.File.Exists(oApp.Icon) Then
|
||||
@@ -756,7 +799,7 @@ Public Class frmGameManager
|
||||
IsLoading = False
|
||||
End Sub
|
||||
|
||||
Private Sub FillTags(ByVal sID As String)
|
||||
Private Sub FillTagsbyID(ByVal sID As String)
|
||||
Dim hshTags As Hashtable
|
||||
Dim oTag As clsTag
|
||||
Dim sTags As String = String.Empty
|
||||
@@ -772,6 +815,17 @@ Public Class frmGameManager
|
||||
lblTags.Text = sTags.TrimEnd(cTrim)
|
||||
End Sub
|
||||
|
||||
Private Sub FillTagsbyList(ByVal oList As List(Of KeyValuePair(Of String, String)))
|
||||
Dim sTags As String = String.Empty
|
||||
Dim cTrim() As Char = {",", " "}
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oList
|
||||
sTags &= "#" & kp.Value & ", "
|
||||
Next
|
||||
|
||||
lblTags.Text = sTags.TrimEnd(cTrim)
|
||||
End Sub
|
||||
|
||||
Private Sub DirtyCheck_ValueChanged(sender As Object, e As EventArgs)
|
||||
If Not IsLoading And Not eCurrentMode = eModes.MultiSelect Then
|
||||
IsDirty = True
|
||||
@@ -817,6 +871,7 @@ Public Class frmGameManager
|
||||
|
||||
Select Case eCurrentMode
|
||||
Case eModes.Add
|
||||
oTagsToSave.Clear()
|
||||
grpFilter.Enabled = False
|
||||
lstGames.Enabled = False
|
||||
lblQuickFilter.Enabled = False
|
||||
@@ -844,8 +899,9 @@ Public Class frmGameManager
|
||||
btnOpenRestorePath.Enabled = False
|
||||
chkEnabled.Checked = True
|
||||
chkMonitorOnly.Checked = False
|
||||
btnTags.Enabled = False
|
||||
lblTags.Visible = False
|
||||
btnTags.Enabled = True
|
||||
lblTags.Text = String.Empty
|
||||
lblTags.Visible = True
|
||||
btnInclude.Text = frmGameManager_btnInclude
|
||||
btnExclude.Text = frmGameManager_btnExclude
|
||||
btnImport.Enabled = False
|
||||
@@ -988,6 +1044,27 @@ Public Class frmGameManager
|
||||
VerifyCleanFolder()
|
||||
End Sub
|
||||
|
||||
Private Sub MonitorOnlyModeChange()
|
||||
If chkMonitorOnly.Checked Then
|
||||
chkFolderSave.Enabled = False
|
||||
chkTimeStamp.Enabled = False
|
||||
lblSavePath.Enabled = False
|
||||
txtSavePath.Enabled = False
|
||||
btnSavePathBrowse.Enabled = False
|
||||
btnInclude.Enabled = False
|
||||
btnExclude.Enabled = False
|
||||
Else
|
||||
chkFolderSave.Enabled = True
|
||||
chkTimeStamp.Enabled = True
|
||||
lblSavePath.Enabled = True
|
||||
txtSavePath.Enabled = True
|
||||
btnSavePathBrowse.Enabled = True
|
||||
btnInclude.Enabled = True
|
||||
btnExclude.Enabled = True
|
||||
End If
|
||||
VerifyCleanFolder()
|
||||
End Sub
|
||||
|
||||
Private Sub TimeStampModeChange()
|
||||
If chkTimeStamp.Checked Then
|
||||
nudLimit.Visible = True
|
||||
@@ -1002,7 +1079,7 @@ Public Class frmGameManager
|
||||
|
||||
Private Sub VerifyCleanFolder()
|
||||
If Not bIsLoading Then
|
||||
If chkFolderSave.Checked = True And txtExclude.Text = String.Empty And txtSavePath.Text <> String.Empty Then
|
||||
If (chkFolderSave.Checked = True And txtExclude.Text = String.Empty And txtSavePath.Text <> String.Empty) And Not chkMonitorOnly.Checked Then
|
||||
chkCleanFolder.Enabled = True
|
||||
Else
|
||||
chkCleanFolder.Checked = False
|
||||
@@ -1053,6 +1130,22 @@ Public Class frmGameManager
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SaveTags(ByVal sID As String)
|
||||
Dim oGameTag As clsGameTag
|
||||
Dim oGameTags As List(Of clsGameTag)
|
||||
|
||||
If oTagsToSave.Count > 0 Then
|
||||
oGameTags = New List(Of clsGameTag)
|
||||
For Each kp As KeyValuePair(Of String, String) In oTagsToSave
|
||||
oGameTag = New clsGameTag
|
||||
oGameTag.MonitorID = sID
|
||||
oGameTag.TagID = kp.Key
|
||||
oGameTags.Add(oGameTag)
|
||||
Next
|
||||
mgrGameTags.DoGameTagAddBatch(oGameTags)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub SaveApp()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
Dim oApp As New clsGame
|
||||
@@ -1071,6 +1164,7 @@ Public Class frmGameManager
|
||||
Else
|
||||
oApp.ProcessName = txtProcess.Text
|
||||
End If
|
||||
oApp.Parameter = txtParameter.Text
|
||||
oApp.Path = txtSavePath.Text
|
||||
'Only do a simple root check here in case the user doesn't really understand creating a proper configuration
|
||||
oApp.AbsolutePath = Path.IsPathRooted(txtSavePath.Text)
|
||||
@@ -1093,6 +1187,7 @@ Public Class frmGameManager
|
||||
If CoreValidatation(oApp) Then
|
||||
bSuccess = True
|
||||
mgrMonitorList.DoListAdd(oApp)
|
||||
SaveTags(oApp.ID)
|
||||
eCurrentMode = eModes.View
|
||||
End If
|
||||
Case eModes.Edit
|
||||
@@ -1118,8 +1213,16 @@ Public Class frmGameManager
|
||||
If bSuccess Then
|
||||
IsDirty = False
|
||||
LoadData()
|
||||
ModeChange()
|
||||
If eCurrentMode = eModes.View Then lstGames.SelectedValue = oApp.ID
|
||||
If eCurrentMode = eModes.View Then
|
||||
lstGames.SelectedItem = New KeyValuePair(Of String, String)(oApp.ID, oApp.Name)
|
||||
Else
|
||||
ModeChange()
|
||||
End If
|
||||
'If the addition doesn't match the current filter we should go into disabled mode as it can't be selected to view
|
||||
If lstGames.SelectedIndex = -1 Then
|
||||
eCurrentMode = eModes.Disabled
|
||||
ModeChange()
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@@ -1129,7 +1232,7 @@ Public Class frmGameManager
|
||||
|
||||
If lstGames.SelectedItems.Count = 1 Then
|
||||
oData = lstGames.SelectedItems(0)
|
||||
oApp = DirectCast(AppData(oData.Key), clsGame)
|
||||
oApp = DirectCast(GameData(oData.Key), clsGame)
|
||||
|
||||
If mgrCommon.ShowMessage(frmGameManager_ConfirmGameDelete, oApp.Name, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||
mgrMonitorList.DoListDelete(oApp.ID)
|
||||
@@ -1141,7 +1244,7 @@ Public Class frmGameManager
|
||||
Dim sMonitorIDs As New List(Of String)
|
||||
|
||||
For Each oData In lstGames.SelectedItems
|
||||
oApp = DirectCast(AppData(oData.Key), clsGame)
|
||||
oApp = DirectCast(GameData(oData.Key), clsGame)
|
||||
sMonitorIDs.Add(oApp.ID)
|
||||
Next
|
||||
|
||||
@@ -1181,7 +1284,7 @@ Public Class frmGameManager
|
||||
Return False
|
||||
End If
|
||||
|
||||
If chkFolderSave.Checked = False And txtFileType.Text = String.Empty Then
|
||||
If (chkFolderSave.Checked = False And txtFileType.Text = String.Empty) And Not chkMonitorOnly.Checked Then
|
||||
mgrCommon.ShowMessage(frmGameManager_ErrorNoItems, MsgBoxStyle.Exclamation)
|
||||
btnInclude.Focus()
|
||||
Return False
|
||||
@@ -1193,6 +1296,13 @@ Public Class frmGameManager
|
||||
Return False
|
||||
End If
|
||||
|
||||
If oApp.Parameter <> String.Empty Then
|
||||
If mgrMonitorList.DoDuplicateParameterCheck(oApp.ProcessName, oApp.Parameter, , oApp.ID) Then
|
||||
mgrCommon.ShowMessage(frmGameManager_ErrorProcessParameterDupe, MsgBoxStyle.Exclamation)
|
||||
Return False
|
||||
End If
|
||||
End If
|
||||
|
||||
Return True
|
||||
End Function
|
||||
|
||||
@@ -1261,8 +1371,8 @@ Public Class frmGameManager
|
||||
BackupList.Clear()
|
||||
|
||||
For Each oData In lstGames.SelectedItems
|
||||
oGame = DirectCast(AppData(oData.Key), clsGame)
|
||||
BackupList.Add(oGame)
|
||||
oGame = DirectCast(GameData(oData.Key), clsGame)
|
||||
If Not oGame.MonitorOnly Then BackupList.Add(oGame)
|
||||
Next
|
||||
|
||||
If BackupList.Count = 1 Then
|
||||
@@ -1299,17 +1409,14 @@ Public Class frmGameManager
|
||||
If lstGames.SelectedItems.Count > 0 Then
|
||||
RestoreList.Clear()
|
||||
|
||||
If lstGames.SelectedItems.Count = 1 Then
|
||||
RestoreList.Add(CurrentGame, CurrentBackupItem)
|
||||
Else
|
||||
For Each oData In lstGames.SelectedItems
|
||||
If oRemoteBackupData.Contains(oData.Value) Then
|
||||
oGame = DirectCast(AppData(oData.Key), clsGame)
|
||||
oBackup = DirectCast(oRemoteBackupData(oData.Value), clsBackup)
|
||||
RestoreList.Add(oGame, oBackup)
|
||||
End If
|
||||
Next
|
||||
End If
|
||||
|
||||
For Each oData In lstGames.SelectedItems
|
||||
If oRemoteBackupData.Contains(oData.Value) Then
|
||||
oGame = DirectCast(GameData(oData.Key), clsGame)
|
||||
oBackup = DirectCast(oRemoteBackupData(oData.Value), clsBackup)
|
||||
If Not oGame.MonitorOnly Then RestoreList.Add(oGame, oBackup)
|
||||
End If
|
||||
Next
|
||||
|
||||
If RestoreList.Count = 1 Then
|
||||
bDoRestore = True
|
||||
@@ -1346,7 +1453,7 @@ Public Class frmGameManager
|
||||
Private Sub ImportGameListFile()
|
||||
Dim sLocation As String
|
||||
|
||||
sLocation = mgrCommon.OpenFileBrowser(frmGameManager_ChooseImportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
||||
sLocation = mgrCommon.OpenFileBrowser("XML_Import", frmGameManager_ChooseImportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
||||
|
||||
If sLocation <> String.Empty Then
|
||||
If mgrMonitorList.DoImport(sLocation) Then
|
||||
@@ -1359,7 +1466,7 @@ Public Class frmGameManager
|
||||
Private Sub ExportGameList()
|
||||
Dim sLocation As String
|
||||
|
||||
sLocation = mgrCommon.SaveFileBrowser(frmGameManager_ChooseExportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), frmGameManager_DefaultExportFileName & " " & Date.Now.ToString("dd-MMM-yyyy"))
|
||||
sLocation = mgrCommon.SaveFileBrowser("XML_Export", frmGameManager_ChooseExportXML, "xml", frmGameManager_XML, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), frmGameManager_DefaultExportFileName & " " & Date.Now.ToString("dd-MMM-yyyy"))
|
||||
|
||||
If sLocation <> String.Empty Then
|
||||
mgrMonitorList.ExportMonitorList(sLocation)
|
||||
@@ -1425,6 +1532,7 @@ Public Class frmGameManager
|
||||
btnProcessBrowse.Text = frmGameManager_btnProcessBrowse
|
||||
lblSavePath.Text = frmGameManager_lblSavePath
|
||||
lblProcess.Text = frmGameManager_lblProcess
|
||||
lblParameter.Text = frmGameManager_lblParameter
|
||||
lblName.Text = frmGameManager_lblName
|
||||
chkTimeStamp.Text = frmGameManager_chkTimeStamp
|
||||
chkFolderSave.Text = frmGameManager_chkFolderSave
|
||||
@@ -1639,4 +1747,8 @@ Public Class frmGameManager
|
||||
Private Sub frmGameManager_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
|
||||
txtQuickFilter.Focus()
|
||||
End Sub
|
||||
|
||||
Private Sub chkMonitorOnly_CheckedChanged(sender As Object, e As EventArgs) Handles chkMonitorOnly.CheckedChanged
|
||||
MonitorOnlyModeChange()
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
+70
-23
@@ -2,8 +2,10 @@
|
||||
|
||||
Public Class frmGameTags
|
||||
|
||||
Dim sMonitorIDs As List(Of String)
|
||||
Dim sGameName As String = String.Empty
|
||||
Private sMonitorIDs As List(Of String)
|
||||
Private sGameName As String = String.Empty
|
||||
Private bNewMode As Boolean = False
|
||||
Private oTagList As List(Of KeyValuePair(Of String, String))
|
||||
|
||||
Public Property IDList As List(Of String)
|
||||
Get
|
||||
@@ -23,6 +25,25 @@ Public Class frmGameTags
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property NewMode As Boolean
|
||||
Get
|
||||
Return bNewMode
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
bNewMode = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Public Property TagList As List(Of KeyValuePair(Of String, String))
|
||||
Get
|
||||
Return oTagList
|
||||
End Get
|
||||
Set(value As List(Of KeyValuePair(Of String, String)))
|
||||
oTagList = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Private Sub AddTag()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
Dim oTags As List(Of KeyValuePair(Of String, String))
|
||||
@@ -40,7 +61,7 @@ Public Class frmGameTags
|
||||
oGameTags.Add(oGameTag)
|
||||
Next
|
||||
|
||||
mgrGameTags.DoGameTagAddBatch(oGameTags)
|
||||
If Not bNewMode Then mgrGameTags.DoGameTagAddBatch(oGameTags)
|
||||
|
||||
lstGameTags.Items.Add(oData)
|
||||
lstTags.Items.Remove(oData)
|
||||
@@ -60,7 +81,7 @@ Public Class frmGameTags
|
||||
oGameTags.Add(oGameTag)
|
||||
Next
|
||||
|
||||
mgrGameTags.DoGameTagAddBatch(oGameTags)
|
||||
If Not bNewMode Then mgrGameTags.DoGameTagAddBatch(oGameTags)
|
||||
|
||||
lstGameTags.Items.Add(kp)
|
||||
lstTags.Items.Remove(kp)
|
||||
@@ -86,12 +107,12 @@ Public Class frmGameTags
|
||||
oGameTags.Add(oGameTag)
|
||||
Next
|
||||
|
||||
mgrGameTags.DoGameTagDelete(oGameTags)
|
||||
If Not bNewMode Then mgrGameTags.DoGameTagDelete(oGameTags)
|
||||
|
||||
lstGameTags.Items.Remove(oData)
|
||||
lstTags.Items.Add(oData)
|
||||
ElseIf lstGameTags.SelectedItems.Count > 1 Then
|
||||
oTags = New List(Of KeyValuePair(Of String, String))
|
||||
lstTags.Items.Add(oData)
|
||||
ElseIf lstGameTags.SelectedItems.Count > 1 Then
|
||||
oTags = New List(Of KeyValuePair(Of String, String))
|
||||
|
||||
For Each oData In lstGameTags.SelectedItems
|
||||
oTags.Add(oData)
|
||||
@@ -106,7 +127,7 @@ Public Class frmGameTags
|
||||
oGameTags.Add(oGameTag)
|
||||
Next
|
||||
|
||||
mgrGameTags.DoGameTagDelete(oGameTags)
|
||||
If Not bNewMode Then mgrGameTags.DoGameTagDelete(oGameTags)
|
||||
|
||||
lstGameTags.Items.Remove(kp)
|
||||
lstTags.Items.Add(kp)
|
||||
@@ -121,16 +142,8 @@ Public Class frmGameTags
|
||||
Dim oTag As clsTag
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
|
||||
'Handle Data
|
||||
'Load Tags
|
||||
hshTags = mgrTags.ReadTags()
|
||||
hshGameTags = mgrGameTags.GetTagsByGameMulti(IDList)
|
||||
|
||||
For Each de As DictionaryEntry In hshGameTags
|
||||
oTag = DirectCast(de.Value, clsTag)
|
||||
If hshTags.ContainsKey(oTag.Name) Then
|
||||
hshTags.Remove(oTag.Name)
|
||||
End If
|
||||
Next
|
||||
|
||||
'Handle Lists
|
||||
lstTags.Items.Clear()
|
||||
@@ -141,11 +154,35 @@ Public Class frmGameTags
|
||||
lstGameTags.ValueMember = "Key"
|
||||
lstGameTags.DisplayMember = "Value"
|
||||
|
||||
For Each de As DictionaryEntry In hshGameTags
|
||||
oTag = DirectCast(de.Value, clsTag)
|
||||
oData = New KeyValuePair(Of String, String)(oTag.ID, oTag.Name)
|
||||
lstGameTags.Items.Add(oData)
|
||||
Next
|
||||
If bNewMode Then
|
||||
For Each kp As KeyValuePair(Of String, String) In oTagList
|
||||
'We need to be sure the tags still exist if the "Setup Tags" form was used
|
||||
If hshTags.ContainsKey(kp.Value) Then
|
||||
lstGameTags.Items.Add(kp)
|
||||
End If
|
||||
Next
|
||||
|
||||
For Each kp As KeyValuePair(Of String, String) In oTagList
|
||||
If hshTags.ContainsKey(kp.Value) Then
|
||||
hshTags.Remove(kp.Value)
|
||||
End If
|
||||
Next
|
||||
Else
|
||||
hshGameTags = mgrGameTags.GetTagsByGameMulti(IDList)
|
||||
|
||||
For Each de As DictionaryEntry In hshGameTags
|
||||
oTag = DirectCast(de.Value, clsTag)
|
||||
If hshTags.ContainsKey(oTag.Name) Then
|
||||
hshTags.Remove(oTag.Name)
|
||||
End If
|
||||
Next
|
||||
|
||||
For Each de As DictionaryEntry In hshGameTags
|
||||
oTag = DirectCast(de.Value, clsTag)
|
||||
oData = New KeyValuePair(Of String, String)(oTag.ID, oTag.Name)
|
||||
lstGameTags.Items.Add(oData)
|
||||
Next
|
||||
End If
|
||||
|
||||
For Each de As DictionaryEntry In hshTags
|
||||
oTag = DirectCast(de.Value, clsTag)
|
||||
@@ -155,6 +192,14 @@ Public Class frmGameTags
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub BuildTagList()
|
||||
Dim oData As KeyValuePair(Of String, String)
|
||||
oTagList.Clear()
|
||||
For Each oData In lstGameTags.Items
|
||||
oTagList.Add(oData)
|
||||
Next
|
||||
End Sub
|
||||
|
||||
Private Sub OpenTags()
|
||||
Dim frm As New frmTags
|
||||
frm.ShowDialog()
|
||||
@@ -185,6 +230,7 @@ Public Class frmGameTags
|
||||
End Sub
|
||||
|
||||
Private Sub btnClose_Click(sender As Object, e As EventArgs) Handles btnClose.Click
|
||||
If bNewMode Then BuildTagList()
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
@@ -197,6 +243,7 @@ Public Class frmGameTags
|
||||
End Sub
|
||||
|
||||
Private Sub btnOpenTags_Click(sender As Object, e As EventArgs) Handles btnOpenTags.Click
|
||||
If bNewMode Then BuildTagList()
|
||||
OpenTags()
|
||||
End Sub
|
||||
End Class
|
||||
@@ -108,7 +108,7 @@ Public Class frmIncludeExclude
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(frmIncludeExclude_BrowseSaveFolder, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("IE_Save_Path", frmIncludeExclude_BrowseSaveFolder, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then txtRootFolder.Text = sNewPath
|
||||
End Sub
|
||||
|
||||
Generated
+16
-16
@@ -75,7 +75,6 @@ Partial Class frmMain
|
||||
Me.gMonHelpAbout = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.gMonNotification = New System.Windows.Forms.ToolStripMenuItem()
|
||||
Me.pbIcon = New System.Windows.Forms.PictureBox()
|
||||
Me.btnLogToggle = New System.Windows.Forms.Button()
|
||||
Me.lblGameTitle = New System.Windows.Forms.Label()
|
||||
Me.lblLastAction = New System.Windows.Forms.Label()
|
||||
Me.lblLastActionTitle = New System.Windows.Forms.Label()
|
||||
@@ -222,6 +221,9 @@ Partial Class frmMain
|
||||
'
|
||||
'txtLog
|
||||
'
|
||||
Me.txtLog.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.txtLog.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.txtLog.Location = New System.Drawing.Point(12, 184)
|
||||
Me.txtLog.MaxLength = 524288
|
||||
@@ -430,17 +432,11 @@ Partial Class frmMain
|
||||
Me.pbIcon.TabIndex = 9
|
||||
Me.pbIcon.TabStop = False
|
||||
'
|
||||
'btnLogToggle
|
||||
'
|
||||
Me.btnLogToggle.Location = New System.Drawing.Point(437, 155)
|
||||
Me.btnLogToggle.Name = "btnLogToggle"
|
||||
Me.btnLogToggle.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnLogToggle.TabIndex = 7
|
||||
Me.btnLogToggle.Text = "Show &Log"
|
||||
Me.btnLogToggle.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lblGameTitle
|
||||
'
|
||||
Me.lblGameTitle.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.lblGameTitle.AutoEllipsis = True
|
||||
Me.lblGameTitle.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lblGameTitle.Location = New System.Drawing.Point(66, 36)
|
||||
Me.lblGameTitle.Name = "lblGameTitle"
|
||||
@@ -450,6 +446,8 @@ Partial Class frmMain
|
||||
'
|
||||
'lblLastAction
|
||||
'
|
||||
Me.lblLastAction.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.lblLastAction.AutoEllipsis = True
|
||||
Me.lblLastAction.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lblLastAction.Location = New System.Drawing.Point(12, 165)
|
||||
@@ -480,7 +478,8 @@ Partial Class frmMain
|
||||
'
|
||||
'btnCancelOperation
|
||||
'
|
||||
Me.btnCancelOperation.Location = New System.Drawing.Point(437, 126)
|
||||
Me.btnCancelOperation.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.btnCancelOperation.Location = New System.Drawing.Point(437, 155)
|
||||
Me.btnCancelOperation.Name = "btnCancelOperation"
|
||||
Me.btnCancelOperation.Size = New System.Drawing.Size(75, 23)
|
||||
Me.btnCancelOperation.TabIndex = 6
|
||||
@@ -489,6 +488,8 @@ Partial Class frmMain
|
||||
'
|
||||
'lblStatus1
|
||||
'
|
||||
Me.lblStatus1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.lblStatus1.AutoEllipsis = True
|
||||
Me.lblStatus1.Location = New System.Drawing.Point(66, 58)
|
||||
Me.lblStatus1.Name = "lblStatus1"
|
||||
@@ -497,6 +498,8 @@ Partial Class frmMain
|
||||
'
|
||||
'lblStatus2
|
||||
'
|
||||
Me.lblStatus2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.lblStatus2.AutoEllipsis = True
|
||||
Me.lblStatus2.Location = New System.Drawing.Point(66, 74)
|
||||
Me.lblStatus2.Name = "lblStatus2"
|
||||
@@ -505,6 +508,8 @@ Partial Class frmMain
|
||||
'
|
||||
'lblStatus3
|
||||
'
|
||||
Me.lblStatus3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
|
||||
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||
Me.lblStatus3.AutoEllipsis = True
|
||||
Me.lblStatus3.Location = New System.Drawing.Point(66, 90)
|
||||
Me.lblStatus3.Name = "lblStatus3"
|
||||
@@ -523,7 +528,6 @@ Partial Class frmMain
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.AutoSize = True
|
||||
Me.ClientSize = New System.Drawing.Size(524, 401)
|
||||
Me.Controls.Add(Me.pbTime)
|
||||
Me.Controls.Add(Me.lblStatus3)
|
||||
@@ -534,16 +538,13 @@ Partial Class frmMain
|
||||
Me.Controls.Add(Me.lblLastActionTitle)
|
||||
Me.Controls.Add(Me.lblLastAction)
|
||||
Me.Controls.Add(Me.lblGameTitle)
|
||||
Me.Controls.Add(Me.btnLogToggle)
|
||||
Me.Controls.Add(Me.pbIcon)
|
||||
Me.Controls.Add(Me.gMonStatusStrip)
|
||||
Me.Controls.Add(Me.gMonMainMenu)
|
||||
Me.Controls.Add(Me.txtLog)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.KeyPreview = True
|
||||
Me.MainMenuStrip = Me.gMonMainMenu
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
Me.Name = "frmMain"
|
||||
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
|
||||
@@ -586,7 +587,6 @@ Partial Class frmMain
|
||||
Friend WithEvents gMonTraySetupGameManager As System.Windows.Forms.ToolStripMenuItem
|
||||
Friend WithEvents gMonTraySetupCustomVariables As System.Windows.Forms.ToolStripMenuItem
|
||||
Friend WithEvents pbIcon As System.Windows.Forms.PictureBox
|
||||
Friend WithEvents btnLogToggle As System.Windows.Forms.Button
|
||||
Friend WithEvents lblGameTitle As System.Windows.Forms.Label
|
||||
Friend WithEvents lblLastAction As System.Windows.Forms.Label
|
||||
Friend WithEvents lblLastActionTitle As System.Windows.Forms.Label
|
||||
|
||||
+68
-72
@@ -39,9 +39,8 @@ Public Class frmMain
|
||||
Private sPriorPath As String
|
||||
Private sPriorCompany As String
|
||||
Private sPriorVersion As String
|
||||
Private iFormHeight As Integer
|
||||
Private iLogSpacer As Integer
|
||||
Private iRestoreTimeOut As Integer
|
||||
Private wState As FormWindowState = FormWindowState.Normal
|
||||
|
||||
'Developer Debug Flags
|
||||
Private bProcessDebugMode As Boolean = False
|
||||
@@ -477,8 +476,8 @@ Public Class frmMain
|
||||
End If
|
||||
|
||||
RunRestore(hshRestore)
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
|
||||
'Shutdown if we are finished
|
||||
If bFinished Then
|
||||
@@ -534,7 +533,7 @@ Public Class frmMain
|
||||
|
||||
Private Sub ResetGameInfo(Optional ByVal bKeepInfo As Boolean = False)
|
||||
If bKeepInfo And Not oProcess.GameInfo Is Nothing Then
|
||||
lblGameTitle.Text = mgrCommon.FormatString(frmMain_LastGame, oProcess.GameInfo.CroppedName)
|
||||
lblGameTitle.Text = mgrCommon.FormatString(frmMain_LastGame, oProcess.GameInfo.Name)
|
||||
pbIcon.Image = oPriorImage
|
||||
lblStatus1.Text = sPriorPath
|
||||
lblStatus2.Text = sPriorCompany
|
||||
@@ -599,7 +598,7 @@ Public Class frmMain
|
||||
Else
|
||||
bAllowIcon = True
|
||||
bAllowDetails = True
|
||||
lblGameTitle.Text = oProcess.GameInfo.CroppedName
|
||||
lblGameTitle.Text = oProcess.GameInfo.Name
|
||||
|
||||
Try
|
||||
Dim ic As Icon = System.Drawing.Icon.ExtractAssociatedIcon(oProcess.FoundProcess.MainModule.FileName)
|
||||
@@ -817,9 +816,11 @@ Public Class frmMain
|
||||
Dim sVersion As String = My.Application.Info.Version.Major & "." & My.Application.Info.Version.Minor & "." & My.Application.Info.Version.Build
|
||||
Dim sProcessType = [Enum].GetName(GetType(System.Reflection.ProcessorArchitecture), iProcessType)
|
||||
Dim sRevision As String = My.Application.Info.Version.Revision
|
||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||
Dim sSqliteVersion As String = oDatabase.ReportVersion
|
||||
Dim sConstCopyright As String = Chr(169) & mgrCommon.FormatString(App_Copyright, Now.Year.ToString)
|
||||
|
||||
mgrCommon.ShowMessage(frmMain_About, New String() {sVersion, sProcessType, sRevision, sConstCopyright}, MsgBoxStyle.Information)
|
||||
mgrCommon.ShowMessage(frmMain_About, New String() {sVersion, sProcessType, sRevision, sSqliteVersion, sConstCopyright}, MsgBoxStyle.Information)
|
||||
End Sub
|
||||
|
||||
Private Sub OpenTags()
|
||||
@@ -1027,33 +1028,24 @@ Public Class frmMain
|
||||
End Sub
|
||||
|
||||
'Functions that handle buttons, menus and other GUI features on this form
|
||||
Private Sub ToggleLog()
|
||||
If bLogToggle = False Then
|
||||
txtLog.Visible = True
|
||||
Me.Size = New System.Drawing.Size(Me.Size.Width, iFormHeight)
|
||||
bLogToggle = True
|
||||
btnLogToggle.Text = frmMain_btnToggleLog_Hide
|
||||
txtLog.Select(txtLog.TextLength, 0)
|
||||
txtLog.ScrollToCaret()
|
||||
Else
|
||||
txtLog.Visible = False
|
||||
Me.Size = New System.Drawing.Size(Me.Size.Width, Me.Size.Height - (txtLog.Height + iLogSpacer))
|
||||
bLogToggle = False
|
||||
btnLogToggle.Text = frmMain_btnToggleLog_Show
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub ToggleState()
|
||||
'Toggle State with Tray Clicks
|
||||
If Not bShowToggle Then
|
||||
bShowToggle = True
|
||||
Me.Visible = True
|
||||
Me.WindowState = wState
|
||||
Me.ShowInTaskbar = True
|
||||
Me.Focus()
|
||||
Else
|
||||
bShowToggle = False
|
||||
Me.Visible = False
|
||||
Me.ShowInTaskbar = False
|
||||
If Me.CanFocus Then
|
||||
bShowToggle = False
|
||||
wState = Me.WindowState
|
||||
Me.WindowState = FormWindowState.Minimized
|
||||
Me.ShowInTaskbar = False
|
||||
Me.Visible = False
|
||||
Else
|
||||
gMonTray.ShowBalloonTip(5000, App_NameLong, App_ErrorFocus, ToolTipIcon.Info)
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@@ -1144,7 +1136,7 @@ Public Class frmMain
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub ToggleMenuEnable()
|
||||
Private Sub ToggleMenuEnable(Optional ByVal bGameDetected As Boolean = False)
|
||||
If bMenuEnabled Then
|
||||
ToggleMenuItems(False, gMonFile)
|
||||
ToggleMenuItems(False, gMonSetup)
|
||||
@@ -1156,6 +1148,11 @@ Public Class frmMain
|
||||
gMonNotification.Enabled = False
|
||||
gMonTrayNotification.Enabled = False
|
||||
gMonTraySettings.Enabled = False
|
||||
If Not bGameDetected Then
|
||||
gMonTrayMon.Enabled = False
|
||||
gMonTrayShow.Enabled = False
|
||||
gMonTrayExit.Enabled = False
|
||||
End If
|
||||
bMenuEnabled = False
|
||||
Else
|
||||
ToggleMenuItems(True, gMonFile)
|
||||
@@ -1168,6 +1165,9 @@ Public Class frmMain
|
||||
gMonNotification.Enabled = True
|
||||
gMonTrayNotification.Enabled = True
|
||||
gMonTraySettings.Enabled = True
|
||||
gMonTrayMon.Enabled = True
|
||||
gMonTrayShow.Enabled = True
|
||||
gMonTrayExit.Enabled = True
|
||||
bMenuEnabled = True
|
||||
End If
|
||||
End Sub
|
||||
@@ -1249,7 +1249,7 @@ Public Class frmMain
|
||||
Private Sub SaveLog()
|
||||
Dim sLocation As String
|
||||
|
||||
sLocation = mgrCommon.SaveFileBrowser(frmMain_ChooseLogFile, "txt", frmMain_Text, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), frmMain_DefaultLogFileName & " " & Date.Now.ToString("dd-MMM-yyyy"))
|
||||
sLocation = mgrCommon.SaveFileBrowser("Log_File", frmMain_ChooseLogFile, "txt", frmMain_Text, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), frmMain_DefaultLogFileName & " " & Date.Now.ToString("dd-MMM-yyyy"))
|
||||
|
||||
If sLocation <> String.Empty Then
|
||||
mgrCommon.SaveText(txtLog.Text, sLocation)
|
||||
@@ -1257,8 +1257,8 @@ Public Class frmMain
|
||||
End Sub
|
||||
|
||||
Private Sub SetForm()
|
||||
'Disable Autosize in Linux (Mono prevents manual resizing when this is enabled)
|
||||
If mgrCommon.IsUnix Then Me.AutoSize = False
|
||||
'Set Minimum Size
|
||||
Me.MinimumSize = New Size(Me.Size.Width, Me.Size.Height - txtLog.Size.Height)
|
||||
|
||||
'Set Form Name
|
||||
Me.Name = App_NameLong
|
||||
@@ -1317,14 +1317,10 @@ Public Class frmMain
|
||||
gMonStripAdminButton.ToolTipText = frmMain_RunningAsNormal
|
||||
End If
|
||||
btnCancelOperation.Visible = False
|
||||
txtLog.Visible = False
|
||||
lblLastActionTitle.Visible = False
|
||||
lblLastAction.Text = String.Empty
|
||||
pbTime.SizeMode = PictureBoxSizeMode.AutoSize
|
||||
pbTime.Image = Icon_Clock
|
||||
iFormHeight = Me.Size.Height
|
||||
iLogSpacer = gMonStatusStrip.Location.Y - (txtLog.Location.Y + txtLog.Height)
|
||||
Me.Size = New System.Drawing.Size(Me.Size.Width, Me.Size.Height - (txtLog.Height + iLogSpacer))
|
||||
AddHandler mgrMonitorList.UpdateLog, AddressOf UpdateLog
|
||||
ResetGameInfo()
|
||||
End Sub
|
||||
@@ -1354,7 +1350,7 @@ Public Class frmMain
|
||||
ToggleMenuText()
|
||||
End Sub
|
||||
|
||||
Private Sub PauseScan()
|
||||
Private Sub PauseScan(Optional ByVal bGameDetected As Boolean = False)
|
||||
If eCurrentStatus = eStatus.Running Then
|
||||
StopSyncWatcher()
|
||||
tmScanTimer.Stop()
|
||||
@@ -1364,7 +1360,7 @@ Public Class frmMain
|
||||
gMonTray.Icon = GBM_Tray_Detected
|
||||
End If
|
||||
ToggleMenuText()
|
||||
ToggleMenuEnable()
|
||||
ToggleMenuEnable(bGameDetected)
|
||||
End Sub
|
||||
|
||||
Private Sub ResumeScan()
|
||||
@@ -1472,7 +1468,7 @@ Public Class frmMain
|
||||
|
||||
Private Sub CheckForSavedDuplicate()
|
||||
For Each o As clsGame In oProcess.DuplicateList
|
||||
If o.ProcessPath.ToLower = oProcess.GameInfo.ProcessPath.ToLower Then
|
||||
If o.ProcessPath.ToLower = oProcess.GameInfo.ProcessPath.ToLower And o.Parameter = String.Empty Then
|
||||
oProcess.GameInfo = o
|
||||
oProcess.Duplicate = False
|
||||
End If
|
||||
@@ -1631,10 +1627,6 @@ Public Class frmMain
|
||||
OpenGameManager(True)
|
||||
End Sub
|
||||
|
||||
Private Sub btnLogToggle_Click(sender As Object, e As EventArgs) Handles btnLogToggle.Click
|
||||
ToggleLog()
|
||||
End Sub
|
||||
|
||||
Private Sub gMonStripSplitStatusButton_ButtonClick(sender As Object, e As EventArgs) Handles gMonStripStatusButton.Click
|
||||
ScanToggle()
|
||||
End Sub
|
||||
@@ -1645,13 +1637,6 @@ Public Class frmMain
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub gMonTray_BalloonTipClicked(sender As System.Object, e As System.EventArgs) Handles gMonTray.BalloonTipClicked
|
||||
bShowToggle = True
|
||||
Me.Visible = True
|
||||
Me.ShowInTaskbar = True
|
||||
Me.Focus()
|
||||
End Sub
|
||||
|
||||
Private Sub btnCancelOperation_Click(sender As Object, e As EventArgs) Handles btnCancelOperation.Click
|
||||
OperationCancel()
|
||||
End Sub
|
||||
@@ -1671,15 +1656,22 @@ Public Class frmMain
|
||||
ShutdownApp()
|
||||
End If
|
||||
|
||||
'Intercept Exit
|
||||
If bShutdown = False Then
|
||||
e.Cancel = True
|
||||
If Not mgrCommon.IsUnix Then
|
||||
bShowToggle = False
|
||||
Me.Visible = False
|
||||
Me.ShowInTaskbar = False
|
||||
End If
|
||||
End If
|
||||
Select Case e.CloseReason
|
||||
Case CloseReason.UserClosing
|
||||
If bShutdown = False Then
|
||||
e.Cancel = True
|
||||
If Not mgrCommon.IsUnix Then
|
||||
bShowToggle = False
|
||||
wState = Me.WindowState
|
||||
Me.WindowState = FormWindowState.Minimized
|
||||
Me.ShowInTaskbar = False
|
||||
Me.Visible = False
|
||||
End If
|
||||
End If
|
||||
Case CloseReason.TaskManagerClosing, CloseReason.WindowsShutDown
|
||||
'Do nothing and let the app close without warning
|
||||
End Select
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub AutoRestoreEventProcessor(myObject As Object, ByVal myEventArgs As EventArgs) Handles tmRestoreCheck.Elapsed
|
||||
@@ -1695,7 +1687,7 @@ Public Class frmMain
|
||||
Dim sErrorMessage As String = String.Empty
|
||||
|
||||
If oProcess.SearchRunningProcesses(hshScanList, bNeedsPath, iErrorCode, bProcessDebugMode) Then
|
||||
PauseScan()
|
||||
PauseScan(True)
|
||||
|
||||
If bNeedsPath Then
|
||||
bContinue = False
|
||||
@@ -1727,18 +1719,18 @@ Public Class frmMain
|
||||
If bContinue = True Then
|
||||
CheckForSavedDuplicate()
|
||||
If oProcess.Duplicate Then
|
||||
UpdateLog(frmMain_MultipleGamesDetected, oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(frmMain_MultipleGamesDetected)
|
||||
SetGameInfo(True)
|
||||
UpdateLog(frmMain_MultipleGamesDetected, oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(frmMain_MultipleGamesDetected)
|
||||
SetGameInfo(True)
|
||||
Else
|
||||
UpdateLog(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.Name), oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.CroppedName))
|
||||
SetGameInfo()
|
||||
End If
|
||||
oProcess.StartTime = Now
|
||||
bwMonitor.RunWorkerAsync()
|
||||
Else
|
||||
UpdateLog(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.Name), oSettings.ShowDetectionToolTips)
|
||||
UpdateStatus(mgrCommon.FormatString(frmMain_GameDetected, oProcess.GameInfo.CroppedName))
|
||||
SetGameInfo()
|
||||
End If
|
||||
oProcess.StartTime = Now
|
||||
bwMonitor.RunWorkerAsync()
|
||||
Else
|
||||
StopScan()
|
||||
StopScan()
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
@@ -1850,14 +1842,18 @@ Public Class frmMain
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub txtGameInfo_Enter(sender As Object, e As EventArgs)
|
||||
btnLogToggle.Focus()
|
||||
End Sub
|
||||
|
||||
Private Sub frmMain_KeyDown(sender As Object, e As KeyEventArgs) Handles MyBase.KeyDown
|
||||
If e.KeyCode = Keys.Oemtilde AndAlso e.Modifiers = Keys.Control Then
|
||||
OpenDevConsole()
|
||||
End If
|
||||
End Sub
|
||||
|
||||
'This event handler lets the user clear focus from the log by clicking anywhere on the form.
|
||||
'Due to txtLog being the only focusable control in most cases, it's impossible for it to lose focus unless a change is forced.
|
||||
Private Sub ClearLogFocus(sender As Object, e As EventArgs) Handles MyBase.Click, lblGameTitle.Click, lblStatus1.Click, lblStatus2.Click,
|
||||
lblStatus3.Click, pbTime.Click, lblTimeSpent.Click, lblLastActionTitle.Click, lblLastAction.Click, gMonMainMenu.Click, gMonStatusStrip.Click
|
||||
'Move focus to first label
|
||||
lblGameTitle.Focus()
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
@@ -336,13 +336,13 @@ Public Class frmSettings
|
||||
|
||||
Private Sub btnBackupFolder_Click(sender As System.Object, e As System.EventArgs) Handles btnBackupFolder.Click
|
||||
Dim sNewFolder As String
|
||||
sNewFolder = mgrCommon.OpenFolderBrowser(frmSettings_BrowseFolder, oSettings.BackupFolder, True)
|
||||
sNewFolder = mgrCommon.OpenFolderBrowser("Settings_Backup_Path", frmSettings_BrowseFolder, oSettings.BackupFolder, True, False)
|
||||
If sNewFolder <> String.Empty Then txtBackupFolder.Text = sNewFolder
|
||||
End Sub
|
||||
|
||||
Private Sub btn7zLocation_Click(sender As Object, e As EventArgs) Handles btn7zLocation.Click
|
||||
Dim sNewLocation As String
|
||||
sNewLocation = mgrCommon.OpenFileBrowser(frmSettings_Browse7za, "exe", frmSettings_7zaFileType, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
||||
sNewLocation = mgrCommon.OpenFileBrowser("7z_Browse", frmSettings_Browse7za, "exe", frmSettings_7zaFileType, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), False)
|
||||
If sNewLocation <> String.Empty Then
|
||||
txt7zLocation.Text = sNewLocation
|
||||
GetUtilityInfo(txt7zLocation.Text)
|
||||
|
||||
@@ -215,7 +215,7 @@ Public Class frmStartUpWizard
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(frmStartUpWizard_BrowseFolder, sDefaultFolder, True)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("Wizard_Backup_Path", frmStartUpWizard_BrowseFolder, sDefaultFolder, True, False)
|
||||
|
||||
If sNewPath <> String.Empty Then txtBackupPath.Text = sNewPath
|
||||
End Sub
|
||||
|
||||
+12
-12
@@ -67,49 +67,49 @@ Public Class frmSyncFields
|
||||
|
||||
Private Sub chkTimeStamp_CheckedChanged(sender As Object, e As EventArgs) Handles chkTimeStamp.CheckedChanged
|
||||
If chkTimeStamp.Checked Then
|
||||
SyncFields = mgrCommon.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.TimeStamp)
|
||||
SyncFields = clsGame.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.TimeStamp)
|
||||
Else
|
||||
SyncFields = mgrCommon.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.TimeStamp)
|
||||
SyncFields = clsGame.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.TimeStamp)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub chkGamePath_CheckedChanged(sender As Object, e As EventArgs) Handles chkGamePath.CheckedChanged
|
||||
If chkGamePath.Checked Then
|
||||
SyncFields = mgrCommon.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.GamePath)
|
||||
SyncFields = clsGame.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.GamePath)
|
||||
Else
|
||||
SyncFields = mgrCommon.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.GamePath)
|
||||
SyncFields = clsGame.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.GamePath)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub chkCompany_CheckedChanged(sender As Object, e As EventArgs) Handles chkCompany.CheckedChanged
|
||||
If chkCompany.Checked Then
|
||||
SyncFields = mgrCommon.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.Company)
|
||||
SyncFields = clsGame.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.Company)
|
||||
Else
|
||||
SyncFields = mgrCommon.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.Company)
|
||||
SyncFields = clsGame.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.Company)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub chkVersion_CheckedChanged(sender As Object, e As EventArgs) Handles chkVersion.CheckedChanged
|
||||
If chkVersion.Checked Then
|
||||
SyncFields = mgrCommon.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.Version)
|
||||
SyncFields = clsGame.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.Version)
|
||||
Else
|
||||
SyncFields = mgrCommon.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.Version)
|
||||
SyncFields = clsGame.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.Version)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub chkIcon_CheckedChanged(sender As Object, e As EventArgs) Handles chkIcon.CheckedChanged
|
||||
If chkIcon.Checked Then
|
||||
SyncFields = mgrCommon.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.Icon)
|
||||
SyncFields = clsGame.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.Icon)
|
||||
Else
|
||||
SyncFields = mgrCommon.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.Icon)
|
||||
SyncFields = clsGame.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.Icon)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub chkMonitorGame_CheckedChanged(sender As Object, e As EventArgs) Handles chkMonitorGame.CheckedChanged
|
||||
If chkMonitorGame.Checked Then
|
||||
SyncFields = mgrCommon.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.MonitorGame)
|
||||
SyncFields = clsGame.SetSyncField(SyncFields, clsGame.eOptionalSyncFields.MonitorGame)
|
||||
Else
|
||||
SyncFields = mgrCommon.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.MonitorGame)
|
||||
SyncFields = clsGame.RemoveSyncField(SyncFields, clsGame.eOptionalSyncFields.MonitorGame)
|
||||
End If
|
||||
End Sub
|
||||
End Class
|
||||
@@ -54,7 +54,7 @@ Public Class frmVariableManager
|
||||
End If
|
||||
End If
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(frmVariableManager_PathBrowse, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("VM_Path", frmVariableManager_PathBrowse, sDefaultFolder, False, False)
|
||||
|
||||
If sNewPath <> String.Empty Then txtPath.Text = sNewPath
|
||||
End Sub
|
||||
|
||||
@@ -106,6 +106,7 @@
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Management" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
@@ -121,6 +122,9 @@
|
||||
<Import Include="System.Windows.Forms" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Classes\clsGameFilter.vb" />
|
||||
<Compile Include="Classes\clsGameFilterField.vb" />
|
||||
<Compile Include="Classes\clsSavedPath.vb" />
|
||||
<Compile Include="Classes\XML Serialize Classes\Tag.vb" />
|
||||
<Compile Include="Classes\XML Serialize Classes\Game.vb" />
|
||||
<Compile Include="Classes\clsGameTag.vb" />
|
||||
@@ -220,6 +224,7 @@
|
||||
<Compile Include="Managers\mgrMonitorList.vb" />
|
||||
<Compile Include="Managers\mgrPath.vb" />
|
||||
<Compile Include="Managers\mgrRestore.vb" />
|
||||
<Compile Include="Managers\mgrSavedPath.vb" />
|
||||
<Compile Include="Managers\mgrSettings.vb" />
|
||||
<Compile Include="Managers\mgrBackup.vb" />
|
||||
<Compile Include="Managers\mgrSQLite.vb" />
|
||||
@@ -344,6 +349,7 @@
|
||||
<Content Include="Utilities\x86\7za.exe">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="x64\sqlite3.dll" />
|
||||
<Content Include="x86\sqlite3.dll" />
|
||||
<None Include="Resources\gbm.ico" />
|
||||
<Content Include="Resources\Admin.png" />
|
||||
@@ -356,7 +362,6 @@
|
||||
<Content Include="Resources\Inbox.png" />
|
||||
<Content Include="Resources\type.ico" />
|
||||
<Content Include="Resources\User.png" />
|
||||
<Content Include="x64\sqlite3.dll" />
|
||||
<None Include="Resources\Stopped.png" />
|
||||
<None Include="Resources\Detected.png" />
|
||||
<None Include="Resources\Ready.png" />
|
||||
|
||||
@@ -87,9 +87,25 @@ Public Class mgrBackup
|
||||
|
||||
Public Function CheckBackupPrereq(ByVal oGame As clsGame) As Boolean
|
||||
Dim sBackupFile As String = oSettings.BackupFolder
|
||||
Dim lAvailableSpace As Long = mgrCommon.GetAvailableDiskSpace(sBackupFile)
|
||||
Dim lFolderSize As Long = mgrCommon.GetFolderSize(oGame.Path, oGame.IncludeArray, oGame.ExcludeArray)
|
||||
|
||||
If oSettings.CreateSubFolder Then sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.Name
|
||||
sBackupFile = sBackupFile & Path.DirectorySeparatorChar & oGame.Name & ".7z"
|
||||
|
||||
'Show Available Space
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrCommon_AvailableDiskSpace, mgrCommon.FormatDiskSpace(lAvailableSpace)), False, ToolTipIcon.Info, True)
|
||||
|
||||
'Show Save Folder Size
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrCommon_SavedGameFolderSize, New String() {oGame.Name, mgrCommon.FormatDiskSpace(lFolderSize)}), False, ToolTipIcon.Info, True)
|
||||
|
||||
If lFolderSize >= lAvailableSpace Then
|
||||
If mgrCommon.ShowMessage(mgrBackup_ConfirmDiskSpace, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
||||
RaiseEvent UpdateLog(mgrBackup_ErrorDiskSpace, False, ToolTipIcon.Error, True)
|
||||
Return False
|
||||
End If
|
||||
End If
|
||||
|
||||
If mgrRestore.CheckManifest(oGame.Name) Then
|
||||
If mgrCommon.ShowMessage(mgrBackup_ConfirmManifestConflict, oGame.Name, MsgBoxStyle.YesNo) = MsgBoxResult.No Then
|
||||
RaiseEvent UpdateLog(mgrBackup_ErrorManifestConflict, False, ToolTipIcon.Error, True)
|
||||
@@ -222,13 +238,20 @@ Public Class mgrBackup
|
||||
End While
|
||||
prs7z.WaitForExit()
|
||||
If Not CancelOperation Then
|
||||
If prs7z.ExitCode = 0 Then
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_BackupComplete, New String() {oGame.Name, mgrCommon.GetFileSize(sBackupFile)}), False, ToolTipIcon.Info, True)
|
||||
bBackupCompleted = True
|
||||
Else
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_BackupWarnings, oGame.Name), True, ToolTipIcon.Warning, True)
|
||||
bBackupCompleted = False
|
||||
End If
|
||||
Select Case prs7z.ExitCode
|
||||
Case 0
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_BackupComplete, New String() {oGame.Name, mgrCommon.FormatDiskSpace(mgrCommon.GetFileSize(sBackupFile))}), False, ToolTipIcon.Info, True)
|
||||
bBackupCompleted = True
|
||||
Case 1
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_7zWarnings, oGame.Name), True, ToolTipIcon.Warning, True)
|
||||
bBackupCompleted = True
|
||||
Case 2
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_7zFatalError, oGame.Name), True, ToolTipIcon.Error, True)
|
||||
bBackupCompleted = False
|
||||
Case 7
|
||||
RaiseEvent UpdateLog(mgrCommon.FormatString(mgrBackup_7zCommandFailure, oGame.Name), True, ToolTipIcon.Error, True)
|
||||
bBackupCompleted = False
|
||||
End Select
|
||||
End If
|
||||
prs7z.Dispose()
|
||||
Else
|
||||
|
||||
+232
-30
@@ -2,6 +2,9 @@
|
||||
Imports System.Net
|
||||
Imports System.IO
|
||||
Imports System.Security.Principal
|
||||
Imports System.Text.RegularExpressions
|
||||
Imports System.Runtime.Serialization
|
||||
Imports System.Runtime.Serialization.Formatters.Binary
|
||||
|
||||
Public Class mgrCommon
|
||||
|
||||
@@ -34,6 +37,28 @@ Public Class mgrCommon
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'Source - https://stackoverflow.com/questions/18873152/deep-copy-of-ordereddictionary
|
||||
Public Shared Function GenericClone(ByVal oOriginal As Object) As Object
|
||||
'Construct a temporary memory stream
|
||||
Dim oStream As MemoryStream = New MemoryStream()
|
||||
|
||||
'Construct a serialization formatter that does all the hard work
|
||||
Dim oFormatter As BinaryFormatter = New BinaryFormatter()
|
||||
|
||||
'This line Is explained in the "Streaming Contexts" section
|
||||
oFormatter.Context = New StreamingContext(StreamingContextStates.Clone)
|
||||
|
||||
'Serialize the object graph into the memory stream
|
||||
oFormatter.Serialize(oStream, oOriginal)
|
||||
|
||||
'Seek back to the start of the memory stream before deserializing
|
||||
oStream.Position = 0
|
||||
|
||||
'Deserialize the graph into a New set of objects
|
||||
'Return the root of the graph (deep copy) to the caller
|
||||
Return oFormatter.Deserialize(oStream)
|
||||
End Function
|
||||
|
||||
Public Shared Function CheckAddress(ByVal URL As String) As Boolean
|
||||
Try
|
||||
Dim request As WebRequest = WebRequest.Create(URL)
|
||||
@@ -61,30 +86,66 @@ Public Class mgrCommon
|
||||
End If
|
||||
End Function
|
||||
|
||||
Public Shared Function SaveFileBrowser(ByVal sTitle As String, ByVal sExtension As String, ByVal sFileType As String, ByVal sDefaultFolder As String, ByVal sDefaultFile As String) As String
|
||||
Public Shared Function SaveFileBrowser(ByVal sName As String, ByVal sTitle As String, ByVal sExtension As String, ByVal sFileType As String, ByVal sDefaultFolder As String,
|
||||
ByVal sDefaultFile As String, Optional ByVal bSavedPath As Boolean = True) As String
|
||||
Dim fbBrowser As New SaveFileDialog
|
||||
Dim oSavedPath As New clsSavedPath
|
||||
|
||||
fbBrowser.Title = sTitle
|
||||
fbBrowser.DefaultExt = sExtension
|
||||
fbBrowser.Filter = FormatString(mgrCommon_FilesFilter, New String() {sFileType, sExtension, sExtension})
|
||||
fbBrowser.InitialDirectory = sDefaultFolder
|
||||
fbBrowser.FileName = sDefaultFile
|
||||
fbBrowser.InitialDirectory = sDefaultFolder
|
||||
|
||||
If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then
|
||||
Return fbBrowser.FileName
|
||||
If bSavedPath Then
|
||||
oSavedPath = mgrSavedPath.GetPathByName(sName)
|
||||
If oSavedPath.Path <> String.Empty Then
|
||||
If Directory.Exists(oSavedPath.Path) Then
|
||||
fbBrowser.InitialDirectory = oSavedPath.Path
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
|
||||
Return String.Empty
|
||||
If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then
|
||||
If bSavedPath Then
|
||||
oSavedPath.PathName = sName
|
||||
oSavedPath.Path = Path.GetDirectoryName(fbBrowser.FileName)
|
||||
mgrSavedPath.AddUpdatePath(oSavedPath)
|
||||
End If
|
||||
|
||||
Return fbBrowser.FileName
|
||||
End If
|
||||
|
||||
Return String.Empty
|
||||
End Function
|
||||
|
||||
Public Shared Function OpenFileBrowser(ByVal sTitle As String, ByVal sExtension As String, ByVal sFileType As String, ByVal sDefaultFolder As String, ByVal bMulti As Boolean) As String
|
||||
Public Shared Function OpenFileBrowser(ByVal sName As String, ByVal sTitle As String, ByVal sExtension As String, ByVal sFileType As String, ByVal sDefaultFolder As String,
|
||||
ByVal bMulti As Boolean, Optional ByVal bSavedPath As Boolean = True) As String
|
||||
Dim fbBrowser As New OpenFileDialog
|
||||
Dim oSavedPath As New clsSavedPath
|
||||
|
||||
fbBrowser.Title = sTitle
|
||||
fbBrowser.DefaultExt = sExtension
|
||||
fbBrowser.Filter = FormatString(mgrCommon_FilesFilter, New String() {sFileType, sExtension, sExtension})
|
||||
fbBrowser.InitialDirectory = sDefaultFolder
|
||||
fbBrowser.Multiselect = bMulti
|
||||
fbBrowser.InitialDirectory = sDefaultFolder
|
||||
|
||||
If bSavedPath Then
|
||||
oSavedPath = mgrSavedPath.GetPathByName(sName)
|
||||
If oSavedPath.Path <> String.Empty Then
|
||||
If Directory.Exists(oSavedPath.Path) Then
|
||||
fbBrowser.InitialDirectory = oSavedPath.Path
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
|
||||
If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then
|
||||
If bSavedPath Then
|
||||
oSavedPath.PathName = sName
|
||||
oSavedPath.Path = Path.GetDirectoryName(fbBrowser.FileName)
|
||||
mgrSavedPath.AddUpdatePath(oSavedPath)
|
||||
End If
|
||||
|
||||
If bMulti Then
|
||||
Dim sFileNames As String = String.Empty
|
||||
For Each sFileName As String In fbBrowser.FileNames
|
||||
@@ -100,12 +161,31 @@ Public Class mgrCommon
|
||||
Return String.Empty
|
||||
End Function
|
||||
|
||||
Public Shared Function OpenFolderBrowser(ByVal sTitle As String, ByVal sDefaultFolder As String, ByVal bEnableNewFolder As Boolean) As String
|
||||
Public Shared Function OpenFolderBrowser(ByVal sName As String, ByVal sTitle As String, ByVal sDefaultFolder As String, ByVal bEnableNewFolder As Boolean,
|
||||
Optional ByVal bSavedPath As Boolean = True) As String
|
||||
Dim fbBrowser As New FolderBrowserDialog
|
||||
Dim oSavedPath As New clsSavedPath
|
||||
|
||||
fbBrowser.Description = sTitle
|
||||
fbBrowser.SelectedPath = sDefaultFolder
|
||||
fbBrowser.ShowNewFolderButton = bEnableNewFolder
|
||||
|
||||
If bSavedPath Then
|
||||
oSavedPath = mgrSavedPath.GetPathByName(sName)
|
||||
If oSavedPath.Path <> String.Empty Then
|
||||
If Directory.Exists(oSavedPath.Path) Then
|
||||
fbBrowser.SelectedPath = oSavedPath.Path
|
||||
End If
|
||||
End If
|
||||
End If
|
||||
|
||||
If fbBrowser.ShowDialog() = Windows.Forms.DialogResult.OK Then
|
||||
If bSavedPath Then
|
||||
oSavedPath.PathName = sName
|
||||
oSavedPath.Path = fbBrowser.SelectedPath
|
||||
mgrSavedPath.AddUpdatePath(oSavedPath)
|
||||
End If
|
||||
|
||||
Return fbBrowser.SelectedPath
|
||||
End If
|
||||
|
||||
@@ -157,12 +237,152 @@ Public Class mgrCommon
|
||||
oProcess.Start()
|
||||
End Sub
|
||||
|
||||
Public Shared Function SetSyncField(ByVal eSyncFields As clsGame.eOptionalSyncFields, ByVal eSyncField As clsGame.eOptionalSyncFields) As clsGame.eOptionalSyncFields
|
||||
Return eSyncFields Or eSyncField
|
||||
'Get a file size
|
||||
Public Shared Function GetFileSize(ByVal sFile As String) As Long
|
||||
Dim oFileInfo As FileInfo
|
||||
Dim dFileSize As Long = 0
|
||||
|
||||
Try
|
||||
oFileInfo = New FileInfo(sFile)
|
||||
dFileSize = oFileInfo.Length
|
||||
Catch ex As Exception
|
||||
'Do Nothing
|
||||
End Try
|
||||
|
||||
Return dFileSize
|
||||
End Function
|
||||
|
||||
Public Shared Function RemoveSyncField(ByVal eSyncFields As clsGame.eOptionalSyncFields, ByVal eSyncField As clsGame.eOptionalSyncFields) As clsGame.eOptionalSyncFields
|
||||
Return eSyncFields And (Not eSyncField)
|
||||
Public Shared Function WildcardToRegex(ByVal sPattern As String) As String
|
||||
Dim sRegEx As String
|
||||
sRegEx = sPattern.Replace("*", ".*")
|
||||
sRegEx = sRegEx.Replace("?", ".")
|
||||
Return sRegEx
|
||||
End Function
|
||||
|
||||
Public Shared Function CompareValueToArrayRegEx(ByVal sValue As String, ByVal sValues As String()) As Boolean
|
||||
For Each se As String In sValues
|
||||
If Regex.IsMatch(sValue, WildcardToRegex(se)) Then
|
||||
Return True
|
||||
End If
|
||||
Next
|
||||
Return False
|
||||
End Function
|
||||
|
||||
'Calculate the current size of a folder
|
||||
Public Shared Function GetFolderSize(ByVal sPath As String, ByVal sInclude As String(), ByVal sExclude As String()) As Long
|
||||
Dim oFolder As DirectoryInfo
|
||||
Dim bInclude As Boolean
|
||||
Dim bExclude As Boolean
|
||||
Dim lSize As Long = 0
|
||||
|
||||
Try
|
||||
If Not Directory.Exists(sPath) Then Return lSize
|
||||
|
||||
oFolder = New DirectoryInfo(sPath)
|
||||
|
||||
'Files
|
||||
For Each fi As FileInfo In oFolder.EnumerateFiles()
|
||||
If sInclude.Length > 0 Then
|
||||
bInclude = CompareValueToArrayRegEx(fi.Name, sInclude) Or CompareValueToArrayRegEx(Path.GetDirectoryName(sPath), sInclude)
|
||||
Else
|
||||
bInclude = True
|
||||
End If
|
||||
|
||||
If sExclude.Length > 0 Then
|
||||
bExclude = CompareValueToArrayRegEx(fi.Name, sExclude) Or CompareValueToArrayRegEx(Path.GetDirectoryName(sPath), sExclude)
|
||||
Else
|
||||
bExclude = False
|
||||
End If
|
||||
|
||||
If bInclude And Not bExclude Then
|
||||
lSize += fi.Length
|
||||
End If
|
||||
Next
|
||||
|
||||
'Sub Folders
|
||||
For Each di As DirectoryInfo In oFolder.EnumerateDirectories()
|
||||
If Not ((di.Attributes And FileAttributes.ReparsePoint) = FileAttributes.ReparsePoint) Then
|
||||
If sExclude.Length > 0 Then
|
||||
bExclude = CompareValueToArrayRegEx(di.Name, sExclude)
|
||||
Else
|
||||
bExclude = False
|
||||
End If
|
||||
If Not bExclude Then
|
||||
lSize += GetFolderSize(di.FullName, sInclude, sExclude)
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
Catch
|
||||
'Do Nothing
|
||||
End Try
|
||||
|
||||
Return lSize
|
||||
End Function
|
||||
|
||||
'Format Disk Space Amounts
|
||||
Public Shared Function FormatDiskSpace(ByVal lSize As Long)
|
||||
|
||||
Select Case lSize
|
||||
Case >= 1125899906842624
|
||||
Return FormatString(mgrCommon_PB, Math.Round(lSize / 1125899906842624, 2))
|
||||
Case >= 1099511627776
|
||||
Return FormatString(mgrCommon_TB, Math.Round(lSize / 1099511627776, 2))
|
||||
Case >= 1073741824
|
||||
Return FormatString(mgrCommon_GB, Math.Round(lSize / 1073741824, 2))
|
||||
Case >= 1048576
|
||||
Return FormatString(mgrCommon_MB, Math.Round(lSize / 1048576, 2))
|
||||
Case >= 1024
|
||||
Return FormatString(mgrCommon_KB, Math.Round(lSize / 1024, 2))
|
||||
Case >= 0
|
||||
Return FormatString(mgrCommon_B, lSize)
|
||||
End Select
|
||||
|
||||
Return lSize
|
||||
End Function
|
||||
|
||||
'Get available disk space on a drive (Unix)
|
||||
Private Shared Function GetAvailableDiskSpaceUnix(ByVal sPath As String) As Long
|
||||
Dim prsdf As Process
|
||||
Dim sOutput As String
|
||||
Dim sAvailableSpace As String
|
||||
Try
|
||||
prsdf = New Process
|
||||
prsdf.StartInfo.FileName = "/bin/df"
|
||||
prsdf.StartInfo.Arguments = sPath
|
||||
prsdf.StartInfo.UseShellExecute = False
|
||||
prsdf.StartInfo.RedirectStandardOutput = True
|
||||
prsdf.StartInfo.CreateNoWindow = True
|
||||
prsdf.Start()
|
||||
sOutput = prsdf.StandardOutput.ReadToEnd
|
||||
'Parse df output to grab "Available" value
|
||||
sAvailableSpace = sOutput.Split(vbLf)(1).Split(New Char() {" "}, StringSplitOptions.RemoveEmptyEntries)(3)
|
||||
'Return value in bytes
|
||||
Return CLng(sAvailableSpace) * 1024
|
||||
Catch
|
||||
Return 0
|
||||
End Try
|
||||
End Function
|
||||
|
||||
'Get available disk space on a drive (Windows)
|
||||
Private Shared Function GetAvailableDiskSpaceWindows(ByVal sPath As String) As Long
|
||||
Dim oDrive As DriveInfo
|
||||
Dim lAvailableSpace As Long = 0
|
||||
Try
|
||||
oDrive = New DriveInfo(Path.GetPathRoot(sPath))
|
||||
lAvailableSpace = oDrive.AvailableFreeSpace
|
||||
Catch
|
||||
'Do Nothing
|
||||
End Try
|
||||
Return lAvailableSpace
|
||||
End Function
|
||||
|
||||
'Get available disk space on a drive
|
||||
Public Shared Function GetAvailableDiskSpace(ByVal sPath As String) As Long
|
||||
If IsUnix() Then
|
||||
Return GetAvailableDiskSpaceUnix(sPath)
|
||||
Else
|
||||
Return GetAvailableDiskSpaceWindows(sPath)
|
||||
End If
|
||||
End Function
|
||||
|
||||
'Delete file based on OS type
|
||||
@@ -224,24 +444,6 @@ Public Class mgrCommon
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Get a file size
|
||||
Public Shared Function GetFileSize(ByVal sFile As String) As String
|
||||
Dim oFileInfo As FileInfo
|
||||
Dim dFileSize As Double
|
||||
|
||||
Try
|
||||
oFileInfo = New FileInfo(sFile)
|
||||
dFileSize = oFileInfo.Length
|
||||
If dFileSize > 1048576 Then
|
||||
Return FormatString(App_MB, Math.Round(dFileSize / 1048576, 2).ToString)
|
||||
Else
|
||||
Return FormatString(App_KB, Math.Round(dFileSize / 1024, 2).ToString)
|
||||
End If
|
||||
Catch ex As Exception
|
||||
Return String.Empty
|
||||
End Try
|
||||
End Function
|
||||
|
||||
'Handles no extra parameters
|
||||
Public Shared Function ShowMessage(ByVal sMsg As String, ByVal oType As MsgBoxStyle) As MsgBoxResult
|
||||
Dim oResult As MsgBoxResult
|
||||
|
||||
+108
-47
@@ -1,4 +1,5 @@
|
||||
Imports GBM.My.Resources
|
||||
Imports System.Collections.Specialized
|
||||
Imports System.IO
|
||||
|
||||
Public Class mgrMonitorList
|
||||
@@ -31,6 +32,7 @@ Public Class mgrMonitorList
|
||||
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
||||
oGame.BackupLimit = CInt(dr("BackupLimit"))
|
||||
oGame.CleanFolder = CBool(dr("CleanFolder"))
|
||||
If Not IsDBNull(dr("Parameter")) Then oGame.Parameter = CStr(dr("Parameter"))
|
||||
|
||||
Return oGame
|
||||
End Function
|
||||
@@ -56,6 +58,7 @@ Public Class mgrMonitorList
|
||||
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
||||
hshParams.Add("BackupLimit", oGame.BackupLimit)
|
||||
hshParams.Add("CleanFolder", oGame.CleanFolder)
|
||||
hshParams.Add("Parameter", oGame.Parameter)
|
||||
|
||||
Return hshParams
|
||||
End Function
|
||||
@@ -96,7 +99,7 @@ Public Class mgrMonitorList
|
||||
Dim hshParams As Hashtable
|
||||
|
||||
sSQL = "INSERT INTO monitorlist VALUES (@ID, @Name, @Process, @Path, @AbsolutePath, @FolderSave, @FileType, @TimeStamp, "
|
||||
sSQL &= "@ExcludeList, @ProcessPath, @Icon, @Hours, @Version, @Company, @Enabled, @MonitorOnly, @BackupLimit, @CleanFolder)"
|
||||
sSQL &= "@ExcludeList, @ProcessPath, @Icon, @Hours, @Version, @Company, @Enabled, @MonitorOnly, @BackupLimit, @CleanFolder, @Parameter)"
|
||||
|
||||
'Parameters
|
||||
hshParams = SetCoreParameters(oGame)
|
||||
@@ -112,7 +115,7 @@ Public Class mgrMonitorList
|
||||
|
||||
sSQL = "UPDATE monitorlist SET Name=@Name, Process=@Process, Path=@Path, AbsolutePath=@AbsolutePath, FolderSave=@FolderSave, "
|
||||
sSQL &= "FileType=@FileType, TimeStamp=@TimeStamp, ExcludeList=@ExcludeList, ProcessPath=@ProcessPath, Icon=@Icon, "
|
||||
sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly, BackupLimit=@BackupLimit, CleanFolder=@CleanFolder WHERE MonitorID=@ID"
|
||||
sSQL &= "Hours=@Hours, Version=@Version, Company=@Company, Enabled=@Enabled, MonitorOnly=@MonitorOnly, BackupLimit=@BackupLimit, CleanFolder=@CleanFolder, Parameter=@Parameter WHERE MonitorID=@ID"
|
||||
|
||||
'Parameters
|
||||
hshParams = SetCoreParameters(oGame)
|
||||
@@ -266,6 +269,31 @@ Public Class mgrMonitorList
|
||||
End If
|
||||
End Function
|
||||
|
||||
Public Shared Function DoDuplicateParameterCheck(ByVal sProcess As String, ByVal sParameter As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local, Optional ByVal sExcludeID As String = "") As Boolean
|
||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||
Dim sSQL As String
|
||||
Dim oData As DataSet
|
||||
Dim hshParams As New Hashtable
|
||||
|
||||
sSQL = "SELECT * FROM monitorlist WHERE Process = @Process AND Parameter = @Parameter"
|
||||
|
||||
hshParams.Add("Process", sProcess)
|
||||
hshParams.Add("Parameter", sParameter)
|
||||
|
||||
If sExcludeID <> String.Empty Then
|
||||
sSQL &= " AND MonitorID <> @MonitorID"
|
||||
hshParams.Add("MonitorID", sExcludeID)
|
||||
End If
|
||||
|
||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||
|
||||
If oData.Tables(0).Rows.Count > 0 Then
|
||||
Return True
|
||||
Else
|
||||
Return False
|
||||
End If
|
||||
End Function
|
||||
|
||||
'Sync Functions
|
||||
Public Shared Sub DoListAddUpdateSync(ByVal hshGames As Hashtable, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local,
|
||||
Optional ByVal eSyncFields As clsGame.eOptionalSyncFields = clsGame.eOptionalSyncFields.None)
|
||||
@@ -317,11 +345,11 @@ Public Class mgrMonitorList
|
||||
sVersion = "(SELECT Version FROM monitorlist WHERE MonitorID=@ID)"
|
||||
End If
|
||||
|
||||
sSQL = "INSERT OR REPLACE INTO monitorlist (MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder) "
|
||||
sSQL = "INSERT OR REPLACE INTO monitorlist (MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder, Parameter) "
|
||||
sSQL &= "VALUES (@ID, @Name, @Process, @Path, @AbsolutePath, @FolderSave, @FileType, "
|
||||
sSQL &= sTimeStamp & ", @ExcludeList, " & sGamePath & ", "
|
||||
sSQL &= sIcon & ", @Hours, " & sVersion & ", "
|
||||
sSQL &= sCompany & ", " & sMonitorGame & ", @MonitorOnly, " & sBackupLimit & ",@CleanFolder);"
|
||||
sSQL &= sCompany & ", " & sMonitorGame & ", @MonitorOnly, " & sBackupLimit & ", @CleanFolder, @Parameter);"
|
||||
|
||||
For Each oGame As clsGame In hshGames.Values
|
||||
hshParams = New Hashtable
|
||||
@@ -338,6 +366,7 @@ Public Class mgrMonitorList
|
||||
hshParams.Add("Hours", oGame.Hours)
|
||||
hshParams.Add("MonitorOnly", oGame.MonitorOnly)
|
||||
hshParams.Add("CleanFolder", oGame.CleanFolder)
|
||||
hshParams.Add("Parameter", oGame.Parameter)
|
||||
|
||||
'Optional Parameters
|
||||
If (eSyncFields And clsGame.eOptionalSyncFields.Company) = clsGame.eOptionalSyncFields.Company Then
|
||||
@@ -468,38 +497,25 @@ Public Class mgrMonitorList
|
||||
End Sub
|
||||
|
||||
'Filter Functions
|
||||
Private Shared Function BuildFilterQuery(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, eFilterType As frmFilter.eFilterType, ByRef hshParams As Hashtable) As String
|
||||
Private Shared Function BuildFilterQuery(ByVal oTagFilters As List(Of clsTag), ByVal oFilters As List(Of clsGameFilter), ByVal eFilterType As frmFilter.eFilterType, ByVal bAndOperator As Boolean,
|
||||
ByVal bSortAsc As Boolean, ByVal sSortField As String, ByRef hshParams As Hashtable) As String
|
||||
Dim sSQL As String = String.Empty
|
||||
Dim iCounter As Integer = 0
|
||||
Dim sBaseSelect As String = "MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder, Parameter FROM monitorlist"
|
||||
Dim sSort As String = " ORDER BY " & sSortField
|
||||
|
||||
If bSortAsc Then
|
||||
sSort &= " ASC"
|
||||
Else
|
||||
sSort &= " DESC"
|
||||
End If
|
||||
|
||||
Select Case eFilterType
|
||||
Case frmFilter.eFilterType.NoFilter
|
||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist ORDER BY Name Asc"
|
||||
Case frmFilter.eFilterType.FieldAnd, frmFilter.eFilterType.FieldOr
|
||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist"
|
||||
|
||||
If hshStringFilters.Count > 0 Then
|
||||
sSQL &= " WHERE ("
|
||||
For Each de As DictionaryEntry In hshStringFilters
|
||||
sSQL &= de.Key & " LIKE @" & de.Key
|
||||
hshParams.Add(de.Key, "%" & de.Value.ToString & "%")
|
||||
iCounter += 1
|
||||
If iCounter <> hshStringFilters.Count Then
|
||||
Select Case eFilterType
|
||||
Case frmFilter.eFilterType.FieldAnd
|
||||
sSQL &= " AND "
|
||||
Case frmFilter.eFilterType.FieldOr
|
||||
sSQL &= " OR "
|
||||
End Select
|
||||
End If
|
||||
|
||||
Next
|
||||
sSQL &= ")"
|
||||
End If
|
||||
sSQL &= " ORDER BY Name Asc"
|
||||
Case frmFilter.eFilterType.BaseFilter
|
||||
sSQL = "SELECT " & sBaseSelect
|
||||
Case frmFilter.eFilterType.AnyTag
|
||||
sSQL = "SELECT DISTINCT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist "
|
||||
sSQL &= "NATURAL JOIN gametags WHERE gametags.TagID IN ("
|
||||
sSQL = "SELECT DISTINCT " & sBaseSelect
|
||||
sSQL &= " NATURAL JOIN gametags WHERE gametags.TagID IN ("
|
||||
|
||||
For Each oTag As clsTag In oTagFilters
|
||||
sSQL &= "@TagID" & iCounter & ","
|
||||
@@ -508,9 +524,9 @@ Public Class mgrMonitorList
|
||||
Next
|
||||
|
||||
sSQL = sSQL.TrimEnd(",")
|
||||
sSQL &= ") ORDER BY Name Asc"
|
||||
sSQL &= ")"
|
||||
Case frmFilter.eFilterType.AllTags
|
||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist WHERE MonitorID IN "
|
||||
sSQL = "SELECT " & sBaseSelect & " WHERE MonitorID IN "
|
||||
|
||||
For Each oTag As clsTag In oTagFilters
|
||||
sSQL &= "(SELECT MonitorID FROM gametags WHERE monitorlist.MonitorID = gametags.MonitorID And TagID = @TagID" & iCounter & ")"
|
||||
@@ -520,41 +536,78 @@ Public Class mgrMonitorList
|
||||
hshParams.Add("TagID" & iCounter, oTag.ID)
|
||||
iCounter += 1
|
||||
Next
|
||||
|
||||
sSQL &= " ORDER BY Name Asc"
|
||||
Case frmFilter.eFilterType.NoTags
|
||||
sSQL = "SELECT MonitorID, Name, Process, Path, AbsolutePath, FolderSave, FileType, TimeStamp, ExcludeList, ProcessPath, Icon, Hours, Version, Company, Enabled, MonitorOnly, BackupLimit, CleanFolder FROM monitorlist WHERE MonitorID NOT IN (SELECT MonitorID FROM gametags) ORDER BY Name Asc"
|
||||
sSQL = "SELECT " & sBaseSelect & " WHERE MonitorID NOT IN (SELECT MonitorID FROM gametags)"
|
||||
End Select
|
||||
|
||||
'Handle Other Filters
|
||||
If oFilters.Count > 0 Then
|
||||
If eFilterType = frmFilter.eFilterType.BaseFilter Then
|
||||
sSQL &= " WHERE ("
|
||||
Else
|
||||
sSQL &= " AND ("
|
||||
End If
|
||||
|
||||
iCounter = 0
|
||||
For Each oFilter As clsGameFilter In oFilters
|
||||
Select Case oFilter.Field.Type
|
||||
Case clsGameFilterField.eDataType.fString
|
||||
sSQL &= oFilter.Field.FieldName & " LIKE @" & oFilter.ID
|
||||
hshParams.Add(oFilter.ID, "%" & oFilter.Data & "%")
|
||||
Case clsGameFilterField.eDataType.fNumeric
|
||||
sSQL &= oFilter.Field.FieldName & " " & oFilter.NumericOperatorAsString & " @" & oFilter.ID
|
||||
hshParams.Add(oFilter.ID, oFilter.Data)
|
||||
Case clsGameFilterField.eDataType.fBool
|
||||
sSQL &= oFilter.Field.FieldName & " = @" & oFilter.ID
|
||||
hshParams.Add(oFilter.ID, oFilter.Data)
|
||||
End Select
|
||||
|
||||
iCounter += 1
|
||||
If iCounter <> oFilters.Count Then
|
||||
If bAndOperator Then
|
||||
sSQL &= " AND "
|
||||
Else
|
||||
sSQL &= " OR "
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
sSQL &= ")"
|
||||
End If
|
||||
|
||||
'Handle Sorting
|
||||
sSQL &= sSort
|
||||
|
||||
Return sSQL
|
||||
|
||||
End Function
|
||||
|
||||
Public Shared Function ReadFilteredList(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, eFilterType As frmFilter.eFilterType, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As Hashtable
|
||||
Public Shared Function ReadFilteredList(ByVal oTagFilters As List(Of clsTag), ByVal oFilters As List(Of clsGameFilter), ByVal eFilterType As frmFilter.eFilterType, ByVal bAndOperator As Boolean,
|
||||
ByVal bSortAsc As Boolean, ByVal sSortField As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As OrderedDictionary
|
||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||
Dim oData As DataSet
|
||||
Dim sSQL As String = String.Empty
|
||||
Dim hshList As New Hashtable
|
||||
Dim oList As New OrderedDictionary
|
||||
Dim oGame As clsGame
|
||||
Dim hshParams As New Hashtable
|
||||
Dim iCounter As Integer = 0
|
||||
|
||||
sSQL = BuildFilterQuery(oTagFilters, hshStringFilters, eFilterType, hshParams)
|
||||
sSQL = BuildFilterQuery(oTagFilters, oFilters, eFilterType, bAndOperator, bSortAsc, sSortField, hshParams)
|
||||
|
||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||
|
||||
For Each dr As DataRow In oData.Tables(0).Rows
|
||||
oGame = MapToObject(dr)
|
||||
|
||||
hshList.Add(oGame.ID, oGame)
|
||||
oList.Add(oGame.ID, oGame)
|
||||
Next
|
||||
|
||||
Return hshList
|
||||
Return oList
|
||||
End Function
|
||||
|
||||
|
||||
'Import / Export Functions
|
||||
Public Shared Function ReadListForExport(ByVal oTagFilters As List(Of clsTag), ByVal hshStringFilters As Hashtable, ByVal eFilterType As frmFilter.eFilterType, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As List(Of Game)
|
||||
Public Shared Function ReadListForExport(ByVal oTagFilters As List(Of clsTag), ByVal oFilters As List(Of clsGameFilter), ByVal eFilterType As frmFilter.eFilterType, ByVal bAndOperator As Boolean,
|
||||
ByVal bSortAsc As Boolean, ByVal sSortField As String, Optional ByVal iSelectDB As mgrSQLite.Database = mgrSQLite.Database.Local) As List(Of Game)
|
||||
Dim oDatabase As New mgrSQLite(iSelectDB)
|
||||
Dim oData As DataSet
|
||||
Dim sSQL As String = String.Empty
|
||||
@@ -563,7 +616,7 @@ Public Class mgrMonitorList
|
||||
Dim oGame As Game
|
||||
Dim hshParams As New Hashtable
|
||||
|
||||
sSQL = BuildFilterQuery(oTagFilters, hshStringFilters, eFilterType, hshParams)
|
||||
sSQL = BuildFilterQuery(oTagFilters, oFilters, eFilterType, bAndOperator, bSortAsc, sSortField, hshParams)
|
||||
|
||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||
|
||||
@@ -577,6 +630,8 @@ Public Class mgrMonitorList
|
||||
oGame.FolderSave = CBool(dr("FolderSave"))
|
||||
If Not IsDBNull(dr("FileType")) Then oGame.FileType = CStr(dr("FileType"))
|
||||
If Not IsDBNull(dr("ExcludeList")) Then oGame.ExcludeList = CStr(dr("ExcludeList"))
|
||||
oGame.MonitorOnly = CBool(dr("MonitorOnly"))
|
||||
If Not IsDBNull(dr("Parameter")) Then oGame.Parameter = CStr(dr("Parameter"))
|
||||
oGame.Tags = mgrGameTags.GetTagsByGameForExport(sID)
|
||||
oList.Add(oGame)
|
||||
Next
|
||||
@@ -655,18 +710,24 @@ Public Class mgrMonitorList
|
||||
Dim oList As List(Of Game)
|
||||
Dim bSuccess As Boolean = False
|
||||
Dim oTagFilters As New List(Of clsTag)
|
||||
Dim oStringFilters As New Hashtable
|
||||
Dim eCurrentFilter As frmFilter.eFilterType = frmFilter.eFilterType.NoFilter
|
||||
Dim oFilters As New List(Of clsGameFilter)
|
||||
Dim eCurrentFilter As frmFilter.eFilterType = frmFilter.eFilterType.BaseFilter
|
||||
Dim bAndOperator As Boolean = True
|
||||
Dim bSortAsc As Boolean = True
|
||||
Dim sSortField As String = "Name"
|
||||
|
||||
If mgrCommon.ShowMessage(mgrMonitorList_ConfirmApplyFilter, MsgBoxStyle.YesNo) = MsgBoxResult.Yes Then
|
||||
Dim frm As New frmFilter
|
||||
frm.ShowDialog()
|
||||
oTagFilters = frm.TagFilters
|
||||
oStringFilters = frm.StringFilters
|
||||
oFilters = frm.GameFilters
|
||||
eCurrentFilter = frm.FilterType
|
||||
bAndOperator = frm.AndOperator
|
||||
bSortAsc = frm.SortAsc
|
||||
sSortField = frm.SortField
|
||||
End If
|
||||
|
||||
oList = ReadListForExport(oTagFilters, oStringFilters, eCurrentFilter)
|
||||
oList = ReadListForExport(oTagFilters, oFilters, eCurrentFilter, bAndOperator, bSortAsc, sSortField)
|
||||
|
||||
bSuccess = mgrXML.SerializeAndExport(oList, sLocation)
|
||||
|
||||
|
||||
@@ -335,7 +335,7 @@ Public Class mgrPath
|
||||
Dim sDefaultFolder As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)
|
||||
Dim sNewPath As String
|
||||
|
||||
sNewPath = mgrCommon.OpenFolderBrowser(mgrPath_ChoosePath, sDefaultFolder, False)
|
||||
sNewPath = mgrCommon.OpenFolderBrowser("Manual_Game_Location", mgrPath_ChoosePath, sDefaultFolder, False)
|
||||
|
||||
Return sNewPath
|
||||
End Function
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
Imports System.Diagnostics
|
||||
Imports System.IO
|
||||
Imports System.Threading
|
||||
Imports System.IO
|
||||
Imports System.Management
|
||||
|
||||
Public Class mgrProcesses
|
||||
|
||||
@@ -11,6 +10,7 @@ Public Class mgrProcesses
|
||||
Private oDuplicateGames As New ArrayList
|
||||
Private bDuplicates As Boolean
|
||||
Private bVerified As Boolean = False
|
||||
Private sFullCommand As String = String.Empty
|
||||
|
||||
Property FoundProcess As Process
|
||||
Get
|
||||
@@ -72,17 +72,63 @@ Public Class mgrProcesses
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Sub VerifyDuplicate(oGame As clsGame, hshScanList As Hashtable)
|
||||
Property FullCommand As String
|
||||
Get
|
||||
Return sFullCommand
|
||||
End Get
|
||||
Set(value As String)
|
||||
sFullCommand = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Function HandleDuplicates(hshScanList As Hashtable) As Boolean
|
||||
Dim sProcess As String
|
||||
bDuplicates = True
|
||||
oDuplicateGames.Clear()
|
||||
|
||||
For Each o As clsGame In hshScanList.Values
|
||||
sProcess = o.ProcessName.Split(":")(0)
|
||||
|
||||
If o.Duplicate = True And sProcess = oGame.TrueProcess Then
|
||||
oDuplicateGames.Add(o.ShallowCopy)
|
||||
If o.Parameter <> String.Empty And FullCommand.Contains(o.Parameter) Then
|
||||
oGame = o.ShallowCopy
|
||||
Return True
|
||||
ElseIf o.Parameter = String.Empty Then
|
||||
oDuplicateGames.Add(o.ShallowCopy)
|
||||
End If
|
||||
End If
|
||||
Next
|
||||
|
||||
If oDuplicateGames.Count = 1 Then
|
||||
oGame = DirectCast(oDuplicateGames(0), clsGame).ShallowCopy
|
||||
Return True
|
||||
End If
|
||||
|
||||
Return False
|
||||
End Function
|
||||
|
||||
'This function will only work correctly on Windows
|
||||
Private Sub GetWindowsCommand(ByVal prs As Process)
|
||||
FullCommand = String.Empty
|
||||
Try
|
||||
Using searcher As New ManagementObjectSearcher("SELECT CommandLine FROM Win32_Process WHERE ProcessId = " + prs.Id.ToString)
|
||||
For Each o As ManagementObject In searcher.Get()
|
||||
FullCommand &= o("CommandLine") & " "
|
||||
Next
|
||||
End Using
|
||||
Catch ex As Exception
|
||||
'Do Nothing
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'This function will only work correctly on Unix
|
||||
Private Sub GetUnixCommand(ByVal prs As Process)
|
||||
FullCommand = String.Empty
|
||||
Try
|
||||
FullCommand = File.ReadAllText("/proc/" & prs.Id.ToString() & "/cmdline").Replace(vbNullChar, " ")
|
||||
Catch ex As Exception
|
||||
'Do Nothing
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'This function will only work correctly on Unix
|
||||
@@ -99,19 +145,18 @@ Public Class mgrProcesses
|
||||
'This function will only work correctly on Unix
|
||||
Private Function GetUnixSymLinkDirectory(ByVal prs As Process) As String
|
||||
Dim prsls As Process
|
||||
Dim slsinfo As String()
|
||||
Dim slsinfo As String
|
||||
|
||||
'This is the best way I can think of to determine the end point of a symlink without doing even more crazy shit
|
||||
Try
|
||||
prsls = New Process
|
||||
prsls.StartInfo.FileName = "/bin/bash"
|
||||
prsls.StartInfo.Arguments = "-c ""ls -l /proc/" & prs.Id.ToString & " | grep cwd"""
|
||||
prsls.StartInfo.FileName = "/bin/readlink"
|
||||
prsls.StartInfo.Arguments = "-f /proc/" & prs.Id.ToString & "/cwd"
|
||||
prsls.StartInfo.UseShellExecute = False
|
||||
prsls.StartInfo.RedirectStandardOutput = True
|
||||
prsls.StartInfo.CreateNoWindow = True
|
||||
prsls.Start()
|
||||
slsinfo = prsls.StandardOutput.ReadToEnd().Split(">")
|
||||
Return slsinfo(slsinfo.Length - 1).Trim
|
||||
slsinfo = prsls.StandardOutput.ReadToEnd()
|
||||
Return slsinfo.Trim()
|
||||
Catch ex As Exception
|
||||
Return String.Empty
|
||||
End Try
|
||||
@@ -153,13 +198,26 @@ Public Class mgrProcesses
|
||||
prsFoundProcess = prsCurrent
|
||||
oGame = DirectCast(hshScanList.Item(sProcessCheck), clsGame).ShallowCopy
|
||||
|
||||
If mgrCommon.IsUnix Then
|
||||
GetUnixCommand(prsCurrent)
|
||||
Else
|
||||
GetWindowsCommand(prsCurrent)
|
||||
End If
|
||||
|
||||
If oGame.Duplicate = True Then
|
||||
VerifyDuplicate(oGame, hshScanList)
|
||||
If HandleDuplicates(hshScanList) Then
|
||||
bDuplicates = False
|
||||
oDuplicateGames.Clear()
|
||||
End If
|
||||
Else
|
||||
bDuplicates = False
|
||||
oDuplicateGames.Clear()
|
||||
End If
|
||||
|
||||
If Duplicate And DuplicateList.Count = 0 Then Return False
|
||||
|
||||
If oGame.Parameter <> String.Empty And Not Duplicate And Not FullCommand.Contains(oGame.Parameter) Then Return False
|
||||
|
||||
If Not oGame.AbsolutePath Or oGame.Duplicate Then
|
||||
Try
|
||||
If Not bWineProcess Then
|
||||
|
||||
@@ -76,11 +76,14 @@ Public Class mgrSQLite
|
||||
"SupressBackup BOOLEAN NOT NULL, SupressBackupThreshold INTEGER NOT NULL, CompressionLevel INTEGER NOT NULL, Custom7zArguments TEXT, " &
|
||||
"Custom7zLocation TEXT, SyncFields INTEGER NOT NULL, AutoSaveLog BOOLEAN NOT NULL, AutoRestore BOOLEAN NOT NULL, AutoMark BOOLEAN NOT NULL);"
|
||||
|
||||
'Add Tables (SavedPath)
|
||||
sSql &= "CREATE TABLE savedpath (PathName TEXT NOT NULL PRIMARY KEY, Path TEXT NOT NULL);"
|
||||
|
||||
'Add Tables (Monitor List)
|
||||
sSql &= "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
||||
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
||||
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, PRIMARY KEY(Name, Process));"
|
||||
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, PRIMARY KEY(Name, Process));"
|
||||
|
||||
'Add Tables (Tags)
|
||||
sSql &= "CREATE TABLE tags (TagID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL PRIMARY KEY); "
|
||||
@@ -117,7 +120,7 @@ Public Class mgrSQLite
|
||||
sSql = "CREATE TABLE monitorlist (MonitorID TEXT NOT NULL UNIQUE, Name TEXT NOT NULL, Process TEXT NOT NULL, Path TEXT, " &
|
||||
"AbsolutePath BOOLEAN NOT NULL, FolderSave BOOLEAN NOT NULL, FileType TEXT, TimeStamp BOOLEAN NOT NULL, ExcludeList TEXT NOT NULL, " &
|
||||
"ProcessPath TEXT, Icon TEXT, Hours REAL, Version TEXT, Company TEXT, Enabled BOOLEAN NOT NULL, MonitorOnly BOOLEAN NOT NULL, " &
|
||||
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, PRIMARY KEY(Name, Process));"
|
||||
"BackupLimit INTEGER NOT NULL, CleanFolder BOOLEAN NOT NULL, Parameter TEXT, PRIMARY KEY(Name, Process));"
|
||||
|
||||
'Add Tables (Remote Manifest)
|
||||
sSql &= "CREATE TABLE manifest (ManifestID TEXT NOT NULL PRIMARY KEY, Name TEXT NOT NULL, FileName TEXT NOT NULL, RestorePath TEXT NOT NULL, " &
|
||||
@@ -167,6 +170,15 @@ Public Class mgrSQLite
|
||||
db.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub RollBack(ByRef trans As SqliteTransaction)
|
||||
Try
|
||||
trans.Rollback()
|
||||
Catch
|
||||
'SQLite may or may not perform an auto-rollback when certain failures occur, such as disk full or out of memory.
|
||||
'Multiple rollbacks will cause an exception, therefore lets just do nothing when that happens.
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
Private Sub BuildParams(ByRef command As SqliteCommand, ByRef hshParams As Hashtable)
|
||||
For Each de As DictionaryEntry In hshParams
|
||||
command.Parameters.AddWithValue(de.Key, de.Value)
|
||||
@@ -186,7 +198,7 @@ Public Class mgrSQLite
|
||||
command.ExecuteNonQuery()
|
||||
trans.Commit()
|
||||
Catch ex As Exception
|
||||
trans.Rollback()
|
||||
RollBack(trans)
|
||||
mgrCommon.ShowMessage(mgrSQLite_ErrorQueryFailure, New String() {sSQL, ex.Message}, MsgBoxStyle.Exclamation)
|
||||
Return False
|
||||
Finally
|
||||
@@ -212,7 +224,7 @@ Public Class mgrSQLite
|
||||
Next
|
||||
trans.Commit()
|
||||
Catch ex As Exception
|
||||
trans.Rollback()
|
||||
RollBack(trans)
|
||||
mgrCommon.ShowMessage(mgrSQLite_ErrorQueryFailure, New String() {sSQL, ex.Message}, MsgBoxStyle.Exclamation)
|
||||
Return False
|
||||
Finally
|
||||
@@ -639,6 +651,35 @@ Public Class mgrSQLite
|
||||
End If
|
||||
End If
|
||||
|
||||
'1.02 Upgrade
|
||||
If GetDatabaseVersion() < 102 Then
|
||||
If eDatabase = Database.Local Then
|
||||
'Backup DB before starting
|
||||
BackupDB("v101")
|
||||
|
||||
'Add Table (SavedPath)
|
||||
sSQL = "CREATE TABLE savedpath (PathName TEXT NOT NULL PRIMARY KEY, Path TEXT NOT NULL);"
|
||||
|
||||
'Add new field(s)
|
||||
sSQL &= "ALTER TABLE monitorlist ADD COLUMN Parameter TEXT;"
|
||||
|
||||
sSQL &= "PRAGMA user_version=102"
|
||||
|
||||
RunParamQuery(sSQL, New Hashtable)
|
||||
End If
|
||||
If eDatabase = Database.Remote Then
|
||||
'Backup DB before starting
|
||||
BackupDB("v101")
|
||||
|
||||
'Add new field(s)
|
||||
sSQL = "ALTER TABLE monitorlist ADD COLUMN Parameter TEXT;"
|
||||
|
||||
sSQL &= "PRAGMA user_version=102"
|
||||
|
||||
RunParamQuery(sSQL, New Hashtable)
|
||||
End If
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Public Function GetDBSize() As Long
|
||||
@@ -646,6 +687,10 @@ Public Class mgrSQLite
|
||||
Return Math.Round(oFileInfo.Length / 1024, 2)
|
||||
End Function
|
||||
|
||||
Public Function ReportVersion() As String
|
||||
Return SqliteConnection.SQLiteVersion
|
||||
End Function
|
||||
|
||||
Public Sub CompactDatabase()
|
||||
Dim sSQL As String
|
||||
Dim command As SQLiteCommand
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
Public Class mgrSavedPath
|
||||
|
||||
|
||||
Private Shared Function MapToObject(ByVal dr As DataRow) As clsSavedPath
|
||||
Dim oSavedPath As New clsSavedPath
|
||||
|
||||
oSavedPath.PathName = CStr(dr("PathName"))
|
||||
oSavedPath.Path = CStr(dr("Path"))
|
||||
|
||||
Return oSavedPath
|
||||
End Function
|
||||
|
||||
Private Shared Function SetCoreParameters(ByVal oSavedPath As clsSavedPath) As Hashtable
|
||||
Dim hshParams As New Hashtable
|
||||
|
||||
hshParams.Add("PathName", oSavedPath.PathName)
|
||||
hshParams.Add("Path", oSavedPath.Path)
|
||||
|
||||
Return hshParams
|
||||
End Function
|
||||
|
||||
Public Shared Function GetPathByName(ByVal sPathName As String) As clsSavedPath
|
||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||
Dim oData As DataSet
|
||||
Dim sSQL As String
|
||||
Dim hshParams As New Hashtable
|
||||
Dim oSavedPath As New clsSavedPath
|
||||
|
||||
sSQL = "SELECT PathName, Path from savedpath WHERE PathName=@PathName;"
|
||||
|
||||
hshParams.Add("PathName", sPathName)
|
||||
|
||||
oData = oDatabase.ReadParamData(sSQL, hshParams)
|
||||
|
||||
For Each dr As DataRow In oData.Tables(0).Rows
|
||||
oSavedPath = MapToObject(dr)
|
||||
Next
|
||||
|
||||
Return oSavedPath
|
||||
End Function
|
||||
|
||||
Public Shared Sub AddUpdatePath(ByVal oSavedPath As clsSavedPath)
|
||||
Dim oDatabase As New mgrSQLite(mgrSQLite.Database.Local)
|
||||
Dim sSQL As String
|
||||
Dim hshParams As Hashtable
|
||||
|
||||
sSQL = "INSERT OR REPLACE INTO savedpath (PathName, Path) VALUES (@PathName, @Path);"
|
||||
|
||||
hshParams = SetCoreParameters(oSavedPath)
|
||||
|
||||
oDatabase.RunParamQuery(sSQL, hshParams)
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
@@ -28,6 +28,8 @@ Public Class mgrXML
|
||||
oGame.FolderSave = g.FolderSave
|
||||
oGame.FileType = g.FileType
|
||||
oGame.ExcludeList = g.ExcludeList
|
||||
oGame.MonitorOnly = g.MonitorOnly
|
||||
oGame.Parameter = g.Parameter
|
||||
For Each t As Tag In g.Tags
|
||||
oGame.ImportTags.Add(t)
|
||||
Next
|
||||
|
||||
@@ -14,7 +14,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyDescription("Game Backup Monitor")>
|
||||
<Assembly: AssemblyCompany("Michael J. Seiferling")>
|
||||
<Assembly: AssemblyProduct("Game Backup Monitor")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2016 Michael J. Seiferling")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2017 Michael J. Seiferling")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
|
||||
' by using the '*' as shown below:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.1.*")>
|
||||
<Assembly: AssemblyFileVersion("1.0.1.0")>
|
||||
<Assembly: AssemblyVersion("1.0.4.*")>
|
||||
<Assembly: AssemblyFileVersion("1.0.4.0")>
|
||||
|
||||
<Assembly: NeutralResourcesLanguageAttribute("en")>
|
||||
Generated
+423
-54
@@ -78,6 +78,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to GBM is busy with an open window on your desktop..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property App_ErrorFocus() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("App_ErrorFocus", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to This function is currently not available on a Unix based operating system..
|
||||
'''</summary>
|
||||
@@ -96,24 +105,6 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] KB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property App_KB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("App_KB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] MB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property App_MB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("App_MB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Backup Monitor.
|
||||
'''</summary>
|
||||
@@ -933,6 +924,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Add.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_btnAddFilter() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_btnAddFilter", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to &OK.
|
||||
'''</summary>
|
||||
@@ -951,6 +951,204 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Remove.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_btnRemoveFilter() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_btnRemoveFilter", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Disabled.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_cboBoolFilterDisabled() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_cboBoolFilterDisabled", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Enabled.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_cboBoolFilterEnabled() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_cboBoolFilterEnabled", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Information.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_chkGameInfo() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_chkGameInfo", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Tag.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_chkTag() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_chkTag", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Backup Limit *.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldBackupLimit() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldBackupLimit", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Delete Folder on Restore.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldCleanFolder() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldCleanFolder", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Company.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldCompany() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldCompany", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Monitor Game.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldEnabled() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldEnabled", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Exclude Items.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldExcludeList() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldExcludeList", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Include Items.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldFileType() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldFileType", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Save Entire Folder.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldFolderSave() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldFolderSave", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Hours.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldHours() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldHours", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Icon.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldIcon() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldIcon", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Monitor Only.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldMonitorOnly() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldMonitorOnly", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Name.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldName() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldName", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Parameter.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldParameter() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldParameter", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Save Path *.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldPath() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldPath", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Process.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldProcess() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldProcess", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Path.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldProcessPath() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldProcessPath", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Save Multiple Backups.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldTimeStamp() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldTimeStamp", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Version.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_FieldVersion() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_FieldVersion", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Custom Filter.
|
||||
'''</summary>
|
||||
@@ -961,11 +1159,29 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Options.
|
||||
''' Looks up a localized string similar to Filter Type.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_grpGameInfoOptions() As String
|
||||
Friend ReadOnly Property frmFilter_grpFilterType() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_grpGameInfoOptions", resourceCulture)
|
||||
Return ResourceManager.GetString("frmFilter_grpFilterType", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Sorting.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_grpSorting() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_grpSorting", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Sort Options.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_grpSortOptions() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_grpSortOptions", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@@ -979,11 +1195,29 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Company:.
|
||||
''' Looks up a localized string similar to Current Filters.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lblCompany() As String
|
||||
Friend ReadOnly Property frmFilter_lblCurrentFilters() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lblCompany", resourceCulture)
|
||||
Return ResourceManager.GetString("frmFilter_lblCurrentFilters", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Available Fields.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lblFields() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lblFields", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Filter.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lblFilterData() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lblFilterData", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@@ -997,20 +1231,11 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Name:.
|
||||
''' Looks up a localized string similar to Available Fields.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lblName() As String
|
||||
Friend ReadOnly Property frmFilter_lblSortsFields() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lblName", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Process:.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lblProcess() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lblProcess", resourceCulture)
|
||||
Return ResourceManager.GetString("frmFilter_lblSortsFields", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@@ -1023,6 +1248,24 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to * Indicates a field that may give unexpected results..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lblWarning() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lblWarning", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to contains.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_lstFilterContains() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_lstFilterContains", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to All Tags.
|
||||
'''</summary>
|
||||
@@ -1033,7 +1276,7 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to And.
|
||||
''' Looks up a localized string similar to All.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_optAnd() As String
|
||||
Get
|
||||
@@ -1051,16 +1294,7 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Information.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_optGameInfo() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_optGameInfo", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Or.
|
||||
''' Looks up a localized string similar to Any.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_optOr() As String
|
||||
Get
|
||||
@@ -1069,11 +1303,20 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Tag.
|
||||
''' Looks up a localized string similar to Ascending.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_optTag() As String
|
||||
Friend ReadOnly Property frmFilter_optSortAsc() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_optTag", resourceCulture)
|
||||
Return ResourceManager.GetString("frmFilter_optSortAsc", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Descending.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmFilter_optSortDesc() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmFilter_optSortDesc", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@@ -1653,6 +1896,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to A game with this exact process and parameter already exists..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameManager_ErrorProcessParameterDupe() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameManager_ErrorProcessParameterDupe", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to You must enter a valid game name..
|
||||
'''</summary>
|
||||
@@ -1860,6 +2112,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Parameter:.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmGameManager_lblParameter() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("frmGameManager_lblParameter", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Process:.
|
||||
'''</summary>
|
||||
@@ -2284,7 +2545,7 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details..
|
||||
''' Looks up a localized string similar to Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR]SQLite: [PARAM][BR][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property frmMain_About() As String
|
||||
Get
|
||||
@@ -4456,6 +4717,33 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] backup failed due to a malformed command..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrBackup_7zCommandFailure() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrBackup_7zCommandFailure", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] backup failed due to an error..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrBackup_7zFatalError() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrBackup_7zFatalError", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] backup completed with warnings..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrBackup_7zWarnings() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrBackup_7zWarnings", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] backup completed..
|
||||
'''</summary>
|
||||
@@ -4502,11 +4790,11 @@ Namespace My.Resources
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] backup finished with warnings or errors..
|
||||
''' Looks up a localized string similar to You may not have enough disk space available to perform a backup.[BR][BR]Do you want to continue anyway?.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrBackup_BackupWarnings() As String
|
||||
Friend ReadOnly Property mgrBackup_ConfirmDiskSpace() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrBackup_BackupWarnings", resourceCulture)
|
||||
Return ResourceManager.GetString("mgrBackup_ConfirmDiskSpace", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
@@ -4528,6 +4816,15 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Backup aborted due to lack of disk space..
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrBackup_ErrorDiskSpace() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrBackup_ErrorDiskSpace", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to An error occured creating a file list: [PARAM].
|
||||
'''</summary>
|
||||
@@ -4609,6 +4906,24 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Available Disk Space: [PARAM].
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_AvailableDiskSpace() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_AvailableDiskSpace", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] B.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_B() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_B", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to An error has occured writing the text file.[BR][BR][PARAM].
|
||||
'''</summary>
|
||||
@@ -4627,6 +4942,33 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] GB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_GB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_GB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] KB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_KB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_KB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] MB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_MB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_MB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to No.
|
||||
'''</summary>
|
||||
@@ -4636,6 +4978,33 @@ Namespace My.Resources
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] PB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_PB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_PB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] Save Folder Size: [PARAM].
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_SavedGameFolderSize() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_SavedGameFolderSize", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to [PARAM] TB.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property mgrCommon_TB() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("mgrCommon_TB", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Looks up a localized string similar to Yes.
|
||||
'''</summary>
|
||||
|
||||
+147
-24
@@ -122,7 +122,7 @@
|
||||
<value>..\Resources\Admin.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="frmMain_About" xml:space="preserve">
|
||||
<value>Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details.</value>
|
||||
<value>Game Backup Monitor[BR]Version: [PARAM] ([PARAM])[BR]Build: [PARAM][BR]SQLite: [PARAM][BR][BR][PARAM][BR][BR]This program comes with ABSOLUTELY NO WARRANTY.[BR]This is free software, and you are welcome to redistribute it under certain conditions.[BR][BR]See gpl-3.0.html in the program folder for details.</value>
|
||||
</data>
|
||||
<data name="frmMain_ManifestAreadyClean" xml:space="preserve">
|
||||
<value>The local manifest is clean.</value>
|
||||
@@ -424,12 +424,6 @@
|
||||
<data name="App_ConfirmDirty" xml:space="preserve">
|
||||
<value>There are unsaved changes on this form. Do you want to save?</value>
|
||||
</data>
|
||||
<data name="App_KB" xml:space="preserve">
|
||||
<value>[PARAM] KB</value>
|
||||
</data>
|
||||
<data name="App_MB" xml:space="preserve">
|
||||
<value>[PARAM] MB</value>
|
||||
</data>
|
||||
<data name="frmGameManager_BackupTimeAndName" xml:space="preserve">
|
||||
<value>[PARAM] ([PARAM])</value>
|
||||
</data>
|
||||
@@ -901,18 +895,9 @@
|
||||
<data name="frmFilter_FormName" xml:space="preserve">
|
||||
<value>Custom Filter</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblCompany" xml:space="preserve">
|
||||
<value>Company:</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblGameTags" xml:space="preserve">
|
||||
<value>Current Filter</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblName" xml:space="preserve">
|
||||
<value>Name:</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblProcess" xml:space="preserve">
|
||||
<value>Process:</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblTags" xml:space="preserve">
|
||||
<value>Available Tags</value>
|
||||
</data>
|
||||
@@ -920,18 +905,18 @@
|
||||
<value>All Tags</value>
|
||||
</data>
|
||||
<data name="frmFilter_optAnd" xml:space="preserve">
|
||||
<value>And</value>
|
||||
<value>All</value>
|
||||
</data>
|
||||
<data name="frmFilter_optAny" xml:space="preserve">
|
||||
<value>Any Tag</value>
|
||||
</data>
|
||||
<data name="frmFilter_optGameInfo" xml:space="preserve">
|
||||
<data name="frmFilter_chkGameInfo" xml:space="preserve">
|
||||
<value>Game Information</value>
|
||||
</data>
|
||||
<data name="frmFilter_optOr" xml:space="preserve">
|
||||
<value>Or</value>
|
||||
<value>Any</value>
|
||||
</data>
|
||||
<data name="frmFilter_optTag" xml:space="preserve">
|
||||
<data name="frmFilter_chkTag" xml:space="preserve">
|
||||
<value>Tag</value>
|
||||
</data>
|
||||
<data name="frmGameTags_btnAdd" xml:space="preserve">
|
||||
@@ -1021,8 +1006,8 @@
|
||||
<data name="frmIncludeExclude_ToolTipTitle" xml:space="preserve">
|
||||
<value>Saved Game Explorer</value>
|
||||
</data>
|
||||
<data name="frmFilter_grpGameInfoOptions" xml:space="preserve">
|
||||
<value>Options</value>
|
||||
<data name="frmFilter_grpFilterType" xml:space="preserve">
|
||||
<value>Filter Type</value>
|
||||
</data>
|
||||
<data name="frmFilter_grpTagOptions" xml:space="preserve">
|
||||
<value>Options</value>
|
||||
@@ -1303,8 +1288,8 @@
|
||||
<data name="mgrBackup_BackupInProgress" xml:space="preserve">
|
||||
<value>Backup of [PARAM] in progress...</value>
|
||||
</data>
|
||||
<data name="mgrBackup_BackupWarnings" xml:space="preserve">
|
||||
<value>[PARAM] backup finished with warnings or errors.</value>
|
||||
<data name="mgrBackup_7zWarnings" xml:space="preserve">
|
||||
<value>[PARAM] backup completed with warnings.</value>
|
||||
</data>
|
||||
<data name="mgrBackup_ConfirmManifestConflict" xml:space="preserve">
|
||||
<value>The manifest shows the backup folder contains a backup for [PARAM] that has not been restored on this computer.[BR][BR]Do you want to overwrite this file anyway?</value>
|
||||
@@ -1762,4 +1747,142 @@
|
||||
<data name="frmMain_NoCheckSum" xml:space="preserve">
|
||||
<value>The backup file for [PARAM] has no checksum, it cannot be automatically restored.</value>
|
||||
</data>
|
||||
<data name="mgrBackup_ConfirmDiskSpace" xml:space="preserve">
|
||||
<value>You may not have enough disk space available to perform a backup.[BR][BR]Do you want to continue anyway?</value>
|
||||
</data>
|
||||
<data name="mgrBackup_ErrorDiskSpace" xml:space="preserve">
|
||||
<value>Backup aborted due to lack of disk space.</value>
|
||||
</data>
|
||||
<data name="mgrCommon_AvailableDiskSpace" xml:space="preserve">
|
||||
<value>Available Disk Space: [PARAM]</value>
|
||||
</data>
|
||||
<data name="mgrCommon_GB" xml:space="preserve">
|
||||
<value>[PARAM] GB</value>
|
||||
</data>
|
||||
<data name="mgrCommon_KB" xml:space="preserve">
|
||||
<value>[PARAM] KB</value>
|
||||
</data>
|
||||
<data name="mgrCommon_MB" xml:space="preserve">
|
||||
<value>[PARAM] MB</value>
|
||||
</data>
|
||||
<data name="mgrCommon_PB" xml:space="preserve">
|
||||
<value>[PARAM] PB</value>
|
||||
</data>
|
||||
<data name="mgrCommon_SavedGameFolderSize" xml:space="preserve">
|
||||
<value>[PARAM] Save Folder Size: [PARAM]</value>
|
||||
</data>
|
||||
<data name="mgrCommon_TB" xml:space="preserve">
|
||||
<value>[PARAM] TB</value>
|
||||
</data>
|
||||
<data name="frmGameManager_lblParameter" xml:space="preserve">
|
||||
<value>Parameter:</value>
|
||||
</data>
|
||||
<data name="frmGameManager_ErrorProcessParameterDupe" xml:space="preserve">
|
||||
<value>A game with this exact process and parameter already exists.</value>
|
||||
</data>
|
||||
<data name="mgrCommon_B" xml:space="preserve">
|
||||
<value>[PARAM] B</value>
|
||||
</data>
|
||||
<data name="mgrBackup_7zCommandFailure" xml:space="preserve">
|
||||
<value>[PARAM] backup failed due to a malformed command.</value>
|
||||
</data>
|
||||
<data name="mgrBackup_7zFatalError" xml:space="preserve">
|
||||
<value>[PARAM] backup failed due to an error.</value>
|
||||
</data>
|
||||
<data name="App_ErrorFocus" xml:space="preserve">
|
||||
<value>GBM is busy with an open window on your desktop.</value>
|
||||
</data>
|
||||
<data name="frmFilter_grpSorting" xml:space="preserve">
|
||||
<value>Sorting</value>
|
||||
</data>
|
||||
<data name="frmFilter_optSortAsc" xml:space="preserve">
|
||||
<value>Ascending</value>
|
||||
</data>
|
||||
<data name="frmFilter_optSortDesc" xml:space="preserve">
|
||||
<value>Descending</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldCompany" xml:space="preserve">
|
||||
<value>Company</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldHours" xml:space="preserve">
|
||||
<value>Hours</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldName" xml:space="preserve">
|
||||
<value>Name</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldProcess" xml:space="preserve">
|
||||
<value>Process</value>
|
||||
</data>
|
||||
<data name="frmFilter_btnAddFilter" xml:space="preserve">
|
||||
<value>Add</value>
|
||||
</data>
|
||||
<data name="frmFilter_btnRemoveFilter" xml:space="preserve">
|
||||
<value>Remove</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldParameter" xml:space="preserve">
|
||||
<value>Parameter</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldVersion" xml:space="preserve">
|
||||
<value>Version</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblCurrentFilters" xml:space="preserve">
|
||||
<value>Current Filters</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblFields" xml:space="preserve">
|
||||
<value>Available Fields</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblFilterData" xml:space="preserve">
|
||||
<value>Filter</value>
|
||||
</data>
|
||||
<data name="frmFilter_cboBoolFilterDisabled" xml:space="preserve">
|
||||
<value>Disabled</value>
|
||||
</data>
|
||||
<data name="frmFilter_cboBoolFilterEnabled" xml:space="preserve">
|
||||
<value>Enabled</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldBackupLimit" xml:space="preserve">
|
||||
<value>Backup Limit *</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldCleanFolder" xml:space="preserve">
|
||||
<value>Delete Folder on Restore</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldEnabled" xml:space="preserve">
|
||||
<value>Monitor Game</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldExcludeList" xml:space="preserve">
|
||||
<value>Exclude Items</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldFileType" xml:space="preserve">
|
||||
<value>Include Items</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldFolderSave" xml:space="preserve">
|
||||
<value>Save Entire Folder</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldIcon" xml:space="preserve">
|
||||
<value>Icon</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldMonitorOnly" xml:space="preserve">
|
||||
<value>Monitor Only</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldPath" xml:space="preserve">
|
||||
<value>Save Path *</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldProcessPath" xml:space="preserve">
|
||||
<value>Game Path</value>
|
||||
</data>
|
||||
<data name="frmFilter_FieldTimeStamp" xml:space="preserve">
|
||||
<value>Save Multiple Backups</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblSortsFields" xml:space="preserve">
|
||||
<value>Available Fields</value>
|
||||
</data>
|
||||
<data name="frmFilter_lblWarning" xml:space="preserve">
|
||||
<value>* Indicates a field that may give unexpected results.</value>
|
||||
</data>
|
||||
<data name="frmFilter_lstFilterContains" xml:space="preserve">
|
||||
<value>contains</value>
|
||||
</data>
|
||||
<data name="frmFilter_grpSortOptions" xml:space="preserve">
|
||||
<value>Sort Options</value>
|
||||
</data>
|
||||
</root>
|
||||
+13
-15
@@ -1,22 +1,20 @@
|
||||
Game Backup Monitor v1.01 Readme
|
||||
Game Backup Monitor v1.04 Readme
|
||||
http://mikemaximus.github.io/gbm-web/
|
||||
gamebackupmonitor@gmail.com
|
||||
|
||||
April 1, 2017
|
||||
September 26, 2017
|
||||
|
||||
New in 1.01
|
||||
New in 1.04
|
||||
|
||||
- (All) Added features to automatically handle new backup files.
|
||||
- Automatically restore new backup files when they are detected.
|
||||
- Automatically mark new backup files as restored if the game isn't installed on the current PC.
|
||||
- These new features are available in the "Backup and Restore" section of the Settings. They are optional and disabled by default.
|
||||
- (All) Added new configuration option to delete saved game folder on restore
|
||||
- This option is used for games that change the file names of their saves, which results in a mix of old and new saved games if the old saves aren't deleted first.
|
||||
- This option has limitations and is not part of official configurations or import/export features.
|
||||
- (All) The "Verify backup files with a checksum" option has been removed. This feature is now baked into GBM and cannot be disabled.
|
||||
- (All) GBM will now behave consistently across different configurations (such as LAN) when performing sync operations.
|
||||
- (Windows) Fixed rare issue related to DPI display scaling.
|
||||
|
||||
Read the "Settings" and "The Game Manager" sections of the manual (http://mikemaximus.github.io/gbm-web/manual.html) for more details on how the new features work and their limitations.
|
||||
- (All) The import feature now detects most saved games currently on your PC and automatically selects configurations for you.
|
||||
- (All) The Game Manager's "Custom Filter" feature has received a major overhaul:
|
||||
- More fields are now available for use.
|
||||
- Added the ability to combine different filters.
|
||||
- Added the ability to set a sort field and order.
|
||||
- The current filter is now saved when the Custom Filter window is closed and re-opened.
|
||||
- (All) The "Monitor Only" feature has been updated. This feature allows tracking play time for games that do not require a backup, such as MMOs or CCGs.
|
||||
- The Game Manager now disables and ignores validation on fields that aren't needed for a Monitor Only configuration.
|
||||
- Monitor Only is now included in the XML Import / Export.
|
||||
- Monitor Only configurations may now be included in the official game lists.
|
||||
|
||||
The entire version history of GBM releases is available at http://mikemaximus.github.io/gbm-web/versionhistory.html
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user