mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-22 20:03:21 +00:00
Added localid
missing actions (needs testing)
This commit is contained in:
parent
d18a8c31a6
commit
9dae3cbcc7
@ -3,9 +3,10 @@ package emu.grasscutter.data.binout;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import emu.grasscutter.data.common.DynamicFloat;
|
||||
import emu.grasscutter.game.props.ElementType;
|
||||
import java.io.Serializable;
|
||||
import lombok.ToString;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AbilityModifier implements Serializable {
|
||||
private static final long serialVersionUID = -2001232313615923575L;
|
||||
|
||||
@ -323,6 +324,10 @@ public class AbilityModifier implements Serializable {
|
||||
|
||||
public int skillID;
|
||||
|
||||
public AbilityModifierAction[] actions;
|
||||
public AbilityModifierAction[] successActions;
|
||||
public AbilityModifierAction[] failActions;
|
||||
|
||||
public int param1;
|
||||
public int param2;
|
||||
public int param3;
|
||||
|
@ -3,9 +3,10 @@ package emu.grasscutter.game.ability;
|
||||
import emu.grasscutter.Grasscutter;
|
||||
import emu.grasscutter.data.binout.AbilityMixinData;
|
||||
import emu.grasscutter.data.binout.AbilityModifier.AbilityModifierAction;
|
||||
import java.util.Map;
|
||||
import lombok.AllArgsConstructor;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@SuppressWarnings("ALL")
|
||||
public class AbilityLocalIdGenerator {
|
||||
@AllArgsConstructor
|
||||
@ -32,11 +33,20 @@ public class AbilityLocalIdGenerator {
|
||||
public void initializeActionLocalIds(
|
||||
AbilityModifierAction[] actions, Map<Integer, AbilityModifierAction> localIdToAction) {
|
||||
if (actions == null) return;
|
||||
actionIndex = 0;
|
||||
for (AbilityModifierAction action : actions) {
|
||||
actionIndex++;
|
||||
long id = GetLocalId();
|
||||
localIdToAction.put((int) id, action);
|
||||
this.actionIndex = 0;
|
||||
for (int i = 0; i < actions.length; i++) {
|
||||
this.actionIndex++;
|
||||
|
||||
var id = GetLocalId();
|
||||
localIdToAction.put((int)id, actions[i]);
|
||||
|
||||
if(actions[i].actions != null) this.initializeActionLocalIds(actions[i].actions, localIdToAction);
|
||||
else {
|
||||
if (actions[i].successActions[i] != null)
|
||||
this.initializeActionLocalIds(actions[i].successActions, localIdToAction); //Need to check this specific order
|
||||
if (actions[i].failActions[i] != null)
|
||||
this.initializeActionLocalIds(actions[i].failActions, localIdToAction);
|
||||
}
|
||||
}
|
||||
|
||||
actionIndex = 0;
|
||||
@ -45,15 +55,15 @@ public class AbilityLocalIdGenerator {
|
||||
public void initializeMixinsLocalIds(
|
||||
AbilityMixinData[] mixins, Map<Integer, AbilityMixinData> localIdToAction) {
|
||||
if (mixins == null) return;
|
||||
mixinIndex = 0;
|
||||
for (AbilityMixinData mixin : mixins) {
|
||||
long id = GetLocalId();
|
||||
this.mixinIndex = 0;
|
||||
for (var mixin : mixins) {
|
||||
var id = GetLocalId();
|
||||
localIdToAction.put((int) id, mixin);
|
||||
|
||||
mixinIndex++;
|
||||
this.mixinIndex++;
|
||||
}
|
||||
|
||||
mixinIndex = 0;
|
||||
this.mixinIndex = 0;
|
||||
}
|
||||
|
||||
public long GetLocalId() {
|
||||
|
Loading…
Reference in New Issue
Block a user