File size: 9,608 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
-- ========== GENERATED BY ClassDef Editor (Ctrl-Alt-F3) DO NOT EDIT MANUALLY! ==========

DefineClass.CombatTask = {
	__parents = { "ModulePreset", "TODOPreset", "MsgReactionsPreset", },
	__generated_by_class = "ZuluModuleDef",

	properties = {
		{ category = "Display", id = "name", name = "Name", 
			editor = "text", default = T(635036510295, --[[ZuluModuleDef CombatTask default]] "Combat Task"), translate = true, },
		{ category = "Display", id = "description", name = "Description", 
			editor = "text", default = false, translate = true, },
		{ category = "Rewards", id = "xpReward", name = "XP Reward", 
			editor = "number", default = 300, },
		{ category = "Rewards", id = "statGainRolls", name = "Related Stats", help = "Trigger rolls for Stat Gaining for the selected Stats on Task completion.", 
			editor = "string_list", default = {}, item_default = "Wisdom", items = function (self) return GetUnitStatsCombo() end, },
		{ category = "CombatTask", id = "selectionConditions", name = "Selection Conditions", help = "Explicitly specified", 
			editor = "nested_list", default = false, base_class = "Condition", },
		{ category = "CombatTask", id = "favouredConditions", name = "Favoured Conditions", help = "Explicitly specified", 
			editor = "nested_list", default = false, base_class = "Condition", },
		{ category = "CombatTask", id = "requiredProgress", name = "Required Progress", help = "Amount of things you need to do.", 
			editor = "number", default = 1, },
		{ category = "CombatTask", id = "hideProgress", name = "Hide Progress", 
			editor = "bool", default = false, },
		{ category = "CombatTask", id = "holdUntilEnd", name = "Hold until Conflict* End", help = "End is when all non animal enemies have died.", 
			editor = "bool", default = false, },
		{ category = "CombatTask", id = "reverseProgress", name = "Reverse Progress", help = "If enabled currentProgress must not reach the requiredProgress instead.", 
			editor = "bool", default = false, },
		{ category = "CombatTask", id = "cooldown", name = "Cooldown", help = "How much to wait (in SatView time) to be able to select the task again.", 
			editor = "number", default = 432000, scale = "day", min = 0, max = 8640000, },
		{ category = "CombatTask", id = "competition", name = "Competition", help = "Puts the merc in a race against one of his Liked/Disliked", 
			editor = "bool", default = false, },
		{ category = "CombatTask", id = "buttonGiveCombatTask", 
			editor = "buttons", default = false, buttons = { {name = "Give Combat Task", func = "GiveCombatTaskEditor"}, }, template = true, },
	},
	GlobalMap = "CombatTaskDefs",
	EditorMenubarName = "Combat Tasks",
	EditorMenubar = "Combat",
	currentProgress = 0,
	state = "inProgress",
	additionalData = false,
	unitId = "",
	otherUnitId = "",
}

function CombatTask:GiveCombatTaskEditor(root, prop_id, ged)
	if gv_SatelliteView then return end
	if not IsKindOf(SelectedObj, "Unit") then return end
	GiveCombatTask(self, SelectedObj.session_id)
end

function CombatTask:CanBeSelected(unit)
	if self.competition then
		local hasOpponent = false
		local units = GetCurrentMapUnits()
		for _, u in ipairs(units) do
			if table.find(unit.Likes, u.session_id) or table.find(unit.Dislikes, u.session_id) then
				hasOpponent = true
				break
			end
		end
		if not hasOpponent then
			return false
		end
	end
	
	if not self.selectionConditions or #self.selectionConditions <= 0 then return true end
	return EvalConditionList(self.selectionConditions, self, {target_units = { unit }, no_log = true})
end

function CombatTask:IsFavoured(unit)
	for _, stat in ipairs(self.statGainRolls) do
		if unit[stat] >= 70 then
			return true
		end
	end
	
	if self.favouredConditions and #self.favouredConditions > 0 then
		return EvalConditionList(self.favouredConditions, self, {target_units = { unit }, no_log = true})
	end
	
	return false
end

