SceneScriptManager.java 11.7 KB
Newer Older
1
2
package emu.grasscutter.scripts;

Melledy's avatar
Melledy committed
3
import java.util.ArrayList;
Melledy's avatar
Melledy committed
4
import java.util.Arrays;
5
6
7
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
8
import java.util.Map;
9
import java.util.Set;
Melledy's avatar
Melledy committed
10
import java.util.stream.Collectors;
11
12
13
14
15
16
17
18
19
20

import javax.script.Bindings;
import javax.script.CompiledScript;
import javax.script.ScriptException;

import org.luaj.vm2.LuaTable;
import org.luaj.vm2.LuaValue;
import org.luaj.vm2.lib.jse.CoerceJavaToLua;

import emu.grasscutter.Grasscutter;
Melledy's avatar
Melledy committed
21
22
23
import emu.grasscutter.data.GameData;
import emu.grasscutter.data.def.MonsterData;
import emu.grasscutter.data.def.WorldLevelData;
24
25
26
import emu.grasscutter.game.entity.EntityGadget;
import emu.grasscutter.game.entity.EntityMonster;
import emu.grasscutter.game.entity.GameEntity;
Melledy's avatar
Melledy committed
27
import emu.grasscutter.game.props.EntityType;
28
import emu.grasscutter.game.world.Scene;
Melledy's avatar
Melledy committed
29
import emu.grasscutter.scripts.constants.EventType;
30
31
32
33
34
35
36
37
import emu.grasscutter.scripts.constants.ScriptGadgetState;
import emu.grasscutter.scripts.constants.ScriptRegionShape;
import emu.grasscutter.scripts.data.SceneBlock;
import emu.grasscutter.scripts.data.SceneConfig;
import emu.grasscutter.scripts.data.SceneGadget;
import emu.grasscutter.scripts.data.SceneGroup;
import emu.grasscutter.scripts.data.SceneInitConfig;
import emu.grasscutter.scripts.data.SceneMonster;
Melledy's avatar
Melledy committed
38
import emu.grasscutter.scripts.data.SceneRegion;
39
40
import emu.grasscutter.scripts.data.SceneSuite;
import emu.grasscutter.scripts.data.SceneTrigger;
41
import emu.grasscutter.scripts.data.SceneVar;
Melledy's avatar
Melledy committed
42
import emu.grasscutter.scripts.data.ScriptArgs;
43
44
45
46
47
48
49
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
import it.unimi.dsi.fastutil.ints.Int2ObjectOpenHashMap;

public class SceneScriptManager {
	private final Scene scene;
	private final ScriptLib scriptLib;
	private final LuaValue scriptLibLua;
Melledy's avatar
Melledy committed
50
	private final Map<String, Integer> variables;
51
	
52
	private Bindings bindings;
53
54
55
56
	private SceneConfig config;
	private List<SceneBlock> blocks;
	private boolean isInit;
	
Melledy's avatar
Melledy committed
57
58
59
	private final Int2ObjectOpenHashMap<Set<SceneTrigger>> triggers;
	private final Int2ObjectOpenHashMap<SceneRegion> regions;
	
60
61
62
63
64
	public SceneScriptManager(Scene scene) {
		this.scene = scene;
		this.scriptLib = new ScriptLib(this);
		this.scriptLibLua = CoerceJavaToLua.coerce(this.scriptLib);
		this.triggers = new Int2ObjectOpenHashMap<>();
Melledy's avatar
Melledy committed
65
		this.regions = new Int2ObjectOpenHashMap<>();
66
		this.variables = new HashMap<>();
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
		
		// TEMPORARY
		if (this.getScene().getId() < 10) {
			return;
		}
		
		// Create
		this.init();
	}
	
	public Scene getScene() {
		return scene;
	}

	public ScriptLib getScriptLib() {
		return scriptLib;
	}
	
	public LuaValue getScriptLibLua() {
		return scriptLibLua;
	}

	public Bindings getBindings() {
		return bindings;
	}

	public SceneConfig getConfig() {
		return config;
	}

