File size: 4,429 Bytes
b6a38d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
DefineClass.ModItemFolder = {
	__parents = { "ModItem" },
	properties = {
		{ category = "Mod", id = "_", default = false, editor = "help", help = "<style GedHighlight><center>Alt-Click on mod items to add them to this folder." },
	},
	EditorName = "Folder",
	EditorSubmenu = "",
	EditorView = Untranslated("<ModItemDescription> <color 75 105 198><u(comment)></color>"),
	ContainerClass = "ModItem",
	ContainerAddNewButtonMode = false,
	GedTreeChildren = function (self) return self end,
}

function ModItemFolder:ForEachModItem(classname, fn)
	if not fn then
		fn = classname
		classname = nil
	end
	
	local ret = nil
	if not classname or IsKindOf(self, classname) then ret = fn(self) end
	if ret ~= nil then return ret end
	
	for _, item in ipairs(self) do
		ret = item:ForEachModItem(classname, fn)
		if ret == "break" then
			break
		elseif ret ~= nil then
			return ret
		end
	end
end

function ModItemFolder:EditorItemsMenu()
	-- disallow creating new mod items (into the folder) via the Ged main menu
end

function ModItemFolder:GetDiagnosticMessage()
	-- prevent the folder from "inheriting" errors of its subitems
end

function ModItemFolder:OnAfterEditorNew(parent, ged, is_paste)
	if self.name == "" then
		self.name = "New folder"
	end
	self.mod = parent:IsKindOf("ModDef") and parent or parent:IsKindOf("ModItem") and parent.mod
	assert(self.mod)
end


----- Ged ops

function GedOpAddModItemsToFolder(socket, root, selection)
	if not selection[1] then return end
	local undo_funcs = {}
	
	local path = (selection and selection[1]) or {}
	local min_selected_index = false
	for _, val in ipairs(selection[2]) do
		if not IsKindOf(TreeNodeChildren(ParentNodeByPath(root, path))[val], "ModItem") then
			return "Only Mod Items can be arranged in folders."
		end
		if not min_selected_index or min_selected_index > val then
			min_selected_index = val
		end
	end
	min_selected_index = min_selected_index - 1
	path[#path] = min_selected_index
	
	local folder_name = socket:WaitUserInput("Add Items to Folder", "New folder")
	if not folder_name or folder_name == "" then return end
	
	local new_selection, undo_func = GedOpTreeNewItemInContainer(socket, root, path, "ModItemFolder")
	GetNodeByPath(root, new_selection).name = folder_name
	
	local folder_path = table.copy(selection[1])
	folder_path[#folder_path] = min_selected_index + 1
	table.insert(undo_funcs, undo_func)
	
	local children_count = 1
	local sorted_selection = {}
	for _, val in ipairs(selection[2]) do
		table.insert(sorted_selection, val)
	end
	table.sort(sorted_selection)
	for _,val in ipairs(sorted_selection) do
		local old_modified_path = table.copy(selection[1])
		old_modified_path[#old_modified_path] = val + 2 - children_count -- +1 because the folder was inserted before it, + 1 - children_count because every relocation removes one child
		local new_path = table.copy(folder_path)
		new_path[#new_path + 1] = children_count
		children_count = children_count + 1
		TreeRelocateNode(root, old_modified_path, new_path)
		table.insert(undo_funcs, function() TreeRelocateNode(root, new_path, old_modified_path) end)
	end
	
	return new_selection, function()
		for i = #undo_funcs, 1, -1 do
			undo_funcs[i]()
		end
	end
end

function GedOpRelocateModItemToFolder(socket, root, clicked_path, folder_path)
	if not folder_path then return end
	local folder_node = GetNodeByPath(root, folder_path)
	local clicked_node = GetNodeByPath(root, clicked_path)
	if not IsKindOf(folder_node, "ModItemFolder") then return end
	if not IsKindOf(clicked_node, "ModItem") then return end
	
	local lca_path = GetLowestCommonAncestor(folder_path, clicked_path)
	local lca_node = GetNodeByPath(root, lca_path)
	if ParentNodeByPath(root, clicked_path) == folder_node or lca_node == clicked_node then
		return "error" -- just blink in red without error message
	end
	
	local earlier_in_tree = #folder_path ~= #lca_path and folder_path[#lca_path + 1] > clicked_path[#lca_path + 1] and #clicked_path == #lca_path + 1
	
	local old_path = table.copy(clicked_path)
	local new_path = table.copy(folder_path)
	new_path[#new_path + 1] = #TreeNodeChildren(folder_node) + 1
	TreeRelocateNode(root, old_path, new_path)
	
	if earlier_in_tree then
		new_path[#lca_path + 1] = new_path[#lca_path + 1] - 1
	end
	local new_folder_path = table.copy(new_path)
	new_folder_path[#new_folder_path] = nil
	return new_folder_path, function() TreeRelocateNode(root, new_path, old_path) end
end