forked from whoward69/Sims2Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRepositoryWizardWorker.cs
83 lines (70 loc) · 2.24 KB
/
RepositoryWizardWorker.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* Repository Wizard - a utility for repositorying clothes/objects to another item (also known as master/slave technique)
* - see http://www.picknmixmods.com/Sims2/Notes/RepositoryWizard/RepositoryWizard.html
*
* Sims2Tools - a toolkit for manipulating The Sims 2 DBPF files
*
* William Howard - 2020-2024
*
* Permission granted to use this code in any way, except to claim it as your own or sell it
*/
using System.Data;
using System.Windows.Forms;
namespace RepositoryWizard
{
public class WorkerPackage
{
private readonly string folder;
private readonly bool updateFolders;
private readonly bool updatePackages;
private readonly bool updateResources;
public string Folder => folder;
public bool UpdateFolders => updateFolders;
public bool UpdatePackages => updatePackages;
public bool UpdateResources => updateResources;
public WorkerPackage(string folder, bool updateFolders, bool updatePackages, bool updateResources)
{
this.folder = folder;
this.updateFolders = updateFolders;
this.updatePackages = updatePackages;
this.updateResources = updateResources;
}
}
public interface IWorkerTask
{
// This should only be called on the main UI thread
void DoTask();
}
public class WorkerTreeTask : IWorkerTask
{
private readonly TreeNodeCollection nodes;
private readonly string key;
private readonly string text;
private TreeNode child;
public TreeNode ChildNode => child;
public WorkerTreeTask(TreeNodeCollection nodes, string key, string text)
{
this.nodes = nodes;
this.key = key;
this.text = text;
}
public void DoTask()
{
child = nodes.Add(key, text);
}
}
public class WorkerGridTask : IWorkerTask
{
private readonly DataTable table;
private readonly DataRow row;
public WorkerGridTask(DataTable table, DataRow row)
{
this.table = table;
this.row = row;
}
public void DoTask()
{
table.Rows.Add(row);
}
}
}