	public List<SceneBlock> getBlocks() {
		return blocks;
	}

Melledy's avatar
Melledy committed
101
	public Map<String, Integer> getVariables() {
102
103
104
		return variables;
	}

105
106
107
108
109
110
111
112
113
114
115
116
	public Set<SceneTrigger> getTriggersByEvent(int eventId) {
		return triggers.computeIfAbsent(eventId, e -> new HashSet<>());
	}
	
	public void registerTrigger(SceneTrigger trigger) {
		getTriggersByEvent(trigger.event).add(trigger);
	}
	
	public void deregisterTrigger(SceneTrigger trigger) {
		getTriggersByEvent(trigger.event).remove(trigger);
	}
	
Melledy's avatar
Melledy committed
117
118
119
120
121
122
123
124
125
126
127
128
	public SceneRegion getRegionById(int id) {
		return regions.get(id);
	}
	
	public void registerRegion(SceneRegion region) {
		regions.put(region.config_id, region);
	}
	
	public void deregisterRegion(SceneRegion region) {
		regions.remove(region.config_id);
	}
	
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
	// TODO optimize
	public SceneGroup getGroupById(int groupId) {
		for (SceneBlock block : this.getScene().getLoadedBlocks()) {
			for (SceneGroup group : block.groups) {
				if (group.id == groupId) {
					return group;
				}
			}
		}
		return null;
	}

	private void init() {
		// Get compiled script if cached
		CompiledScript cs = ScriptLoader.getScriptByPath(
			Grasscutter.getConfig().SCRIPTS_FOLDER + "Scene/" + getScene().getId() + "/scene" + getScene().getId() + "." + ScriptLoader.getScriptType());
		
		if (cs == null) {
			Grasscutter.getLogger().warn("No script found for scene " + getScene().getId());
			return;
		}
		
		// Create bindings
		bindings = ScriptLoader.getEngine().createBindings();
		
		// Set variables
		bindings.put("ScriptLib", getScriptLib());
Melledy's avatar
Melledy committed
156

157
158
159
160
161
162
163
164
165
166
167
168
		// Eval script
		try {
			cs.eval(getBindings());
			
			this.config = ScriptLoader.getSerializer().toObject(SceneConfig.class, bindings.get("scene_config"));
			
			// TODO optimize later
			// Create blocks
			List<Integer> blockIds = ScriptLoader.getSerializer().toList(Integer.class, bindings.get("blocks"));
			List<SceneBlock> blocks = ScriptLoader.getSerializer().toList(SceneBlock.class, bindings.get("block_rects"));
			
			for (int i = 0; i < blocks.size(); i++) {
wulf's avatar
wulf committed
169
				SceneBlock block = blocks.get(i);
170
171
				block.id = blockIds.get(i);
				
172
				loadBlockFromScript(block);
173
174
175
176
177
			}
			
			this.blocks = blocks;
		} catch (ScriptException e) {
			Grasscutter.getLogger().error("Error running script", e);
178
			return;
179
		}
180
		
181
182
183
184
185
186
187
188
		// TEMP
		this.isInit = true;
	}

