mirror of
https://github.com/Melledy/LunarCore.git
synced 2025-12-14 14:24:37 +01:00
Implement rogue npc info
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
package emu.lunarcore.proto;
|
package emu.lunarcore.proto;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import us.hebi.quickbuf.FieldName;
|
||||||
import us.hebi.quickbuf.InvalidProtocolBufferException;
|
import us.hebi.quickbuf.InvalidProtocolBufferException;
|
||||||
import us.hebi.quickbuf.JsonSink;
|
import us.hebi.quickbuf.JsonSink;
|
||||||
import us.hebi.quickbuf.JsonSource;
|
import us.hebi.quickbuf.JsonSource;
|
||||||
@@ -17,6 +18,11 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
public static final class NpcExtraInfo extends ProtoMessage<NpcExtraInfo> implements Cloneable {
|
public static final class NpcExtraInfo extends ProtoMessage<NpcExtraInfo> implements Cloneable {
|
||||||
private static final long serialVersionUID = 0L;
|
private static final long serialVersionUID = 0L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .NpcRogueInfo rogue_info = 12;</code>
|
||||||
|
*/
|
||||||
|
private final NpcRogueInfoOuterClass.NpcRogueInfo rogueInfo = NpcRogueInfoOuterClass.NpcRogueInfo.newInstance();
|
||||||
|
|
||||||
private NpcExtraInfo() {
|
private NpcExtraInfo() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -27,9 +33,81 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
return new NpcExtraInfo();
|
return new NpcExtraInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean hasInfo() {
|
||||||
|
return (((bitField0_ & 0x00000001)) != 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public NpcExtraInfo clearInfo() {
|
||||||
|
if (hasInfo()) {
|
||||||
|
clearRogueInfo();
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .NpcRogueInfo rogue_info = 12;</code>
|
||||||
|
* @return whether the rogueInfo field is set
|
||||||
|
*/
|
||||||
|
public boolean hasRogueInfo() {
|
||||||
|
return (bitField0_ & 0x00000001) != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .NpcRogueInfo rogue_info = 12;</code>
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
|
public NpcExtraInfo clearRogueInfo() {
|
||||||
|
bitField0_ &= ~0x00000001;
|
||||||
|
rogueInfo.clear();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .NpcRogueInfo rogue_info = 12;</code>
|
||||||
|
*
|
||||||
|
* This method returns the internal storage object without modifying any has state.
|
||||||
|
* The returned object should not be modified and be treated as read-only.
|
||||||
|
*
|
||||||
|
* Use {@link #getMutableRogueInfo()} if you want to modify it.
|
||||||
|
*
|
||||||
|
* @return internal storage object for reading
|
||||||
|
*/
|
||||||
|
public NpcRogueInfoOuterClass.NpcRogueInfo getRogueInfo() {
|
||||||
|
return rogueInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .NpcRogueInfo rogue_info = 12;</code>
|
||||||
|
*
|
||||||
|
* This method returns the internal storage object and sets the corresponding
|
||||||
|
* has state. The returned object will become part of this message and its
|
||||||
|
* contents may be modified as long as the has state is not cleared.
|
||||||
|
*
|
||||||
|
* @return internal storage object for modifications
|
||||||
|
*/
|
||||||
|
public NpcRogueInfoOuterClass.NpcRogueInfo getMutableRogueInfo() {
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
return rogueInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <code>optional .NpcRogueInfo rogue_info = 12;</code>
|
||||||
|
* @param value the rogueInfo to set
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
|
public NpcExtraInfo setRogueInfo(final NpcRogueInfoOuterClass.NpcRogueInfo value) {
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
rogueInfo.copyFrom(value);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public NpcExtraInfo copyFrom(final NpcExtraInfo other) {
|
public NpcExtraInfo copyFrom(final NpcExtraInfo other) {
|
||||||
cachedSize = other.cachedSize;
|
cachedSize = other.cachedSize;
|
||||||
|
if ((bitField0_ | other.bitField0_) != 0) {
|
||||||
|
bitField0_ = other.bitField0_;
|
||||||
|
rogueInfo.copyFrom(other.rogueInfo);
|
||||||
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,6 +117,9 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
cachedSize = -1;
|
cachedSize = -1;
|
||||||
|
if (other.hasRogueInfo()) {
|
||||||
|
getMutableRogueInfo().mergeFrom(other.rogueInfo);
|
||||||
|
}
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,6 +129,8 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
cachedSize = -1;
|
cachedSize = -1;
|
||||||
|
bitField0_ = 0;
|
||||||
|
rogueInfo.clear();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -57,6 +140,8 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
cachedSize = -1;
|
cachedSize = -1;
|
||||||
|
bitField0_ = 0;
|
||||||
|
rogueInfo.clearQuick();
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -69,16 +154,24 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
NpcExtraInfo other = (NpcExtraInfo) o;
|
NpcExtraInfo other = (NpcExtraInfo) o;
|
||||||
return true;
|
return bitField0_ == other.bitField0_
|
||||||
|
&& (!hasRogueInfo() || rogueInfo.equals(other.rogueInfo));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(final ProtoSink output) throws IOException {
|
public void writeTo(final ProtoSink output) throws IOException {
|
||||||
|
if ((bitField0_ & 0x00000001) != 0) {
|
||||||
|
output.writeRawByte((byte) 98);
|
||||||
|
output.writeMessageNoTag(rogueInfo);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected int computeSerializedSize() {
|
protected int computeSerializedSize() {
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
if ((bitField0_ & 0x00000001) != 0) {
|
||||||
|
size += 1 + ProtoSink.computeMessageSizeNoTag(rogueInfo);
|
||||||
|
}
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -89,6 +182,15 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
int tag = input.readTag();
|
int tag = input.readTag();
|
||||||
while (true) {
|
while (true) {
|
||||||
switch (tag) {
|
switch (tag) {
|
||||||
|
case 98: {
|
||||||
|
// rogueInfo
|
||||||
|
input.readMessage(rogueInfo);
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
tag = input.readTag();
|
||||||
|
if (tag != 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
case 0: {
|
case 0: {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@@ -106,6 +208,9 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
@Override
|
@Override
|
||||||
public void writeTo(final JsonSink output) throws IOException {
|
public void writeTo(final JsonSink output) throws IOException {
|
||||||
output.beginObject();
|
output.beginObject();
|
||||||
|
if ((bitField0_ & 0x00000001) != 0) {
|
||||||
|
output.writeMessage(FieldNames.rogueInfo, rogueInfo);
|
||||||
|
}
|
||||||
output.endObject();
|
output.endObject();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -116,6 +221,18 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
}
|
}
|
||||||
while (!input.isAtEnd()) {
|
while (!input.isAtEnd()) {
|
||||||
switch (input.readFieldHash()) {
|
switch (input.readFieldHash()) {
|
||||||
|
case 655808936:
|
||||||
|
case -1124583437: {
|
||||||
|
if (input.isAtField(FieldNames.rogueInfo)) {
|
||||||
|
if (!input.trySkipNullValue()) {
|
||||||
|
input.readMessage(rogueInfo);
|
||||||
|
bitField0_ |= 0x00000001;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
input.skipUnknownField();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
default: {
|
default: {
|
||||||
input.skipUnknownField();
|
input.skipUnknownField();
|
||||||
break;
|
break;
|
||||||
@@ -168,6 +285,7 @@ public final class NpcExtraInfoOuterClass {
|
|||||||
* Contains name constants used for serializing JSON
|
* Contains name constants used for serializing JSON
|
||||||
*/
|
*/
|
||||||
static class FieldNames {
|
static class FieldNames {
|
||||||
|
static final FieldName rogueInfo = FieldName.forField("rogueInfo", "rogue_info");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1119
src/generated/main/emu/lunarcore/proto/NpcRogueInfoOuterClass.java
Normal file
1119
src/generated/main/emu/lunarcore/proto/NpcRogueInfoOuterClass.java
Normal file
File diff suppressed because it is too large
Load Diff
@@ -20,6 +20,7 @@ public class GameDepot {
|
|||||||
@Getter private static Int2ObjectMap<int[]> rogueMapGen = new Int2ObjectOpenHashMap<>();
|
@Getter private static Int2ObjectMap<int[]> rogueMapGen = new Int2ObjectOpenHashMap<>();
|
||||||
@Getter private static List<RogueBuffExcel> rogueRandomBuffList = new ArrayList<>();
|
@Getter private static List<RogueBuffExcel> rogueRandomBuffList = new ArrayList<>();
|
||||||
@Getter private static List<RogueMiracleExcel> rogueRandomMiracleList = new ArrayList<>();
|
@Getter private static List<RogueMiracleExcel> rogueRandomMiracleList = new ArrayList<>();
|
||||||
|
@Getter private static List<RogueNPCExcel> rogueRandomNpcList = new ArrayList<>();
|
||||||
private static Int2ObjectMap<List<RogueMapExcel>> rogueMapDepot = new Int2ObjectOpenHashMap<>();
|
private static Int2ObjectMap<List<RogueMapExcel>> rogueMapDepot = new Int2ObjectOpenHashMap<>();
|
||||||
|
|
||||||
public static void addRelicMainAffix(RelicMainAffixExcel affix) {
|
public static void addRelicMainAffix(RelicMainAffixExcel affix) {
|
||||||
|
|||||||
25
src/main/java/emu/lunarcore/data/excel/RogueNPCExcel.java
Normal file
25
src/main/java/emu/lunarcore/data/excel/RogueNPCExcel.java
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
package emu.lunarcore.data.excel;
|
||||||
|
|
||||||
|
import emu.lunarcore.data.GameDepot;
|
||||||
|
import emu.lunarcore.data.GameResource;
|
||||||
|
import emu.lunarcore.data.ResourceType;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@ResourceType(name = {"RogueNPC.json"})
|
||||||
|
public class RogueNPCExcel extends GameResource {
|
||||||
|
private int RogueNPCID;
|
||||||
|
private int NPCID;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getId() {
|
||||||
|
return RogueNPCID;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onLoad() {
|
||||||
|
if (NPCID == 3013) {
|
||||||
|
GameDepot.getRogueRandomNpcList().add(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,23 @@
|
|||||||
package emu.lunarcore.game.rogue;
|
package emu.lunarcore.game.rogue;
|
||||||
|
|
||||||
import emu.lunarcore.data.GameData;
|
import emu.lunarcore.data.GameData;
|
||||||
|
import emu.lunarcore.data.GameDepot;
|
||||||
import emu.lunarcore.data.config.GroupInfo;
|
import emu.lunarcore.data.config.GroupInfo;
|
||||||
import emu.lunarcore.data.config.MonsterInfo;
|
import emu.lunarcore.data.config.MonsterInfo;
|
||||||
|
import emu.lunarcore.data.config.NpcInfo;
|
||||||
import emu.lunarcore.data.config.PropInfo;
|
import emu.lunarcore.data.config.PropInfo;
|
||||||
import emu.lunarcore.data.excel.NpcMonsterExcel;
|
import emu.lunarcore.data.excel.NpcMonsterExcel;
|
||||||
import emu.lunarcore.data.excel.PropExcel;
|
import emu.lunarcore.data.excel.PropExcel;
|
||||||
import emu.lunarcore.data.excel.RogueMonsterExcel;
|
import emu.lunarcore.data.excel.RogueMonsterExcel;
|
||||||
|
import emu.lunarcore.data.excel.RogueNPCExcel;
|
||||||
import emu.lunarcore.game.enums.PropState;
|
import emu.lunarcore.game.enums.PropState;
|
||||||
import emu.lunarcore.game.scene.Scene;
|
import emu.lunarcore.game.scene.Scene;
|
||||||
import emu.lunarcore.game.scene.SceneEntityLoader;
|
import emu.lunarcore.game.scene.SceneEntityLoader;
|
||||||
import emu.lunarcore.game.scene.entity.EntityMonster;
|
import emu.lunarcore.game.scene.entity.EntityMonster;
|
||||||
|
import emu.lunarcore.game.scene.entity.EntityNpc;
|
||||||
import emu.lunarcore.game.scene.entity.EntityProp;
|
import emu.lunarcore.game.scene.entity.EntityProp;
|
||||||
import emu.lunarcore.game.scene.entity.extra.PropRogueData;
|
import emu.lunarcore.game.scene.entity.extra.PropRogueData;
|
||||||
|
import emu.lunarcore.util.Utils;
|
||||||
|
|
||||||
public class RogueEntityLoader extends SceneEntityLoader {
|
public class RogueEntityLoader extends SceneEntityLoader {
|
||||||
|
|
||||||
@@ -103,4 +108,17 @@ public class RogueEntityLoader extends SceneEntityLoader {
|
|||||||
|
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public EntityNpc loadNpc(Scene scene, GroupInfo group, NpcInfo npcInfo) {
|
||||||
|
// Create npc from group npc info
|
||||||
|
EntityNpc npc = super.loadNpc(scene, group, npcInfo);
|
||||||
|
|
||||||
|
// Add rogue dialogue
|
||||||
|
if (npc.getNpcId() == 3013) {
|
||||||
|
RogueNPCExcel rogueNpcExcel = Utils.randomElement(GameDepot.getRogueRandomNpcList());
|
||||||
|
npc.setRogueNpcId(rogueNpcExcel.getId());
|
||||||
|
}
|
||||||
|
|
||||||
|
return npc;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package emu.lunarcore.game.scene.entity;
|
|||||||
|
|
||||||
import emu.lunarcore.game.scene.Scene;
|
import emu.lunarcore.game.scene.Scene;
|
||||||
import emu.lunarcore.proto.MotionInfoOuterClass.MotionInfo;
|
import emu.lunarcore.proto.MotionInfoOuterClass.MotionInfo;
|
||||||
|
import emu.lunarcore.proto.NpcRogueInfoOuterClass.NpcRogueInfo;
|
||||||
import emu.lunarcore.proto.SceneEntityInfoOuterClass.SceneEntityInfo;
|
import emu.lunarcore.proto.SceneEntityInfoOuterClass.SceneEntityInfo;
|
||||||
import emu.lunarcore.proto.SceneNpcInfoOuterClass.SceneNpcInfo;
|
import emu.lunarcore.proto.SceneNpcInfoOuterClass.SceneNpcInfo;
|
||||||
import emu.lunarcore.util.Position;
|
import emu.lunarcore.util.Position;
|
||||||
@@ -19,6 +20,8 @@ public class EntityNpc implements GameEntity {
|
|||||||
private final Position pos;
|
private final Position pos;
|
||||||
private final Position rot;
|
private final Position rot;
|
||||||
|
|
||||||
|
@Setter private int rogueNpcId;
|
||||||
|
|
||||||
public EntityNpc(Scene scene, int npcId, Position pos) {
|
public EntityNpc(Scene scene, int npcId, Position pos) {
|
||||||
this.scene = scene;
|
this.scene = scene;
|
||||||
this.npcId = npcId;
|
this.npcId = npcId;
|
||||||
@@ -28,9 +31,19 @@ public class EntityNpc implements GameEntity {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SceneEntityInfo toSceneEntityProto() {
|
public SceneEntityInfo toSceneEntityProto() {
|
||||||
|
// Base npc info
|
||||||
var npc = SceneNpcInfo.newInstance()
|
var npc = SceneNpcInfo.newInstance()
|
||||||
.setNpcId(this.getNpcId());
|
.setNpcId(this.getNpcId());
|
||||||
|
|
||||||
|
// Rogue data
|
||||||
|
if (this.rogueNpcId > 0) {
|
||||||
|
var rogue = NpcRogueInfo.newInstance()
|
||||||
|
.setRogueNpcId(this.rogueNpcId);
|
||||||
|
|
||||||
|
npc.getMutableExtraInfo().setRogueInfo(rogue);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Main entity proto
|
||||||
var proto = SceneEntityInfo.newInstance()
|
var proto = SceneEntityInfo.newInstance()
|
||||||
.setEntityId(this.getEntityId())
|
.setEntityId(this.getEntityId())
|
||||||
.setGroupId(this.getGroupId())
|
.setGroupId(this.getGroupId())
|
||||||
|
|||||||
Reference in New Issue
Block a user