GameQuest.java 5.58 KB
Newer Older
Melledy's avatar
Melledy committed
1
2
3
4
package emu.grasscutter.game.quest;

import dev.morphia.annotations.Entity;
import dev.morphia.annotations.Transient;
Melledy's avatar
Melledy committed
5
6
7
8
9
import emu.grasscutter.data.GameData;
import emu.grasscutter.data.custom.MainQuestData;
import emu.grasscutter.data.custom.MainQuestData.SubQuestData;
import emu.grasscutter.data.def.QuestData;
import emu.grasscutter.data.def.QuestData.QuestCondition;
Melledy's avatar
Melledy committed
10
import emu.grasscutter.game.player.Player;
11
import emu.grasscutter.game.quest.enums.LogicType;
Melledy's avatar
Melledy committed
12
13
import emu.grasscutter.game.quest.enums.QuestState;
import emu.grasscutter.net.proto.QuestOuterClass.Quest;
14
import emu.grasscutter.server.packet.send.PacketQuestListUpdateNotify;
Melledy's avatar
Melledy committed
15
16
17
18
19
20
import emu.grasscutter.server.packet.send.PacketQuestProgressUpdateNotify;
import emu.grasscutter.utils.Utils;

@Entity
public class GameQuest {
	@Transient private GameMainQuest mainQuest;
Melledy's avatar
Melledy committed
21
	@Transient private QuestData questData;
Melledy's avatar
Melledy committed
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
	
	private int questId;
	private int mainQuestId;
	private QuestState state;
	
	private int startTime;
	private int acceptTime;
	private int finishTime;
	
	private int[] finishProgressList;
	private int[] failProgressList;
	
	@Deprecated // Morphia only. Do not use.
	public GameQuest() {}
	
Melledy's avatar
Melledy committed
37
	public GameQuest(GameMainQuest mainQuest, QuestData questData) {
Melledy's avatar
Melledy committed
38
		this.mainQuest = mainQuest;
Melledy's avatar
Melledy committed
39
40
41
		this.questId = questData.getId();
		this.mainQuestId = questData.getMainId();
		this.questData = questData;
Melledy's avatar
Melledy committed
42
43
44
45
		this.acceptTime = Utils.getCurrentSeconds();
		this.startTime = this.acceptTime;
		this.state = QuestState.QUEST_STATE_UNFINISHED;
		
Melledy's avatar
Melledy committed
46
47
		if (questData.getFinishCond()!= null) {
			this.finishProgressList = new int[questData.getFinishCond().length];
Melledy's avatar
Melledy committed
48
49
		}
		
Melledy's avatar
Melledy committed
50
51
		if (questData.getFailCond() != null) {
			this.failProgressList = new int[questData.getFailCond().length];
Melledy's avatar
Melledy committed
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
		}
		
		this.mainQuest.getChildQuests().put(this.questId, this);
	}
	
	public GameMainQuest getMainQuest() {
		return mainQuest;
	}

	public void setMainQuest(GameMainQuest mainQuest) {
		this.mainQuest = mainQuest;
	}
	
	public Player getOwner() {
		return getMainQuest().getOwner();
	}

	public int getQuestId() {
		return questId;
	}

	public int getMainQuestId() {
		return mainQuestId;
	}

Melledy's avatar
Melledy committed
77
78
	public QuestData getData() {
		return questData;
Melledy's avatar
Melledy committed
79
80
	}

Melledy's avatar
Melledy committed
81
	public void setConfig(QuestData config) {
Melledy's avatar
Melledy committed
82
		if (this.getQuestId() != config.getId()) return;
Melledy's avatar
Melledy committed
83
		this.questData = config;
Melledy's avatar
Melledy committed
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
	}

	public QuestState getState() {
		return state;
	}

	public void setState(QuestState state) {
		this.state = state;
	}

	public int getStartTime() {
		return startTime;
	}

	public void setStartTime(int startTime) {
		this.startTime = startTime;
	}