	public boolean isInit() {
		return isInit;
	}
	
189
	private void loadBlockFromScript(SceneBlock block) {
190
191
192
193
194
195
196
197
198
199
200
201
202
		CompiledScript cs = ScriptLoader.getScriptByPath(
			Grasscutter.getConfig().SCRIPTS_FOLDER + "Scene/" + getScene().getId() + "/scene" + getScene().getId() + "_block" + block.id + "." + ScriptLoader.getScriptType());
	
		if (cs == null) {
			return;
		}
		
		// Eval script
		try {
			cs.eval(getBindings());
			
			// Set groups
			block.groups = ScriptLoader.getSerializer().toList(SceneGroup.class, bindings.get("groups"));
203
			block.groups.forEach(g -> g.block_id = block.id);
204
205
206
207
208
		} catch (ScriptException e) {
			Grasscutter.getLogger().error("Error loading block " + block.id + " in scene " + getScene().getId(), e);
		}
	}
	
209
210
211
212
	public void loadGroupFromScript(SceneGroup group) {
		// Set flag here so if there is no script, we dont call this function over and over again.
		group.setLoaded(true);
		
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
		CompiledScript cs = ScriptLoader.getScriptByPath(
			Grasscutter.getConfig().SCRIPTS_FOLDER + "Scene/" + getScene().getId() + "/scene" + getScene().getId() + "_group" + group.id + "." + ScriptLoader.getScriptType());
	
		if (cs == null) {
			return;
		}
		
		// Eval script
		try {
			cs.eval(getBindings());

			// Set
			group.monsters = ScriptLoader.getSerializer().toList(SceneMonster.class, bindings.get("monsters"));
			group.gadgets = ScriptLoader.getSerializer().toList(SceneGadget.class, bindings.get("gadgets"));
			group.triggers = ScriptLoader.getSerializer().toList(SceneTrigger.class, bindings.get("triggers"));
			group.suites = ScriptLoader.getSerializer().toList(SceneSuite.class, bindings.get("suites"));
Melledy's avatar
Melledy committed
229
			group.regions = ScriptLoader.getSerializer().toList(SceneRegion.class, bindings.get("regions"));
230
			group.init_config = ScriptLoader.getSerializer().toObject(SceneInitConfig.class, bindings.get("init_config"));
231
			
Melledy's avatar
Melledy committed
232
			// Add variables to suite
233
			List<SceneVar> variables = ScriptLoader.getSerializer().toList(SceneVar.class, bindings.get("variables"));
Melledy's avatar
Melledy committed
234
235
236
			variables.forEach(var -> this.getVariables().put(var.name, var.value));
			
			// Add monsters to suite TODO optimize
237
238
239
			Int2ObjectMap<Object> map = new Int2ObjectOpenHashMap<>();
			group.monsters.forEach(m -> map.put(m.config_id, m));
			group.gadgets.forEach(m -> map.put(m.config_id, m));
Melledy's avatar
Melledy committed
240
241
242
243
			
			for (SceneSuite suite : group.suites) {
				suite.sceneMonsters = new ArrayList<>(suite.monsters.size());
				for (int id : suite.monsters) {
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
					try {
						SceneMonster monster = (SceneMonster) map.get(id);
						if (monster != null) {
							suite.sceneMonsters.add(monster);
						}
					} catch (Exception e) {
						continue;
					}
				}
				suite.sceneGadgets = new ArrayList<>(suite.gadgets.size());
				for (int id : suite.gadgets) {
					try {
						SceneGadget gadget = (SceneGadget) map.get(id);
						if (gadget != null) {
							suite.sceneGadgets.add(gadget);
						}
					} catch (Exception e) {
						continue;
Melledy's avatar
Melledy committed
262
263
264
					}
				}
			}
265
266
267
268
269
270
		} catch (ScriptException e) {
			Grasscutter.getLogger().error("Error loading group " + group.id + " in scene " + getScene().getId(), e);
		}
	}

	public void onTick() {
Melledy's avatar
Melledy committed
271
		checkRegions();
272
273
	}
	
Melledy's avatar
Melledy committed
274
275
276
277
278
279
280
281
282
283
	public void checkRegions() {
		if (this.regions.size() == 0) {
			return;
		}
		
		for (SceneRegion region : this.regions.values()) {
			getScene().getEntities().values()
				.stream()
				.filter(e -> e.getEntityType() <= 2 && region.contains(e.getPosition()))
				.forEach(region::addEntity);
284

Melledy's avatar
Melledy committed
285
286
287
288
289
290
291
			if (region.hasNewEntities()) {
				// This is not how it works, source_eid should be region entity id, but we dont have an entity for regions yet
				callEvent(EventType.EVENT_ENTER_REGION, new ScriptArgs(region.config_id).setSourceEntityId(region.config_id));
				
				region.resetNewEntities();
			}
		}
292
293
	}
	
294
295
296
297
	public void spawnGadgetsInGroup(SceneGroup group, int suiteIndex) {
		spawnGadgetsInGroup(group, group.getSuiteByIndex(suiteIndex));
	}
	
298
	public void spawnGadgetsInGroup(SceneGroup group) {
299
300
301
302
303
304
305
306
307
308
309
		spawnGadgetsInGroup(group, null);
	}
	
