mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 12:36:06 +00:00
Refactor gacha banner proto creation to not do a lookup on the database
This commit is contained in:
parent
8f4f1887d9
commit
ac3214f10a
@ -139,12 +139,10 @@ public class GachaBanner {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
public GachaInfo toProto(Player player) {
|
||||||
public GachaInfo toProto() {
|
// TODO: use other Nonce/key insteadof session key to ensure the overall security for the player
|
||||||
return toProto("");
|
String sessionKey = player.getAccount().getSessionKey();
|
||||||
}
|
|
||||||
|
|
||||||
public GachaInfo toProto(String sessionKey) {
|
|
||||||
String record = "http" + (HTTP_ENCRYPTION.useInRouting ? "s" : "") + "://"
|
String record = "http" + (HTTP_ENCRYPTION.useInRouting ? "s" : "") + "://"
|
||||||
+ lr(HTTP_INFO.accessAddress, HTTP_INFO.bindAddress) + ":"
|
+ lr(HTTP_INFO.accessAddress, HTTP_INFO.bindAddress) + ":"
|
||||||
+ lr(HTTP_INFO.accessPort, HTTP_INFO.bindPort)
|
+ lr(HTTP_INFO.accessPort, HTTP_INFO.bindPort)
|
||||||
@ -176,9 +174,7 @@ public class GachaBanner {
|
|||||||
.setGachaTimesLimit(Integer.MAX_VALUE)
|
.setGachaTimesLimit(Integer.MAX_VALUE)
|
||||||
.setGachaSortId(this.getSortId());
|
.setGachaSortId(this.getSortId());
|
||||||
|
|
||||||
if(hasEpitomized() && !sessionKey.isEmpty()) {
|
if(hasEpitomized()) {
|
||||||
Account account = DatabaseHelper.getAccountBySessionKey(sessionKey);
|
|
||||||
Player player = Grasscutter.getGameServer().getPlayerByAccountId(account.getId());
|
|
||||||
PlayerGachaBannerInfo gachaInfo = player.getGachaInfo().getBannerInfo(this);
|
PlayerGachaBannerInfo gachaInfo = player.getGachaInfo().getBannerInfo(this);
|
||||||
|
|
||||||
info.setWishItemId(gachaInfo.getWishItemId())
|
info.setWishItemId(gachaInfo.getWishItemId())
|
||||||
|
@ -48,8 +48,7 @@ import static emu.grasscutter.Configuration.*;
|
|||||||
public class GachaManager {
|
public class GachaManager {
|
||||||
private final GameServer server;
|
private final GameServer server;
|
||||||
private final Int2ObjectMap<GachaBanner> gachaBanners;
|
private final Int2ObjectMap<GachaBanner> gachaBanners;
|
||||||
private GetGachaInfoRsp cachedProto;
|
private WatchService watchService;
|
||||||
WatchService watchService;
|
|
||||||
|
|
||||||
private static final int starglitterId = 221;
|
private static final int starglitterId = 221;
|
||||||
private static final int stardustId = 222;
|
private static final int stardustId = 222;
|
||||||
@ -88,9 +87,6 @@ public class GachaManager {
|
|||||||
getGachaBanners().put(banner.getScheduleId(), banner);
|
getGachaBanners().put(banner.getScheduleId(), banner);
|
||||||
}
|
}
|
||||||
Grasscutter.getLogger().info("Banners successfully loaded.");
|
Grasscutter.getLogger().info("Banners successfully loaded.");
|
||||||
|
|
||||||
|
|
||||||
this.cachedProto = createProto();
|
|
||||||
} else {
|
} else {
|
||||||
Grasscutter.getLogger().error("Unable to load banners. Banners size is 0.");
|
Grasscutter.getLogger().error("Unable to load banners. Banners size is 0.");
|
||||||
}
|
}
|
||||||
@ -421,18 +417,7 @@ public class GachaManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
private synchronized GetGachaInfoRsp createProto(Player player) {
|
||||||
private synchronized GetGachaInfoRsp createProto() {
|
|
||||||
GetGachaInfoRsp.Builder proto = GetGachaInfoRsp.newBuilder().setGachaRandom(12345);
|
|
||||||
|
|
||||||
for (GachaBanner banner : getGachaBanners().values()) {
|
|
||||||
proto.addGachaInfoList(banner.toProto());
|
|
||||||
}
|
|
||||||
|
|
||||||
return proto.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
private synchronized GetGachaInfoRsp createProto(String sessionKey) {
|
|
||||||
GetGachaInfoRsp.Builder proto = GetGachaInfoRsp.newBuilder().setGachaRandom(12345);
|
GetGachaInfoRsp.Builder proto = GetGachaInfoRsp.newBuilder().setGachaRandom(12345);
|
||||||
|
|
||||||
long currentTime = System.currentTimeMillis() / 1000L;
|
long currentTime = System.currentTimeMillis() / 1000L;
|
||||||
@ -440,22 +425,14 @@ public class GachaManager {
|
|||||||
for (GachaBanner banner : getGachaBanners().values()) {
|
for (GachaBanner banner : getGachaBanners().values()) {
|
||||||
if ((banner.getEndTime() >= currentTime && banner.getBeginTime() <= currentTime) || (banner.getBannerType() == BannerType.STANDARD))
|
if ((banner.getEndTime() >= currentTime && banner.getBeginTime() <= currentTime) || (banner.getBannerType() == BannerType.STANDARD))
|
||||||
{
|
{
|
||||||
proto.addGachaInfoList(banner.toProto(sessionKey));
|
proto.addGachaInfoList(banner.toProto(player));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return proto.build();
|
return proto.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Deprecated
|
public GetGachaInfoRsp toProto(Player player) {
|
||||||
public GetGachaInfoRsp toProto() {
|
return createProto(player);
|
||||||
if (this.cachedProto == null) {
|
|
||||||
this.cachedProto = createProto();
|
|
||||||
}
|
|
||||||
return this.cachedProto;
|
|
||||||
}
|
|
||||||
|
|
||||||
public GetGachaInfoRsp toProto(String sessionKey) {
|
|
||||||
return createProto(sessionKey);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,10 +14,7 @@ public class HandlerGetGachaInfoReq extends PacketHandler {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void handle(GameSession session, byte[] header, byte[] payload) throws Exception {
|
public void handle(GameSession session, byte[] header, byte[] payload) throws Exception {
|
||||||
session.send(new PacketGetGachaInfoRsp(session.getServer().getGachaManager(),
|
session.send(new PacketGetGachaInfoRsp(session.getServer().getGachaManager(), session.getPlayer()));
|
||||||
// TODO: use other Nonce/key insteadof session key to ensure the overall security for the player
|
|
||||||
session.getPlayer().getAccount().getSessionKey())
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,22 +1,16 @@
|
|||||||
package emu.grasscutter.server.packet.send;
|
package emu.grasscutter.server.packet.send;
|
||||||
|
|
||||||
import emu.grasscutter.game.gacha.GachaManager;
|
import emu.grasscutter.game.gacha.GachaManager;
|
||||||
|
import emu.grasscutter.game.player.Player;
|
||||||
import emu.grasscutter.net.packet.BasePacket;
|
import emu.grasscutter.net.packet.BasePacket;
|
||||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||||
|
|
||||||
public class PacketGetGachaInfoRsp extends BasePacket {
|
public class PacketGetGachaInfoRsp extends BasePacket {
|
||||||
|
|
||||||
@Deprecated
|
public PacketGetGachaInfoRsp(GachaManager manager, Player player) {
|
||||||
public PacketGetGachaInfoRsp(GachaManager manager) {
|
|
||||||
super(PacketOpcodes.GetGachaInfoRsp);
|
super(PacketOpcodes.GetGachaInfoRsp);
|
||||||
|
|
||||||
this.setData(manager.toProto());
|
this.setData(manager.toProto(player));
|
||||||
}
|
|
||||||
|
|
||||||
public PacketGetGachaInfoRsp(GachaManager manager, String sessionKey) {
|
|
||||||
super(PacketOpcodes.GetGachaInfoRsp);
|
|
||||||
|
|
||||||
this.setData(manager.toProto(sessionKey));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user