	public int getAcceptTime() {
		return acceptTime;
	}

	public void setAcceptTime(int acceptTime) {
		this.acceptTime = acceptTime;
	}

	public int getFinishTime() {
		return finishTime;
	}

	public void setFinishTime(int finishTime) {
		this.finishTime = finishTime;
	}
	
	public int[] getFinishProgressList() {
		return finishProgressList;
	}
	
	public void setFinishProgress(int index, int value) {
		finishProgressList[index] = value;
	}

	public int[] getFailProgressList() {
		return failProgressList;
	}
	
	public void setFailProgress(int index, int value) {
		failProgressList[index] = value;
	}

	public void finish() {
		this.state = QuestState.QUEST_STATE_FINISHED;
		this.finishTime = Utils.getCurrentSeconds();
		
		if (this.getFinishProgressList() != null) {
			for (int i = 0 ; i < getFinishProgressList().length; i++) {
				getFinishProgressList()[i] = 1;
			}
		}
		
		this.getOwner().getSession().send(new PacketQuestProgressUpdateNotify(this));
145
146
		this.getOwner().getSession().send(new PacketQuestListUpdateNotify(this));
		
147
148
149
150
151
152
153
154
		if (this.getData().finishParent()) {
			// This quest finishes the questline - the main quest will also save the quest to db so we dont have to call save() here
			this.getMainQuest().finish();
		} else {
			// Try and accept other quests if possible
			this.tryAcceptQuestLine();
			this.save();
		}
Melledy's avatar
Melledy committed
155
156
	}
	
157
	public boolean tryAcceptQuestLine() {
Melledy's avatar
Melledy committed
158
		try {
Melledy's avatar
Melledy committed
159
			MainQuestData questConfig = GameData.getMainQuestDataMap().get(this.getMainQuestId());
160
			
Melledy's avatar
Melledy committed
161
162
			for (SubQuestData subQuest : questConfig.getSubQuests()) {
				GameQuest quest = getMainQuest().getChildQuestById(subQuest.getSubId());
163
164
				
				if (quest == null) {
Melledy's avatar
Melledy committed
165
166
					QuestData questData = GameData.getQuestDataMap().get(subQuest.getSubId());
					
167
					if (questData == null || questData.getAcceptCond() == null) {
Melledy's avatar
Melledy committed
168
169
170
						continue;
					}
					
171
172
173
174
175
					int[] accept = new int[questData.getAcceptCond().length];
							
					// TODO
					for (int i = 0; i < questData.getAcceptCond().length; i++) {
						QuestCondition condition = questData.getAcceptCond()[i];
Melledy's avatar
Melledy committed
176
						boolean result = getOwner().getServer().getQuestHandler().triggerCondition(this, condition, condition.getParam());
177
178
179
180
181
182
183
						
						accept[i] = result ? 1 : 0;
					}
					
					boolean shouldAccept = LogicType.calculate(questData.getAcceptCondComb(), accept);
					
					if (shouldAccept) {
Melledy's avatar
Melledy committed
184
						this.getOwner().getQuestManager().addQuest(questData.getId());
185
186
					}
				}
Melledy's avatar
Melledy committed
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
			}
		} catch (Exception e) {
			
		}

		return false;
	}
	
	public void save() {
		getMainQuest().save();
	}
	
	public Quest toProto() {
		Quest.Builder proto = Quest.newBuilder()
				.setQuestId(this.getQuestId())
				.setState(this.getState().getValue())
				.setParentQuestId(this.getMainQuestId())
				.setStartTime(this.getStartTime())
				.setStartGameTime(438)
				.setAcceptTime(this.getAcceptTime());
		
		if (this.getFinishProgressList() != null) {
			for (int i : this.getFinishProgressList()) {
				proto.addFinishProgressList(i);
			}
		}
		
		if (this.getFailProgressList() != null) {
			for (int i : this.getFailProgressList()) {
				proto.addFailProgressList(i);
			}
		}
		
		return proto.build();
	}
}