	public void spawnGadgetsInGroup(SceneGroup group, SceneSuite suite) {
		List<SceneGadget> gadgets = group.gadgets;
		
		if (suite != null) {
			gadgets = suite.sceneGadgets;
		}
		
		for (SceneGadget g : gadgets) {
Melledy's avatar
Melledy committed
310
311
312
313
			EntityGadget entity = new EntityGadget(getScene(), g.gadget_id, g.pos);
			
			if (entity.getGadgetData() == null) continue;
			
314
			entity.setBlockId(group.block_id);
Melledy's avatar
Melledy committed
315
316
317
318
319
320
321
322
323
324
			entity.setConfigId(g.config_id);
			entity.setGroupId(group.id);
			entity.getRotation().set(g.rot);
			entity.setState(g.state);
			
			getScene().addEntity(entity);
			this.callEvent(EventType.EVENT_GADGET_CREATE, new ScriptArgs(entity.getConfigId()));
		}
	}
	
Melledy's avatar
Melledy committed
325
326
327
328
	public void spawnMonstersInGroup(SceneGroup group, int suiteIndex) {
		spawnMonstersInGroup(group, group.getSuiteByIndex(suiteIndex));
	}
	
Melledy's avatar
Melledy committed
329
	public void spawnMonstersInGroup(SceneGroup group) {
Melledy's avatar
Melledy committed
330
331
332
333
334
335
336
337
338
339
		spawnMonstersInGroup(group, null);
	}
	
	public void spawnMonstersInGroup(SceneGroup group, SceneSuite suite) {
		List<SceneMonster> monsters = group.monsters;
		
		if (suite != null) {
			monsters = suite.sceneMonsters;
		}

Melledy's avatar
Melledy committed
340
341
		List<GameEntity> toAdd = new ArrayList<>();
		
Melledy's avatar
Melledy committed
342
		for (SceneMonster monster : monsters) {
Melledy's avatar
Melledy committed
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
			MonsterData data = GameData.getMonsterDataMap().get(monster.monster_id);
			
			if (data == null) {
				continue;
			}
			
			// Calculate level
			int level = monster.level;
			
			if (getScene().getDungeonData() != null) {
				level = getScene().getDungeonData().getShowLevel();
			} else if (getScene().getWorld().getWorldLevel() > 0) {
				WorldLevelData worldLevelData = GameData.getWorldLevelDataMap().get(getScene().getWorld().getWorldLevel());
				
				if (worldLevelData != null) {
					level = worldLevelData.getMonsterLevel();
				}
			}
			
			// Spawn mob
			EntityMonster entity = new EntityMonster(getScene(), data, monster.pos, level);
			entity.getRotation().set(monster.rot);
			entity.setGroupId(group.id);
			entity.setConfigId(monster.config_id);
			
			toAdd.add(entity);
		}
		
		if (toAdd.size() > 0) {
			getScene().addEntities(toAdd);
			
			for (GameEntity entity : toAdd) {
				callEvent(EventType.EVENT_ANY_MONSTER_LIVE, new ScriptArgs(entity.getConfigId()));
			}
		}
	}
	
380
381
	// Events
	
Melledy's avatar
Melledy committed
382
383
384
	public void callEvent(int eventType, ScriptArgs params) {
		for (SceneTrigger trigger : this.getTriggersByEvent(eventType)) {
			LuaValue condition = null;
385
			
Melledy's avatar
Melledy committed
386
387
			if (trigger.condition != null && !trigger.condition.isEmpty()) {
				condition = (LuaValue) this.getBindings().get(trigger.condition);
388
389
			}
			
Melledy's avatar
Melledy committed
390
391
392
393
394
395
396
397
398
399
			LuaValue ret = LuaValue.TRUE;
			
			if (condition != null) {
				LuaValue args = LuaValue.NIL;
				
				if (params != null) {
					args = CoerceJavaToLua.coerce(params);
				}
				
				ret = condition.call(this.getScriptLibLua(), args);
400
401
402
			}
			
			if (ret.checkboolean() == true) {
Melledy's avatar
Melledy committed
403
				LuaValue action = (LuaValue) this.getBindings().get(trigger.action);
404
405
406
407
408
				action.call(this.getScriptLibLua(), LuaValue.NIL);
			}
		}
	}
}