function CombatTask:OnAdd(owner, ...)
	if not self.unitId or self.unitId == "" then
		self.unitId = owner.session_id
		
		if self.competition then
			local unit = g_Units[self.unitId]
			local ids = {}
			local units = GetCurrentMapUnits()
			for _, u in ipairs(units) do
				if table.find(unit.Likes, u.session_id) or table.find(unit.Dislikes, u.session_id) then
					ids[#ids+1] = u.session_id
				end
			end
			
			self.otherUnitId = ids[InteractionRand(#ids, "CombatTask")+1]
		end
	end
end

function CombatTask:Finish()
	ObjModified(self)
	local unit = g_Units[self.unitId]
	
	Msg("CombatTaskFinished", self.id, unit, self.state == "completed")
	
	CombatTaskUIAnimations[self] = {}
	CombatTaskUIAnimations[self].startTime = GetPreciseTicks()
	CombatTaskUIAnimations[self].thread = CreateRealTimeThread(function()
		if not (g_Teams[g_CurrentTeam].control == "UI") then
			WaitMsg("TurnEnded")
		end
		
		local igi = GetInGameInterfaceModeDlg()
		if IsKindOf(igi, "IModeCommonUnitControl") then
			local combatTasks = igi:ResolveId("idCombatTasks")
			for _, taskUI in ipairs(combatTasks) do
				if taskUI.context == self then
					taskUI:Animate()
					Sleep(taskUI.animPulseDuration + taskUI.animHideDuration)
					break
				end
			end
		end
		
		if unit then unit:RemoveCombatTask(self) end
		RefreshCombatTasks()
	end)
end

function CombatTask:Complete()
	if self.state ~= "inProgress" then return end
		
	local unit = g_Units[self.unitId]
	if unit then
		RewardTeamExperience({ RewardExperience = self.xpReward }, { units = {unit}})
	
		for _, stat in ipairs(self.statGainRolls) do
			RollForStatGaining(unit, stat)
		end
		
		PlayVoiceResponse(unit, "CombatTaskCompleted")
	end
	
	self.state = "completed"
	self:Finish()
end

function CombatTask:Fail()
	if self.state ~= "inProgress" then return end
	
	local unit = g_Units[self.unitId]
	if unit then
		PlayVoiceResponse(unit, "CombatTaskFailed")
	end
	
	self.state = "failed"
	self:Finish()
end

function CombatTask:Update(progress, otherProgress)
	if self.state ~= "inProgress" then return end
	
	if self.competition then
		self.currentProgress = self.currentProgress + (progress or 0)
		self.requiredProgress = self.requiredProgress + (otherProgress or 0)
	else
		self.currentProgress = Clamp(self.currentProgress + progress, 0, self.requiredProgress)
	end
	
	if self.currentProgress >= self.requiredProgress then
		if not self.holdUntilEnd then
			if self.reverseProgress then
				self:Fail()
			else
				self:Complete()
			end
		end
	end
	
	ObjModified(self)
end

function CombatTask:ShouldSave()
	return self.state == "inProgress"
end

function CombatTask:GetDynamicData(data)
	data.currentProgress = self.currentProgress
	data.state = self.state
	data.additionalData = self.additionalData
	data.unitId = self.unitId
	data.otherUnitId = self.otherUnitId
end

function CombatTask:SetDynamicData(data)
	self.currentProgress = data.currentProgress
	self.state = data.state
	self.additionalData = data.additionalData
	self.unitId = data.unitId
	self.otherUnitId = data.otherUnitId
end


----- CombatTaskOwner

DefineClass.CombatTaskOwner = {
	__parents = { "Modifiable" },
	combatTasks = false,
	can_remove_combatTasks = true,
}

local find = table.find
local find_value = table.find_value
local remove_value = table.remove_value
local type = type

function CombatTaskOwner:AddCombatTask(combattask, ...)
	if type(combattask) == "string" then
		combattask = CombatTaskDefs[combattask]
	end
	if combattask and combattask.__index == combattask then -- combattask is not an instance
		combattask = setmetatable({}, combattask) -- make an instance
	end
	combattask = combattask:CanAdd(self, ...)
	if type(combattask) ~= "table" then return end
	local combatTasks = self.combatTasks
	if not combatTasks then
		combatTasks = {}
		self.combatTasks = combatTasks
	end
	
	combatTasks[#combatTasks + 1] = combattask
	PostMsg("CombatTaskAdded", self, combattask)
	return combattask:OnAdd(self, ...)
end

function CombatTaskOwner:RemoveCombatTask(combattask, ...)
	assert(self.can_remove_combatTasks)
	if type(combattask) == "string" then
		combattask = CombatTaskDefs[combattask]
	end
	local combatTasks = self.combatTasks
	local n = remove_value(combatTasks, combattask)
	assert(n) -- removing a CombatTask that was not added
	if not n then return end

	PostMsg("CombatTaskRemoved", self, combattask)
	return combattask:OnRemove(self, ...)
end

function CombatTaskOwner:ForEachCombatTask(func, ...)
	local can_remove = self.can_remove_combatTasks
	self.can_remove_combatTasks = false
	local res
	for _, combattask in ipairs(self.combatTasks) do
		res = func(combattask, ...)
		if res then break end
	end
	if can_remove then
		self.can_remove_combatTasks = nil
	end
	return res
end

function CombatTaskOwner:FirstCombatTaskById(id)
	return find_value(self.combatTasks, "id", id or false)
end

function CombatTaskOwner:FirstCombatTaskByGroup(group)
	return find_value(self.combatTasks, "group", group or false)
end

function CombatTaskOwner:GetDynamicData(data)
	for i, combattask in ipairs(self.combatTasks) do
		if combattask.ShouldSave == nil or combattask:ShouldSave() then
			data.combatTasks = data.combatTasks or {}
			data.combatTasks[#data.combatTasks+1] = data.combatTasks[#data.combatTasks+1] or {}
			data.combatTasks[#data.combatTasks].id = combattask.id
			if type(combattask.GetDynamicData) == "function" then
				combattask:GetDynamicData(data.combatTasks[#data.combatTasks])
			end
		end
	end
end

function CombatTaskOwner:SetDynamicData(data)
	for i, combattask in ipairs(data.combatTasks) do
		local obj = CombatTaskDefs[combattask.id]:new()
		if type(obj.SetDynamicData) == "function" then
			obj:SetDynamicData(combattask)
		end
		self:AddCombatTask(obj)
	end
end